/* ============================================================
   MUNCH SPROUTS — CONSOLIDATED DESIGN SYSTEM  v2.0
   Single stylesheet for all 7 pages
   ============================================================ */

/* ── 1. RESET & CSS VARIABLES ─────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--purple-light: #f4effd;
	--purple-mid: #d4b8f5;
	--purple: #7e5ce6;
	--purple-dark: #3b197a;
	--green-light: #ddf5e7;
	--green: #4caf50;
	--green-dark: #2e7d32;
	--amber: #f59e0b;
	--red: #ef4444;
	--pink: #d53696;
	--pink-light: #fde3ec;
	--orange-light: #fce8d2;
	--blue-light: #ddeeff;
	--charcoal: #1a1a1a;
	--mid-grey: #6b7280;
	--body: #404040;
	--muted: #737373;
	--border: rgba(0, 0, 0, 0.07);
	--warm-white: #f9f8f6;
	--light-grey: #f8f8f8;
	--white: #fff;
}

/* ── 2. BASE ──────────────────────────────────────────────── */
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: var(--body);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* ── 3. NAVIGATION ────────────────────────────────────────── */
.nav-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-inner {
	width: 100%;
	max-width: 1100px;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(224, 197, 250, 0.5);
	border-radius: 999px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 24px rgba(126, 92, 230, 0.08);
	transition: background 0.2s;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--charcoal);
}
.nav-logo img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}
.nav-logo span {
	font-weight: 800;
	font-size: 1.05rem;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}
.nav-links a {
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--charcoal);
	padding: 6px 12px;
	border-radius: 999px;
	transition:
		background 0.2s,
		color 0.2s;
}
.nav-links a:hover {
	background: var(--purple-light);
	color: var(--purple);
}
.nav-links a.active {
	background: var(--purple-light);
	color: var(--purple);
	font-weight: 700;
}
.nav-links a.pro {
	color: var(--amber);
	font-weight: 700;
}
.nav-cta {
	background: var(--purple);
	color: white;
	padding: 8px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition:
		background 0.2s,
		transform 0.15s;
}
.nav-cta:hover {
	background: var(--purple-dark);
	transform: scale(1.04);
}
.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--charcoal);
}

/* ── 4. MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(10px);
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	padding-top: 80px;
	padding-bottom: 40px;
	overflow-y: auto;
}
.mobile-menu.open {
	display: flex;
}
.mobile-menu a {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--charcoal);
	text-decoration: none;
	padding: 12px 32px;
	border-radius: 16px;
	transition: background 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
	background: var(--purple-light);
	color: var(--purple);
}
.mobile-menu .close-btn {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 2rem;
	color: var(--muted);
}

/* ── 5. SHARED COMPONENTS ─────────────────────────────────── */


/* Store Badges */
.badge-pill {
	background: white;
	border-radius: 10px;
	padding: 5px 12px;
	display: inline-flex;
	align-items: center;
	transition: opacity 0.2s;
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.badge-pill:hover {
	opacity: 0.8;
}
.badge-pill img {
	height: 38px;
	width: auto;
	display: block;
}

.app-badges {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.store-badge {
	height: 44px;
	width: auto;
	display: block;
	transition:
		transform 0.15s,
		opacity 0.15s;
	border-radius: 8px;
}
.store-badge:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}
.store-badge-lg {
	height: 54px;
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--purple);
	color: white;
	font-weight: 700;
	font-size: 1rem;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s,
		box-shadow 0.2s;
	box-shadow: 0 8px 24px rgba(126, 92, 230, 0.3);
}
.btn-primary:hover {
	background: var(--purple-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(126, 92, 230, 0.4);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	color: var(--charcoal);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 13px 24px;
	border-radius: 999px;
	text-decoration: none;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	transition:
		border-color 0.2s,
		transform 0.15s;
}
.btn-secondary:hover {
	border-color: var(--purple-mid);
	color: var(--purple);
	transform: translateY(-2px);
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: white;
	color: var(--purple);
	font-weight: 700;
	font-size: 1rem;
	padding: 15px 30px;
	border-radius: 999px;
	text-decoration: none;
	transition:
		transform 0.15s,
		box-shadow 0.2s;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: white;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	border: 2px solid rgba(255, 255, 255, 0.5);
	transition:
		border-color 0.2s,
		background 0.2s;
}
.btn-outline-white:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.1);
}

.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: white;
	font-weight: 700;
	font-size: 1rem;
	padding: 15px 32px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
	transition:
		transform 0.15s,
		box-shadow 0.2s;
}
.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
}

/* Fade animations */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}
.fade-up-delay-1 {
	transition-delay: 0.1s;
}
.fade-up-delay-2 {
	transition-delay: 0.2s;
}
.fade-up-delay-3 {
	transition-delay: 0.3s;
}
.fade-up-delay-4 {
	transition-delay: 0.4s;
}

/* ── 6. SHARED INTERIOR PAGE HERO ─────────────────────────── */
.hero {
	padding: 148px 24px 88px;
	text-align: center;
	background: var(--white);
}
.hero-inner {
	max-width: 600px;
	margin: 0 auto;
}
.hero h1 {
	font-size: clamp(2.4rem, 5.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: var(--charcoal);
	margin-bottom: 20px;
}
.hero h1 em {
	font-style: normal;
	color: var(--purple);
}
.hero-lead {
	font-size: 1.05rem;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.hero-badges {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── 7. GUIDE HUB ─────────────────────────────────────────── */
.guide-hub {
	background: var(--warm-white);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 72px 24px;
}
.hub-inner {
	max-width: 1060px;
	margin: 0 auto;
}
.hub-header {
	margin-bottom: 44px;
}
.hub-header h2 {
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	font-weight: 800;
	color: var(--charcoal);
	letter-spacing: -0.01em;
	margin-top: 8px;
}
.hub-header p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.7;
	margin-top: 6px;
	max-width: 440px;
}
.hub-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.hub-card {
	background: white;
	border-radius: 18px;
	padding: 22px 20px 18px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border: 1px solid var(--border);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	position: relative;
	overflow: hidden;
}
.hub-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	border-radius: 18px 18px 0 0;
	background: var(--hue, var(--purple-mid));
}
.hub-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.hub-num {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-bottom: 4px;
}
.hub-card h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.3;
}
.hub-card p {
	font-size: 0.76rem;
	color: var(--muted);
	line-height: 1.5;
	flex: 1;
	margin: 0;
}
.hub-arrow {
	font-size: 0.76rem;
	font-weight: 700;
	color: var(--purple);
	margin-top: 8px;
}

/* ── 8. CONTENT SECTIONS ──────────────────────────────────── */
.content-section {
	padding: 88px 24px;
}
.content-section.alt {
	background: var(--warm-white);
}
.content-inner {
	max-width: 700px;
	margin: 0 auto;
}
.content-section h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.3rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: var(--charcoal);
	margin-bottom: 28px;
}
.content-section p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--muted);
	margin-bottom: 18px;
}
.content-section p:last-child {
	margin-bottom: 0;
}

/* ── 9. SHARED CONTENT PATTERNS ───────────────────────────── */

/* Advisory box */
.advisory {
	margin-top: 28px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.advisory p {
	font-size: 0.84rem;
	color: #92400e;
	line-height: 1.65;
	margin: 0;
}
.advisory strong {
	color: #78350f;
}

/* Danger / safety callouts */
.danger-callout {
	background: #fee2e2;
	border-radius: 12px;
	padding: 16px 20px;
	margin-top: 22px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.danger-callout p {
	font-size: 0.84rem;
	color: #991b1b;
	line-height: 1.65;
	margin: 0;
}
.danger-callout strong {
	color: #7f1d1d;
}

.safety-flag {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-top: 20px;
}
.safety-flag p {
	font-size: 0.84rem;
	color: #991b1b;
	line-height: 1.65;
	margin: 0;
}
.safety-flag strong {
	color: #7f1d1d;
}

/* Allergen tags */
.allergen-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
}
.allergen-tag {
	background: var(--purple-light);
	color: var(--purple);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
}
.sign-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 14px;
}
.sign-item {
	font-size: 0.82rem;
	color: var(--muted);
	background: var(--warm-white);
	padding: 10px 14px;
	border-radius: 8px;
	line-height: 1.4;
}

/* Resource links */
.resource-link {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}
.resource-link:last-child {
	border-bottom: none;
}
.resource-link:hover {
	opacity: 0.65;
}
.resource-org {
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 999px;
	flex-shrink: 0;
	margin-top: 3px;
	white-space: nowrap;
}
.resource-link h3 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 3px;
}
.resource-link p {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
}
.resource-link-label {
	font-size: 0.76rem;
	font-weight: 700;
	color: var(--purple);
	margin-top: 5px;
	display: block;
}

/* Timeline entries */
.tl-entry {
	display: flex;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--border);
}
.tl-entry:last-child {
	border-bottom: none;
}
.tl-age {
	font-family: "Caveat", cursive;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--purple);
	flex-shrink: 0;
	width: 64px;
	line-height: 1.2;
	padding-top: 2px;
}
.tl-entry h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 6px;
}
.tl-entry p {
	font-size: 0.84rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 10px;
}
.tl-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.tl-chip {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--muted);
	background: var(--warm-white);
	border: 1px solid var(--border);
	padding: 3px 10px;
	border-radius: 999px;
}

/* Avoid rows */
.avoid-cat-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 20px 0 12px;
}
.avoid-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}
.avoid-row:last-of-type {
	border-bottom: none;
}
.avoid-badge {
	font-size: 0.68rem;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 999px;
	flex-shrink: 0;
	margin-top: 2px;
}
.avoid-badge.r {
	background: #fee2e2;
	color: #dc2626;
}
.avoid-badge.a {
	background: #fef3c7;
	color: #d97706;
}
.avoid-row h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 2px;
}
.avoid-row p {
	font-size: 0.8rem;
	color: var(--muted);
	margin: 0;
}

/* ── 10. SHARED ACCORDION PATTERN ─────────────────────────── */
.accordion-zone {
	border-top: 1px solid var(--border);
}
.zone-header {
	max-width: 700px;
	margin: 0 auto;
	padding: 72px 24px 52px;
}
.zone-header h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--charcoal);
	letter-spacing: -0.01em;
	margin-top: 10px;
}
.zone-header p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.7;
	margin-top: 8px;
}
.accordion-list {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 24px 80px;
}
.accordion-item {
	border-top: 1px solid var(--border);
}
.accordion-item:last-child {
	border-bottom: 1px solid var(--border);
}
.accordion-trigger {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	padding: 26px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	text-align: left;
}
.accordion-trigger:hover .acc-title {
	color: var(--purple);
}
.acc-label {
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	display: block;
	margin-bottom: 4px;
}
.acc-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.3;
	transition: color 0.2s;
}
.acc-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--warm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		transform 0.35s;
}
.accordion-trigger[aria-expanded="true"] .acc-icon {
	background: var(--purple-light);
	transform: rotate(45deg);
}
.accordion-trigger[aria-expanded="true"] .acc-title {
	color: var(--purple);
}
.accordion-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-body.open {
	grid-template-rows: 1fr;
}
.accordion-body > div {
	overflow: hidden;
}
.acc-content {
	padding-bottom: 40px;
}

/* ── 11. CTA SECTION ──────────────────────────────────────── */
.cta-section {
	background: linear-gradient(
		150deg,
		var(--purple-dark) 0%,
		#5a35b8 60%,
		#7e5ce6 100%
	);
	color: white;
	padding: 96px 24px;
	text-align: center;
}
.cta-inner {
	max-width: 560px;
	margin: 0 auto;
}
.cta-section h2 {
	font-size: clamp(1.9rem, 4vw, 2.7rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.cta-section p {
	font-size: 1rem;
	opacity: 0.75;
	max-width: 420px;
	margin: 0 auto 40px;
	line-height: 1.75;
}
.cta-badges {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.cta-badge-wrap {
	display: flex;
	align-items: center;
	transition:
		opacity 0.2s,
		transform 0.15s;
}
.cta-badge-wrap:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}
.cta-badge-wrap img {
	height: 40px;
	width: auto;
	display: block;
}
.cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 1rem;
}

/* ── 12. FOOTER ───────────────────────────────────────────── */
.site-footer {
	--sf-bg: #0a0a0b;
	--sf-fg: #ffffff;
	--sf-muted: rgba(255, 255, 255, 0.55);
	--sf-faint: rgba(255, 255, 255, 0.35);
	--sf-border: rgba(255, 255, 255, 0.08);
	--sf-accent: #a78bfa;
	--sf-max: 1100px;
	--sf-pad-x: 24px;

	background: var(--sf-bg);
	color: var(--sf-fg);
	-webkit-font-smoothing: antialiased;
}
.site-footer__inner {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 0 var(--sf-pad-x) 48px;
}
.site-footer__divider {
	height: 1px;
	background: var(--sf-border);
}
.site-footer__top {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-top: 48px;
}
.site-footer__brand {
	max-width: 300px;
}
.site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	margin-bottom: 16px;
}
.site-footer__logo img {
	height: 32px;
	width: auto;
	opacity: 0.9;
}
.site-footer__wordmark {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: white;
}
.site-footer__tagline {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.65;
	color: var(--sf-muted);
}
.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}
.site-footer__col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.site-footer__label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--sf-faint);
}
.site-footer__col a {
	font-size: 0.87rem;
	color: var(--sf-muted);
	text-decoration: none;
	width: fit-content;
	transition: color 0.2s;
}
.site-footer__col a:hover {
	color: white;
}
.site-footer__disclaimer {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--sf-border);
}
.site-footer__disclaimer p {
	font-size: 0.75rem;
	line-height: 1.7;
	color: var(--sf-faint);
	margin: 0;
}
.site-footer__disclaimer strong {
	color: var(--sf-muted);
	font-weight: 600;
}
.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--sf-border);
	font-size: 0.78rem;
	color: var(--sf-faint);
}
.site-footer__bottom p {
	margin: 0;
}
.site-footer__fineprint {
	font-size: 0.75rem;
}
.sf-festudios-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	opacity: 0.45;
	transition: opacity 0.2s;
}
.sf-festudios-link:hover {
	opacity: 0.85;
}
.sf-festudios-logo {
	height: 26px;
	width: auto;
	display: block;
	filter: invert(1);
	mix-blend-mode: screen;
}
.sf-festudios-link span {
	color: var(--sf-faint);
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
}
@media (min-width: 640px) {
	.site-footer__top {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.site-footer__nav {
		gap: 56px;
	}
	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

/* ── 13. BACK TO TOP ──────────────────────────────────────── */
#backToTop {
	position: fixed;
	bottom: 28px;
	right: 24px;
	z-index: 90;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--white);
	color: var(--charcoal);
	border: 1px solid var(--border);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
	pointer-events: none;
}
#backToTop.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
#backToTop:hover {
	background: var(--purple);
	color: white;
	border-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   14. HOME PAGE
   ═══════════════════════════════════════════════════════════ */

/* Home hero — full-height flex layout with phone mockup */
.page-home .hero {
	min-height: 100svh;
	padding: 120px 24px 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--purple-light) 0%,
		#fdf8ff 50%,
		var(--green-light) 100%
	);
	position: relative;
	overflow: hidden;
	text-align: left;
}
.page-home .hero::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(126, 92, 230, 0.12) 0%,
		transparent 70%
	);
	top: -100px;
	right: -100px;
	border-radius: 50%;
}
.page-home .hero::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(76, 175, 80, 0.1) 0%,
		transparent 70%
	);
	bottom: -80px;
	left: -80px;
	border-radius: 50%;
}
.page-home .hero-inner {
	max-width: 1100px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 1;
}
.hero-text {
	flex: 1;
}
.platform-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.83rem;
	font-weight: 500;
	color: var(--mid-grey);
	margin-top: 2px;
	margin-bottom: 12px;
}
.free-badge {
	background: var(--green);
	color: #fff;
	font-weight: 700;
	font-size: 0.72rem;
	padding: 3px 10px;
	border-radius: 999px;
}
.page-home .hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--charcoal);
	margin-bottom: 20px;
}
.page-home .hero h1 em {
	font-style: normal;
	color: var(--purple);
}
.page-home .hero h1 .green-accent {
	color: var(--green-dark);
}
.page-home .hero p {
	font-size: 1.1rem;
	color: var(--mid-grey);
	line-height: 1.7;
	max-width: 500px;
	margin-bottom: 36px;
}
.hero-buttons {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
.hero-stats {
	display: flex;
	gap: 28px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.stat {
	display: flex;
	flex-direction: column;
}
.stat-num {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--charcoal);
}
.stat-label {
	font-size: 0.78rem;
	color: var(--mid-grey);
	font-weight: 500;
}

/* Phone mockup */
.hero-visual {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.phone-frame {
	width: 260px;
	height: 530px;
	background: #1a1a2e;
	border-radius: 44px;
	padding: 12px;
	box-shadow:
		0 40px 80px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 2;
}
.phone-screen {
	width: 100%;
	height: 100%;
	border-radius: 34px;
	overflow: hidden;
	background: var(--purple-light);
	position: relative;
}
.phone-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.phone-notch {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 26px;
	background: #1a1a2e;
	border-radius: 999px;
	z-index: 3;
}
.phone-notch-sm {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 16px;
	background: #1a1a2e;
	border-radius: 999px;
	z-index: 3;
}

/* Floating cards */
.floating-card {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 12px 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	animation: float 3s ease-in-out infinite;
}
.floating-card-1 {
	bottom: 100px;
	left: -90px;
	animation-delay: 0s;
}
.floating-card-2 {
	top: 80px;
	right: -80px;
	animation-delay: 1.5s;
}
.floating-card .fc-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.floating-card .fc-text {
	font-size: 0.78rem;
}
.floating-card .fc-title {
	font-weight: 700;
	color: var(--charcoal);
}
.floating-card .fc-sub {
	color: var(--mid-grey);
	font-size: 0.7rem;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Trust strip */
.trust-strip {
	background: white;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--mid-grey);
}
.trust-item svg {
	color: var(--purple);
}

/* Section base (home page scoped) */
.page-home section {
	padding: 80px 24px;
}
.section-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.section-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--charcoal);
	margin-bottom: 16px;
}
.section-subtitle {
	font-size: 1.05rem;
	color: var(--mid-grey);
	line-height: 1.7;
	max-width: 540px;
}
.text-center-block {
	text-align: center;
}
.text-center-block .section-subtitle {
	margin: 0 auto;
}

/* Features */
.features-section {
	background: var(--light-grey);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 48px;
}
.feature-card {
	border-radius: 24px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.fc-bg-purple {
	background: var(--purple-light);
}
.fc-bg-green {
	background: var(--green-light);
}
.fc-bg-pink {
	background: var(--pink-light);
}
.fc-bg-orange {
	background: var(--orange-light);
}
.fc-bg-blue {
	background: var(--blue-light);
}
.fc-bg-white {
	background: white;
	border: 1.5px solid rgba(0, 0, 0, 0.07);
}
.feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}
.fi-purple {
	background: var(--purple-mid);
}
.fi-green {
	background: #a7f3b8;
}
.fi-pink {
	background: #f9b6dc;
}
.fi-orange {
	background: #fbd0a6;
}
.fi-blue {
	background: #b8d8ff;
}
.feature-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--charcoal);
}
.feature-card p {
	font-size: 0.875rem;
	color: var(--mid-grey);
	line-height: 1.6;
}

/* Showcase */
.showcase-section {
	background: white;
}
.showcase-row {
	display: flex;
	align-items: center;
	gap: 64px;
	margin-bottom: 100px;
}
.showcase-row:last-child {
	margin-bottom: 0;
}
.showcase-row.reverse {
	flex-direction: row-reverse;
}
.showcase-visual {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.showcase-img-wrap {
	width: 280px;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
	position: relative;
}
.showcase-img-wrap img {
	width: 100%;
	display: block;
}
.showcase-img-bg {
	width: 320px;
	height: 400px;
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.showcase-img-bg .phone-frame-sm {
	width: 200px;
	height: 400px;
	background: #1a1a2e;
	border-radius: 36px;
	padding: 10px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
	z-index: 2;
	position: relative;
}
.showcase-img-bg .phone-frame-sm .screen {
	width: 100%;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
}
.showcase-img-bg .phone-frame-sm .screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.showcase-bg-blob {
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	opacity: 0.5;
	filter: blur(40px);
	z-index: 1;
}
.showcase-content {
	flex: 1;
}
.showcase-content h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--charcoal);
	margin-bottom: 16px;
}
.showcase-content p {
	font-size: 1rem;
	color: var(--mid-grey);
	line-height: 1.7;
	margin-bottom: 28px;
}
.feature-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}
.feature-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.925rem;
	font-weight: 500;
	color: var(--charcoal);
}
.feature-list li .check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.7rem;
	font-weight: 700;
	color: white;
}
.check-purple {
	background: var(--purple);
}
.check-green {
	background: var(--green);
}
.check-pink {
	background: var(--pink);
}

/* Screenshots */
.screenshots-section {
	background: linear-gradient(
		135deg,
		var(--purple-light) 0%,
		var(--green-light) 100%
	);
}
.screenshots-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 32px 8px 16px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
}
.screenshots-scroll::-webkit-scrollbar {
	display: none;
}
.screenshot-item {
	flex: 0 0 auto;
	width: 180px;
	scroll-snap-align: center;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
	transition: transform 0.3s;
}
.screenshot-item:hover {
	transform: scale(1.04) translateY(-6px);
}
.screenshot-item img {
	width: 100%;
	display: block;
}

/* How it works */
.how-section {
	background: white;
}
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	margin-top: 48px;
	position: relative;
}
.steps-grid::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 80px;
	right: 80px;
	height: 2px;
	background: linear-gradient(to right, var(--purple-mid), var(--green-light));
	z-index: 0;
}
.step-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	position: relative;
	z-index: 1;
}
.step-num {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--purple-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--purple);
	border: 3px solid white;
	box-shadow: 0 4px 16px rgba(126, 92, 230, 0.2);
	font-family: "Caveat", cursive;
}
.step-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--charcoal);
}
.step-card p {
	font-size: 0.875rem;
	color: var(--mid-grey);
	line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
	background: var(--purple-light);
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 48px;
}
.testimonial-card {
	background: white;
	border-radius: 24px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.stars {
	color: #f59e0b;
	font-size: 0.9rem;
	letter-spacing: 2px;
}
.testimonial-text {
	font-size: 0.95rem;
	color: var(--charcoal);
	line-height: 1.7;
	font-style: italic;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}
.author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.author-name {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--charcoal);
}
.author-role {
	font-size: 0.75rem;
	color: var(--mid-grey);
}

/* Home CTA overrides */
.page-home .cta-section {
	background: linear-gradient(
		135deg,
		var(--purple-dark) 0%,
		var(--purple) 60%,
		#9b59d8 100%
	);
	position: relative;
	overflow: hidden;
	padding: 80px 24px;
}
.page-home .cta-section::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	top: -200px;
	right: -100px;
}
.page-home .cta-section::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	bottom: -100px;
	left: -50px;
}
.page-home .cta-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}
.page-home .cta-section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	margin-bottom: 16px;
	opacity: 1;
}
.page-home .cta-section p {
	font-size: 1.05rem;
	opacity: 0.85;
	max-width: 480px;
	margin: 0 auto 36px;
	line-height: 1.7;
}

/* Pro section */
.pro-section {
	background: linear-gradient(160deg, #1a0b2e 0%, #2d1054 50%, #1a1a2e 100%);
	color: white;
	position: relative;
	overflow: hidden;
}
.pro-section::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(126, 92, 230, 0.2) 0%,
		transparent 65%
	);
	top: -200px;
	right: -200px;
	pointer-events: none;
}
.pro-section::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(76, 175, 80, 0.12) 0%,
		transparent 65%
	);
	bottom: -100px;
	left: -100px;
	pointer-events: none;
}
.pro-inner {
	position: relative;
	z-index: 1;
}
.pro-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: white;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.pro-section .section-title {
	color: white;
}
.pro-section .section-subtitle {
	color: rgba(255, 255, 255, 0.65);
	max-width: 540px;
}
.pro-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 48px;
}
.pro-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition:
		background 0.2s,
		transform 0.2s;
	backdrop-filter: blur(8px);
}
.pro-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}
.pro-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pro-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: white;
}
.pro-card p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}
.pro-badge-inline {
	display: inline-flex;
	align-items: center;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: #f59e0b;
	background: rgba(245, 158, 11, 0.15);
	border: 1px solid rgba(245, 158, 11, 0.3);
	padding: 2px 7px;
	border-radius: 999px;
	text-transform: uppercase;
	margin-left: 8px;
	vertical-align: middle;
}
.pro-compare {
	margin-top: 48px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	overflow: hidden;
}
.pro-compare-header {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background: rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pro-compare-header div {
	padding: 16px 20px;
	font-size: 0.875rem;
	font-weight: 700;
	color: white;
	text-align: center;
}
.pro-compare-header div:first-child {
	text-align: left;
	color: rgba(255, 255, 255, 0.5);
}
.pro-compare-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	align-items: center;
}
.pro-compare-row:last-child {
	border-bottom: none;
}
.pro-compare-row div {
	padding: 14px 20px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pro-compare-row div:first-child {
	text-align: left;
	justify-content: flex-start;
	font-weight: 500;
	color: white;
}
.check-yes {
	color: #4caf50;
}
.check-no {
	color: rgba(255, 255, 255, 0.25);
}
.pro-cta-row {
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	text-align: center;
	flex-direction: column;
}


/* ═══════════════════════════════════════════════════════════
   15. GUIDES PAGE
   ═══════════════════════════════════════════════════════════ */
.pull-quote {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.5;
	border-left: 3px solid var(--purple-mid);
	padding-left: 20px;
	margin: 32px 0;
}
.benefit-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 36px;
}
.benefit-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.b-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}
.benefit-list li strong {
	font-size: 0.9rem;
	color: var(--charcoal);
	display: block;
	margin-bottom: 2px;
}
.benefit-list li span {
	font-size: 0.83rem;
	color: var(--muted);
	line-height: 1.55;
}

.readiness-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 36px;
}
.readiness-item {
	background: white;
	border-radius: 16px;
	padding: 20px 22px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.r-num {
	font-family: "Caveat", cursive;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--purple-mid);
	line-height: 1;
	flex-shrink: 0;
	width: 36px;
	text-align: center;
	padding-top: 1px;
}
.readiness-item h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 4px;
}
.readiness-item p {
	font-size: 0.84rem;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

.p-num {
	font-family: "Caveat", cursive;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--purple-mid);
	line-height: 1;
	flex-shrink: 0;
	width: 40px;
}
.principle-row {
	display: flex;
	gap: 18px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}
.principle-row:last-child {
	border-bottom: none;
}
.principle-row h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 5px;
}
.principle-row p {
	font-size: 0.84rem;
	color: var(--muted);
	line-height: 1.65;
	margin: 0 0 8px;
}
.p-tag {
	display: inline-block;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: var(--purple-light);
	color: var(--purple);
	padding: 3px 10px;
	border-radius: 999px;
}

.technique-block {
	padding: 22px 0;
	border-bottom: 1px solid var(--border);
}
.technique-block:last-child {
	border-bottom: none;
}
.technique-block h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 7px;
}
.technique-block p {
	font-size: 0.84rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 10px;
}
.technique-block ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.technique-block ul li {
	font-size: 0.83rem;
	color: var(--muted);
	padding-left: 16px;
	position: relative;
	line-height: 1.5;
}
.technique-block ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.meal-structure {
	background: var(--green-light);
	border-radius: 14px;
	padding: 18px 20px;
	margin-top: 20px;
}
.meal-structure h4 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--green-dark);
	margin-bottom: 10px;
}
.meal-structure-items {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ms-item {
	font-size: 0.83rem;
	color: var(--green-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.foods-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}
.food-group {
	border-radius: 16px;
	padding: 22px;
	background: var(--warm-white);
}
.food-group-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
}
.food-group h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 12px;
}
.food-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.food-list li {
	font-size: 0.83rem;
	color: var(--muted);
	padding-left: 14px;
	position: relative;
	line-height: 1.5;
}
.food-list li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.setup-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 22px;
}
.setup-item {
	background: var(--warm-white);
	border-radius: 12px;
	padding: 18px;
}
.setup-item h3 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 4px;
}
.setup-item p {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
}

.pro-tips {
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px 22px;
}
.pro-tips h4 {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}
.pro-tips ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pro-tips ul li {
	font-size: 0.84rem;
	color: var(--muted);
	padding-left: 16px;
	position: relative;
	line-height: 1.55;
}
.pro-tips ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
	font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   16. SAFETY PAGE
   ═══════════════════════════════════════════════════════════ */
.hero-signals {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.safety .hero-badges {
	margin-top: 16px;
}
.signal-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: white;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 0.82rem;
	font-weight: 600;
	border: 1px solid var(--border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.signal-badge .sig-word {
	font-weight: 800;
	font-size: 0.9rem;
}
.signal-badge.green .sig-word {
	color: var(--green-dark);
}
.signal-badge.red .sig-word {
	color: #dc2626;
}

.loud-quiet {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 32px 0;
}
.lq-card {
	border-radius: 16px;
	padding: 20px 22px;
}
.lq-card.gagging {
	background: var(--green-light);
}
.lq-card.choking {
	background: #fef2f2;
	border: 1.5px solid #fecaca;
}
.lq-keyword {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	display: block;
	margin-bottom: 6px;
}
.lq-card.gagging .lq-keyword {
	color: var(--green-dark);
}
.lq-card.choking .lq-keyword {
	color: #dc2626;
}
.lq-card h3 {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 10px;
}
.lq-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.lq-card ul li {
	font-size: 0.82rem;
	color: var(--muted);
	padding-left: 14px;
	position: relative;
	line-height: 1.5;
}
.lq-card ul li::before {
	content: "–";
	position: absolute;
	left: 0;
}
.lq-card.gagging ul li::before {
	color: var(--green);
}
.lq-card.choking ul li::before {
	color: #dc2626;
}
.lq-section-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.action-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 28px;
}
.action-card {
	border-radius: 14px;
	padding: 18px 20px;
}
.action-card.safe {
	background: var(--green-light);
}
.action-card.emergency {
	background: #fef2f2;
	border: 1.5px solid #fecaca;
}
.action-card h4 {
	font-size: 0.88rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.action-card.safe h4 {
	color: var(--green-dark);
}
.action-card.emergency h4 {
	color: #dc2626;
}
.action-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.action-card ul li {
	font-size: 0.82rem;
	color: var(--muted);
	padding-left: 14px;
	position: relative;
	line-height: 1.5;
}
.action-card ul li::before {
	content: "–";
	position: absolute;
	left: 0;
}

.critical-callout {
	background: #dc2626;
	color: white;
	border-radius: 14px;
	padding: 18px 22px;
	margin-top: 24px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.critical-callout p {
	font-size: 0.88rem;
	line-height: 1.65;
	margin: 0;
	color: white;
}
.critical-callout strong {
	font-weight: 800;
}

.checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 28px;
}
.checklist li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: white;
	border-radius: 14px;
	padding: 16px 18px;
}
.check-box {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	flex-shrink: 0;
	border: 2px solid var(--border);
	margin-top: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.checklist li strong {
	font-size: 0.9rem;
	color: var(--charcoal);
	display: block;
	margin-bottom: 2px;
}
.checklist li span {
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.5;
}

.safe-criteria {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 28px;
}
.safe-item {
	background: var(--warm-white);
	border-radius: 12px;
	padding: 14px 16px;
}
.safe-item h4 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 4px;
}
.safe-item p {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.5;
	margin: 0;
}

.risk-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 24px;
}
.risk-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}
.risk-row:last-child {
	border-bottom: none;
}
.risk-food {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 3px;
}
.risk-fix {
	font-size: 0.8rem;
	color: var(--muted);
}
.risk-avoid-badge {
	font-size: 0.67rem;
	font-weight: 700;
	background: #fee2e2;
	color: #dc2626;
	padding: 3px 9px;
	border-radius: 999px;
	flex-shrink: 0;
	margin-top: 2px;
	white-space: nowrap;
}

.always-avoid {
	background: #fef2f2;
	border: 1.5px solid #fecaca;
	border-radius: 16px;
	padding: 22px;
}
.always-avoid h3 {
	font-size: 0.88rem;
	font-weight: 700;
	color: #dc2626;
	margin-bottom: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.always-avoid-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.always-item {
	background: white;
	border-radius: 10px;
	padding: 12px 14px;
}
.always-item h4 {
	font-size: 0.83rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 2px;
}
.always-item p {
	font-size: 0.76rem;
	color: var(--muted);
	margin: 0;
}

.mealtime-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 24px;
}
.mealtime-card {
	background: var(--warm-white);
	border-radius: 14px;
	padding: 18px;
}
.mealtime-card h3 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 10px;
}
.mealtime-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.mealtime-card ul li {
	font-size: 0.8rem;
	color: var(--muted);
	padding-left: 14px;
	position: relative;
	line-height: 1.5;
}
.mealtime-card ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.storage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.storage-card {
	background: var(--warm-white);
	border-radius: 14px;
	padding: 18px;
}
.storage-card h3 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 8px;
}
.storage-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.storage-card ul li {
	font-size: 0.8rem;
	color: var(--muted);
	padding-left: 14px;
	position: relative;
	line-height: 1.5;
}
.storage-card ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}
.storage-rule {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
	padding: 14px 18px;
	margin-top: 16px;
	font-size: 0.84rem;
	color: #92400e;
	line-height: 1.65;
}

.allergy-steps {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}
.allergy-step {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
	background: var(--purple-light);
	border-radius: 14px;
}
/* Safety page step-num — smaller, purple bg, overrides the home .step-num */
.allergy-step .step-num {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--purple);
	color: white;
	font-weight: 800;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: none;
	box-shadow: none;
	font-family: inherit;
}
.allergy-step h3 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 4px;
}
.allergy-step p {
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}
.allergy-warning {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
	padding: 14px 18px;
	margin-top: 16px;
	font-size: 0.84rem;
	color: #92400e;
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   17. RESOURCES PAGE
   ═══════════════════════════════════════════════════════════ */
.tip-block {
	padding: 22px 0;
	border-bottom: 1px solid var(--border);
}
.tip-block:last-child {
	border-bottom: none;
}
.tip-block h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 7px;
}
.tip-block ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.tip-block ul li {
	font-size: 0.84rem;
	color: var(--muted);
	padding-left: 16px;
	position: relative;
	line-height: 1.6;
}
.tip-block ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.tip-num {
	font-family: "Caveat", cursive;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--purple-mid);
	line-height: 1;
	flex-shrink: 0;
	width: 40px;
}
.tip-row {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid var(--border);
}
.tip-row:last-child {
	border-bottom: none;
}
.tip-row h3 {
	font-size: 0.93rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 6px;
}
.tip-row ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.tip-row ul li {
	font-size: 0.84rem;
	color: var(--muted);
	padding-left: 16px;
	position: relative;
	line-height: 1.6;
}
.tip-row ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.tl-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.tl-col-label {
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	display: block;
	margin-bottom: 8px;
}
.tl-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.tl-col ul li {
	font-size: 0.83rem;
	color: var(--muted);
	padding-left: 16px;
	position: relative;
	line-height: 1.5;
}
.tl-col ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.concern-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 32px;
}
.concern-card {
	background: var(--warm-white);
	border-radius: 16px;
	padding: 22px;
	border: 1px solid var(--border);
}
.concern-card h3 {
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--charcoal);
	margin-bottom: 14px;
}
.concern-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.concern-card li {
	font-size: 0.84rem;
	color: var(--muted);
	padding-left: 16px;
	position: relative;
	line-height: 1.55;
}
.concern-card li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: var(--purple-mid);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.product-card {
	background: var(--warm-white);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
}
.product-card img {
	width: 100%;
	height: 168px;
	object-fit: cover;
}
.product-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.product-body h3 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.3;
}
.product-body p {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.6;
	flex: 1;
	margin: 0;
}
.product-price {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--purple);
}
.product-link {
	display: block;
	text-align: center;
	background: var(--purple-light);
	color: var(--purple);
	font-weight: 700;
	font-size: 0.8rem;
	padding: 9px 12px;
	border-radius: 10px;
	text-decoration: none;
	transition:
		background 0.2s,
		color 0.2s;
}
.product-link:hover {
	background: var(--purple);
	color: white;
}

.acc-intro {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 22px;
}
.acc-divider-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 20px 0 12px;
	display: block;
}

/* ═══════════════════════════════════════════════════════════
   18. RECIPES PAGE
   ═══════════════════════════════════════════════════════════ */
.preview-banner {
	background: var(--purple-light);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 20px 24px;
	text-align: center;
}
.preview-banner p {
	font-size: 0.9rem;
	color: var(--charcoal);
	line-height: 1.6;
	margin: 0;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.preview-banner strong {
	color: var(--purple);
	font-weight: 700;
}

.age-pill {
	display: inline-block;
	background: var(--pill-bg, #ede7fb);
	color: var(--pill-color, var(--purple));
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.acc-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.acc-item {
	background: white;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}

/* Recipe accordion trigger — different style from shared */
.recipe-section .accordion-trigger {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	text-align: left;
	transition: background 0.15s ease;
}
.recipe-section .accordion-trigger:hover {
	background: var(--warm-white);
}
.recipe-section .accordion-trigger[aria-expanded="true"] {
	background: var(--warm-white);
	border-bottom: 1px solid var(--border);
}

.acc-trigger-inner {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 1;
	min-width: 0;
}
/* Recipes r-num override */
.acc-trigger-inner .r-num {
	font-family: "Caveat", cursive;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--purple);
	line-height: 1;
	flex-shrink: 0;
	padding-top: 2px;
	min-width: 36px;
	width: auto;
	text-align: left;
}
.acc-text {
	flex: 1;
	min-width: 0;
}
.acc-title {
	display: block;
	font-size: 0.97rem;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.3;
	margin-bottom: 5px;
}
.acc-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--muted);
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 3px 10px;
}
.recipe-section.alt .meta-pill {
	background: #f5f5f7;
}
.diff-pill {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--purple);
	background: #ede7fb;
	border-radius: 999px;
	padding: 3px 9px;
}
.acc-chevron {
	flex-shrink: 0;
	color: var(--muted);
	transition: transform 0.25s ease;
}
.recipe-section .accordion-trigger[aria-expanded="true"] .acc-chevron {
	transform: rotate(180deg);
}

.acc-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}
.recipe-section .accordion-trigger[aria-expanded="true"] + .acc-body {
	grid-template-rows: 1fr;
}
.acc-body-inner {
	overflow: hidden;
}
.recipe-section .acc-content {
	padding: 28px 22px 24px;
	padding-bottom: 28px;
}
.acc-desc {
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 28px;
}

.recipe-cols {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 32px;
	margin-bottom: 28px;
}
.recipe-block h3 {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--purple);
	margin-bottom: 14px;
}
.recipe-block ul,
.recipe-block ol {
	padding-left: 18px;
	margin: 0;
}
.recipe-block li {
	font-size: 0.88rem;
	color: var(--charcoal);
	line-height: 1.7;
	margin-bottom: 4px;
}
.recipe-tips-block {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px 20px;
	margin-top: 4px;
}
.recipe-section.alt .recipe-tips-block {
	background: #f5f5f7;
}
.recipe-tips-block h3 {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--purple);
	margin-bottom: 12px;
}
.recipe-tips-block ul {
	padding-left: 18px;
	margin: 0;
}
.recipe-tips-block li {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 4px;
}

.more-recipes-nudge {
	margin-top: 48px;
	background: linear-gradient(135deg, #ede7fb 0%, #f8f3ff 100%);
	border: 1px solid #d4b8f5;
	border-radius: 20px;
	padding: 32px 28px;
	text-align: center;
}
.more-recipes-nudge h3 {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--charcoal);
	margin-bottom: 8px;
}
.more-recipes-nudge p {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.nudge-badges {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.recipe-section {
	padding: 88px 24px;
}
.recipe-section.alt {
	background: var(--warm-white);
}
.recipe-inner {
	max-width: 760px;
	margin: 0 auto;
}
.section-header {
	margin-bottom: 48px;
}
.section-header h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.3rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: var(--charcoal);
	margin-top: 10px;
	margin-bottom: 10px;
}
.section-header p {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.7;
	max-width: 500px;
}

/* Recipes CTA override */
.recipes-page .cta-section {
	padding: 96px 24px;
	background: var(--charcoal);
}
.recipes-page .cta-section h2 {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
	opacity: 1;
}
.recipes-page .cta-section p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.75;
	margin-bottom: 36px;
	opacity: 1;
}
.recipes-page .cta-badges {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.recipes-page .cta-badge-wrap img {
	height: 44px;
	display: block;
}

/* ═══════════════════════════════════════════════════════════
   19. LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-hero {
	padding: 148px 24px 72px;
	text-align: center;
	background: var(--white);
}
.legal-hero .hero-inner {
	max-width: 600px;
	margin: 0 auto;
}
.legal-hero h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--charcoal);
	margin-bottom: 12px;
}
.legal-hero .updated {
	font-size: 0.82rem;
	color: var(--muted);
	margin-top: 8px;
}

.legal-body {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px 96px;
}
.legal-section {
	padding: 36px 0;
	border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
	border-bottom: none;
}
.legal-section h2 {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--charcoal);
	margin-bottom: 16px;
}
.legal-section h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 8px;
	margin-top: 16px;
}
.legal-section p {
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 12px;
}
.legal-section p:last-child {
	margin-bottom: 0;
}
.legal-section ul {
	padding-left: 20px;
	margin: 8px 0 12px;
}
.legal-section ul li {
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 4px;
}
.legal-section strong {
	color: var(--charcoal);
	font-weight: 600;
}

.legal-notice {
	background: var(--purple-light);
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px 0;
	font-size: 0.88rem;
	color: var(--charcoal);
	line-height: 1.7;
}
.legal-notice strong {
	color: var(--purple-dark);
}

.legal-warning {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px 0;
	font-size: 0.88rem;
	color: #92400e;
	line-height: 1.7;
}
.legal-warning strong {
	color: #78350f;
}

.legal-contact {
	background: var(--purple-light);
	border-radius: 14px;
	padding: 20px 24px;
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.legal-contact p {
	font-size: 0.9rem;
	color: var(--charcoal);
	margin: 0;
}
.legal-contact a {
	color: var(--purple);
	text-decoration: none;
	font-weight: 600;
}
.legal-contact a:hover {
	text-decoration: underline;
}

.legal-agreement {
	background: var(--purple-light);
	border: 2px solid var(--purple-mid);
	border-radius: 14px;
	padding: 20px 24px;
	text-align: center;
	margin-top: 24px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════
   20. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
	.product-grid {
		grid-template-columns: 1fr 1fr;
	}
	.concern-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	.nav-links,
	.nav-cta {
		display: none;
	}
	.hamburger {
		display: block;
	}
	.zone-header {
		padding: 56px 20px 40px;
	}
	.accordion-list {
		padding: 0 20px 64px;
	}
	/* Interior hero */
	.hero {
		padding: 120px 20px 64px;
	}
	/* Content sections */
	.content-section {
		padding: 64px 20px;
	}
	/* Guides */
	.foods-grid,
	.sign-grid,
	.setup-grid {
		grid-template-columns: 1fr;
	}
	/* Safety */
	.loud-quiet,
	.action-steps,
	.safe-criteria,
	.always-avoid-grid,
	.mealtime-grid,
	.storage-grid {
		grid-template-columns: 1fr;
	}
	/* Resources */
	.tl-cols,
	.concern-grid {
		grid-template-columns: 1fr;
	}
	.product-grid {
		grid-template-columns: 1fr;
	}
	/* Hub */
	.guide-hub {
		padding: 56px 20px;
	}
}

@media (max-width: 480px) {
	/* Hub grid */
	.hub-grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	.hub-card {
		padding: 16px 14px 14px;
	}
}

/* Home responsive */
@media (max-width: 768px) {
	.page-home .hero-inner {
		flex-direction: column;
		text-align: center;
		gap: 48px;
	}
	.page-home .hero {
		text-align: center;
	}
	.hero-text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.page-home .hero p {
		text-align: center;
	}
	.hero-stats {
		justify-content: center;
	}
	.hero-visual {
		width: 100%;
		justify-content: center;
	}
	.hero-visual .floating-card {
		display: none;
	}
	.phone-frame {
		width: 210px;
		height: 430px;
	}
	.showcase-row,
	.showcase-row.reverse {
		flex-direction: column;
		gap: 40px;
	}
	.showcase-img-bg {
		width: 100%;
	}
	.steps-grid::before {
		display: none;
	}
	.trust-strip {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.page-home section {
		padding: 60px 20px;
	}
	.page-home .hero {
		padding: 100px 20px 60px;
	}
	.features-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.feature-card {
		padding: 20px 16px;
	}
}

/* Recipes responsive */
@media (max-width: 768px) {
	.hub-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.recipe-cols {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.recipe-section {
		padding: 64px 20px;
	}
	.accordion-trigger {
		padding: 18px 18px;
	}
	.recipe-section .acc-content {
		padding: 22px 18px 20px;
	}
}

/* Hub grid for guides/safety */
@media (max-width: 900px) {
	.hub-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
