/**
 * Webbotica — Global Site Footer
 */

.wb-site-footer {
	--wb-footer-primary: var(--color-primary, #496af9);
	--wb-footer-bg: var(--color-background, #fafaf8);
	--wb-footer-surface: var(--color-surface, #ffffff);
	--wb-footer-heading: var(--color-heading, #111827);
	--wb-footer-copy: var(--color-paragraph, #6b7280);
	--wb-footer-border: var(--color-border, #e5e7eb);

	padding: 0;
	border-top: 1px solid var(--wb-footer-border);
	background: var(--wb-footer-bg);
	font-family: "Plus Jakarta Sans", sans-serif;
}

.wb-site-footer *,
.wb-site-footer *::before,
.wb-site-footer *::after {
	box-sizing: border-box;
}

.wb-site-footer__container {
	width: min(100% - 2rem, 1240px);
	margin-inline: auto;
}

.wb-site-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	grid-template-areas:
		"brand brand"
		"explore services"
		"contact contact";
	gap: 2rem 1.15rem;
	padding: 3.25rem 0 2.75rem;
}

.wb-site-footer__brand {
	grid-area: brand;
}

.wb-site-footer__main > .wb-site-footer__column:not(.wb-site-footer__column--services):not(.wb-site-footer__contact) {
	grid-area: explore;
}

.wb-site-footer__column--services {
	grid-area: services;
}

.wb-site-footer__contact {
	grid-area: contact;
}

.wb-site-footer__brand {
	max-width: 390px;
}

.wb-site-footer__logo {
	display: inline-flex;
	max-width: 180px;
	align-items: center;
	color: var(--wb-footer-heading);
	font-size: 1.35rem;
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1;
	text-decoration: none;
}

.wb-site-footer__logo-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: 34px;
	object-fit: contain;
	object-position: left center;
}

.wb-site-footer__statement {
	max-width: 350px;
	margin: 1.2rem 0 0;
	color: var(--wb-footer-copy);
	font-size: 0.95rem;
	line-height: 1.7;
}

.wb-site-footer__project-link {
	position: relative;
	display: inline-flex;
	margin-top: 1.45rem;
	padding-bottom: 0.28rem;
	align-items: center;
	gap: 0.45rem;
	color: var(--wb-footer-heading);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.wb-site-footer__project-link::after {
	content: "";
	position: absolute;
	right: 1.55rem;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	transform-origin: left;
	transition: transform 180ms ease;
}

.wb-site-footer__project-link:hover {
	color: var(--wb-footer-primary);
}

.wb-site-footer__project-link:hover::after {
	transform: scaleX(0.72);
}

.wb-site-footer__project-link svg,
.wb-site-footer__back-to-top svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wb-site-footer__social {
	display: flex;
	margin-top: 1.65rem;
	align-items: center;
	gap: 0.55rem;
}

.wb-site-footer__social a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid var(--wb-footer-border);
	border-radius: 50%;
	background: var(--wb-footer-surface);
	color: var(--wb-footer-heading);
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.wb-site-footer__social a:hover {
	border-color: rgba(73, 106, 249, 0.35);
	color: var(--wb-footer-primary);
	transform: translateY(-2px);
}

.wb-site-footer__social svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.wb-site-footer__social .is-filled {
	fill: currentColor;
	stroke: none;
}

.wb-site-footer__column h3 {
	margin: 0 0 1rem;
	color: var(--wb-footer-heading);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.wb-site-footer__links,
.wb-site-footer__contact-list,
.wb-site-footer__legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wb-site-footer__links {
	display: grid;
	gap: 0.58rem;
}

.wb-site-footer__column--services .wb-site-footer__links {
	grid-template-columns: minmax(0, 1fr);
}

.wb-site-footer__links a,
.wb-site-footer__contact a,
.wb-site-footer__pricing-link,
.wb-site-footer__legal a,
.wb-site-footer__back-to-top {
	color: var(--wb-footer-copy);
	font-size: 0.86rem;
	line-height: 1.5;
	text-decoration: none;
	transition: color 180ms ease;
}

.wb-site-footer__links a:hover,
.wb-site-footer__contact a:hover,
.wb-site-footer__pricing-link:hover,
.wb-site-footer__legal a:hover,
.wb-site-footer__back-to-top:hover {
	color: var(--wb-footer-heading);
}

.wb-site-footer__contact-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.72rem 1rem;
}

.wb-site-footer__contact-list li:first-child {
	grid-column: 1 / -1;
}

.wb-site-footer__contact-list li {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 0.55rem;
	color: var(--wb-footer-copy);
	font-size: 0.86rem;
	line-height: 1.5;
}

.wb-site-footer__contact-list svg {
	width: 16px;
	height: 16px;
	margin-top: 0.12rem;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--wb-footer-primary);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}
/* 
.wb-site-footer__contact-list a {
	overflow-wrap: anywhere;
} */

.wb-site-footer__pricing-link {
	display: inline-flex;
	margin-top: 1.2rem;
	color: var(--wb-footer-heading);
	font-weight: 700;
}

.wb-site-footer__bottom {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.7rem 1rem;
	padding: 1.25rem 0 1.4rem;
	border-top: 1px solid var(--wb-footer-border);
}

.wb-site-footer__bottom > p {
	grid-column: 1 / -1;
}

.wb-site-footer__back-to-top {
	justify-self: end;
}

.wb-site-footer__bottom p {
	margin: 0;
	color: var(--wb-footer-copy);
	font-size: 0.76rem;
	line-height: 1.6;
}

.wb-site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
}

.wb-site-footer__legal a,
.wb-site-footer__back-to-top {
	font-size: 0.76rem;
}

.wb-site-footer__back-to-top {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 0.35rem;
}

.wb-site-footer a:focus-visible {
	outline: 3px solid rgba(73, 106, 249, 0.22);
	outline-offset: 4px;
}

@media (max-width: 719px) {
	.wb-site-footer__brand {
		max-width: none;
	}

	.wb-site-footer__statement {
		max-width: 390px;
		margin-top: 0.95rem;
		font-size: 0.9rem;
		line-height: 1.62;
	}

	.wb-site-footer__project-link {
		margin-top: 1.15rem;
	}

	.wb-site-footer__social {
		margin-top: 1.25rem;
	}

	.wb-site-footer__column h3 {
		margin-bottom: 0.78rem;
	}

	.wb-site-footer__links a,
	.wb-site-footer__contact a,
	.wb-site-footer__pricing-link {
		font-size: 0.8rem;
	}

	.wb-site-footer__contact {
		padding-top: 1.85rem;
		border-top: 1px solid var(--wb-footer-border);
	}

	.wb-site-footer__contact-list li {
		font-size: 0.8rem;
	}

	.wb-site-footer__pricing-link {
		margin-top: 1rem;
	}
}

@media (min-width: 720px) {
	.wb-site-footer__container {
		width: min(100% - 3rem, 1240px);
	}

	.wb-site-footer__main {
		grid-template-areas: none;
		grid-template-columns: minmax(240px, 1.25fr) minmax(120px, 0.65fr) minmax(260px, 1.2fr) minmax(190px, 0.85fr);
		gap: clamp(2rem, 4vw, 4rem);
		padding: 5rem 0 4rem;
	}

	.wb-site-footer__brand,
	.wb-site-footer__main > .wb-site-footer__column:not(.wb-site-footer__column--services):not(.wb-site-footer__contact),
	.wb-site-footer__column--services,
	.wb-site-footer__contact {
		grid-area: auto;
	}

	.wb-site-footer__links {
		gap: 0.7rem;
	}

	.wb-site-footer__contact-list {
		grid-template-columns: minmax(0, 1fr);
		gap: 0.82rem;
	}

	.wb-site-footer__contact-list li:first-child {
		grid-column: auto;
	}

	.wb-site-footer__column--services .wb-site-footer__links {
		grid-template-columns: minmax(0, 1fr);
	}.wb-site-footer__bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.wb-site-footer__bottom > p {
    grid-column: auto;
    margin: 0 auto 0 0;
    padding: 0;
    line-height: 1;
}

.wb-site-footer__bottom > nav {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0;
    padding: 0;
}

.wb-site-footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.wb-site-footer__legal li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.wb-site-footer__legal a,
.wb-site-footer__back-to-top {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.wb-site-footer__back-to-top {
    width: fit-content;
    margin: 0;
    padding: 0;
    justify-self: auto;
}
}

@media (max-width: 380px) {
	.wb-site-footer__container {
		width: min(100% - 1.25rem, 1240px);
	}

	.wb-site-footer__main {
		grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
		gap: 1.75rem 0.8rem;
	}

	.wb-site-footer__links a,
	.wb-site-footer__contact a,
	.wb-site-footer__pricing-link,
	.wb-site-footer__contact-list li {
		font-size: 0.75rem;
	}

	.wb-site-footer__contact-list {
		column-gap: 0.7rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wb-site-footer *,
	.wb-site-footer *::before,
	.wb-site-footer *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
