:root {
  /* Vibrant Fresh Color Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --bg-tertiary: #FFF8F9;

  /* Primary - Cyan/Turquoise #59CCD9 */
  --brand: #59CCD9;
  --brand-light: #E6F7FA;
  --brand-lighter: #F2FBFC;
  --brand-dark: #26AFCA;

  /* Accent 1 - Rose Pink #F2AEB4 */
  --accent-pink: #F2AEB4;
  --accent-pink-light: #FEF3F4;
  --accent-pink-dark: #E89BA2;

  /* Accent 2 - Vibrant Orange #F29E38 */
  --accent-orange: #F29E38;
  --accent-orange-light: #FEF5E7;
  --accent-orange-dark: #E68A1F;

  /* Accent 3 - Blue #26AFCA */
  --accent-blue: #26AFCA;
  --accent-blue-light: #E6F5F9;

  /* Neutral - Slate Blue #6F91AD */
  --neutral-slate: #6F91AD;
  --neutral-slate-light: #EDF2F6;
  --neutral-slate-dark: #5A7A94;

  /* Text colors */
  --text-primary: #2D3748;
  --text-secondary: #4A5568;
  --text-muted: #718096;

  /* Borders and dividers */
  --border-subtle: #E2E8F0;
  --border-medium: #CBD5E0;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(45,55,72,0.04);
  --shadow-soft: 0 4px 16px rgba(45,55,72,0.06);
  --shadow-medium: 0 8px 24px rgba(45,55,72,0.08);
  --shadow-brand: 0 10px 30px rgba(89,204,217,0.25);

  /* Border radius */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  /* Spacing */
  --spacing-section: 100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dark theme overrides */
body.theme-dark {
  /* Dark backgrounds - deep navy/charcoal */
  --bg-primary: #0F1419;
  --bg-secondary: #1A1F2E;
  --bg-tertiary: #252A3A;

  /* Text colors - high contrast */
  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;

  /* Brand colors - brighter cyan for dark mode */
  --brand: #6DD9E6;
  --brand-light: #234851;
  --brand-lighter: #1A3841;
  --brand-dark: #59CCD9;

  /* Accent colors adjusted for dark */
  --accent-pink: #FFC4CC;
  --accent-pink-light: #2D1F23;
  --accent-pink-dark: #F2AEB4;

  --accent-orange: #FFB35C;
  --accent-orange-light: #2D2317;
  --accent-orange-dark: #F29E38;

  --accent-blue: #3DC4E3;
  --accent-blue-light: #1F3441;

  --neutral-slate: #8FABC6;
  --neutral-slate-light: #1F2833;
  --neutral-slate-dark: #6F91AD;

  /* Borders - lighter for visibility */
  --border-subtle: #2D3748;
  --border-medium: #475569;

  /* Shadows - darker and more pronounced */
  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-medium: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-brand: 0 10px 30px rgba(89,204,217,0.4);
}

/* Section Background System - Cohesive gradient flow */
section {
  position: relative;
  padding: var(--spacing-section) 22px;
  overflow: hidden;
}

/* Hero - Gradient from top */
.hero {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 100%);
}

body.theme-dark .hero {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 100%);
}

/* Deals - Soft cyan tint */
.deals {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--brand-lighter) 100%);
}

body.theme-dark .deals {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--brand-lighter) 50%, var(--bg-primary) 100%);
}

/* Stores - Clean transition */
.stores {
  background: var(--brand-lighter);
}

body.theme-dark .stores {
  background: var(--brand-lighter);
}

/* Features - White with subtle gradient */
.features {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 50%, var(--accent-pink-light) 100%);
}

body.theme-dark .features {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 70%, var(--accent-pink-light) 100%);
}

/* Value - Pink accent */
.value {
  background: linear-gradient(180deg, var(--accent-pink-light) 0%, var(--bg-primary) 50%, var(--brand-lighter) 100%);
}

body.theme-dark .value {
  background: linear-gradient(180deg, var(--accent-pink-light) 0%, var(--bg-primary) 60%, var(--brand-lighter) 100%);
}

/* Family - Cyan tint */
.family {
  background: var(--brand-lighter);
}

body.theme-dark .family {
  background: var(--brand-lighter);
}

/* How it works - Clean white */
.how {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 100%);
}

body.theme-dark .how {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 100%);
}

/* CTA sections - Full brand color */
.cta-wide {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-blue) 100%);
  color: white;
  position: relative;
}

.cta-wide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(242,174,180,0.15) 0%, transparent 50%);
  pointer-events: none;
}

body.theme-dark .cta-wide {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-blue) 100%);
}

/* Calculator - Orange accent */
.calculator {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--accent-orange-light) 50%, var(--bg-primary) 100%);
}

body.theme-dark .calculator {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--accent-orange-light) 50%, var(--bg-primary) 100%);
}

/* Receipt - Clean */
.receipt {
  background: var(--bg-secondary);
}

body.theme-dark .receipt {
  background: var(--bg-secondary);
}

/* Testimonials - Soft gradient */
.testimonials {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--brand-lighter) 50%, var(--bg-primary) 100%);
}

body.theme-dark .testimonials {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--brand-lighter) 40%, var(--bg-primary) 100%);
}

/* Get App - Final section */
.getapp {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--brand-lighter) 100%);
}

body.theme-dark .getapp {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--brand-lighter) 100%);
}

/* FAQ - Soft gradient */
.faq {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 100%);
}

body.theme-dark .faq {
  background: linear-gradient(180deg, var(--brand-lighter) 0%, var(--bg-primary) 100%);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 22px; backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border-subtle);
}

body.theme-dark .site-header {
  background: rgba(15,20,25,0.95);
  border-bottom: 1px solid var(--border-medium);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); }
.brand-mark { width: 42px; height: 42px; border-radius: 8px; }
.brand-name { font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: 20px; }

.site-nav { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: flex-end; }
.site-nav ul { list-style: none; display: flex; gap: 14px; margin: 0; padding: 0; align-items: center; }
.site-nav a { color: var(--text-primary); text-decoration: none; padding: 10px 12px; border-radius: var(--radius-sm); font-weight: 600; transition: all 0.2s ease; }
.site-nav a:hover { background: var(--bg-secondary); }
.nav-toggle { display: none; }
.toggles { display: flex; gap: 10px; align-items: center; position: relative; z-index: 10; pointer-events: auto; }
.btn.small { padding: 8px 12px; font-size: 14px; }
#lang-select {
  background: var(--bg-primary);
  border: 2px solid var(--border-medium);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  pointer-events: auto;
  font-size: 15px;
  transition: all 0.2s ease;
}
#lang-select:hover {
  border-color: var(--brand);
  background: var(--brand-lighter);
}
#lang-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-lighter);
}
.btn#theme-toggle {
  cursor: pointer !important;
  pointer-events: auto !important;
  min-width: 48px;
  height: 48px;
  border: 2px solid var(--border-medium) !important;
  background: var(--brand-lighter) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(89,204,217,0.2) !important;
  padding: 0 !important;
  position: relative;
  z-index: 100;
}
.btn#theme-toggle:hover {
  background: var(--brand-light) !important;
  border-color: var(--brand) !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 4px 16px rgba(89,204,217,0.3) !important;
}
.btn#theme-toggle:active {
  transform: translateY(0) scale(0.98) !important;
}
body.theme-dark .btn#theme-toggle {
  background: var(--brand-lighter) !important;
  border-color: var(--brand) !important;
  box-shadow: 0 2px 8px rgba(89,204,217,0.4) !important;
}
body.theme-dark .btn#theme-toggle:hover {
  background: var(--brand-light) !important;
}
.theme-icon-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.theme-icon-light svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
  color: var(--accent-orange);
  pointer-events: none;
}
.theme-icon-dark {
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.theme-icon-dark svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
  color: var(--brand);
  pointer-events: none;
}
body.theme-dark .theme-icon-light { display: none; }
body.theme-dark .theme-icon-dark { display: inline-flex; }
#theme-toggle:hover .theme-icon-light,
#theme-toggle:hover .theme-icon-dark {
  transform: rotate(20deg) scale(1.1);
}
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; border: 0; padding: 0; clip: rect(0 0 0 0); overflow: hidden; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-sm); text-decoration: none; border: 2px solid var(--border-medium); color: var(--text-primary); font-weight: 600; font-size: 16px; background: var(--bg-primary); transition: all 0.2s ease; }
.btn:hover { border-color: var(--brand); color: var(--brand); }
.btn-primary { background: var(--brand); border: 2px solid var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.3); color: white; }
.btn-ghost:hover { background: var(--bg-secondary); }

/* Dark mode button adjustments */
body.theme-dark .btn {
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

body.theme-dark .btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

body.theme-dark .btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(95,212,202,0.3);
}

body.theme-dark .btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 16px rgba(95,212,202,0.4);
}

body.theme-dark .btn-ghost:not(.cta-card .btn-ghost) {
  border-color: var(--border-medium);
  color: var(--text-primary);
}

body.theme-dark .btn-ghost:not(.cta-card .btn-ghost):hover {
  border-color: var(--brand);
  background: var(--brand-lighter);
}

/* Hero */
.hero { padding: 80px 22px 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, var(--accent-pink-light) 0%, transparent 70%); pointer-events: none; opacity: 0.6; }
.hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-family: "Poppins", sans-serif; font-weight: 800; font-size: clamp(48px, 7vw, 84px); line-height: 1.05; margin: 0 0 24px; letter-spacing: -0.02em; text-wrap: balance; }
.lead { font-size: clamp(18px, 1.5vw, 24px); font-weight: 400; color: var(--text-muted); max-width: 58ch; line-height: 1.5; }
.accent-pill { display: inline-block; font-size: 13px; font-weight: 800; padding: 8px 14px; margin-right: 10px; background: var(--accent-orange); color: #fff; border: none; border-radius: 999px; vertical-align: middle; box-shadow: 0 4px 12px rgba(242,158,56,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.cta-row { display: flex; gap: 16px; margin: 32px 0 20px; flex-wrap: wrap; }
.hero-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; color: var(--text-primary); font-weight: 500; }
.hero-points li { display: flex; align-items: center; gap: 12px; }
.hero-points li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--brand-lighter); color: var(--brand-dark); border-radius: 6px; font-weight: 900; font-size: 14px; flex-shrink: 0; }

/* Phone mock */
.hero-art { display: flex; justify-content: center; position: relative; }
.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(89,204,217,0.3));
  border-radius: 24px;
  animation: float-gentle 6s ease-in-out infinite;
  transition: transform 0.3s ease;
  mix-blend-mode: multiply;
  background: transparent;
}
.hero-image:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 50px rgba(89,204,217,0.4));
}

/* Dark mode - blend to hide light background */
body.theme-dark .hero-image {
  filter: drop-shadow(0 10px 40px rgba(89,204,217,0.6)) brightness(0.7) contrast(1.1);
  mix-blend-mode: lighten;
}

body.theme-dark .hero-image:hover {
  filter: drop-shadow(0 15px 50px rgba(89,204,217,0.7)) brightness(0.7) contrast(1.1);
}

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

/* Features */
.features { padding: 80px 22px 40px; }
.features h2, .how h2, .faq h2 { font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: -0.02em; font-size: clamp(36px, 4vw, 64px); line-height: 1.1; }
.features > h2, .value > h2, .testimonials > h2 { width: min(100%, 1200px); margin: 0 auto 48px; text-align: center; }
.how > h2, .faq > h2 { width: min(100%, 1000px); margin: 0 auto 32px; text-align: center; }
.feature-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-grid article { background: var(--bg-primary); border: 2px solid var(--border-subtle); border-radius: var(--radius); padding: 28px; display: grid; gap: 16px; align-content: start; transition: all 0.3s ease; box-shadow: var(--shadow-subtle); }
.feature-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--brand-lighter); }
.feature-grid article img { width: 100%; height: auto; border-radius: 16px; background: var(--brand-lighter); padding: 20px; }
.feature-grid h3 { margin: 0; font-size: 20px; font-weight: 700; font-family: 'Poppins', sans-serif; }
.feature-grid p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Deals (flyer energy) */
.deals { padding: 60px 22px; }
.deals h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(32px, 3.5vw, 56px); width: min(100%,1200px); margin: 0 auto 40px; text-align: center; letter-spacing: -0.02em; }
.deal-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.deal { position: relative; background: var(--bg-primary); border: 2px solid var(--border-subtle); border-radius: var(--radius); padding: 20px; display: grid; gap: 12px; box-shadow: var(--shadow-subtle); transition: all 0.3s ease; overflow: hidden; }
.deal:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.deal::before { content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px; background: var(--accent-pink-light); border-radius: 0 0 0 100%; }
.deal-tag { position: absolute; top: 12px; right: 12px; z-index: 1; background: var(--accent-orange); color: #fff; border-radius: 12px; padding: 8px 12px; box-shadow: 0 6px 16px rgba(242,158,56,0.4); display: inline-flex; align-items: baseline; gap: 2px; }
.deal-tag .price { font: 900 22px/1 'DM Mono', monospace; letter-spacing: -0.03em; }
.deal-tag .unit { font: 600 13px/1 'DM Mono', monospace; opacity: 0.95; }
.deal-body { position: relative; z-index: 1; }
.deal-body strong { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; }
.deal .store { color: var(--text-muted); font-size: 14px; }
.deal .logo {
  margin-bottom: 8px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.deal .logo img {
  max-width: 80px;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Ensure consistent sizing in dark mode */
body.theme-dark .deal .logo img {
  filter: brightness(1.1);
}
.deal .meta { margin-top: 8px; font-size: 14px; color: var(--text-muted); }
.deal .was { font-weight: 600; }

/* Store chips */
.stores { padding: 40px 22px; }
.chips { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { display: inline-flex; align-items: center; padding: 12px 20px; border-radius: 999px; border: 2px solid var(--border-subtle); background: var(--bg-primary); color: var(--text-primary); font-weight: 700; font-size: 15px; transition: all 0.2s ease; box-shadow: var(--shadow-subtle); }
.chip:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* Value props */
.value { padding: 80px 22px; }
.value h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(36px, 4vw, 64px); margin: 0 0 48px; letter-spacing: -0.02em; }
.value .container { max-width: 1200px; margin: 0 auto; }
.value-grid { max-width: 1200px; margin: 0 auto 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-grid article { background: var(--bg-primary); border: 2px solid var(--border-subtle); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-subtle); transition: all 0.3s ease; position: relative; overflow: hidden; }
.value-grid article::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: var(--brand-light); border-radius: 0 0 0 100%; transition: all 0.3s ease; }
.value-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--brand); }
.value-grid article:hover::before { width: 200px; height: 200px; }
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.value-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  color: var(--brand);
  transition: all 0.3s ease;
}
.value-grid article:hover .value-icon svg {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-orange);
}
.value-grid h3 { margin: 0 0 12px; font-size: 24px; font-weight: 700; font-family: 'Poppins', sans-serif; position: relative; z-index: 1; }
.value-grid p { margin: 0; color: var(--text-muted); font-size: 16px; line-height: 1.6; position: relative; z-index: 1; }
.stats { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { background: var(--bg-primary); border: 2px solid var(--brand); border-radius: var(--radius); padding: 32px 24px; display: grid; gap: 8px; text-align: center; box-shadow: var(--shadow-subtle); transition: all 0.3s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.stat:nth-child(1) { border-color: var(--brand); }
.stat:nth-child(2) { border-color: var(--accent-orange); }
.stat:nth-child(3) { border-color: var(--accent-pink); }
.stat .num { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--brand); font-size: clamp(40px, 4vw, 56px); letter-spacing: -0.02em; }
.stat:nth-child(2) .num { color: var(--accent-orange); }
.stat:nth-child(3) .num { color: var(--accent-pink); }
.stat .label { color: var(--text-primary); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Family images strip */
.family { padding: 60px 22px; }
.family-strip { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.family-strip img { width: 100%; height: auto; border-radius: var(--radius); background: var(--brand-lighter); border: 2px solid var(--border-subtle); padding: 16px; box-shadow: var(--shadow-subtle); transition: all 0.3s ease; }
.family-strip img:hover { transform: scale(1.02); box-shadow: var(--shadow-soft); }

/* How it works */
.how { padding: 80px 22px; }
.steps { max-width: 1000px; margin: 0 auto; list-style: none; padding: 0; display: grid; gap: 24px; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; background: var(--bg-primary); border: 2px solid var(--border-subtle); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-subtle); transition: all 0.3s ease; }
.steps li:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); border-color: var(--brand-lighter); }
.step-visual { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.step-number { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--brand) 0%, var(--accent-blue) 100%); color: #fff; font-weight: 800; font-size: 28px; font-family: 'Poppins', sans-serif; box-shadow: 0 4px 12px rgba(89,204,217,0.4); }
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  color: var(--brand);
}
.steps h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; font-family: 'Poppins', sans-serif; }
.steps p { margin: 0; color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* CTA wide */
.cta-wide { padding: 80px 22px; }
.cta-card { max-width: 1000px; margin: 0 auto; border-radius: var(--radius-lg); padding: 56px 48px; background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%); border: none; display: grid; gap: 16px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); }
.cta-card::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); }
.cta-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.cta-visual svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.5;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.cta-card h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 48px); color: #fff; margin: 0; letter-spacing: -0.02em; position: relative; z-index: 1; }
.cta-card p { color: rgba(255,255,255,0.9); margin: 0; font-size: 20px; position: relative; z-index: 1; }
.cta-card .cta-row { justify-content: center; margin-top: 16px; position: relative; z-index: 1; }
.cta-card .btn-primary { background: #fff; color: var(--brand); border: 2px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-card .btn-primary:hover { background: var(--accent-gold-light); color: var(--brand-dark); }
.cta-card .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Get app + waitlist */
.getapp {
  padding: 60px 22px 80px;
  position: relative;
}

.getapp::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-lighter) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
  filter: blur(80px);
}

.getapp .inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  z-index: 1;
}

.getapp h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.getapp .muted { font-size: 18px; color: var(--text-muted); }
.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badges img { height: 50px; width: auto; opacity: 0.8; transition: opacity 0.2s ease; }
.store-badges img:hover { opacity: 1; }
.subscribe { display: grid; gap: 12px; grid-template-columns: 1fr auto; max-width: 600px; margin: 0 auto; }
.subscribe input[type="email"] { padding: 16px 20px; border-radius: 14px; border: 2px solid var(--border-subtle); background: var(--bg-primary); color: var(--text-primary); font-size: 16px; font-weight: 500; transition: all 0.2s ease; }
.subscribe input[type="email"]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-lighter); }
.subscribe button { padding: 16px 28px; border-radius: 14px; border: none; background: var(--brand); color: #fff; font-weight: 800; font-size: 16px; cursor: pointer; box-shadow: 0 4px 12px rgba(78,205,196,0.3); transition: all 0.2s ease; }
.subscribe button:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(78,205,196,0.4); background: var(--brand-dark); }
.subscribe .hint { grid-column: 1 / -1; color: var(--text-muted); font-size: 14px; }
.subscribe .msg { grid-column: 1 / -1; font-size: 15px; font-weight: 600; }

/* Calculator */
.calculator { padding: 60px 22px; }
.calc-card { max-width: 1000px; margin: 0 auto; border-radius: var(--radius); padding: 40px; border: 2px solid var(--border-subtle); background: var(--bg-primary); display: grid; gap: 20px; box-shadow: var(--shadow-subtle); }
.calc-card h2 { margin: 0; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 36px; letter-spacing: -0.02em; }
.calc-card .muted { color: var(--text-muted); font-size: 16px; }
.calc-controls { display: grid; gap: 16px; }
.calc-controls label { font-weight: 700; font-size: 16px; }
#weekly-spend { width: 100%; height: 12px; accent-color: var(--brand); border-radius: 999px; cursor: pointer; }
.calc-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.calc-values > span { background: var(--brand-light); border: 2px solid var(--brand-lighter); border-radius: var(--radius-sm); padding: 20px 16px; text-align: center; font-weight: 700; font-size: 16px; display: flex; flex-direction: column; align-items: center; }
.calc-values strong { display: block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--brand); }
.calc-values > span > span { display: block; font-size: 24px; font-weight: 900; color: var(--text-primary); font-family: 'DM Mono', monospace; }
.disclaimer { color: var(--text-muted); font-size: 14px; margin: 0; }

/* Receipt */
.receipt { padding: 40px 22px 80px; }
.receipt-card { max-width: 700px; margin: 0 auto; background: var(--bg-primary); border: 2px solid var(--border-subtle); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.receipt-card h2 { font-family: 'Fraunces', serif; font-weight: 900; font-size: 32px; margin: 0 0 20px; letter-spacing: -0.03em; font-variation-settings: 'opsz' 144; }
.paper { font-family: 'DM Mono', monospace; background: repeating-linear-gradient(180deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 26px), var(--bg-elev); border-radius: 12px; padding: 24px; border: 2px solid var(--border-subtle); font-size: 15px; }
.paper .row { display: flex; justify-content: space-between; margin: 8px 0; }
.paper .sep { color: var(--text-muted); opacity: 0.4; text-align: center; margin: 12px 0; font-family: 'DM Mono', monospace; }
.stamp { display: inline-block; margin-top: 12px; padding: 8px 16px; border: 3px dashed var(--sale); color: var(--sale); font-weight: 900; transform: rotate(-6deg); font-size: 18px; letter-spacing: 0.1em; }

/* Testimonials */
.testimonials { padding: 80px 22px; background: var(--brand-light); }
.testimonials h2 { font-family: 'Fraunces', serif; font-weight: 900; font-size: clamp(36px, 4vw, 64px); letter-spacing: -0.03em; font-variation-settings: 'opsz' 144; }
.tes-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tes-grid figure { margin: 0; background: var(--bg-primary); border: 2px solid var(--brand-lighter); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-soft); position: relative; }
.tes-grid figure::before { content: '"'; position: absolute; top: 20px; left: 20px; font-family: 'Fraunces', serif; font-size: 80px; font-weight: 900; color: var(--brand-lighter); line-height: 1; opacity: 0.5; }
.tes-grid blockquote { margin: 0 0 20px; font-style: normal; font-size: 17px; line-height: 1.6; position: relative; z-index: 1; }
.tes-grid figcaption { color: var(--brand-700); font-size: 15px; font-weight: 700; }

/* FAQ */
.faq section { padding: 80px 22px; max-width: 1000px; margin: 0 auto; }
.faq details { background: var(--bg-primary); border: 2px solid var(--border-subtle); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-subtle); transition: all 0.3s ease; }
.faq details:hover { border-color: var(--brand-lighter); }
.faq details + details { margin-top: 16px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 18px; font-family: 'Outfit', sans-serif; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: '+'; display: inline-block; width: 24px; height: 24px; margin-right: 12px; background: var(--brand-lighter); color: var(--brand-700); border-radius: 6px; text-align: center; line-height: 24px; font-weight: 900; transition: transform 0.3s ease; }
.faq details[open] summary::before { content: '−'; transform: rotate(90deg); }
.faq p { color: var(--text-muted); margin: 16px 0 0; line-height: 1.6; font-size: 16px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border-subtle); padding: 20px 22px; background: color-mix(in oklab, var(--bg-primary) 92%, transparent); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; }
.footer-inner nav { display: flex; gap: 12px; }
.footer-inner a { color: var(--text-muted); text-decoration: none; }
.branding { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); }
.branding img { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .family-strip { grid-template-columns: 1fr 1fr; }
  .tes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .calc-values { grid-template-columns: 1fr; }
  .family-strip { grid-template-columns: 1fr; }
  .tes-grid { grid-template-columns: 1fr; }
  .site-nav { flex-wrap: wrap; }
  .site-nav ul { display: none; position: absolute; right: 16px; top: 58px; background: var(--bg-secondary); border: 2px solid var(--border-subtle); border-radius: 12px; padding: 10px; width: 240px; box-shadow: var(--shadow-soft); z-index: 100; }
  .site-nav ul.open { display: grid; }
  .nav-toggle { display: inline-flex; padding: 10px 12px; border-radius: 10px; border: 2px solid var(--border-subtle); background: var(--bg-primary); color: var(--text-primary); font-weight: 700; cursor: pointer; }
  .toggles { order: -1; }
  .getapp .inner { padding: 32px 20px; }
  .subscribe { grid-template-columns: 1fr; }
  .subscribe button { width: 100%; }
  .store-badges { flex-direction: column; align-items: center; }
  .site-footer nav { flex-wrap: wrap; justify-content: center; }
}

/* Accessibility */
.skip-link { position: absolute; left: 12px; top: -40px; background: var(--brand); color: #fff; padding: 8px 12px; border-radius: 10px; transition: top .2s ease; z-index: 50; }
.skip-link:focus { top: 12px; }

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
  .hero, .deals, .features, .value, .how, .calculator, .receipt, .testimonials, .getapp { animation: fadeUp .6s ease both; }
  .deals { animation-delay: .05s; }
  .features { animation-delay: .1s; }
  .value { animation-delay: .15s; }
  .how { animation-delay: .2s; }
  .calculator { animation-delay: .25s; }
  .receipt { animation-delay: .3s; }
  .testimonials { animation-delay: .35s; }
  .getapp { animation-delay: .4s; }
}

/* Section Dividers - Simple and professional */
.section-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
  border: none;
}

/* Subtle gradient divider for emphasis */
.section-divider.gradient {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--border-medium) 20%,
    var(--border-medium) 80%,
    transparent 100%
  );
}

/* Spacing divider with decorative element */
.section-divider.spaced {
  height: 80px;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider.spaced::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0.2;
}

/* Parallax Background Decorations */
:root {
  --parallax-offset: 0px;
}

/* Animated background orbs */
.hero::before,
.features::before,
.value::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  filter: blur(60px);
  will-change: transform;
}

.hero::before {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%);
  transform: translateY(calc(var(--parallax-offset) * -0.1));
}

.features::before {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-pink-light) 0%, transparent 70%);
  transform: translateY(calc(var(--parallax-offset) * 0.15));
}

.value::before {
  top: 50%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--brand-lighter) 0%, transparent 70%);
  transform: translateY(calc(var(--parallax-offset) * -0.2));
}

/* Floating elements */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply floating animation to cards */
.feature-grid article,
.deal,
.value-grid article {
  will-change: transform;
  animation: fade-in-up 0.6s ease-out backwards;
}

.feature-grid article:nth-child(1) { animation-delay: 0.1s; }
.feature-grid article:nth-child(2) { animation-delay: 0.2s; }
.feature-grid article:nth-child(3) { animation-delay: 0.3s; }
.feature-grid article:nth-child(4) { animation-delay: 0.4s; }

.value-grid article:nth-child(1) { animation-delay: 0.15s; }
.value-grid article:nth-child(2) { animation-delay: 0.25s; }
.value-grid article:nth-child(3) { animation-delay: 0.35s; }
.value-grid article:nth-child(4) { animation-delay: 0.45s; }

/* Hover parallax effect */
.feature-grid article:hover,
.value-grid article:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Floating animation for icons */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.value-icon,
.step-icon,
.cta-visual {
  animation: float 3s ease-in-out infinite;
}

.value-icon { animation-delay: 0s; }
.step-icon { animation-delay: 0.3s; }
.cta-visual { animation-delay: 0.6s; }

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger reveals with smooth timing */
.scroll-reveal-1 { transition-delay: 0.1s; }
.scroll-reveal-2 { transition-delay: 0.2s; }
.scroll-reveal-3 { transition-delay: 0.3s; }
.scroll-reveal-4 { transition-delay: 0.4s; }

/* Smooth hover transitions for all interactive elements */
a, button, .btn, .chip, .deal, article {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulse animation for CTAs */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(78,205,196,0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(78,205,196,0.5);
  }
}

.btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

/* Smooth section transitions on scroll */
@keyframes section-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section h2 {
  animation: section-fade-in 1s ease-out;
}
