/* ============================================================
   Brand tokens (from style sheet)
   Primary 60874B / 4A494A · Neutral 231F20 / FFFFFF
   Secondary F3EA17 · AC4D9D · F6A31D · 788E49 · C44884 · D1A7CE
   ============================================================ */
:root {
	--green-600: #4f7a3a;
	--green-500: #60874b;
	--green-450: #788e49;
	--green-300: #a3c77f;
	--green-100: #e6f1da;
	--green-50: #f2f8eb;

	--ink-900: #1a1a1a;
	--ink-800: #231f20;
	--ink-700: #4a494a;
	--ink-500: #6b6b6e;
	--ink-300: #c9c9cc;
	--ink-150: #e8e8ea;
	--ink-100: #f2f2f4;
	--paper: #fafaf7;
	--white: #ffffff;

	--accent-yellow: #f3ea17;
	--accent-orange: #f6a31d;
	--accent-magenta: #ac4d9d;
	--accent-pink: #c44884;
	--accent-lilac: #d1a7ce;

	--grad-lime: linear-gradient(90deg, #f3ea17 0%, #60874b 100%);
	--grad-leaf: linear-gradient(90deg, #a3c77f 0%, #60874b 100%);

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 32px;
	--radius-pill: 999px;

	--shadow-sm:
		0 1px 2px rgba(20, 20, 20, 0.04), 0 2px 6px rgba(20, 20, 20, 0.04);
	--shadow-md:
		0 6px 18px rgba(20, 30, 15, 0.06), 0 14px 40px rgba(20, 30, 15, 0.06);
	--shadow-lg: 0 24px 60px rgba(20, 30, 15, 0.1);

	--maxw: 1240px;
	--gutter: clamp(20px, 4vw, 48px);

	--font-display: 'Poppins', 'Nunito Sans', system-ui, sans-serif;
	--font-body: 'Nunito Sans', 'Poppins', system-ui, sans-serif;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink-800);
	background: var(--paper);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* Subtle paper grain — adds warmth without being noisy */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: radial-gradient(
		rgba(74, 73, 74, 0.025) 1px,
		transparent 1px
	);
	background-size: 3px 3px;
	mix-blend-mode: multiply;
}

/* ============================================================
   Typography
   ============================================================ */
h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink-900);
	margin: 0;
}
h1 {
	font-size: clamp(2.6rem, 6vw, 5.2rem);
	line-height: 1.02;
	letter-spacing: -0.035em;
}
h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.025em;
}
h3 {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	line-height: 1.2;
}
p {
	margin: 0 0 1em;
}
.lead {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	color: var(--ink-700);
	max-width: 60ch;
}
.eyebrow {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--green-600);
	padding: 0.5em 1em;
	background: var(--green-100);
	border: 1px solid rgba(96, 135, 75, 0.18);
	border-radius: var(--radius-pill);
}
.eyebrow .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green-500);
	box-shadow: 0 0 0 4px rgba(96, 135, 75, 0.18);
}
.text-green {
	color: var(--green-500);
}
.text-italic {
	font-style: italic;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 1;
}
section {
	position: relative;
	padding: clamp(72px, 10vw, 140px) 0;
	z-index: 1;
}
.section-head {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: clamp(36px, 5vw, 64px);
	max-width: 760px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 14px 26px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.98rem;
	border-radius: var(--radius-pill);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.2s ease,
		color 0.2s ease;
	white-space: nowrap;
}
.btn-primary {
	background: var(--ink-900);
	color: var(--white);
	box-shadow:
		0 6px 0 0 var(--green-500),
		0 8px 22px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow:
		0 8px 0 0 var(--green-500),
		0 12px 30px rgba(0, 0, 0, 0.2);
}
.btn-primary:active {
	transform: translateY(2px);
	box-shadow:
		0 2px 0 0 var(--green-500),
		0 4px 14px rgba(0, 0, 0, 0.18);
}
.btn-secondary {
	background: var(--white);
	color: var(--ink-900);
	border: 1.5px solid var(--ink-150);
}
.btn-secondary:hover {
	border-color: var(--green-500);
	color: var(--green-600);
}
.btn-ghost {
	color: var(--ink-800);
	padding: 10px 0;
	border-radius: 0;
	border-bottom: 2px solid transparent;
}
.btn-ghost:hover {
	border-bottom-color: var(--green-500);
}
.btn .arrow {
	transition: transform 0.25s ease;
}
.btn:hover .arrow {
	transform: translateX(4px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 250, 247, 0.78);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(74, 73, 74, 0.06);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 78px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand img {
	height: 42px;
	width: auto;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 34px;
}
.nav-links a {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--ink-700);
	position: relative;
	padding: 6px 0;
	transition: color 0.2s ease;
}
.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--green-500);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.nav-links a:hover {
	color: var(--ink-900);
}
.nav-links a:hover::after {
	transform: scaleX(1);
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}
.menu-btn {
	display: none;
}
@media (max-width: 960px) {
	.nav-links {
		display: none;
	}
	.nav-cta .btn-secondary {
		display: none;
	}
	.menu-btn {
		display: inline-flex;
		flex-direction: column;
		gap: 5px;
		padding: 10px;
		border-radius: 8px;
	}
	.menu-btn span {
		width: 22px;
		height: 2px;
		background: var(--ink-800);
		border-radius: 2px;
		transition:
			transform 0.2s,
			opacity 0.2s;
	}
	.mobile-open .menu-btn span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.mobile-open .menu-btn span:nth-child(2) {
		opacity: 0;
	}
	.mobile-open .menu-btn span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}
.mobile-menu {
	display: none;
	background: var(--white);
	padding: 18px var(--gutter) 28px;
	border-bottom: 1px solid var(--ink-150);
}
.mobile-menu a {
	display: block;
	padding: 14px 0;
	font-family: var(--font-display);
	font-weight: 500;
	border-bottom: 1px solid var(--ink-100);
}
.mobile-menu .btn {
	margin-top: 18px;
	width: 100%;
	justify-content: center;
}
.mobile-open .mobile-menu {
	display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	padding-top: clamp(80px, 11vw, 140px);
	padding-bottom: clamp(100px, 13vw, 180px);
	overflow: hidden;
	position: relative;
	text-align: center;
	isolation: isolate;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(
			900px 600px at 50% 30%,
			rgba(96, 135, 75, 0.08),
			transparent 65%
		),
		radial-gradient(
			600px 400px at 10% 90%,
			rgba(243, 234, 23, 0.08),
			transparent 60%
		),
		radial-gradient(
			600px 400px at 90% 90%,
			rgba(120, 142, 73, 0.08),
			transparent 60%
		);
}

/* Faint globe watermark (centered, behind everything) */
.hero-globe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(1100px, 98vw);
	aspect-ratio: 1/1;
	z-index: 0;
	pointer-events: none;
	opacity: 0.55;
	-webkit-mask-image: radial-gradient(
		circle at center,
		black 35%,
		transparent 78%
	);
	mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
}
.hero-globe svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Floating corridor pills around the hero edges */
.hero-pills {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.pill {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px 8px 8px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(96, 135, 75, 0.18);
	border-radius: var(--radius-pill);
	box-shadow:
		0 10px 28px rgba(20, 30, 15, 0.08),
		0 2px 6px rgba(20, 30, 15, 0.04);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.84rem;
	color: var(--ink-800);
	white-space: nowrap;
	letter-spacing: -0.005em;
	opacity: 0;
	animation:
		pillIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1.1) forwards,
		pillDrift 6s ease-in-out infinite;
}
.pill .coin {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
	color: #5c3d00;
	background: radial-gradient(
		circle at 30% 30%,
		#ffe680 0%,
		#f0b400 50%,
		#b07900 100%
	);
	box-shadow:
		inset 0 -3px 5px rgba(0, 0, 0, 0.18),
		inset 0 2px 3px rgba(255, 255, 255, 0.45),
		0 4px 10px rgba(176, 121, 0, 0.3);
	flex-shrink: 0;
}
.pill .arr {
	color: var(--green-500);
	margin: 0 2px;
	font-weight: 700;
}
.pill .check {
	color: var(--green-500);
	font-weight: 800;
	font-size: 0.95rem;
	margin-left: 2px;
}

/* Pill positions — paired with appropriate currency icon */
.pill-tl {
	top: 9%;
	left: 3%;
	animation-delay: 0.5s, 1.3s;
}
.pill-tr {
	top: 11%;
	right: 3%;
	animation-delay: 0.6s, 1.6s;
}
.pill-ml {
	top: 46%;
	left: -1%;
	animation-delay: 0.7s, 1.9s;
}
.pill-mr {
	top: 42%;
	right: -1%;
	animation-delay: 0.8s, 2.2s;
}
.pill-bl {
	bottom: 14%;
	left: 6%;
	animation-delay: 0.9s, 2.5s;
}
.pill-br {
	bottom: 11%;
	right: 6%;
	animation-delay: 1s, 2.8s;
}

@keyframes pillIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.92);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@keyframes pillDrift {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Hide some pills on smaller screens to avoid crowding */
@media (max-width: 1180px) {
	.pill-ml,
	.pill-mr {
		display: none;
	}
}
@media (max-width: 820px) {
	.hero-pills {
		display: none;
	}
}

/* Centered hero content */
.hero-center {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: 0 auto;
}
.hero-center .eyebrow {
	margin-bottom: 34px;
}

.hero h1 {
	margin-bottom: 28px;
	letter-spacing: -0.04em;
}
.hero h1 .line {
	display: block;
	opacity: 0;
	transform: translateY(28px);
	animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero h1 .line-1 {
	animation-delay: 0.1s;
}
.hero h1 .line-2 {
	animation-delay: 0.32s;
}
.hero h1 .accent {
	position: relative;
	color: var(--green-500);
	display: inline-block;
}
.hero h1 .accent::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8%;
	height: 13%;
	background: var(--accent-yellow);
	z-index: -1;
	border-radius: 4px;
	transform: scaleX(0);
	transform-origin: left;
	animation: underline 1s cubic-bezier(0.2, 0.7, 0.2, 1) 1.4s forwards;
}
@keyframes rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes underline {
	to {
		transform: scaleX(1);
	}
}

.hero p.lead {
	margin: 0 auto 38px;
	max-width: 600px;
	opacity: 0;
	animation: rise 0.9s ease 0.65s forwards;
}
.hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	animation: rise 0.9s ease 0.85s forwards;
}
.hero-trust {
	display: flex;
	gap: 24px 28px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 46px;
	color: var(--ink-500);
	font-size: 0.88rem;
	opacity: 0;
	animation: rise 0.9s ease 1.05s forwards;
}
.hero-trust .check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.hero-trust .check svg {
	flex-shrink: 0;
}

/* ============================================================
   TRUSTED BY (marquee)
   ============================================================ */
.trusted {
	padding: 54px 0;
	background: var(--white);
	border-top: 1px solid var(--ink-150);
	border-bottom: 1px solid var(--ink-150);
}
.trusted-label {
	text-align: center;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink-500);
	margin-bottom: 28px;
}
.trusted-label b {
	color: var(--green-600);
}
.marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
}
.marquee-track {
	display: flex;
	gap: 64px;
	width: max-content;
	animation: marquee 50s linear infinite;
}
.marquee:hover .marquee-track {
	animation-play-state: paused;
}
@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.brand-chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 22px;
	border-radius: var(--radius-md);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.08rem;
	letter-spacing: -0.01em;
	color: var(--ink-700);
	transition:
		color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
	flex-shrink: 0;
}
.brand-chip:hover {
	color: var(--green-600);
	background: var(--green-50);
	transform: translateY(-2px);
}
.brand-chip .glyph {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--white);
	background: var(--ink-800);
}
.brand-chip[data-tone='1'] .glyph {
	background: linear-gradient(135deg, #60874b, #788e49);
}
.brand-chip[data-tone='2'] .glyph {
	background: linear-gradient(135deg, #231f20, #4a494a);
}
.brand-chip[data-tone='3'] .glyph {
	background: linear-gradient(135deg, #ac4d9d, #c44884);
}
.brand-chip[data-tone='4'] .glyph {
	background: linear-gradient(135deg, #f6a31d, #f3ea17);
	color: #5c3d00;
}
.brand-chip[data-tone='5'] .glyph {
	background: linear-gradient(135deg, #788e49, #a3c77f);
}
.brand-chip[data-tone='6'] .glyph {
	background: linear-gradient(135deg, #4a494a, #788e49);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
	background: var(--ink-900);
	color: var(--white);
	padding: clamp(60px, 7vw, 90px) 0;
	position: relative;
	overflow: hidden;
}
.stats::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			600px 300px at 0% 0%,
			rgba(96, 135, 75, 0.25),
			transparent 60%
		),
		radial-gradient(
			600px 300px at 100% 100%,
			rgba(243, 234, 23, 0.1),
			transparent 60%
		);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	position: relative;
	z-index: 1;
}
@media (max-width: 780px) {
	.stats-grid {
		grid-template-columns: unset;
		grid-auto-rows:auto;
		gap: 32px;
	}
}
.stat .num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1;
	background: var(--grad-leaf);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -0.03em;
}
.stat .label {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 960px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.svc-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--ink-150);
	border-radius: var(--radius-lg);
	padding: 32px 28px 28px;
	overflow: hidden;
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}
.svc-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		400px 200px at var(--mx, 50%) 0%,
		rgba(96, 135, 75, 0.08),
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.svc-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: rgba(96, 135, 75, 0.4);
}
.svc-card:hover::before {
	opacity: 1;
}
.svc-card .icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: var(--green-100);
	color: var(--green-600);
	margin-bottom: 22px;
}
.svc-card h3 {
	margin-bottom: 10px;
}
.svc-card p {
	color: var(--ink-700);
	font-size: 0.97rem;
	margin-bottom: 0;
}
.svc-card .tag {
	display: inline-block;
	margin-top: 18px;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green-600);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
	background: var(--ink-900);
	color: var(--white);
}
.how h2 {
	color: var(--white);
}
.how .lead {
	color: rgba(255, 255, 255, 0.7);
}
.how .eyebrow {
	background: rgba(96, 135, 75, 0.18);
	color: var(--green-300);
	border-color: rgba(96, 135, 75, 0.3);
}
.how .eyebrow .dot {
	background: var(--green-300);
	box-shadow: 0 0 0 4px rgba(163, 199, 127, 0.18);
}

.steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	margin-top: 52px;
	counter-reset: step;
}
@media (max-width: 980px) {
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.steps {
		grid-template-columns: 1fr;
	}
}

.step {
	position: relative;
	padding: 28px 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	transition:
		background 0.25s ease,
		transform 0.25s ease,
		border-color 0.25s ease;
}
.step:hover {
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-4px);
	border-color: rgba(96, 135, 75, 0.5);
}
.step .num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--green-300);
	letter-spacing: -0.04em;
	margin-bottom: 14px;
}
.step h3 {
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 8px;
}
.step p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.92rem;
	margin: 0;
}

/* ============================================================
   ROUTES THAT WORK
   ============================================================ */
.routes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 18px;
	margin-top: 8px;
}
.route {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 26px;
	background: var(--white);
	border: 1px solid var(--ink-150);
	border-radius: var(--radius-md);
	transition:
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.route:hover {
	border-color: var(--green-500);
	transform: translateX(4px);
	box-shadow: var(--shadow-sm);
}
.route .from,
.route .to {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	background: var(--green-50);
	color: var(--green-600);
}
.route .arrow {
	color: var(--ink-300);
	font-size: 1.4rem;
}
.route .check {
	margin-left: auto;
	color: var(--green-500);
}

/* ============================================================
   WHO WE HELP
   ============================================================ */
.who-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 8px;
}
@media (max-width: 980px) {
	.who-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.who-grid {
		grid-template-columns: 1fr;
	}
}
.who-card {
	position: relative;
	padding: 26px 22px;
	border-radius: var(--radius-md);
	background: var(--white);
	border: 1px solid var(--ink-150);
	transition:
		transform 0.2s ease,
		border-color 0.2s ease;
}
.who-card:hover {
	transform: translateY(-3px);
	border-color: var(--green-500);
}
.who-card .ico {
	font-size: 1.6rem;
	margin-bottom: 14px;
	color: var(--green-500);
}
.who-card h4 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	margin: 0 0 4px;
	color: var(--ink-900);
}
.who-card p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--ink-500);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
	background: linear-gradient(135deg, #1f2a16 0%, #2c3d1f 50%, #60874b 130%);
	color: var(--white);
	border-radius: var(--radius-xl);
	padding: clamp(40px, 6vw, 72px);
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: 40px;
	align-items: center;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	max-width: calc(var(--maxw) - var(--gutter) * 2);
}
.cta-band::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(243, 234, 23, 0.18) 0%,
		transparent 70%
	);
	border-radius: 50%;
}
.cta-band::after {
	content: '';
	position: absolute;
	left: -60px;
	bottom: -60px;
	width: 280px;
	height: 280px;
	background: radial-gradient(
		circle,
		rgba(163, 199, 127, 0.22) 0%,
		transparent 70%
	);
	border-radius: 50%;
}
.cta-band h2 {
	color: var(--white);
	position: relative;
}
.cta-band h2 em {
	color: var(--accent-yellow);
	font-style: normal;
}
.cta-band p {
	color: rgba(255, 255, 255, 0.8);
	position: relative;
	margin-bottom: 0;
}
.cta-actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
}
.cta-actions .btn-primary {
	background: var(--accent-yellow);
	color: var(--ink-900);
	box-shadow:
		0 6px 0 0 var(--green-600),
		0 8px 22px rgba(0, 0, 0, 0.25);
}
.cta-actions .btn-primary:hover {
	box-shadow:
		0 8px 0 0 var(--green-600),
		0 12px 30px rgba(0, 0, 0, 0.28);
}
.cta-actions .btn-secondary {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.3);
}
.cta-actions .btn-secondary:hover {
	border-color: var(--white);
	color: var(--white);
}
@media (max-width: 780px) {
	.cta-band {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
	background: var(--white);
}
.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 60px;
}
@media (max-width: 880px) {
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	border: 1px solid var(--ink-150);
	border-radius: var(--radius-md);
	background: var(--paper);
	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}
.faq-item[open] {
	border-color: var(--green-500);
	background: var(--white);
}
.faq-item summary {
	list-style: none;
	padding: 22px 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.02rem;
	color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary::after {
	content: '';
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ink-100)
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>")
		center/14px no-repeat;
	transition:
		transform 0.25s ease,
		background-color 0.2s ease;
}
.faq-item[open] summary::after {
	transform: rotate(45deg);
	background-color: var(--green-100);
}
.faq-item .answer {
	padding: 0 24px 24px;
	color: var(--ink-700);
	font-size: 0.97rem;
}
.faq-item .answer p:last-child {
	margin-bottom: 0;
}
.faq-item .answer a {
	color: var(--green-600);
	font-weight: 600;
	border-bottom: 1px solid var(--green-300);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
	background: var(--ink-900);
	color: rgba(255, 255, 255, 0.72);
	padding: 80px 0 0;
	position: relative;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
	gap: 48px;
	padding-bottom: 60px;
}
@media (max-width: 880px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}
@media (max-width: 520px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
.foot-brand p {
	font-size: 0.95rem;
	margin: 18px 0 24px;
	max-width: 42ch;
}
.foot-brand img {
	height: 44px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}
.foot-col h5 {
	font-family: var(--font-display);
	color: var(--white);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 18px;
}
.foot-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.foot-col a {
	font-size: 0.92rem;
	transition: color 0.2s ease;
}
.foot-col a:hover {
	color: var(--green-300);
}

.licenses {
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 32px 0;
}
.licenses-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 32px;
	align-items: start;
}
@media (max-width: 680px) {
	.licenses-inner {
		grid-template-columns: 1fr;
	}
}
.licenses h5 {
	font-family: var(--font-display);
	color: var(--white);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 6px 0 0;
}
.license-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.license-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 0.88rem;
	line-height: 1.55;
}
.license-item .badge {
	flex-shrink: 0;
	background: var(--green-100);
	color: var(--green-600);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	padding: 6px 10px;
	border-radius: 6px;
	margin-top: 2px;
}
.license-item .meta b {
	color: var(--white);
	font-weight: 600;
}
.license-disclaimer {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 14px;
	max-width: 80ch;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 24px 0;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.5);
}
.socials {
	display: flex;
	gap: 12px;
}
.socials a {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.85);
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}
.socials a:hover {
	background: var(--green-500);
	color: var(--white);
	transform: translateY(-2px);
}

/* Scroll-triggered reveals */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

/* Decorative SVG accents */
.deco-blob {
	position: absolute;
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}

.hide {
	display: none;
}
