*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--green: #4caf2a;
	--green-dark: #357a1d;
	--green-light: #ebf7e3;
	--green-mid: #c8edaf;
	--off-white: #f6f9f3;
	--dark: #0d1f0a;
	--dark2: #1a3012;
	--gray: #6b7b62;
	--gray-light: #b4c4a8;
	--border: #e4ede0;
	--white: #ffffff;
	--grid: 64px;
	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-xl: 40px;
	--r-pill: 999px;
}

html {
	scroll-behavior: smooth;
}
body {
	font-family: "Inter", sans-serif;
	background: var(--white);
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ══ HEADER ══ */
.header-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 14px var(--grid);
}
header {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(16px);
	border-radius: var(--r-pill);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	padding: 12px 8px 12px 20px;
	position: relative;
}
.header-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--dark);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.02em;
	white-space: nowrap;
}
.logo-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}
.header-nav {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.header-nav a {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 7px 14px;
	font-size: 20px;
	font-weight: 500;
	color: var(--dark2);
	text-decoration: none;
	border-radius: var(--r-pill);
	transition:
		background 0.18s,
		color 0.18s;
	white-space: nowrap;
}
.header-nav a:hover {
	background: var(--off-white);
	color: var(--green);
}
.chevron {
	font-size: 20px;
	opacity: 0.5;
	display: inline-block;
	transition: transform 0.18s;
}
/* ══ SERVICES DROPDOWN ══ */
.has-dropdown {
	position: relative;
}
.has-dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 10px;
}
.nav-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
	padding: 8px;
	min-width: 240px;
	z-index: 300;
	list-style: none;
}
.has-dropdown:hover .nav-dropdown {
	display: block;
}
.has-dropdown:hover > a .chevron {
	transform: rotate(180deg);
}
.nav-dropdown li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	transition: background 0.15s;
	white-space: nowrap;
	background: transparent;
}
.nav-dropdown li a:hover {
	background: var(--off-white);
	color: var(--dark);
}
.nav-dd-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--off-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
/* ══ LANG DROPDOWN ══ */
.lang-has-dropdown {
	position: relative;
}
.lang-has-dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 10px;
}
.lang-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
	padding: 8px;
	min-width: 150px;
	z-index: 300;
	list-style: none;
}
.lang-has-dropdown:hover .lang-dropdown {
	display: block;
}
.lang-has-dropdown:hover .lang-btn .chevron {
	transform: rotate(180deg);
}
.lang-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark);
	background: transparent;
	border: none;
	font-family: "Inter", sans-serif;
	width: 100%;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s;
}
.lang-option:hover {
	background: var(--off-white);
}
.lang-option .flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	vertical-align: middle;
}
.header-right {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}
.lang-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border: none;
	border-radius: var(--r-pill);
	background: transparent;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark2);
	cursor: pointer;
	transition: all 0.18s;
	white-space: nowrap;
}
.lang-btn:hover {
	color: var(--green);
}
.flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	vertical-align: middle;
}
.btn-cta-header {
	padding: 14px 28px;
	background: var(--green);
	color: white;
	border: none;
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		background 0.2s,
		box-shadow 0.2s;
	white-space: nowrap;
}
.btn-cta-header:hover {
	background: var(--green-dark);
	box-shadow: 0 4px 16px rgba(76, 175, 42, 0.4);
}

/* ══ HERO ══ */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #171f13 0%, #146546 100%);
	display: grid;
	grid-template-columns: 55fr 45fr;
	align-items: center;
	padding: 0 var(--grid);
	padding-top: 88px;
	gap: 40px;
	position: relative;
	overflow: hidden;
}
.hero-left {
	position: relative;
	z-index: 2;
	padding: 60px 0;
}
.hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.breadcrumb-item {
	font-size: 22px;
	font-weight: 500;
	color: var(--green);
	white-space: nowrap;
}
.breadcrumb-arrow {
	font-size: 22px;
	color: var(--green);
	opacity: 0.7;
}
.hero h1 {
	font-size: 5rem;
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.03em;
	color: white;
	margin-bottom: 20px;
}
.hero h1 em {
	font-style: italic;
	color: var(--green);
}
.hero-sub {
	font-size: 22px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;

	margin-bottom: 36px;
}
.hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.btn-pill-solid {
	padding: 14px 28px;
	background: white;
	color: var(--dark);
	border: 2px solid white;
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		background 0.2s,
		color 0.2s;
}
.btn-pill-solid:hover {
	background: var(--green);
	color: white;
	border-color: var(--green);
}
.btn-pill-outline {
	padding: 14px 28px;
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.btn-pill-outline:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.08);
}

.hero-right {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
}
.illus-box {
	position: relative;
	width: 680px;
	height: 700px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.illus-main-card {
	width: 660px;
	height: 660px;
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	animation: floatY 6s ease-in-out infinite;
	position: relative;
	z-index: 3;
}
.illus-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}
@keyframes floatY {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}
.float-card {
	position: absolute;
	background: rgba(15, 40, 10, 0.82);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 12px 18px;
}
.fc1 {
	top: -20px;
	left: -52px;
}
.fc2 {
	bottom: 0px;
	right: -52px;
}
.fc-lbl {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 3px;
}
.fc-val {
	font-size: 20px;
	font-weight: 700;
	color: white;
}
.fc-val span {
	color: var(--green);
}

/* ══ SHARED ══ */
.section-inner {
	padding: 88px var(--grid);
}
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.eyebrow-bar {
	width: 28px;
	height: 2px;
	background: var(--green);
	border-radius: 2px;
}
.eyebrow-txt {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
}
.sec-title {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--dark);
	margin-bottom: 8px;
}

/* ══ SERVICES ══ */
.services {
	background: var(--off-white);
}
.services-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 48px;
}
.services-top p {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.7;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.svc-card {
	background: white;
	border-radius: var(--r-lg);
	padding: 32px 28px;
	border: 1px solid var(--border);
	transition:
		transform 0.25s,
		box-shadow 0.25s,
		border-color 0.25s;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.svc-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s;
}
.svc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(76, 175, 42, 0.1);
	border-color: rgba(76, 175, 42, 0.25);
}
.svc-card:hover::after {
	transform: scaleX(1);
}
.svc-card.dark.fit .fd1[style*="37715A"]:hover {
	transform: none;
	box-shadow: none;
	border-color: transparent;
	cursor: default;
}
.svc-card.dark.fit .fd1[style*="37715A"]:hover::after {
	transform: scaleX(0);
}
.svc-card.dark {
	background: var(--dark);
	border-color: transparent;
}
.svc-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.svc-card.dark .svc-icon {
	background: rgba(76, 175, 42, 0.18);
}
.svc-name {
	font-size: 24px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 10px;
}
.svc-card.dark .svc-name {
	color: white;
}
.svc-desc {
	font-size: 20px;
	color: var(--gray);
	line-height: 1.65;
	margin-bottom: 20px;
}
.svc-card.dark .svc-desc {
	color: rgba(255, 255, 255, 0.5);
}
.svc-link {
	font-size: 20px;
	font-weight: 600;
	color: var(--green);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: gap 0.2s;
}
.svc-card.dark .svc-link {
	color: #8fda6a;
}
.svc-link:hover {
	gap: 9px;
}
.svc-illus-tile-small {
	background: var(--green-light);
	border-radius: var(--r-lg);
	align-items: center;
	justify-content: center;
	border: 1px solid var(--green-mid);
	padding: 24px;
	overflow: hidden;
	display: none;
}
.svc-illus-tile-big {
	background: var(--green-light);
	border-radius: var(--r-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--green-mid);
	padding: 24px;
	overflow: hidden;
}

/* ══ CTA ══ */
.cta-outer {
	background: var(--off-white);
	padding: 72px var(--grid);
}
.cta-band {
	background: var(--dark);
	border-radius: var(--r-xl);
	padding: 96px 106px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.cta-glow {
	position: absolute;
	right: -100px;
	top: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(76, 175, 42, 0.18) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}
.cta-band h2 {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: white;
	line-height: 1.15;
	margin-bottom: 8px;
}
.cta-band h2 span {
	color: var(--green);
}
.cta-band p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 28px;
}
.cta-btns {
	display: flex;
	gap: 10px;
}
.btn-white {
	padding: 11px 24px;
	background: white;
	color: var(--dark2);
	border: none;
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: background 0.2s;
}
.btn-white:hover {
	background: var(--green-light);
}
.btn-ghost {
	padding: 11px 24px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		border-color 0.2s,
		color 0.2s;
}
.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: white;
}
.cta-illus-wrap {
	bottom: 80px;
	width: 520px;
	height: 440px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	align-self: end;
	margin-bottom: -64px;
}
@keyframes floatY2 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

/* ══ CLIENTS ══ */
.clients-section {
	display: none;
	padding: 124px 0;
	background: #c9dbc9;
	overflow: hidden;
}
.clients-title {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--dark);
	margin-bottom: 52px;
}
.clients-track-wrap {
	overflow: hidden;
}
.clients-track {
	display: flex;
	gap: 24px;
	width: max-content;
	animation: clients-scroll 22s linear infinite;
}
.clients-track:hover {
	animation-play-state: paused;
}
.clients-card {
	background: #fff;
	border-radius: 20px;
	padding: 28px 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 210px;
	height: 130px;
}
.clients-card img {
	height: 68px;
	width: auto;
	max-width: 170px;
	object-fit: contain;
}
@keyframes clients-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* ══ FOOTER ══ */
footer {
	background: var(--dark);
	padding: 56px var(--grid) 28px;
}
.footer-main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 24px;
}
.footer-brand-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: white;
	margin-bottom: 14px;
}
.footer-tagline {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.7;
}
.footer-col-title {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 18px;
}
.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.18s;
}
.footer-links a:hover {
	color: var(--green);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-copy {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.25);
}

/* ══ FADE-IN ══ */
.fit {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}
.fit .vis {
	opacity: 1;
	transform: none;
}
.hero .fit {
	opacity: 1;
	transform: none;
}
.fd1 {
	transition-delay: 0.08s;
}
.fd2 {
	transition-delay: 0.16s;
}
.fd3 {
	transition-delay: 0.24s;
}

/* ══ BURGER (hidden on desktop) ══ */
.burger {
	display: none;
}

/* ══ MOBILE ══ */
@media (max-width: 768px) {
	:root {
		--grid: 20px;
	}

	/* Header */
	.header-wrap {
		padding: 10px 20px;
	}
	header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
	.header-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		z-index: 199;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		padding: 80px 20px 32px;
		gap: 4px;
		overflow-y: auto;
		transform: none;
	}
	.header-nav.mob-open {
		display: flex;
	}
	.header-nav li {
		width: 100%;
	}
	.header-nav > li > a {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 12px 16px;
		font-size: 16px;
		border-radius: 12px;
	}
	.has-dropdown::after {
		display: none;
	}
	.nav-dropdown {
		display: block;
		position: static;
		box-shadow: none;
		padding: 0 0 0 16px;
		min-width: 0;
		background: transparent;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
	.nav-dropdown li a {
		font-size: 14px;
		padding: 8px 12px;
	}
	.header-right {
		display: flex;
		align-items: center;
		gap: 6px;
		order: 2;
		margin-left: auto;
	}
	.header-right .btn-cta-header {
		display: none;
	}
	/* Mobile lang dropdown: click-based instead of hover */
	.lang-has-dropdown:hover .lang-dropdown {
		display: none;
	}
	.lang-has-dropdown.lang-open .lang-dropdown {
		display: block;
	}

	/* Burger */
	.burger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 24px;
		height: 18px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 210;
		flex-shrink: 0;
		margin-left: 8px;
		order: 3;
	}
	.burger span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--dark);
		border-radius: 2px;
		transition:
			transform 0.22s,
			opacity 0.22s;
	}
	.burger.mob-open span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.burger.mob-open span:nth-child(2) {
		opacity: 0;
	}
	.burger.mob-open span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* Hero — dissolve hero-left so breadcrumb/h1/sub/ctas
	   become direct grid children and can be reordered */
	.hero {
		grid-template-columns: 1fr;
		padding-top: 72px;
		min-height: auto;
	}
	.hero-left {
		display: contents;
	}
	/* Reorder: breadcrumb → illustration → h1 → sub → ctas */
	.hero-breadcrumb {
		order: 1;
		padding-top: 36px;
	}
	.hero h1 {
		font-size: clamp(32px, 8vw, 48px);
		order: 2;
	}
	.hero-sub {
		order: 3;
	}
	.hero-ctas {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		order: 4;
		padding-bottom: 0;
	}
	.hero-right {
		display: flex;
		order: 5;
		justify-content: center;
		padding: 32px 0 48px;
	}
	/* Hero illustration — responsive sizing */
	.illus-stack {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}
	.illus-white-card {
		width: min(340px, calc(100vw - 32px));
	}
	.illus-png {
		width: 100%;
		height: auto;
		display: block;
	}
	.fc1,
	.fc2 {
		display: none;
	}
	.btn-pill-solid,
	.btn-pill-outline {
		width: 100%;
		justify-content: center;
	}

	/* Services */
	.section-inner {
		padding: 56px var(--grid);
	}
	.services-top {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}

	/* CTA band */
	.cta-outer {
		padding: 32px var(--grid);
	}
	.cta-band {
		grid-template-columns: 1fr;
		padding: 40px 28px;
		border-radius: 24px;
		gap: 32px;
	}
	.cta-illus-wrap {
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 465 / 387;
		max-height: 300px;
		margin-bottom: 0;
		align-self: auto;
		bottom: 0;
	}
	.cta-illus-wrap svg {
		width: 100%;
		height: 100%;
	}
	.cta-btns {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	/* Clients */
	.clients-section {
		padding: 64px 0;
	}
	.clients-card {
		padding: 20px 32px;
		min-width: 160px;
		height: 96px;
	}
	.clients-card img {
		height: 48px;
	}

	/* Footer */
	footer {
		padding: 40px var(--grid) 24px;
	}
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* ══ PHONE ══ */
@media (max-width: 480px) {
	/* Header */
	header {
		padding: 10px 20px 10px 14px;
	}
	.header-logo svg {
		width: 96px;
	}
	.btn-cta-header {
		display: none;
	}

	/* Hero */
	.hero h1 {
		font-size: clamp(28px, 9vw, 40px);
	}
	.hero-sub {
		font-size: 15px;
	}
	.breadcrumb-item,
	.breadcrumb-arrow {
		font-size: 13px;
	}
	.btn-pill-solid,
	.btn-pill-outline {
		font-size: 15px;
		padding: 12px 20px;
	}
	.hero-label-card {
		display: none;
	}

	/* Services */
	.sec-title {
		font-size: 2rem;
	}
	.svc-name {
		font-size: 18px;
	}
	.svc-desc {
		font-size: 15px;
	}
	.svc-link {
		font-size: 15px;
	}
	.svc-illus-tile-big {
		display: none;
	}
	.svc-illus-tile-small {
		display: flex;
	}

	/* CTA */
	.cta-band {
		padding: 32px 20px;
	}
	.cta-band h2 {
		font-size: 1.8rem;
	}
	.cta-band p {
		font-size: 14px;
	}
	.cta-btns a {
		text-align: center;
		justify-content: center;
	}

	/* Footer */
	.footer-main {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.footer-tagline {
		font-size: 13px;
	}
}
