/* ═══════════════════════════════════════════════════════════════
   Hey Maëlle! — Landing Page Design System
   Warm light-dark rhythm — inviting for allergy-conscious parents
   ═══════════════════════════════════════════════════════════════ */

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

/* Screen-reader only — visible to crawlers + assistive tech, hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:root {
  /* Brand */
  --orange-900: #7c2d12;
  --orange-800: #9a3412;
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-300: #fdba74;
  --orange-200: #fed7aa;
  --orange-100: #ffedd5;
  --orange-50:  #fff7ed;

  --amber-400:  #fbbf24;
  --amber-300:  #fcd34d;
  --amber-200:  #fde68a;
  --amber-100:  #fef3c7;

  --green-600:  #16a34a;
  --green-500:  #22c55e;

  --violet-700: #6d28d9;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;

  --sky-500:    #0ea5e9;
  --sky-400:    #38bdf8;

  --red-500:    #ef4444;
  --red-400:    #f87171;

  /* Dark palette */
  --dark-950:   #0a0a0a;
  --dark-900:   #0f0e0d;
  --dark-800:   #1c1917;
  --dark-700:   #292524;
  --dark-600:   #44403c;

  /* Light palette */
  --warm-white: #faf9f6;
  --cream:      #fff7ed;
  --stone-200:  #e7e5e4;
  --stone-300:  #d6d3d1;
  --stone-400:  #a8a29e;
  --stone-500:  #78716c;
  --stone-600:  #57534e;

  /* Text */
  --text-primary:   #fafaf9;
  --text-secondary:  #a8a29e;
  --text-muted:      #78716c;
  --text-dark:       #1c1917;
  --text-dark-muted: #57534e;

  /* Surfaces */
  --glass-bg:     rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover:  rgba(255, 255, 255, 0.08);

  /* Light surfaces */
  --light-bg:           #faf9f6;
  --light-bg-alt:       #fff7ed;
  --light-card-bg:      #ffffff;
  --light-card-border:  #e7e5e4;
  --text-on-light:      #1c1917;
  --text-on-light-secondary: #57534e;
  --text-on-light-muted: #78716c;

  /* Spacing */
  --section-pad-y: 100px;
  --section-pad-x: 24px;
  --max-width: 1100px;
  --max-width-narrow: 720px;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark-900);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
.font-pacifico { font-family: 'Pacifico', cursive; }
.font-serif    { font-family: 'DM Serif Display', serif; }
.font-nunito   { font-family: 'Nunito', sans-serif; }
.brand-maelle  { color: var(--sky-500); }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px var(--section-pad-x);
  background: rgba(250, 249, 246, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--text-on-light);
  white-space: nowrap;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 600;
  color: #44403c;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--text-on-light);
}

.navbar-links a.btn-primary {
  color: #fff;
}

.navbar-links a.btn-primary:hover {
  color: #fff;
}

.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-light);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-mobile.open {
  display: flex;
}

.navbar-mobile a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-light-secondary);
  padding: 8px 0;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: #fff;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.5);
}

.btn-ghost {
  background: #fff;
  color: var(--text-on-light);
  border: 2px solid var(--stone-300);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  background: var(--light-bg);
  border-color: var(--stone-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Ghost on dark sections */
.final-cta .btn-ghost {
  color: var(--text-primary);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.final-cta .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-white {
  background: #fff;
  color: var(--dark-800);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px var(--section-pad-x) 60px;
  position: relative;
  overflow: hidden;
  background: url('/landing/images/hero-kitchen-600.jpg') center/cover no-repeat;
  background-color: var(--light-bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 249, 246, 1.0) 0%,
    rgba(250, 249, 246, 1.0) 35%,
    rgba(250, 249, 246, 0.85) 50%,
    rgba(255, 247, 237, 0.45) 65%,
    rgba(255, 247, 237, 0.15) 80%,
    rgba(255, 237, 213, 0.05) 100%
  );
  z-index: 0;
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, rgba(234, 88, 12, 0.04) 40%, transparent 70%);
  top: -100px;
  right: -50px;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.10) 0%, rgba(251, 191, 36, 0.03) 40%, transparent 70%);
  bottom: -50px;
  left: -100px;
}

.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: var(--max-width);
  width: 100%;
}

.hero-content {
  text-align: left;
  max-width: 520px;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.hero-phone {
  flex-shrink: 0;
}

.hero-phone-frame {
  width: 280px;
  height: 608px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.5rem, 6vw, 3.4rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(194, 65, 12, 0.08);
}

.hero-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--orange-600);
  margin-bottom: 16px;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(234, 88, 12, 0.12);
}

.hero-body {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #292524;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-free-banner {
  margin-top: 20px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  display: inline-block;
}

.hero-footnote {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 10px;
}

.hero-platforms {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-on-light);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-on-light-muted);
  font-size: 24px;
}

/* ── STATS BAR ────────────────────────────────────────────────── */
.stats-bar {
  padding: 24px var(--section-pad-x);
  background: var(--light-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-light-secondary);
  white-space: nowrap;
}

.stat-pill .stat-icon {
  font-size: 18px;
}

/* ── SECTIONS (shared) ────────────────────────────────────────── */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-on-light-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ── SECTION TRANSITIONS ─────────────────────────────────────── */
.section-transition {
  height: 120px;
  pointer-events: none;
}

/* Deeper transitions for features section */
.section-transition.light-to-features {
  background: linear-gradient(180deg,
    #faf9f6 0%,
    #e7e5e4 25%,
    #78716c 50%,
    #292524 75%,
    #1c1917 100%
  );
}

.section-transition.features-to-light {
  background: linear-gradient(180deg,
    #1c1917 0%,
    #292524 25%,
    #78716c 50%,
    #e7e5e4 75%,
    #faf9f6 100%
  );
}

.section-transition.light-to-cta {
  height: 100px;
  background: linear-gradient(180deg,
    #faf9f6 0%,
    #e7e5e4 25%,
    #78716c 50%,
    #292524 75%,
    #0f0e0d 100%
  );
}

/* ── PROBLEM SECTION ──────────────────────────────────────────── */
.problem {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.problem .section-title {
  color: var(--orange-700);
}

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

.pain-card {
  background: var(--light-card-bg);
  border: 1px solid var(--light-card-border);
  border-left: 3px solid var(--red-400);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--orange-500);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pain-card .pain-emoji {
  font-size: 32px;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-on-light);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

.problem-transition {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange-600);
}

/* ── FEATURE SHOWCASE ─────────────────────────────────────────── */
.features {
  background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 50%, var(--dark-800) 100%);
  position: relative;
  overflow: hidden;
}

/* Scattered ambient orbs throughout sections */
.section-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.features .section-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.18) 0%, transparent 70%);
  top: 5%;
  right: -10%;
}

.features .section-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.14) 0%, transparent 70%);
  top: 25%;
  left: -8%;
}

.features .section-orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  top: 50%;
  right: -5%;
}

.features .section-orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  top: 70%;
  left: -10%;
}

.features .section-orb-5 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
  bottom: 5%;
  right: -8%;
}

.problem .section-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 70%);
  top: -10%;
  left: -5%;
}

.how-it-works .section-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
  top: 20%;
  right: -10%;
}

.social-proof .section-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
  top: 10%;
  left: -8%;
}

.trust .section-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
  top: 20%;
  right: -5%;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--glass-border);
}

.feature-block:last-child {
  border-bottom: none;
}

.feature-block.reverse .feature-text {
  order: 2;
}

.feature-block.reverse .feature-visual {
  order: 1;
}

.feature-block.hero-feature {
  padding: 80px 0;
}

.feature-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-text .feature-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-bullets li::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.badge-pro {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: #fff;
}

.badge-unique {
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  color: var(--dark-800);
}

/* Phone mockup placeholder */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 260px;
  height: 565px;
  border-radius: 36px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-feature .phone-frame {
  width: 300px;
  height: 652px;
}

/* Ambient glow behind phone frames */
.feature-visual {
  position: relative;
}

/* Screenshot images inside phone frames */
.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.phone-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

/* Feature inline CTAs */
.feature-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange-400);
  transition: color 0.2s, transform 0.2s;
}

.feature-cta:hover {
  color: var(--orange-300);
  transform: translateX(4px);
}

/* App Preview Strip */
.app-preview {
  padding: 48px var(--section-pad-x);
  overflow: hidden;
  background: #f0ece6;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.app-preview-track {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.preview-card {
  text-align: center;
  flex-shrink: 0;
}

.phone-frame-sm {
  width: 140px;
  height: 304px;
  border-radius: 18px;
}

.phone-frame-sm .phone-screenshot img {
  border-radius: 15px;
}

.preview-label {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-on-light-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-it-works {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.how-it-works .section-title {
  color: var(--text-on-light);
}

.how-it-works .section-subtitle {
  color: var(--text-on-light-secondary);
}

/* Steps grid (used by HTML) */
.steps-container {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-on-light);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.steps-line {
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500), var(--orange-600));
  opacity: 0.3;
  z-index: 0;
}

.steps-journey {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--light-card-bg);
  border: 1px solid var(--light-card-border);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 480px;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.step-card--left { margin-right: auto; }
.step-card--right { margin-left: auto; }

.step-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-icon--orange {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #ea580c;
}

.step-card-icon--amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

.step-card-icon--green {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.step-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-light-muted);
  margin-bottom: 4px;
}

.step-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text-on-light);
  margin-bottom: 6px;
}

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

/* ── SOCIAL PROOF ─────────────────────────────────────────────── */
.social-proof {
  background: var(--light-bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-proof .section-title {
  color: var(--text-on-light);
}

.proof-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--text-on-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.proof-headline .highlight {
  color: var(--orange-600);
}

.proof-subtext {
  font-size: 1.05rem;
  color: var(--text-on-light-secondary);
  max-width: 560px;
  margin: 0 auto 56px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 56px;
}

.proof-stat {
  padding: 32px 20px;
  background: var(--light-card-bg);
  border: 1px solid var(--light-card-border);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}

.proof-stat:hover {
  transform: translateY(-4px);
}

.proof-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--orange-600);
  margin-bottom: 4px;
  line-height: 1.1;
}

.proof-stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 6px;
}

.proof-stat-desc {
  font-size: 0.8rem;
  color: var(--text-on-light-muted);
  line-height: 1.5;
}

/* Quote cards (used by HTML) */
.proof-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.proof-quote {
  background: var(--light-card-bg);
  border: 1px solid var(--light-card-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.proof-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.proof-quote::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--orange-600);
  opacity: 0.4;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.proof-quote p {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 20px;
}

.proof-quote-source {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-on-light-muted);
}

.proof-scenarios-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-on-light);
  margin-bottom: 32px;
}

.proof-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.proof-scenario {
  background: var(--light-card-bg);
  border: 1px solid var(--light-card-border);
  border-left: 3px solid var(--orange-500);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.proof-scenario:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.proof-scenario-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.proof-scenario h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 8px;
}

.proof-scenario p {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .proof-stats {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .proof-scenarios {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .steps-line {
    display: none;
  }

  .proof-quotes {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing {
  background: var(--cream);
  color: var(--text-dark);
}

.pricing .section-title {
  color: var(--text-dark);
}

.pricing .section-subtitle {
  color: var(--text-dark-muted);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pricing-toggle span {
  font-size: 14px;
  font-weight: 600;
  color: var(--stone-500);
  transition: color 0.3s;
}

.pricing-toggle span.active {
  color: var(--text-dark);
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--stone-300);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  border: none;
  padding: 0;
}

.toggle-switch.active {
  background: var(--orange-600);
}

.toggle-knob {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(22px);
}

.save-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  background: var(--green-500);
  color: #fff;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.save-badge.visible {
  opacity: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.plan-card {
  background: #fff;
  border: 2px solid var(--stone-200);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  border-color: var(--orange-600);
  box-shadow: 0 8px 40px rgba(234, 88, 12, 0.12);
}

.plan-card .popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 4px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: #fff;
}

.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange-700);
  margin-bottom: 20px;
  line-height: 1.2;
}

.plan-price .period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--stone-500);
}

.plan-features {
  list-style: none;
  padding: 0;
}

.plan-features li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--stone-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
}

.pricing-cta .btn {
  margin-bottom: 8px;
}

.pricing-footnote {
  font-size: 13px;
  color: var(--stone-500);
  text-align: center;
}

/* ── TRUST ────────────────────────────────────────────────────── */
.trust {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.trust .section-title {
  color: var(--text-on-light);
}

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

.trust-card {
  background: var(--light-card-bg);
  border: 1px solid var(--light-card-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-card .trust-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge-pill {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--light-card-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-on-light-secondary);
  background: var(--light-card-bg);
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq {
  background: var(--light-bg);
  border-top: 1px solid var(--light-card-border);
  padding-bottom: 40px;
}

.faq .section-title {
  color: var(--dark-900);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--orange-100);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--orange-300);
}

.faq-item[open] {
  border-color: var(--orange-400);
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange-500);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 24px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-600);
}

/* ── FINAL CTA ────────────────────────────────────────────────── */
.final-cta {
  padding: var(--section-pad-y) var(--section-pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-900);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.final-cta .section-subtitle {
  color: var(--orange-200);
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta-footnote {
  font-size: 13px;
  color: var(--stone-400);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  padding: 56px var(--section-pad-x) 32px;
  background: var(--dark-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand .footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: var(--stone-400);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--stone-400);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: var(--stone-400);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--stone-400);
  font-style: italic;
}

/* ── COOKIE CONSENT ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 20px var(--section-pad-x);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
  min-width: 240px;
}

.cookie-text a {
  color: var(--orange-400);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 18px;
  font-size: 13px;
}

.cookie-dnsmpi {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
}

/* ── SCREENSHOT LIGHTBOX ──────────────────────────────────────── */
.phone-frame {
  cursor: pointer;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  pointer-events: none;
  opacity: 0;
}

.lightbox-overlay.active {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  opacity: 1;
}

.lightbox-phone {
  position: relative;
  border-radius: 44px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(234, 88, 12, 0.15);
  transform: scale(0.3) rotate(-8deg);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  max-height: 85vh;
  width: auto;
}

.lightbox-overlay.active .lightbox-phone {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.lightbox-phone img {
  display: block;
  max-height: 85vh;
  width: auto;
  border-radius: 40px;
}

.lightbox-label {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.lightbox-overlay.active .lightbox-label {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  opacity: 0;
  z-index: 10000;
}

.lightbox-overlay.active .lightbox-close {
  opacity: 1;
  transition: opacity 0.3s ease 0.3s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.lightbox-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
}

.lightbox-overlay.active .lightbox-hint {
  opacity: 1;
}

/* ── HERO RESPONSIVE IMAGES ──────────────────────────────────── */
@media (min-width: 768px) {
  .hero {
    background-image: url('/landing/images/hero-kitchen-900.jpg');
  }
}

@media (min-width: 1200px) {
  .hero {
    background-image: url('/landing/images/hero-kitchen-1400.jpg');
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 64px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(250, 249, 246, 1.0) 0%,
      rgba(250, 249, 246, 1.0) 40%,
      rgba(250, 249, 246, 0.80) 55%,
      rgba(255, 247, 237, 0.35) 70%,
      rgba(255, 247, 237, 0.10) 85%,
      rgba(255, 237, 213, 0.02) 100%
    );
  }

  .hero-split {
    flex-direction: column;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 640px;
    padding: 16px 0 20px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-platforms {
    justify-content: center;
  }

  .hero-footnote {
    text-align: center;
  }

  .hero-free-banner {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(0, 0, 0, 0.06);
  }

  .hero-phone-frame {
    width: 220px;
    height: 478px;
  }

  .app-preview::before,
  .app-preview::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }

  .app-preview::before {
    left: 0;
    background: linear-gradient(90deg, #f0ece6, transparent);
  }

  .app-preview::after {
    right: 0;
    background: linear-gradient(270deg, #f0ece6, transparent);
  }

  .app-preview-track {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }

  .preview-card {
    scroll-snap-align: center;
  }

  .phone-frame-sm {
    width: 120px;
    height: 260px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-hamburger {
    display: block;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .feature-block.reverse .feature-text,
  .feature-block.reverse .feature-visual {
    order: unset;
  }

  .feature-visual {
    order: -1;
  }

  .phone-frame {
    width: 200px;
    height: 434px;
  }

  .hero-feature .phone-frame {
    width: 240px;
    height: 521px;
  }

  .phone-frame:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .step-card--left,
  .step-card--right {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 12px 0 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar-inner {
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .hero-phone-frame {
    width: 180px;
    height: 391px;
  }

  .phone-frame-sm {
    width: 100px;
    height: 217px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
