/* ============================================================
   FEEDMYCART — Onepager
   styles.css — lighter, green-themed sibling of Menno design
   ============================================================ */


/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Lighter palette than Menno — hint of warm sage */
  --bg:              #FAFAF6;
  --bg-alt:          #F1F3EC;
  --bg-card:         #FFFFFF;
  --bg-dark:         #102218;   /* deep green-black — lighter than #0E0E0C */

  --text-primary:    #131613;
  --text-secondary:  #5C6058;
  --text-muted:      #9A9D94;
  --text-on-dark:    #F8F7F4;
  --text-on-dark-muted: rgba(248,247,244,0.55);

  --accent:          #1F5E3C;   /* deep forest */
  --accent-hover:    #174A2F;
  --accent-light:    #E3EFE6;
  --accent-glow:     rgba(31,94,60,0.12);
  --accent-bright:   #2E7D4F;
  --gold:            #C4A96A;
  --gold-light:      rgba(196,169,106,0.15);

  /* Supermarket brand colors — matched to each chain's official identity */
  --ah-blue:         #00ADE6;
  --jumbo-yellow:    #FAB400;
  --plus-green:      #7CB928;
  --aldi-navy:       #001E78;
  --lidl-blue:       #0050AA;

  --border:          #E6E3DD;
  --border-subtle:   rgba(17,16,16,0.06);
  --border-dark:     rgba(255,255,255,0.08);

  --shadow-xs:       0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm:       0 2px 14px rgba(0,0,0,0.06);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:       0 24px 64px rgba(0,0,0,0.12);
  --shadow-phone:    0 30px 60px rgba(16,34,24,0.18), 0 12px 24px rgba(16,34,24,0.12);
  --shadow-accent:   0 8px 28px rgba(31,94,60,0.22);

  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:     128px;
  --container:       1180px;
  --gutter:          24px;

  --radius-sm:       6px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --radius-pill:     999px;
  --radius-phone:    40px;

  --ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:             0.25s;
}


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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-top: 3px solid var(--accent);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-style: italic; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(31,94,60,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section--alt  { background-color: var(--bg-alt); }
.section--dark { background-color: var(--bg-dark); color: var(--text-on-dark); }

@media (max-width: 599px) { .hide-mobile { display: none; } }


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.label--light { color: var(--text-on-dark-muted); }
.label--light::before { background: rgba(196,169,106,0.6); }

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

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease-std),
              color var(--dur) var(--ease-std),
              border-color var(--dur) var(--ease-std),
              transform var(--dur) var(--ease-std),
              box-shadow var(--dur) var(--ease-std);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(140deg, #2A7B50 0%, #1F5E3C 55%, #133D26 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 18px rgba(31,94,60,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--primary:hover {
  background: linear-gradient(140deg, #318859 0%, #246a44 55%, #174731 100%);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(31,94,60,0.55), 0 8px 24px rgba(31,94,60,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(17,16,16,0.25);
  color: var(--text-primary);
  transform: translateY(-1px);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--dur) var(--ease-std),
              padding var(--dur) var(--ease-std),
              border-color var(--dur) var(--ease-std),
              box-shadow var(--dur) var(--ease-std);
  border-bottom: 1px solid transparent;
  background: rgba(250,250,246,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav.scrolled {
  background: rgba(250,250,246,0.92);
  padding: 11px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border-subtle), var(--shadow-xs);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(15,45,61,0.25);
  display: block;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--dur) ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 16px; flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 24px;
  background: rgba(250,250,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) ease;
}
.nav__mobile-link:hover { color: var(--text-primary); }
.nav__mobile-cta { margin-top: 20px; justify-content: center; width: 100%; }


/* ============================================================
   HERO — light, with subtle green glow
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 80px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 65% at 10% 50%,  rgba(31,94,60,0.10)  0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 85% 25%,  rgba(196,169,106,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 60% 90%,  rgba(31,94,60,0.06)  0%, transparent 50%);
  pointer-events: none;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,94,60,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,94,60,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
  pointer-events: none;
}

/* Subtle giant icon watermark behind hero — adds brand presence without dominating */
.hero__watermark {
  position: absolute;
  bottom: -80px;
  left: -90px;
  width: 540px;
  height: 540px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.3px);
}

@media (max-width: 1024px) {
  .hero__watermark {
    width: 380px;
    height: 380px;
    bottom: -60px;
    left: auto;
    right: -80px;
    opacity: 0.05;
  }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 80px;
}

.hero__content { max-width: 620px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
  flex-shrink: 0;
  animation: pulse-green 2.5s ease infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0.08); }
}

.hero__headline {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, #4FAA72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__usp-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.hero__usp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__usp-check {
  color: var(--accent);
  font-weight: 700;
}


/* ============================================================
   PHONE COMPONENT — used in hero + spotlights
   ============================================================ */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 1206 / 2622;
  background: #111;
  border-radius: var(--radius-phone);
  padding: 7px;
  box-shadow: var(--shadow-phone);
  margin: 0 auto;
}

.phone--lg {
  width: 340px;
}

.phone--tilt {
  transform: rotate(2.5deg);
  transition: transform 0.5s var(--ease);
}
.phone--tilt:hover { transform: rotate(0deg); }

.phone--tilt-left {
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease);
}
.phone--tilt-left:hover { transform: rotate(0deg); }

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
}

.phone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* iPhone screenshots already include the Dynamic Island — hide the fake notch */
.phone__notch {
  display: none;
}


/* ============================================================
   HERO VISUAL EXTRAS
   ============================================================ */
.hero__visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  z-index: 3;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero__chip--top {
  top: 8%;
  left: -10px;
  animation-delay: 0.4s;
}

.hero__chip--bottom {
  bottom: 12%;
  right: -28px;
  animation-delay: 1.2s;
}

.hero__chip-icon {
  font-size: 16px;
}

.hero__chip-deal {
  background: var(--ah-blue);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}

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

.hero__ring {
  position: absolute;
  top: 40px;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(31,94,60,0.12);
  z-index: 1;
  pointer-events: none;
}
.hero__ring::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%; left: -5px;
  margin-top: -5px;
  animation: ring-orbit 14s linear infinite;
  transform-origin: calc(100px + 5px) 0;
}
@keyframes ring-orbit {
  from { transform: rotate(0deg) translateX(100px); }
  to   { transform: rotate(360deg) translateX(100px); }
}

.hero__scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(31,94,60,0.4), transparent);
  animation: scroll-pulse 2.5s ease infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0 20px;
  transition: color var(--dur) ease;
}

.marquee-item:hover { color: var(--accent); }

.marquee-sep {
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   POSITIONING / INTRO
   ============================================================ */
.positioning {
  padding: var(--section-pad) 0;
}

.positioning__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.positioning__label-col { padding-top: 6px; }

.positioning__lead {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.positioning__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 640px;
}

.positioning__body em { color: var(--accent); font-style: italic; font-weight: 500; }

.positioning__stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat__number {
  display: inline-block;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 7px;
}

.stat__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================================
   FEATURES CARDS (expertise grid)
   ============================================================ */
.expertise { padding: var(--section-pad) 0; }

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(31,94,60,0.15);
}
.card:hover::before { transform: scaleX(1); }

.card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Subtle brand-stamp in bottom-right of each feature card */
.card__brand-stamp {
  position: absolute;
  bottom: 16px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  opacity: 0.28;
  transition: opacity 0.4s var(--ease);
}
.card:hover .card__brand-stamp { opacity: 0.7; }

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--dur) ease;
}
.card:hover .card__icon { background: rgba(31,94,60,0.12); }

.card__title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.card__result {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}


/* ============================================================
   SPOTLIGHT — Shared household feature
   ============================================================ */
.spotlight { padding: var(--section-pad) 0; }

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

.spotlight__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.spotlight__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.spotlight__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.spotlight__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.spotlight__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.spotlight__item div {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.spotlight__item strong {
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.spotlight__bullet {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.spotlight__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.spotlight__floater {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.spotlight__floater--top {
  top: 6%;
  right: -30px;
  animation-delay: 0.6s;
}

.spotlight__floater-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border: 2px solid var(--bg-card);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.avatar--green { background: var(--accent); }
.avatar--gold  { background: var(--gold); }
.avatar--dark  { background: var(--bg-dark); }

.spotlight__floater-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.spotlight__floater-sub {
  font-size: 11px;
  color: var(--text-muted);
}


/* ============================================================
   WAYS — three ways to add
   ============================================================ */
.ways { padding: var(--section-pad) 0; }

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

.way-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.way-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.way-card__visual {
  position: relative;
  height: 220px;
  background: linear-gradient(160deg, var(--bg-alt) 0%, #E8EBE2 100%);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Voice visual */
.way-card__visual--voice {
  background: linear-gradient(160deg, var(--accent-light) 0%, #D5E5D9 100%);
}

.way-card__pulse {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  animation: pulse-ring 2.4s ease-out infinite;
}
.way-card__pulse--2 { animation-delay: 0.8s; }
.way-card__pulse--3 { animation-delay: 1.6s; }

@keyframes pulse-ring {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.2);  opacity: 0; }
}

.way-card__icon {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31,94,60,0.4);
  z-index: 2;
}

.way-card__transcript {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  color: var(--text-primary);
}

.way-card__waveform {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  flex-shrink: 0;
}
.way-card__waveform span {
  display: block;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: wave 1.2s ease-in-out infinite;
}
.way-card__waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.way-card__waveform span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.way-card__waveform span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.way-card__waveform span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.way-card__waveform span:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.way-card__waveform span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.way-card__waveform span:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.way-card__waveform span:nth-child(8) { height: 60%; animation-delay: 0.7s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50%      { transform: scaleY(1.4); }
}

/* Photo (handwritten note → items) visual */
.way-card__visual--photo {
  background: linear-gradient(160deg, #F4F1E6 0%, #EAE6D6 100%);
  padding: 24px;
  gap: 14px;
}

.way-card__note {
  background: #FEFCF3;
  border: 1px solid #E5DEC4;
  border-radius: 8px;
  padding: 16px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: rotate(-3deg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Caveat', 'Brush Script MT', cursive;
}
.way-card__note-line {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 2px;
}

.way-card__arrow {
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
}

.way-card__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.way-card__item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 11px;
  color: var(--text-primary);
}
.way-card__item-emoji { font-size: 12px; }

/* Suggest visual */
.way-card__visual--suggest {
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}

.way-card__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.way-card__suggest-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.way-card__suggest-pill {
  background: rgba(16,34,24,0.92);
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.way-card__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.way-card__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.way-card__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ============================================================
   MAGIC — Receipt → checked off
   ============================================================ */
.magic {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

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

.magic__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.magic__receipt {
  position: absolute;
  top: 8%;
  left: 0;
  width: 200px;
  background: #FEFEFE;
  border-radius: 4px;
  padding: 20px 18px 24px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #333;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transform: rotate(-6deg);
  z-index: 2;
}

.magic__receipt-header {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

.magic__receipt-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 11px;
}

.magic__receipt-line--total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #ccc;
  font-weight: 700;
}

.magic__receipt-cut {
  height: 8px;
  margin: 12px -18px -24px;
  background:
    linear-gradient(to right, transparent 50%, #FEFEFE 50%) 0 0 / 16px 8px repeat-x,
    radial-gradient(circle at 8px 8px, #FEFEFE 4px, transparent 4px) 0 100% / 16px 8px repeat-x;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.06));
}

.magic__arrow {
  position: absolute;
  top: 50%;
  left: 36%;
  transform: translateY(-50%);
  color: var(--accent);
  z-index: 3;
  animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.8; }
  50%      { transform: translateY(-50%) translateX(8px); opacity: 1; }
}

.magic__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.magic__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.magic__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 540px;
}

.magic__points {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  align-items: center;
}

.magic__point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  flex: 1;
  max-width: 160px;
}

.magic__point--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.magic__point-num {
  display: block;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.magic__point--accent .magic__point-num { color: #fff; }

.magic__point-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}
.magic__point--accent .magic__point-label { color: rgba(255,255,255,0.85); }


/* ============================================================
   DEALS — Aanbiedingen section
   ============================================================ */
.deals { padding: var(--section-pad) 0; }

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

.deals__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.deals__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.deals__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

/* Chain pills — compact strip of all active supermarket chains */
.deals__chains {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.deals__chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 12px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) ease;
}
.deals__chain-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.deals__chain-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.deals__chain-dot.ah    { background: var(--ah-blue); }
.deals__chain-dot.jumbo { background: var(--jumbo-yellow); }
.deals__chain-dot.plus  { background: var(--plus-green); }
.deals__chain-dot.aldi  { background: var(--aldi-navy); }
.deals__chain-dot.lidl  { background: var(--lidl-blue); }

.deals__feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.deals__feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.deals__feature-badge {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.deals__feature-badge.ah     { background: var(--ah-blue); }
.deals__feature-badge.jumbo  { background: var(--jumbo-yellow); color: #1a1a1a; }
.deals__feature-badge.plus   { background: var(--plus-green); }
.deals__feature-badge.custom { background: var(--accent); font-size: 18px; }

.deals__feature-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.deals__feature-text strong {
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}

.deals__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}


/* ============================================================
   WALLET — Bonuskaarten section
   ============================================================ */
.wallet { padding: var(--section-pad) 0; }

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

.wallet__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.wallet__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.wallet__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.wallet__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}

.wallet__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wallet__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-secondary);
}

.wallet__check {
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
}


/* ============================================================
   RECIPES — paste link → ingredients → list
   ============================================================ */
.recipes { padding: var(--section-pad) 0; }

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

.recipes__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.recipes__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recipes__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.recipes__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  counter-reset: step;
}

.recipes__step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.recipes__step div {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.recipes__step strong {
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.recipes__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(31,94,60,0.25);
}

.recipes__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

/* Phone mockup interior — not a real screenshot, a styled recipe-flow */
.recipes__mockup {
  background: #FAFAF6;
  padding: 22px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.recipes__mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px 10px;
  border-bottom: 1px solid var(--border);
}
.recipes__mock-back {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
}
.recipes__mock-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.recipes__mock-paste {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px dashed var(--accent);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text-secondary);
}
.recipes__mock-paste-icon {
  font-size: 14px;
}
.recipes__mock-paste-url {
  font-family: 'Courier New', monospace;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.recipes__mock-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-xs);
}
.recipes__mock-photo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FCE7C8 0%, #F4B860 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.recipes__mock-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.recipes__mock-card-meta {
  font-size: 10.5px;
  color: var(--text-muted);
}

.recipes__mock-servings {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.recipes__mock-servings-label {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.recipes__mock-servings-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recipes__mock-stepper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.recipes__mock-servings-value {
  flex: 1;
  text-align: center;
}
.recipes__mock-people {
  display: block;
  font-size: 12px;
  letter-spacing: -1px;
  margin-bottom: 2px;
}
.recipes__mock-count {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.recipes__mock-ing-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 4px;
}
.recipes__mock-ing-count {
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
}

.recipes__mock-ings {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}
.recipes__mock-ings li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11.5px;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.recipes__mock-ings li span:first-child {
  font-size: 14px;
}
.recipes__mock-qty {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.recipes__mock-cta {
  background: linear-gradient(140deg, #2A7B50 0%, #1F5E3C 100%);
  color: #fff;
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(31,94,60,0.3);
}

.recipes__floater {
  position: absolute;
  bottom: 6%;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 16px 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.6s;
}
.recipes__floater-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22C55E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.recipes__floater-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.recipes__steps .reveal:nth-child(2) { transition-delay: 0.06s; }
.recipes__steps .reveal:nth-child(3) { transition-delay: 0.12s; }


/* ============================================================
   WATEETIK — AI meal planner (flagship feature)
   ============================================================ */
.wateetik {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.wateetik__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(31,94,60,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(196,169,106,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.wateetik__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.wateetik__title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.wateetik__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, #4FAA72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wateetik__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}
.wateetik__body strong {
  color: var(--text-primary);
  font-weight: 500;
}

.wateetik__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wateetik__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.wateetik__feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.wateetik__feature div {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.wateetik__feature strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 3px;
}

.wateetik__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

/* Phone-frame interior — matches recipes/spotlight rhythm */
.wateetik__mockup {
  background: #FAFAF6;
  padding: 22px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.wateetik__mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 10px;
  border-bottom: 1px solid var(--border);
}
.wateetik__mock-back {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
}
.wateetik__mock-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}
.wateetik__mock-spark {
  font-size: 14px;
}

.wateetik__mock-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wateetik__mock-control {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wateetik__mock-control-label {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wateetik__mock-control-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.wateetik__mock-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border-radius: 8px;
  padding: 8px 12px;
}
.wateetik__mock-toggle-dot {
  width: 28px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.wateetik__mock-toggle-dot::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  right: 2px;
}
.wateetik__mock-toggle-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
}

.wateetik__mock-plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  box-shadow: var(--shadow-xs);
}

.wateetik__mock-plan-card--primary {
  border-color: rgba(31,94,60,0.25);
  box-shadow: 0 4px 14px rgba(31,94,60,0.10);
}

.wateetik__mock-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.wateetik__mock-plan-day {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.wateetik__mock-plan-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}
.wateetik__mock-plan-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.wateetik__mock-plan-card--primary .wateetik__mock-plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.wateetik__mock-ing {
  font-size: 9.5px;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--text-secondary);
  border-radius: 5px;
  padding: 3px 7px;
}
.wateetik__mock-ing--have {
  background: var(--accent-light);
  color: var(--accent);
}
.wateetik__mock-ing--deal {
  background: var(--ah-blue);
  color: #fff;
}

/* Floating chips outside the phone — match recipes section rhythm */
.wateetik__floater {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.wateetik__floater--top {
  top: 6%;
  right: -20px;
  background: linear-gradient(140deg, #2A7B50 0%, #1F5E3C 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(31,94,60,0.4);
  animation-delay: 0.4s;
}
.wateetik__floater-spark { font-size: 14px; }

.wateetik__floater--bottom {
  bottom: 8%;
  left: -30px;
  padding: 10px 16px;
  font-size: 12px;
  animation-delay: 1.2s;
}

.wateetik__floater-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11.5px;
}
.wateetik__floater-stats strong {
  color: var(--text-primary);
  font-weight: 600;
}
.wateetik__floater-sep { color: var(--text-muted); }
.wateetik__floater-stat--accent strong { color: var(--accent); }

.wateetik__features .reveal:nth-child(2) { transition-delay: 0.06s; }
.wateetik__features .reveal:nth-child(3) { transition-delay: 0.12s; }
.wateetik__features .reveal:nth-child(4) { transition-delay: 0.18s; }


/* ============================================================
   PANTRY — voorraadkast
   ============================================================ */
.pantry { padding: var(--section-pad) 0; }

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

.pantry__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.pantry__locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 360px;
}

.pantry__location {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pantry__location:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.pantry__location-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.pantry__location-icon { font-size: 18px; }

.pantry__location-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.pantry__location-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
}

.pantry__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pantry__items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
  padding: 4px 0;
}
.pantry__items span:first-child { font-size: 14px; }
.pantry__qty {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 6px;
}

.pantry__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.pantry__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.pantry__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}

.pantry__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pantry__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.pantry__benefit strong {
  color: var(--text-primary);
  font-weight: 500;
}

.pantry__benefit-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  margin-top: 3px;
}


/* ============================================================
   USE CASES — list types
   ============================================================ */
.cases { padding: var(--section-pad) 0; }

.cases__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  transition: color var(--dur) ease,
              border-color var(--dur) ease,
              box-shadow var(--dur) ease,
              transform var(--dur) var(--ease),
              background var(--dur) ease;
}
.case-tag span { font-weight: 500; color: var(--text-primary); }

.case-tag:hover {
  color: var(--accent);
  border-color: rgba(31,94,60,0.25);
  background: var(--accent-light);
  box-shadow: 0 4px 16px var(--accent-glow);
  transform: translateY(-2px);
}


/* ============================================================
   VALUE / DAILY USE
   ============================================================ */
.value { padding: var(--section-pad) 0; }

.value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.value__item {
  background: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-top: none;
  border-left: none;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.value__item:nth-child(3n) { border-right: none; }
.value__item:nth-last-child(-n+3) { border-bottom: none; }

.value__item:hover { background: var(--bg-alt); }

.value__ghost-num {
  position: absolute;
  top: -16px;
  right: 16px;
  font-size: 92px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.value__title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.35;
  position: relative;
}

.value__title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 10px;
}

.value__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  position: relative;
}


/* ============================================================
   SMART — Under the hood (power features)
   ============================================================ */
.smart { padding: var(--section-pad) 0; }

.smart__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.smart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease),
              transform 0.4s var(--ease),
              border-color 0.3s ease;
}

.smart-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.smart-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(31,94,60,0.15);
}
.smart-card:hover::before { opacity: 1; }

.smart-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.smart-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--dur) ease;
}
.smart-card:hover .smart-card__icon { background: rgba(31,94,60,0.12); }

.smart-card__title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.3;
}

.smart-card__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.smart-card__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.smart__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.smart__grid .reveal:nth-child(3) { transition-delay: 0.04s; }
.smart__grid .reveal:nth-child(4) { transition-delay: 0.12s; }
.smart__grid .reveal:nth-child(5) { transition-delay: 0.06s; }

/* The 5th card spans both columns on desktop so 5 items don't leave a gap */
.smart__grid > .smart-card:nth-child(5) {
  grid-column: 1 / -1;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-pad) 0; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 16.5px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 22px 0;
  gap: 24px;
  line-height: 1.4;
  transition: color var(--dur) ease;
}
.faq__question:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color var(--dur) ease, background var(--dur) ease, transform 0.3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: background var(--dur) ease;
}
.faq__icon::before { width: 8px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 8px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: background var(--dur) ease, opacity 0.25s ease; }

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after { background: #fff; }

.faq__answer {
  padding: 0 0 24px;
  max-width: 680px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ============================================================
   TRUST — privacy / data rights
   ============================================================ */
.trust { padding: var(--section-pad) 0; }

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

.trust__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s ease;
}
.trust__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(31,94,60,0.15);
}

.trust__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust__title {
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.trust__body {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.trust__note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.trust__grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.trust__grid .reveal:nth-child(3) { transition-delay: 0.14s; }


/* ============================================================
   CONTACT / DOWNLOAD CTA
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.contact__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(31,94,60,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(196,169,106,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 90%, rgba(46,125,79,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact__icon-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.contact__app-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15,45,61,0.55),
              0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.contact__icon-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__icon-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.contact__headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  margin-top: 8px;
}

.contact__body {
  font-size: 17px;
  color: rgba(248,247,244,0.65);
  line-height: 1.75;
  margin-bottom: 14px;
}

.contact__availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(248,247,244,0.55);
}

.avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: pulse-green 2.5s ease infinite;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* App store / Google Play badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  transition: background var(--dur) ease,
              border-color var(--dur) ease,
              transform 0.3s var(--ease);
  color: var(--text-on-dark);
}

.store-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(5px);
}

.store-badge__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge__small {
  font-size: 10px;
  font-weight: 400;
  color: rgba(248,247,244,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.store-badge__big {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-on-dark);
}

.contact__location {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-top: 6px;
  color: var(--text-on-dark);
}

.contact__link-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(248,247,244,0.5);
}

.contact__link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__link-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,247,244,0.35);
}

.contact__link-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-on-dark);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #081610;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__name { font-size: 14px; font-weight: 600; color: rgba(248,247,244,0.85); }
.footer__descriptor { font-size: 12px; color: rgba(248,247,244,0.35); }

.footer__links { display: flex; gap: 20px; margin-left: auto; }

.footer__link {
  font-size: 13px;
  color: rgba(248,247,244,0.4);
  transition: color var(--dur) ease;
}
.footer__link:hover { color: rgba(248,247,244,0.85); }

.footer__copy {
  font-size: 12px;
  color: rgba(248,247,244,0.25);
  margin-left: 20px;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.expertise__grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.expertise__grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.expertise__grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.expertise__grid .reveal:nth-child(5) { transition-delay: 0.04s; }
.expertise__grid .reveal:nth-child(6) { transition-delay: 0.10s; }
.expertise__grid .reveal:nth-child(7) { transition-delay: 0.16s; }
.expertise__grid .reveal:nth-child(8) { transition-delay: 0.22s; }

.value__grid .reveal:nth-child(2)    { transition-delay: 0.06s; }
.value__grid .reveal:nth-child(3)    { transition-delay: 0.12s; }
.value__grid .reveal:nth-child(4)    { transition-delay: 0.04s; }
.value__grid .reveal:nth-child(5)    { transition-delay: 0.10s; }
.value__grid .reveal:nth-child(6)    { transition-delay: 0.16s; }

.ways__grid .reveal:nth-child(2)     { transition-delay: 0.08s; }
.ways__grid .reveal:nth-child(3)     { transition-delay: 0.16s; }


/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__visual {
    height: 500px;
    order: 2;
  }
  .hero__content { max-width: 100%; }

  .positioning__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .positioning__label-col { padding-top: 0; }

  .expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .ways__grid      { grid-template-columns: 1fr; }
  .smart__grid     { grid-template-columns: 1fr; }
  .trust__grid     { grid-template-columns: repeat(2, 1fr); }

  .spotlight__inner,
  .magic__inner,
  .deals__inner,
  .wallet__inner,
  .recipes__inner,
  .wateetik__inner,
  .pantry__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .spotlight__visual,
  .magic__visual,
  .deals__visual,
  .wallet__visual,
  .recipes__visual,
  .wateetik__visual,
  .pantry__visual { min-height: 500px; order: 2; }

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

  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .value__item:nth-child(3n) { border-right: 1px solid var(--border); }
  .value__item:nth-child(2n) { border-right: none; }
  .value__item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .value__item:nth-last-child(-n+2) { border-bottom: none; }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 80px; --gutter: 20px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 100px 0 64px; min-height: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__visual { height: 480px; }
  .hero__chip--top    { left: -4px; }
  .hero__chip--bottom { right: -4px; }

  .expertise__grid { grid-template-columns: 1fr; }
  .value__grid     { grid-template-columns: 1fr; }
  .smart-card      { padding: 28px 24px 24px; }
  .trust__grid     { grid-template-columns: 1fr; }
  .value__item     { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .value__item:last-child { border-bottom: none !important; }

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

  .positioning__stats { gap: 32px; }

  .magic__receipt { width: 160px; }
  .magic__arrow   { display: none; }

  .footer__inner   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__links   { margin-left: 0; }
  .footer__copy    { margin-left: 0; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 64px; --gutter: 16px; }

  .section-header { margin-bottom: 48px; }

  .hero__headline { font-size: 38px; }
  .hero__sub { font-size: 16px; }

  .phone, .phone--lg { width: 260px; }

  .card { padding: 28px 22px; }
  .way-card { padding: 24px 22px 28px; }
  .way-card__visual { height: 180px; }

  .value__item { padding: 32px 26px; }
  .value__ghost-num { font-size: 72px; }

  .contact__inner { gap: 48px; }
  .store-badge { padding: 12px 16px; }

  .faq__question { font-size: 15px; padding: 18px 0; }

  .cases__grid { gap: 8px; }
  .case-tag { font-size: 14px; padding: 9px 16px; }
}
