/* =============================================================
   style.css — Fill4Food Marketing Site
   Brand: #1B6B3A (deep green), #E8F5ED (light green)
   Fonts: Fredoka (display), Nunito (body)
   ============================================================= */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--green: #1b6b3a;
	--green-mid: #2a8a4d;
	--green-dark: #134d2a;
	--green-light: #e8f5ed;
	--green-pale: #f2fbf5;
	--green-border: #b8ddc7;
	--accent: #4caf78;
	--white: #ffffff;
	--off-white: #f8faf8;
	--text: #1a1a1a;
	--text-muted: #6b7280;
	--text-light: #9ca3af;
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 6px 28px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
	--transition: 0.2s ease;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: "Nunito", sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: "Fredoka", sans-serif;
	font-weight: 600;
	line-height: 1.15;
}

a {
	text-decoration: none;
	color: inherit;
}
img {
	display: block;
	max-width: 100%;
}
button {
	cursor: pointer;
	font-family: inherit;
	border: none;
}
ul {
	list-style: none;
}

/* ── Container ────────────────────────────────────────────── */
.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
	padding: 100px 0;
}

.section-label {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--green);
	background: var(--green-light);
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.section-label.light {
	color: var(--green-light);
	background: rgba(255, 255, 255, 0.15);
}

.section-title {
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--text);
	margin-bottom: 16px;
	text-align: center;
}

.section-sub {
	max-width: 560px;
	margin: 0 auto 56px;
	color: var(--text-muted);
	font-size: 1.05rem;
	text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-solid {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--green);
	color: white;
	padding: 11px 22px;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-size: 0.9rem;
	transition:
		background var(--transition),
		transform var(--transition),
		box-shadow var(--transition);
	box-shadow: 0 2px 8px rgba(27, 107, 58, 0.3);
}
.btn-solid:hover {
	background: var(--green-mid);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(27, 107, 58, 0.35);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	color: var(--green);
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-size: 0.9rem;
	border: 2px solid var(--green-border);
	transition:
		background var(--transition),
		border-color var(--transition);
}
.btn-outline:hover {
	background: var(--green-light);
	border-color: var(--green);
}

.btn-outline-dark {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	color: var(--text);
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-size: 0.9rem;
	border: 2px solid #d1d5db;
	transition:
		border-color var(--transition),
		color var(--transition),
		background var(--transition);
}
.btn-outline-dark:hover {
	border-color: var(--green);
	color: var(--green);
	background: var(--green-pale);
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: white;
	color: var(--green);
	padding: 13px 28px;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-size: 1rem;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	color: white;
	padding: 12px 26px;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-size: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.55);
	transition:
		background var(--transition),
		border-color var(--transition);
}
.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: white;
}

.btn-lg {
	padding: 14px 30px;
	font-size: 1rem;
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}

.site-nav.scrolled {
	border-color: var(--green-border);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.nav-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
	height: 68px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-logo {
	font-family: "Fredoka", sans-serif;
	font-size: 1.65rem;
	color: var(--green);
	letter-spacing: -0.3px;
	flex-shrink: 0;
}
.nav-logo span {
	color: var(--accent);
}

.nav-links {
	display: flex;
	gap: 2px;
	flex: 1;
}

.nav-links a {
	padding: 7px 14px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--text-muted);
	transition:
		background var(--transition),
		color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
	background: var(--green-light);
	color: var(--green);
}

.nav-cta {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-shrink: 0;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
	background: none;
	margin-left: auto;
}
.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
	display: none;
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	background: white;
	border-bottom: 2px solid var(--green-light);
	padding: 16px 24px 24px;
	flex-direction: column;
	gap: 4px;
	z-index: 199;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.mobile-nav.open {
	display: flex;
}
.mobile-nav a {
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	color: var(--text);
	transition: background var(--transition);
}
.mobile-nav a:hover {
	background: var(--green-light);
	color: var(--green);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(160deg, var(--green-pale) 0%, #d4edd9 50%, var(--green-light) 100%);
	padding-top: calc(2rem + 68px); /* banner (2rem) + nav height */
}

/* Decorative background blobs */
.hero-bg-blobs {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
}
.blob-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #a8dbb8, transparent 70%);
	top: -120px;
	right: -100px;
	animation: blobFloat 12s ease-in-out infinite;
}
.blob-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #c5e8d0, transparent 70%);
	bottom: -80px;
	left: -60px;
	animation: blobFloat 16s ease-in-out infinite reverse;
}
@keyframes blobFloat {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -20px) scale(1.04);
	}
	66% {
		transform: translate(-20px, 15px) scale(0.97);
	}
}

.hero-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 80px 24px 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

/* Hero text */
.hero-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--green);
	background: rgba(27, 107, 58, 0.12);
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 20px;
}

.hero-headline {
	font-size: clamp(2.6rem, 5vw, 4rem);
	color: var(--text);
	margin-bottom: 20px;
	line-height: 1.08;
}
.hero-headline em {
	font-style: normal;
	color: var(--green);
	position: relative;
}
/* Underline decoration on "feed" */
.hero-headline em::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.hero-sub {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 480px;
	margin-bottom: 36px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}

.hero-proof {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.proof-item {
	text-align: left;
}
.proof-item strong {
	display: block;
	font-family: "Fredoka", sans-serif;
	font-size: 1.45rem;
	color: var(--green);
	line-height: 1;
}
.proof-item span {
	font-size: 0.78rem;
	color: var(--text-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.proof-divider {
	width: 1px;
	height: 36px;
	background: var(--green-border);
}

/* Bottle visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.bottle-mockup {
	position: relative;
	width: 260px;
}

.bottle-svg {
	width: 160px;
	margin: 0 auto;
	display: block;
	filter: drop-shadow(0 20px 40px rgba(27, 107, 58, 0.3));
	animation: bottleFloat 6s ease-in-out infinite;
}
@keyframes bottleFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}

/* Floating info badges */
.badge-float {
	position: absolute;
	background: white;
	border-radius: var(--radius);
	padding: 10px 14px;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	font-size: 0.8rem;
	line-height: 1.3;
	animation: badgePulse 4s ease-in-out infinite;
}
.badge-float strong {
	font-size: 0.85rem;
}
.badge-float small {
	color: var(--text-muted);
}

.badge-icon {
	font-size: 1.3rem;
}

.badge-top {
	top: 20px;
	left: -60px;
	animation-delay: 0s;
}
.badge-mid {
	top: 48%;
	right: -70px;
	transform: translateY(-50%);
	animation-delay: 1.3s;
}
.badge-bot {
	bottom: 40px;
	left: -50px;
	animation-delay: 2.6s;
}

@keyframes badgePulse {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}
.badge-mid {
	animation-name: badgePulseMid;
}
@keyframes badgePulseMid {
	0%,
	100% {
		transform: translateY(-50%);
	}
	50% {
		transform: translateY(calc(-50% - 5px));
	}
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-section {
	background: var(--off-white);
}

.steps-grid {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 960px;
	margin: 0 auto;
}

.step-card {
	flex: 1;
	background: white;
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	box-shadow: var(--shadow);
	border-top: 4px solid var(--green);
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease,
		box-shadow var(--transition);
}
.step-card.revealed {
	opacity: 1;
	transform: translateY(0);
}
.step-card:hover {
	box-shadow: var(--shadow-md);
}

.step-number {
	font-family: "Fredoka", sans-serif;
	font-size: 2.2rem;
	color: var(--green-light);
	line-height: 1;
	margin-bottom: 10px;
	/* outlined look */
	-webkit-text-stroke: 2px var(--green-border);
	color: transparent;
}

.step-icon {
	font-size: 2rem;
	margin-bottom: 14px;
}

.step-card h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: var(--text);
}

.step-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.65;
}

.step-arrow {
	font-size: 1.8rem;
	color: var(--green-border);
	flex-shrink: 0;
	margin-bottom: 20px;
}

/* Loop pill */
.loop-cta {
	text-align: center;
	margin-top: 48px;
}

.loop-pill {
	display: inline-block;
	background: var(--green);
	color: white;
	border-radius: 999px;
	padding: 12px 28px;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 16px rgba(27, 107, 58, 0.3);
}

/* ════════════════════════════════════════════
   AD SURFACES
════════════════════════════════════════════ */
.surfaces-section {
	background: white;
}

.surfaces-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.surface-card {
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	border: 2px solid var(--green-border);
	transition:
		border-color var(--transition),
		transform var(--transition),
		box-shadow var(--transition);
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}
.surface-card.revealed {
	opacity: 1;
	transform: translateY(0);
}
.surface-card:hover {
	border-color: var(--green);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.surface-icon-wrap {
	width: 56px;
	height: 56px;
	background: var(--green-light);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.surface-icon {
	font-size: 1.6rem;
}

.surface-card h3 {
	font-size: 1.2rem;
	margin-bottom: 6px;
}

.surface-tag {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 14px;
}

.surface-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 20px;
}

.surface-stats {
	border-top: 1px solid var(--green-light);
	padding-top: 16px;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.surface-stats li {
	font-size: 0.82rem;
	color: var(--text-muted);
}
.surface-stats li strong {
	color: var(--text);
}

.surface-cpm {
	font-size: 0.88rem;
	color: var(--text-muted);
	padding: 8px 14px;
	background: var(--green-pale);
	border-radius: var(--radius-sm);
	display: inline-block;
}
.surface-cpm strong {
	color: var(--green);
	font-size: 1rem;
}

/* ════════════════════════════════════════════
   IMPACT
════════════════════════════════════════════ */
.impact-section {
	background: var(--green);
	color: white;
}

.impact-section .section-title.light,
.impact-section .section-title {
	color: white;
}
.impact-section .section-sub {
	color: rgba(255, 255, 255, 0.75);
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 60px;
}

.impact-stat {
	background: rgba(255, 255, 255, 0.06);
	padding: 36px 28px;
	text-align: center;
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
}
.impact-stat.revealed {
	opacity: 1;
	transform: translateY(0);
}
.impact-stat:hover {
	background: rgba(255, 255, 255, 0.12);
}

.impact-number {
	font-family: "Fredoka", sans-serif;
	font-size: 2.8rem;
	color: white;
	line-height: 1;
	margin-bottom: 8px;
}

.impact-desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	line-height: 1.45;
}

.impact-quote {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}
.impact-quote blockquote {
	font-size: 1.15rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 12px;
	line-height: 1.65;
}
.impact-quote cite {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	font-style: normal;
	font-weight: 700;
}

/* ════════════════════════════════════════════
   FOR BRANDS
════════════════════════════════════════════ */
.brands-section {
	background: var(--off-white);
}

.brands-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.brands-text .section-title {
	text-align: left;
}

.brand-benefits {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 32px 0;
}

.brand-benefits li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	opacity: 0;
	transform: translateX(-16px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
}
.brand-benefits li.revealed {
	opacity: 1;
	transform: translateX(0);
}

.benefit-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: var(--green-light);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-benefits li strong {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 4px;
}
.brand-benefits li p {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.55;
}

/* Stat card */
.brands-card-wrap {
	position: relative;
}

.brand-stat-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-lg);
	border-top: 5px solid var(--green);
}

.bsc-header {
	font-family: "Fredoka", sans-serif;
	font-size: 1rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-size: 0.78rem;
	font-weight: 600;
}

.bsc-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--green-light);
	font-size: 0.9rem;
}
.bsc-row span {
	color: var(--text-muted);
}
.bsc-row strong {
	color: var(--text);
	font-size: 0.95rem;
}

.bsc-divider {
	height: 2px;
	background: var(--green-light);
	margin: 8px 0;
}

.bsc-highlight span {
	font-weight: 700;
	color: var(--green);
}
.bsc-highlight strong {
	color: var(--green);
	font-size: 1rem;
}

.bsc-tag {
	margin-top: 16px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--text-light);
}

/* Surface badge group */
.surface-badge-group {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.sbadge {
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
}
.sbadge-pkg {
	background: #dcfce7;
	color: #166534;
}
.sbadge-mach {
	background: #dbeafe;
	color: #1e40af;
}
.sbadge-app {
	background: #fef9c3;
	color: #854d0e;
}

/* ════════════════════════════════════════════
   COMMUNITY
════════════════════════════════════════════ */
.community-section {
	background: white;
}

.community-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 52px;
}

.community-card {
	background: var(--green-pale);
	border-radius: var(--radius-lg);
	padding: 28px 22px;
	text-align: center;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease,
		box-shadow 0.2s ease;
}
.community-card.revealed {
	opacity: 1;
	transform: translateY(0);
}
.community-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.cc-icon {
	font-size: 2.2rem;
	margin-bottom: 14px;
}

.community-card h3 {
	font-size: 1.05rem;
	margin-bottom: 10px;
	color: var(--green-dark);
}

.community-card p {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.community-cta {
	text-align: center;
	background: var(--green-light);
	border-radius: var(--radius-lg);
	padding: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.community-cta p {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--green-dark);
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
	background: linear-gradient(
		135deg,
		var(--green-dark) 0%,
		var(--green) 60%,
		var(--green-mid) 100%
	);
	color: white;
	padding: 100px 0;
	text-align: center;
}

.cta-banner h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
	color: white;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.05rem;
	max-width: 560px;
	margin: 0 auto 40px;
}

.cta-banner-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
	background: #0f3d20;
	color: rgba(255, 255, 255, 0.7);
	padding: 72px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 56px;
}

.footer-logo {
	font-family: "Fredoka", sans-serif;
	font-size: 1.8rem;
	color: white;
	margin-bottom: 12px;
}
.footer-logo span {
	color: var(--accent);
}

.footer-brand p {
	font-size: 0.85rem;
	line-height: 1.65;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 12px;
}
.footer-social a {
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	transition:
		background var(--transition),
		color var(--transition);
}
.footer-social a:hover {
	background: var(--green-mid);
	color: white;
}

.footer-col h4 {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: white;
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 10px;
	transition: color var(--transition);
}
.footer-col a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
	display: flex;
	gap: 24px;
}
.footer-legal a {
	color: rgba(255, 255, 255, 0.35);
	transition: color var(--transition);
}
.footer-legal a:hover {
	color: white;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.surfaces-grid {
		grid-template-columns: 1fr 1fr;
	}
	.community-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.brands-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.brands-card-wrap {
		max-width: 480px;
	}
}

@media (max-width: 820px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 60px 24px;
	}
	.hero-visual {
		display: none;
	}
	.hero-sub {
		margin-left: auto;
		margin-right: auto;
	}
	.hero-actions {
		justify-content: center;
	}
	.hero-proof {
		justify-content: center;
	}
	.steps-grid {
		flex-direction: column;
	}
	.step-arrow {
		transform: rotate(90deg);
	}
	.impact-grid {
		grid-template-columns: 1fr 1fr;
	}
	.nav-links {
		display: none;
	}
	.nav-cta {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.surfaces-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.section {
		padding: 72px 0;
	}
	.community-grid {
		grid-template-columns: 1fr;
	}
	.impact-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.community-cta {
		flex-direction: column;
		text-align: center;
	}
	.cta-banner-actions {
		flex-direction: column;
		align-items: center;
	}
}

