/* ============================================================
   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:          #1C8B4B;   /* deep forest green */
  --accent-hover:    #14713C;
  --accent-light:    #E8F8EE;
  --accent-glow:     rgba(28,139,75,0.12);
  --accent-bright:   #23B3A4;
  --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;
  --vomar-red:       #C8102E;
  --spar-green:      #009639;
  --dekamarkt-blue:  #003DA5;
  --dirk-red:        #E2001A;
  --picnic-red:      #FF5A3C;

  --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(28,139,75,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(28,139,75,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-pill);
  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, #23B3A4 0%, #1C8B4B 55%, #0E5730 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 18px rgba(28,139,75,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--primary:hover {
  background: linear-gradient(140deg, #2FC5B5 0%, #1E9A53 55%, #12703C 100%);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(28,139,75,0.55), 0 8px 24px rgba(28,139,75,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(35,179,164,0.12)  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(28,139,75,0.06)  0%, transparent 50%);
  pointer-events: none;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,139,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,139,75,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-bright) 0%, var(--accent) 55%, #C4A96A 110%);
  -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(28,139,75,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(28,139,75,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(28,139,75,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(28,139,75,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(28,139,75,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__chain-dot.vomar     { background: var(--vomar-red); }
.deals__chain-dot.spar      { background: var(--spar-green); }
.deals__chain-dot.dekamarkt { background: var(--dekamarkt-blue); }
.deals__chain-dot.dirk      { background: var(--dirk-red); }
.deals__chain-dot.picnic    { background: var(--picnic-red); }

.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(28,139,75,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, #23B3A4 0%, #1C8B4B 100%);
  color: #fff;
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(28,139,75,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(28,139,75,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-bright) 0%, var(--accent) 55%, #C4A96A 110%);
  -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(28,139,75,0.25);
  box-shadow: 0 4px 14px rgba(28,139,75,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, #23B3A4 0%, #1C8B4B 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(28,139,75,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(28,139,75,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(28,139,75,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(28,139,75,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(28,139,75,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(28,139,75,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(51,168,98,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; }
}

/* ============================================================
   UPDATES — "Wat is er nieuw" (live uit /boodschappen/api/features)
   ============================================================ */
.updates-grid{display:grid;gap:1rem;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));margin-top:2.5rem}
.update-card{display:flex;gap:.85rem;align-items:flex-start;background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:18px;padding:1.1rem 1.2rem;box-shadow:0 1px 4px rgba(0,0,0,.05)}
.update-card__icon{font-size:1.7rem;line-height:1;flex:0 0 auto}
.update-card__body{min-width:0}
.update-card__title{font-size:.98rem;font-weight:650;margin:0 0 .2rem;display:flex;align-items:center;gap:.45rem;flex-wrap:wrap}
.update-card__summary{font-size:.86rem;color:#5b5b5b;margin:0 0 .4rem;line-height:1.45}
.update-card__date{font-size:.7rem;color:#9a9a9a}
.update-card__badge{font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;background:rgba(196,169,106,.18);color:#8a6d2f;border-radius:999px;padding:.12rem .5rem}

/* ============================================================
   CARRIE — online helpdesk widget
   ============================================================ */
.carrie-av { display:inline-grid; place-items:center; border-radius:50%;
  overflow:hidden; flex:0 0 auto; box-shadow:0 1px 3px rgba(0,0,0,.2); }
.carrie-av svg { display:block; width:100%; height:100%; }
.carrie-launcher { position:fixed; right:18px; bottom:18px; z-index:9000;
  display:flex; align-items:center; gap:8px; padding:6px 14px 6px 6px;
  border:1px solid var(--border,#E6E3DD); border-radius:999px; background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.15); cursor:pointer; font:inherit; }
.carrie-launcher:hover { box-shadow:0 8px 26px rgba(0,0,0,.22); }
.carrie-launcher__txt { font-weight:600; font-size:14px; color:#1a1a1a; }
.carrie-panel { position:fixed; right:18px; bottom:18px; z-index:9001;
  width:360px; max-width:calc(100vw - 24px); height:520px; max-height:calc(100vh - 36px);
  display:flex; flex-direction:column; background:#faf9f6;
  border:1px solid var(--border,#E6E3DD); border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.25); overflow:hidden; }
.carrie-panel[hidden], .carrie-launcher[hidden] { display:none !important; }
@media (max-width:520px){ .carrie-panel{ left:10px; right:10px; bottom:10px; top:64px;
  width:auto; height:auto; max-height:none; } }
.carrie-head { display:flex; align-items:center; gap:10px; padding:12px 14px;
  border-bottom:1px solid var(--border,#E6E3DD); background:#fff; }
.carrie-head__t { display:flex; flex-direction:column; line-height:1.15; flex:1 1 auto; min-width:0; }
.carrie-head__t strong { font-size:14px; }
.carrie-head__sub { font-size:11px; color:#6b7280; }
.carrie-close { border:none; background:none; font-size:16px; color:#6b7280; cursor:pointer;
  padding:6px; border-radius:50%; line-height:1; }
.carrie-close:hover { background:#f0efea; }
.carrie-msgs { flex:1 1 auto; overflow-y:auto; padding:14px 12px;
  display:flex; flex-direction:column; gap:10px; }
.carrie-row { display:flex; align-items:flex-end; gap:8px; }
.carrie-row--user { justify-content:flex-end; }
.carrie-wrap { max-width:80%; display:flex; flex-direction:column; }
.carrie-bubble { background:#fff; border:1px solid var(--border,#E6E3DD); padding:8px 11px;
  border-radius:14px; border-bottom-left-radius:4px; font-size:14px; line-height:1.45;
  color:#1a1a1a; white-space:pre-wrap; overflow-wrap:anywhere; }
.carrie-bubble--user { background:linear-gradient(140deg,#23B3A4 0%,#1C8B4B 70%); color:#fff; border-color:transparent;
  border-bottom-left-radius:14px; border-bottom-right-radius:4px; }
.carrie-chips { display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.carrie-chip { border:1px solid var(--border,#E6E3DD); background:#fff; color:#374151;
  border-radius:999px; padding:5px 10px; font-size:12px; cursor:pointer; font:inherit; }
.carrie-chip:hover { border-color:#0F9488; color:#0B7A70; }
.carrie-rate { display:flex; align-items:center; gap:4px; margin-top:5px; font-size:11px; color:#9ca3af; }
.carrie-rate__b { border:none; background:none; cursor:pointer; font-size:13px; padding:2px 4px;
  border-radius:6px; line-height:1; }
.carrie-rate__b:hover { background:#f0efea; }
.carrie-form { display:flex; align-items:center; gap:8px; padding:10px;
  border-top:1px solid var(--border,#E6E3DD); background:#fff; }
.carrie-input { flex:1 1 auto; border:1px solid var(--border,#E6E3DD); border-radius:999px;
  padding:9px 14px; font-size:14px; font:inherit; outline:none; }
.carrie-input:focus { border-color:#0F9488; }
.carrie-send { flex:0 0 auto; width:38px; height:38px; border:none; border-radius:50%;
  background:linear-gradient(140deg,#23B3A4 0%,#1C8B4B 70%); color:#fff; cursor:pointer; font-size:15px; }
.carrie-send:hover { background:linear-gradient(140deg,#2FC5B5 0%,#1E9A53 70%); }
.carrie-send:disabled { opacity:.4; cursor:default; }
.carrie-typing span { display:inline-block; width:6px; height:6px; margin:0 1px; border-radius:50%;
  background:#bbb; animation:carrie-blink 1.2s infinite both; }
.carrie-typing span:nth-child(2){ animation-delay:.2s; }
.carrie-typing span:nth-child(3){ animation-delay:.4s; }
@keyframes carrie-blink { 0%,80%,100%{opacity:.25;} 40%{opacity:1;} }

/* ------------------------------------------------------------------
   PROOF STRIP — honest trust signals under the hero.
   Product facts only (privacy, no app store, real-time, 8 talen) —
   deliberately NO invented ratings or testimonials.
   ------------------------------------------------------------------ */
.proof { padding: 26px 0; border-bottom: 1px solid var(--border); background: var(--bg); }
.proof__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px 40px; list-style: none; margin: 0; padding: 0;
}
.proof__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 3px; min-width: 130px;
}
.proof__item strong { font-size: 0.95rem; font-weight: 600; color: var(--accent); letter-spacing: -0.01em; }
.proof__item span { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 560px) {
  .proof__list { gap: 14px 22px; }
  .proof__item { min-width: 44%; }
}

/* ------------------------------------------------------------------
   FEATURE-POPUP — klik op een feature-kaart → geanimeerde uitleg-modal.
   Vanilla CSS/JS (geen dependencies); scale+fade dialog, gestaffelde
   stappen-animatie, bouncende icoon-badge.
   ------------------------------------------------------------------ */
#features .card { cursor: pointer; }
.card__more {
  display: inline-block; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--accent);
}
.fpop-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(15, 22, 16, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity 0.25s ease;
}
.fpop-overlay.is-open { opacity: 1; }
.fpop {
  position: relative; width: 100%; max-width: 460px; max-height: 82vh;
  overflow-y: auto; background: var(--bg-card); border-radius: 22px;
  padding: 28px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transform: scale(0.92) translateY(16px); opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}
.fpop-overlay.is-open .fpop { transform: scale(1) translateY(0); opacity: 1; }
.fpop__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border: 0; border-radius: 50%; background: var(--bg-alt); color: var(--text-secondary);
  font-size: 18px; line-height: 1; cursor: pointer; transition: background 0.2s;
}
.fpop__close:hover { background: var(--border); }
.fpop__icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  animation: fpop-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}
@keyframes fpop-bounce {
  from { transform: scale(0.3) rotate(-8deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.fpop__title { font-size: 22px; font-weight: 650; margin: 0 0 6px; color: var(--text-primary); }
.fpop__body { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.fpop__steps { list-style: none; margin: 16px 0 0; padding: 0; }
.fpop__steps li {
  display: flex; gap: 10px; align-items: flex-start; padding: 7px 0;
  font-size: 14.5px; line-height: 1.5; color: var(--text-primary);
  opacity: 0; transform: translateX(-10px);
  animation: fpop-slide 0.35s ease forwards;
}
.fpop__steps li:nth-child(1) { animation-delay: 0.16s; }
.fpop__steps li:nth-child(2) { animation-delay: 0.26s; }
.fpop__steps li:nth-child(3) { animation-delay: 0.36s; }
.fpop__steps li:nth-child(4) { animation-delay: 0.46s; }
.fpop__steps li:nth-child(5) { animation-delay: 0.56s; }
@keyframes fpop-slide { to { opacity: 1; transform: none; } }
.fpop__step-dot {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%; background: var(--accent-light); color: var(--accent);
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.fpop__note {
  margin-top: 16px; padding: 10px 12px; border-radius: 12px;
  background: var(--bg-alt); font-size: 13px; line-height: 1.5; color: var(--text-secondary);
}
@media (prefers-reduced-motion: reduce) {
  .fpop, .fpop__icon, .fpop__steps li { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ------------------------------------------------------------------
   FEATURE-DEMO — mini-telefoonscherm in de popup dat de feature
   VOORDOET (pure CSS-loop, 9s), 1-op-1 in de stijl van het echte
   app-scherm: tabs, budgetbalk, categorie-koppen, item-kaarten met
   deal-pills in ketenkleuren, stepper, FAB en de invoerbalk.
   ------------------------------------------------------------------ */
.fdemo { margin: 18px auto 4px; width: 258px; user-select: none; pointer-events: none; }
.fdemo__phone {
  position: relative; width: 100%; height: 380px; overflow: hidden;
  border-radius: 26px; border: 3px solid #1a1a1a;
  background: #f3f4ef;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  font-family: inherit;
}
/* tabs-rij zoals in de app */
.fdemo__tabs {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 10px 7px; background: #eef0ea;
  font-size: 8px; letter-spacing: 0.12em; color: #9aa094; font-weight: 700;
}
.fdemo__tab {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0;
  border-radius: 999px; padding: 4px 9px;
}
.fdemo__tab--active { background: linear-gradient(135deg, #33a862, #0e5730); color: #fff; }
.fdemo__tab--active b { background: rgba(255,255,255,0.25); border-radius: 999px; padding: 0 5px; margin-left: 3px; font-weight: 700; }
.fdemo__tab--idle { background: #fff; border: 1px solid var(--border); color: #333; }
/* budgetbalk */
.fdemo__budget {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px; background: #eef0ea; border-bottom: 1px solid var(--border);
  font-size: 9.5px; font-weight: 700; color: #222;
}
.fdemo__saved {
  background: rgba(28, 139, 75, 0.14); color: #14713c;
  border-radius: 999px; padding: 2px 7px; font-weight: 700;
  opacity: 0; animation: fdemo-fadein 9s infinite;
}
@keyframes fdemo-fadein { 0%, 74% { opacity: 0; } 80%, 96% { opacity: 1; } 100% { opacity: 0; } }
/* lijst met categorie-koppen + item-kaarten */
.fdemo__list { padding: 7px 8px 0; display: flex; flex-direction: column; gap: 4px; }
.fdemo__sec {
  font-size: 7.5px; font-weight: 700; letter-spacing: 0.14em; color: #9aa094;
  padding: 3px 2px 1px; opacity: 0;
}
.fdemo__item {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  padding: 6px 7px; opacity: 0; transform: translateY(10px);
}
.fdemo__check { flex: 0 0 auto; width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid #d3d0c9; }
.fdemo__tile {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.fdemo__meta { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 1px; }
.fdemo__meta b { font-size: 10.5px; font-weight: 650; color: #191919; line-height: 1.15; }
.fdemo__meta i { font-style: normal; font-size: 7.5px; color: #9aa094; }
.fdemo__deal {
  align-self: flex-start; margin-top: 2px;
  font-size: 7.5px; font-weight: 700; color: #fff;
  border-radius: 999px; padding: 2px 6px;
  opacity: 0; transform: scale(0.6); transform-origin: left center;
}
.fdemo__deal--jumbo { background: #fab400; color: #1a1a1a; }
.fdemo__deal--ah { background: #00ade6; }
.fdemo__deal--picnic { background: #e01a22; }
.fdemo__step {
  flex: 0 0 auto; display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--border); border-radius: 999px; padding: 2px 6px;
  font-size: 8.5px; font-weight: 700; color: #444; background: #fff;
}
/* itemtiming: kop+kaart samen, deal-pill iets later (zoals echt: match komt async) */
.fdemo__sec--1, .fdemo__item--1 { animation: fdemo-in1 9s infinite; }
.fdemo__sec--2, .fdemo__item--2 { animation: fdemo-in2 9s infinite; }
.fdemo__sec--3, .fdemo__item--3 { animation: fdemo-in3 9s infinite; }
.fdemo__item--1 .fdemo__deal { animation: fdemo-deal1 9s infinite; }
.fdemo__item--2 .fdemo__deal { animation: fdemo-deal2 9s infinite; }
.fdemo__item--3 .fdemo__deal { animation: fdemo-deal3 9s infinite; }
@keyframes fdemo-in1 {
  0%, 46% { opacity: 0; transform: translateY(10px); }
  50%, 53% { opacity: 1; transform: none; background: rgba(74, 222, 128, 0.30); }
  58%, 96% { opacity: 1; transform: none; background: #fff; }
  100% { opacity: 0; }
}
@keyframes fdemo-in2 {
  0%, 52% { opacity: 0; transform: translateY(10px); }
  56%, 59% { opacity: 1; transform: none; background: rgba(74, 222, 128, 0.30); }
  64%, 96% { opacity: 1; transform: none; background: #fff; }
  100% { opacity: 0; }
}
@keyframes fdemo-in3 {
  0%, 58% { opacity: 0; transform: translateY(10px); }
  62%, 65% { opacity: 1; transform: none; background: rgba(74, 222, 128, 0.30); }
  70%, 96% { opacity: 1; transform: none; background: #fff; }
  100% { opacity: 0; }
}
/* sectie-koppen: geen achtergrond-flits */
.fdemo__sec--1 { animation-name: fdemo-sec1; }
.fdemo__sec--2 { animation-name: fdemo-sec2; }
.fdemo__sec--3 { animation-name: fdemo-sec3; }
@keyframes fdemo-sec1 { 0%, 46% { opacity: 0; } 50%, 96% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fdemo-sec2 { 0%, 52% { opacity: 0; } 56%, 96% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fdemo-sec3 { 0%, 58% { opacity: 0; } 62%, 96% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fdemo-deal1 { 0%, 66% { opacity: 0; transform: scale(0.6); } 70%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
@keyframes fdemo-deal2 { 0%, 70% { opacity: 0; transform: scale(0.6); } 74%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
@keyframes fdemo-deal3 { 0%, 74% { opacity: 0; transform: scale(0.6); } 78%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
/* spraakbubbel */
.fdemo__bubble {
  position: absolute; left: 12px; right: 12px; bottom: 74px;
  background: #1f2a22; color: #fff; border-radius: 12px;
  padding: 7px 10px; font-size: 10.5px; line-height: 1.4;
  opacity: 0; transform: translateY(8px);
  animation: fdemo-bubble 9s infinite; z-index: 3;
}
.fdemo__bubble::after {
  content: ""; position: absolute; bottom: -5px; right: 24px;
  border: 5px solid transparent; border-top-color: #1f2a22; border-bottom: 0;
}
.fdemo__bubble span {
  display: inline-block; overflow: hidden; white-space: nowrap;
  max-width: 0; vertical-align: bottom;
  animation: fdemo-type 9s steps(30, end) infinite;
}
@keyframes fdemo-bubble { 0%, 16% { opacity: 0; transform: translateY(8px); } 20%, 42% { opacity: 1; transform: none; } 46%, 100% { opacity: 0; transform: translateY(8px); } }
@keyframes fdemo-type { 0%, 20% { max-width: 0; } 38%, 100% { max-width: 100%; } }
/* FAB + onderbalk zoals echt */
.fdemo__fab {
  position: absolute; left: 50%; bottom: 46px; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%; z-index: 2;
  background: linear-gradient(140deg, #33a862, #0e5730); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  box-shadow: 0 6px 16px rgba(28, 139, 75, 0.45), 0 0 0 3px rgba(243, 244, 239, 0.9);
}
.fdemo__bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; align-items: center; gap: 5px;
  padding: 8px 8px 10px; background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
}
.fdemo__input {
  flex: 1; font-size: 9.5px; color: #9aa094;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 9px; white-space: nowrap; overflow: hidden;
}
.fdemo__round {
  flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
  letter-spacing: -1px; color: #333;
}
.fdemo__mic { position: relative; animation: fdemo-mic 9s infinite; }
@keyframes fdemo-mic {
  0%, 11% { background: #fff; box-shadow: none; }
  13%, 42% { background: #fee2e2; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25); }
  46%, 100% { background: #fff; box-shadow: none; }
}
.fdemo__ring {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(239, 68, 68, 0.55); opacity: 0;
  animation: fdemo-ring 9s infinite;
}
@keyframes fdemo-ring {
  0%, 12% { opacity: 0; transform: scale(0.8); }
  16% { opacity: 1; transform: scale(1); }
  23% { opacity: 0; transform: scale(1.6); }
  27% { opacity: 1; transform: scale(1); }
  34% { opacity: 0; transform: scale(1.6); }
  38% { opacity: 1; transform: scale(1); }
  42%, 100% { opacity: 0; transform: scale(1.6); }
}
.fdemo__finger {
  position: absolute; right: 4px; bottom: -36px; font-size: 30px; z-index: 4;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
  animation: fdemo-finger 9s infinite; transform-origin: 60% 20%;
}
@keyframes fdemo-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  5% { transform: translate(0px, -38px); opacity: 1; }
  9% { transform: translate(0px, -44px) scale(1); opacity: 1; }
  12% { transform: translate(0px, -48px) scale(0.82); opacity: 1; } /* tik op mic */
  15% { transform: translate(0px, -44px) scale(1); opacity: 1; }
  23% { transform: translate(26px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo__caption { margin-top: 8px; text-align: center; font-size: 11.5px; color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) {
  .fdemo * { animation: none !important; }
  .fdemo__sec, .fdemo__item, .fdemo__deal, .fdemo__saved { opacity: 1 !important; transform: none !important; }
  .fdemo__bubble { opacity: 1 !important; transform: none !important; }
  .fdemo__bubble span { max-width: 100% !important; }
  .fdemo__finger { display: none; }
}

/* ================== DEMO-VARIANTEN (zelfde 9s-klok) ================== */
/* gedeelde hulpstukken */
.fdemo__toast {
  position: absolute; left: 14px; right: 14px; bottom: 64px; z-index: 3;
  background: #14713c; color: #fff; border-radius: 10px;
  padding: 7px 10px; font-size: 10px; font-weight: 700; text-align: center;
  opacity: 0; transform: translateY(10px);
}
.fdemo__push {
  position: absolute; left: 8px; right: 8px; top: 6px; z-index: 5;
  background: rgba(30, 34, 30, 0.94); color: #fff; border-radius: 12px;
  padding: 7px 9px; font-size: 9.5px; line-height: 1.35;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0; transform: translateY(-16px);
}
.fdemo__push b { display: block; font-size: 10px; }
.fdemo__flash {
  position: absolute; inset: 0; background: #fff; opacity: 0; z-index: 6; pointer-events: none;
}
/* statische items (zichtbaar vanaf start, bv. bon-demo) */
.fdemo__item--static { opacity: 1 !important; transform: none !important; animation: none !important; }
.fdemo__sec--static { opacity: 1 !important; animation: none !important; }

/* ---------- BON-SCAN ---------- */
.fdemo--receipt .fdemo__finger { animation-name: fdR-finger; }
@keyframes fdR-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  5% { transform: translate(-30px, -38px); opacity: 1; }
  9% { transform: translate(-30px, -44px) scale(1); }
  12% { transform: translate(-30px, -48px) scale(0.82); } /* tik op camera */
  15% { transform: translate(-30px, -44px) scale(1); }
  23% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo__receipt {
  position: absolute; left: 50%; top: 54%; z-index: 4;
  width: 120px; padding: 10px 10px 14px; transform: translate(-50%, 140%) rotate(2deg);
  background: #fff; border-radius: 6px 6px 10px 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  font-family: "Courier New", monospace; font-size: 8px; color: #333;
  animation: fdR-slip 9s infinite;
}
.fdemo__receipt::after { /* kartelrand */
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 5px;
  background: linear-gradient(-45deg, transparent 66%, #fff 68%) 0 0/6px 5px repeat-x,
              linear-gradient(45deg, transparent 66%, #fff 68%) 0 0/6px 5px repeat-x;
}
.fdemo__receipt b { display: block; text-align: center; font-size: 9px; letter-spacing: 0.08em; margin-bottom: 4px; }
.fdemo__receipt em { display: flex; justify-content: space-between; font-style: normal; padding: 1px 0; }
@keyframes fdR-slip {
  0%, 14% { transform: translate(-50%, 160%) rotate(3deg); }
  20%, 40% { transform: translate(-50%, -46%) rotate(-1.5deg); }
  46%, 100% { transform: translate(-50%, 160%) rotate(3deg); }
}
.fdemo__scanline {
  position: absolute; left: 4px; right: 4px; top: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, #33a862, transparent);
  animation: fdR-scan 9s infinite; opacity: 0;
}
@keyframes fdR-scan {
  0%, 21% { top: 6%; opacity: 0; }
  23% { opacity: 1; }
  30% { top: 92%; opacity: 1; }
  32% { top: 6%; opacity: 1; }
  38% { top: 92%; opacity: 1; }
  40%, 100% { opacity: 0; }
}
/* vinkjes + dimmen per rij */
.fdemo--receipt .fdemo__check { position: relative; transition: none; }
.fdemo--receipt .fdemo__check::after {
  content: "✓"; position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 9px; font-weight: 800; color: #fff;
  border-radius: 50%; opacity: 0; transform: scale(0.4);
}
.fdemo--receipt .fdemo__item--r1 .fdemo__check::after { animation: fdR-tick1 9s infinite; }
.fdemo--receipt .fdemo__item--r2 .fdemo__check::after { animation: fdR-tick2 9s infinite; }
.fdemo--receipt .fdemo__item--r3 .fdemo__check::after { animation: fdR-tick3 9s infinite; }
@keyframes fdR-tick1 { 0%, 48% { opacity: 0; transform: scale(0.4); background: transparent; } 52%, 96% { opacity: 1; transform: scale(1); background: #1c8b4b; } 100% { opacity: 0; } }
@keyframes fdR-tick2 { 0%, 54% { opacity: 0; transform: scale(0.4); background: transparent; } 58%, 96% { opacity: 1; transform: scale(1); background: #1c8b4b; } 100% { opacity: 0; } }
@keyframes fdR-tick3 { 0%, 60% { opacity: 0; transform: scale(0.4); background: transparent; } 64%, 96% { opacity: 1; transform: scale(1); background: #1c8b4b; } 100% { opacity: 0; } }
.fdemo--receipt .fdemo__item--r1 { animation: fdR-dim1 9s infinite; }
.fdemo--receipt .fdemo__item--r2 { animation: fdR-dim2 9s infinite; }
.fdemo--receipt .fdemo__item--r3 { animation: fdR-dim3 9s infinite; }
@keyframes fdR-dim1 { 0%, 50% { opacity: 1; } 54%, 96% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes fdR-dim2 { 0%, 56% { opacity: 1; } 60%, 96% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes fdR-dim3 { 0%, 62% { opacity: 1; } 66%, 96% { opacity: 0.5; } 100% { opacity: 1; } }
.fdemo--receipt .fdemo__toast { animation: fdR-toast 9s infinite; }
@keyframes fdR-toast { 0%, 68% { opacity: 0; transform: translateY(10px); } 73%, 92% { opacity: 1; transform: none; } 97%, 100% { opacity: 0; } }

/* ---------- BRIEFJE ---------- */
.fdemo__note {
  position: absolute; left: 50%; top: 40%; z-index: 4;
  width: 118px; padding: 10px 12px; transform: translate(-50%, -50%) rotate(-3deg);
  background: #fdf6d8; border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font-family: "Segoe Script", "Bradley Hand", cursive; font-size: 11px; color: #445;
  line-height: 1.7; animation: fdN-note 9s infinite;
}
.fdemo__note::before {
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(2deg);
  width: 42px; height: 12px; background: rgba(255, 220, 130, 0.7);
}
@keyframes fdN-note {
  0%, 4% { opacity: 0; transform: translate(-50%, -30%) rotate(-6deg); }
  9%, 26% { opacity: 1; transform: translate(-50%, -50%) rotate(-3deg); }
  32%, 100% { opacity: 0; transform: translate(-50%, 20%) rotate(2deg) scale(0.3); }
}
.fdemo--note .fdemo__finger { animation-name: fdN-finger; }
@keyframes fdN-finger {
  0%, 10% { transform: translate(30px, 0); opacity: 0; }
  15% { transform: translate(-58px, -38px); opacity: 1; }
  20% { transform: translate(-58px, -44px) scale(1); }
  23% { transform: translate(-58px, -48px) scale(0.82); } /* tik op camera */
  26% { transform: translate(-58px, -44px) scale(1); }
  32% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--note .fdemo__flash { animation: fdN-flash 9s infinite; }
@keyframes fdN-flash { 0%, 25% { opacity: 0; } 27% { opacity: 0.9; } 31%, 100% { opacity: 0; } }
.fdemo--note .fdemo__sec--1, .fdemo--note .fdemo__item--1 { animation-name: fdN-in1; }
.fdemo--note .fdemo__sec--2, .fdemo--note .fdemo__item--2 { animation-name: fdN-in2; }
.fdemo--note .fdemo__sec--3, .fdemo--note .fdemo__item--3 { animation-name: fdN-in3; }
@keyframes fdN-in1 { 0%, 36% { opacity: 0; transform: translateY(10px); } 41%, 44% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 49%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
@keyframes fdN-in2 { 0%, 43% { opacity: 0; transform: translateY(10px); } 48%, 51% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 56%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
@keyframes fdN-in3 { 0%, 50% { opacity: 0; transform: translateY(10px); } 55%, 58% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 63%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo--note .fdemo__sec--1 { animation-name: fdN-sec1; } .fdemo--note .fdemo__sec--2 { animation-name: fdN-sec2; } .fdemo--note .fdemo__sec--3 { animation-name: fdN-sec3; }
@keyframes fdN-sec1 { 0%, 36% { opacity: 0; } 41%, 96% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fdN-sec2 { 0%, 43% { opacity: 0; } 48%, 96% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fdN-sec3 { 0%, 50% { opacity: 0; } 55%, 96% { opacity: 1; } 100% { opacity: 0; } }

/* ---------- BARCODE ---------- */
.fdemo--barcode .fdemo__finger { animation-name: fdB-finger; }
@keyframes fdB-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  5% { transform: translate(-62px, -38px); opacity: 1; }
  9% { transform: translate(-62px, -44px) scale(1); }
  12% { transform: translate(-62px, -48px) scale(0.82); } /* tik op barcode-knop */
  15% { transform: translate(-62px, -44px) scale(1); }
  22% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo__viewfinder {
  position: absolute; inset: 0; z-index: 4; background: rgba(10, 14, 11, 0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fdB-vf 9s infinite;
}
@keyframes fdB-vf { 0%, 14% { opacity: 0; } 18%, 44% { opacity: 1; } 50%, 100% { opacity: 0; } }
.fdemo__vfwin {
  position: relative; width: 150px; height: 84px; border-radius: 10px;
  background: #fff; border: 2px solid #33a862; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fdemo__ean {
  width: 110px; height: 46px;
  background: repeating-linear-gradient(90deg, #111 0 2px, transparent 2px 4px, #111 4px 5px, transparent 5px 9px, #111 9px 12px, transparent 12px 14px);
}
.fdemo__vfline {
  position: absolute; left: 6px; right: 6px; height: 2px; background: #ef4444; border-radius: 2px;
  animation: fdB-line 9s infinite;
}
@keyframes fdB-line { 0%, 18% { top: 12%; } 26% { top: 84%; } 34% { top: 14%; } 40% { top: 78%; } 44%, 100% { top: 78%; } }
.fdemo--barcode .fdemo__flash { animation: fdB-flash 9s infinite; }
@keyframes fdB-flash { 0%, 43% { opacity: 0; } 45% { opacity: 0.85; } 49%, 100% { opacity: 0; } }
.fdemo--barcode .fdemo__sec--1, .fdemo--barcode .fdemo__item--1 { animation-name: fdB-in1; }
@keyframes fdB-in1 { 0%, 50% { opacity: 0; transform: translateY(10px); } 55%, 58% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 63%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo--barcode .fdemo__sec--1 { animation-name: fdB-sec1; }
@keyframes fdB-sec1 { 0%, 50% { opacity: 0; } 55%, 96% { opacity: 1; } 100% { opacity: 0; } }

/* ---------- AANBIEDINGEN ---------- */
.fdemo--deals .fdemo__push--folder { animation: fdD-push1 9s infinite; }
@keyframes fdD-push1 { 0%, 6% { opacity: 0; transform: translateY(-16px); } 11%, 30% { opacity: 1; transform: none; } 36%, 100% { opacity: 0; transform: translateY(-16px); } }
.fdemo--deals .fdemo__item--1 .fdemo__deal { animation: fdD-deal1 9s infinite; }
.fdemo--deals .fdemo__item--2 .fdemo__deal { animation: fdD-deal2 9s infinite; }
.fdemo--deals .fdemo__item--3 .fdemo__deal { animation: fdD-deal3 9s infinite; }
@keyframes fdD-deal1 { 0%, 34% { opacity: 0; transform: scale(0.6); } 39%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
@keyframes fdD-deal2 { 0%, 41% { opacity: 0; transform: scale(0.6); } 46%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
@keyframes fdD-deal3 { 0%, 48% { opacity: 0; transform: scale(0.6); } 53%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
.fdemo--deals .fdemo__saved { animation: fdD-saved 9s infinite; }
@keyframes fdD-saved { 0%, 54% { opacity: 0; } 60%, 96% { opacity: 1; } 100% { opacity: 0; } }
.fdemo--deals .fdemo__push--fav { animation: fdD-push2 9s infinite; }
@keyframes fdD-push2 { 0%, 66% { opacity: 0; transform: translateY(-16px); } 72%, 92% { opacity: 1; transform: none; } 98%, 100% { opacity: 0; transform: translateY(-16px); } }

/* ---------- HUISHOUDEN (twee telefoons) ---------- */
.fdemo--duo { width: 274px; }
.fdemo__duo { display: flex; gap: 10px; align-items: flex-start; justify-content: center; position: relative; }
.fdemo__duo .fdemo__phone { width: 128px; height: 240px; border-radius: 20px; border-width: 2.5px; }
.fdemo__who {
  text-align: center; font-size: 10px; font-weight: 700; color: var(--text-secondary);
  margin-bottom: 5px;
}
.fdemo__duo .fdemo__header { font-size: 9px; padding: 7px 8px 6px; }
.fdemo__duo .fdemo__list { padding: 6px 6px 0; }
.fdemo__duo .fdemo__item { padding: 5px 6px; border-radius: 9px; }
.fdemo__duo .fdemo__meta b { font-size: 9px; }
.fdemo__duo .fdemo__meta i { font-size: 6.5px; }
.fdemo__duo .fdemo__tile { width: 16px; height: 16px; font-size: 9px; border-radius: 5px; }
.fdemo__duo .fdemo__check { width: 10px; height: 10px; }
/* typebalkje links */
.fdemo__minibar {
  position: absolute; left: 6px; right: 6px; bottom: 6px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  font-size: 7.5px; color: #333; padding: 4px 8px; white-space: nowrap; overflow: hidden;
}
.fdemo__minibar span {
  display: inline-block; overflow: hidden; white-space: nowrap; max-width: 0;
  vertical-align: bottom; animation: fdH-type 9s steps(10, end) infinite;
}
@keyframes fdH-type { 0%, 6% { max-width: 0; } 20%, 30% { max-width: 100%; } 34%, 100% { max-width: 0; } }
/* item links verschijnt */
.fdemo__duo .fdemo__item--l1 { animation: fdH-l1 9s infinite; }
@keyframes fdH-l1 { 0%, 32% { opacity: 0; transform: translateY(8px); } 37%, 40% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 45%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
/* sync-stipjes vliegen links → rechts */
.fdemo__sync { position: absolute; top: 46%; left: 46%; z-index: 5; font-size: 13px; opacity: 0; animation: fdH-sync 9s infinite; }
@keyframes fdH-sync {
  0%, 44% { opacity: 0; transform: translate(-26px, 0) scale(0.7); }
  48% { opacity: 1; transform: translate(-10px, -8px) scale(1); }
  54% { opacity: 1; transform: translate(16px, -8px) scale(1); }
  58%, 100% { opacity: 0; transform: translate(30px, 0) scale(0.7); }
}
/* item rechts landt + nieuw-badge */
.fdemo__duo .fdemo__item--r1 { animation: fdH-r1 9s infinite; }
@keyframes fdH-r1 { 0%, 58% { opacity: 0; transform: translateY(8px); } 63%, 66% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 71%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo__new {
  font-size: 6px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(34, 197, 94, 0.18); color: #15803d; border-radius: 999px; padding: 1px 4px;
}

/* ---------- SNELKEUZE ---------- */
.fdemo__quick { padding: 8px 8px 0; }
.fdemo__quicklabel { font-size: 7.5px; font-weight: 700; letter-spacing: 0.14em; color: #9aa094; padding: 0 2px 4px; }
.fdemo__chips { display: flex; flex-wrap: wrap; gap: 5px; }
.fdemo__chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 650; color: #222;
  background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 4px 8px;
}
.fdemo__chip--due {
  background: linear-gradient(135deg, rgba(196, 169, 106, 0.35), rgba(28, 139, 75, 0.25));
  border-color: rgba(196, 169, 106, 0.6);
  animation: fdS-glow 9s infinite;
}
@keyframes fdS-glow {
  0%, 30% { box-shadow: 0 0 0 0 rgba(196, 169, 106, 0); }
  8%, 22% { box-shadow: 0 0 10px 2px rgba(196, 169, 106, 0.55); }
  36% { transform: scale(0.9); } /* tik */
  40%, 100% { transform: scale(1); box-shadow: none; }
}
.fdemo--suggest .fdemo__finger { animation-name: fdS-finger; }
@keyframes fdS-finger {
  0%, 16% { transform: translate(30px, 0); opacity: 0; }
  24% { transform: translate(-150px, -246px); opacity: 1; }
  30% { transform: translate(-150px, -252px) scale(1); }
  34% { transform: translate(-150px, -256px) scale(0.82); } /* tik op chip */
  38% { transform: translate(-150px, -252px) scale(1); }
  46% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--suggest .fdemo__sec--1, .fdemo--suggest .fdemo__item--1 { animation-name: fdS-in1; }
@keyframes fdS-in1 { 0%, 42% { opacity: 0; transform: translateY(10px); } 47%, 50% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 55%, 96% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo--suggest .fdemo__sec--1 { animation-name: fdS-sec1; }
@keyframes fdS-sec1 { 0%, 42% { opacity: 0; } 47%, 96% { opacity: 1; } 100% { opacity: 0; } }

/* ---------- KLANTENKAARTEN ---------- */
.fdemo__wallet { padding: 10px 10px 0; display: flex; flex-direction: column; gap: 7px; }
.fdemo__wcard {
  border-radius: 12px; padding: 9px 10px 22px; color: #fff; position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
}
.fdemo__wcard small { display: block; font-size: 6.5px; letter-spacing: 0.16em; opacity: 0.75; font-weight: 700; }
.fdemo__wcard b { font-size: 11px; font-weight: 700; }
.fdemo__wcard--jumbo { background: linear-gradient(135deg, #eec33f, #b8912d); }
.fdemo__wcard--ah { background: linear-gradient(135deg, #35b5e6, #0d7fb3); }
.fdemo--cards .fdemo__finger { animation-name: fdC-finger; }
@keyframes fdC-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  8% { transform: translate(-60px, -178px); opacity: 1; }
  13% { transform: translate(-60px, -184px) scale(1); }
  16% { transform: translate(-60px, -188px) scale(0.82); } /* tik op AH-kaart */
  19% { transform: translate(-60px, -184px) scale(1); }
  27% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo__bigcard {
  position: absolute; left: 10px; right: 10px; top: 22%; z-index: 4;
  border-radius: 14px; background: linear-gradient(135deg, #35b5e6, #0d7fb3);
  color: #fff; padding: 12px 12px 16px; text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  opacity: 0; transform: translateY(24px) scale(0.7);
  animation: fdC-big 9s infinite;
}
@keyframes fdC-big {
  0%, 20% { opacity: 0; transform: translateY(24px) scale(0.7); }
  26%, 78% { opacity: 1; transform: none; }
  86%, 100% { opacity: 0; transform: translateY(24px) scale(0.7); }
}
.fdemo__bigcard small { display: block; font-size: 7px; letter-spacing: 0.16em; opacity: 0.8; font-weight: 700; margin-bottom: 6px; }
.fdemo__bigbar {
  margin: 0 auto; width: 132px; height: 44px; border-radius: 6px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.fdemo__bigbar i {
  display: block; width: 112px; height: 32px;
  background: repeating-linear-gradient(90deg, #111 0 2px, transparent 2px 4px, #111 4px 5px, transparent 5px 8px, #111 8px 11px, transparent 11px 13px);
}
.fdemo__bigcard em { display: block; font-style: normal; font-size: 8px; margin-top: 7px; opacity: 0.9; }
.fdemo__scanok {
  position: absolute; right: 10px; top: 8px;
  width: 20px; height: 20px; border-radius: 50%; background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800;
  opacity: 0; transform: scale(0.3);
  animation: fdC-ok 9s infinite;
}
@keyframes fdC-ok { 0%, 52% { opacity: 0; transform: scale(0.3); } 58%, 78% { opacity: 1; transform: scale(1); } 86%, 100% { opacity: 0; } }

/* ------------------------------------------------------------------
   AANBIEDINGEN-TELEFOON — wisselt elke seconde tussen het ketens-
   overzicht (frame 1) en een opengeklapte keten met producten (frame 2).
   ------------------------------------------------------------------ */
.phone__img--swap2 {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  animation: phone-swapB 5s infinite;
}
.phone__img--swap1 { animation: phone-swapA 5s infinite; }
@keyframes phone-swapA {
  0%, 47% { opacity: 1; }
  53%, 97% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes phone-swapB {
  0%, 47% { opacity: 0; }
  53%, 97% { opacity: 1; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .phone__img--swap1, .phone__img--swap2 { animation: none !important; }
  .phone__img--swap2 { opacity: 0 !important; }
}

/* ============ DEMO'S VOOR DE "WAT IS ER NIEUW"-KAARTEN ============ */
.updates-grid .update-card { cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.updates-grid .update-card:hover,
.updates-grid .update-card:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,.10); border-color: rgba(28,139,75,.35); outline: none; }
.update-card__more { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--accent); opacity: .85; transition: transform .18s ease; }
.updates-grid .update-card:hover .update-card__more { transform: translateX(3px); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .updates-grid .update-card { transition: none; } }
/* gedeelde bottom-sheet in de mini-telefoon */
.fdemo__sheet {
  position: absolute; left: 5px; right: 5px; bottom: 5px; z-index: 5;
  background: #fff; border-radius: 14px 14px 12px 12px;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
  padding: 9px 9px 8px; transform: translateY(112%);
  animation: fdemo-sheet 8s infinite;
}
@keyframes fdemo-sheet { 0%, 20% { transform: translateY(112%); } 26%, 88% { transform: translateY(0); } 94%, 100% { transform: translateY(112%); } }
.fdemo__sheet h5 { margin: 0 0 6px; font-size: 9.5px; font-weight: 700; color: #191919; }
.fdemo__srow {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); border-radius: 9px; padding: 5px 7px; margin-bottom: 4px;
  font-size: 9px; font-weight: 600; color: #222;
  opacity: 0; animation: fdemo-srow 8s infinite;
}
.fdemo__srow b { margin-left: auto; font-size: 9.5px; }
.fdemo__srow small { color: #9aa094; font-weight: 600; font-size: 7.5px; }
.fdemo__srow--win { border-color: rgba(34, 197, 94, 0.5); background: rgba(34, 197, 94, 0.07); }
.fdemo__srow--1 { animation-name: fdemo-srow1; }
.fdemo__srow--2 { animation-name: fdemo-srow2; }
.fdemo__srow--3 { animation-name: fdemo-srow3; }
@keyframes fdemo-srow1 { 0%, 28% { opacity: 0; transform: translateX(-8px); } 33%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes fdemo-srow2 { 0%, 33% { opacity: 0; transform: translateX(-8px); } 38%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes fdemo-srow3 { 0%, 38% { opacity: 0; transform: translateX(-8px); } 43%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
/* mandje-vergelijking: de trigger-regel */
.fdemo__piggy {
  text-align: center; font-size: 8.5px; font-weight: 650; color: #14713c;
  padding: 6px 8px; opacity: 0.95;
}
.fdemo--compare .fdemo__finger { animation-name: fdCP-finger; }
@keyframes fdCP-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  6% { transform: translate(-88px, -232px); opacity: 1; }
  11% { transform: translate(-88px, -238px) scale(1); }
  14% { transform: translate(-88px, -242px) scale(0.82); }
  17% { transform: translate(-88px, -238px) scale(1); }
  24% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
/* ⭐ bonus-alarm-toggle */
.fdemo__favrow {
  margin: 26px 10px 0; display: flex; gap: 7px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: 12px; background: #fff; padding: 8px 9px;
  animation: fdF-row 8s infinite;
}
@keyframes fdF-row { 0%, 24% { box-shadow: none; } 30%, 88% { box-shadow: 0 0 0 2px rgba(196, 169, 106, 0.45), 0 4px 14px rgba(196, 169, 106, 0.25); } 94%, 100% { box-shadow: none; } }
.fdemo__favstar { position: relative; width: 20px; font-size: 15px; line-height: 1; }
.fdemo__favstar i { position: absolute; inset: 0; font-style: normal; }
.fdemo__favstar i:first-child { animation: fdF-off 8s infinite; }
.fdemo__favstar i:last-child { opacity: 0; animation: fdF-on 8s infinite; }
@keyframes fdF-off { 0%, 24% { opacity: 1; } 28%, 96% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fdF-on { 0%, 24% { opacity: 0; transform: scale(0.4) rotate(-30deg); } 30%, 96% { opacity: 1; transform: scale(1) rotate(0); } 100% { opacity: 0; } }
.fdemo__favtxt b { display: block; font-size: 10px; }
.fdemo__favtxt span { font-size: 7.5px; color: #9aa094; line-height: 1.35; display: block; }
.fdemo--favalert .fdemo__finger { animation-name: fdF-finger; }
@keyframes fdF-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  6% { transform: translate(-198px, -258px); opacity: 1; }
  11% { transform: translate(-198px, -264px) scale(1); }
  14% { transform: translate(-198px, -268px) scale(0.82); }
  17% { transform: translate(-198px, -264px) scale(1); }
  24% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--favalert .fdemo__push { animation: fdF-push 8s infinite; }
@keyframes fdF-push { 0%, 48% { opacity: 0; transform: translateY(-16px); } 54%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
/* winkel-modus */
.fdemo__gobtn {
  margin: 8px 10px 0; border: 1.5px dashed rgba(28, 139, 75, 0.5); border-radius: 999px;
  text-align: center; font-size: 9.5px; font-weight: 700; color: #14713c; padding: 7px;
  background: rgba(255, 255, 255, 0.6);
}
.fdemo__bigmode {
  position: absolute; inset: 0; z-index: 4; background: #f3f4ef;
  padding: 12px 10px; opacity: 0; animation: fdW-mode 8s infinite;
}
@keyframes fdW-mode { 0%, 22% { opacity: 0; } 28%, 90% { opacity: 1; } 96%, 100% { opacity: 0; } }
.fdemo__bigrow {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 12px 12px; margin-bottom: 8px;
  font-size: 13px; font-weight: 650; color: #191919;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
}
.fdemo__bigcheck {
  position: relative; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #d3d0c9; flex: 0 0 auto;
}
.fdemo__bigrow--done .fdemo__bigcheck::after {
  content: "✓"; position: absolute; inset: -2px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #1c8b4b; color: #fff; font-size: 14px; font-weight: 800;
  opacity: 0; transform: scale(0.4); animation: fdW-check 8s infinite;
}
@keyframes fdW-check { 0%, 52% { opacity: 0; transform: scale(0.4); } 58%, 90% { opacity: 1; transform: scale(1); } 96%, 100% { opacity: 0; } }
.fdemo__bigrow--done b { animation: fdW-strike 8s infinite; }
@keyframes fdW-strike { 0%, 52% { opacity: 1; } 58%, 90% { opacity: 0.45; } 96%, 100% { opacity: 1; } }
.fdemo--shopmode .fdemo__finger { animation-name: fdW-finger; z-index: 6; }
@keyframes fdW-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  6% { transform: translate(-92px, -258px); opacity: 1; }
  10% { transform: translate(-92px, -264px) scale(1); }
  13% { transform: translate(-92px, -268px) scale(0.82); } /* tik: Ik ga nu winkelen */
  16% { transform: translate(-92px, -264px) scale(1); }
  24% { transform: translate(-40px, -80px); opacity: 0; }
  44% { transform: translate(-160px, -276px); opacity: 0; }
  48% { transform: translate(-160px, -282px) scale(1); opacity: 1; }
  52% { transform: translate(-160px, -286px) scale(0.82); } /* tik: grote check */
  56% { transform: translate(-160px, -282px) scale(1); }
  64% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
/* item bewerken */
.fdemo__editcard {
  margin: 26px 10px 0; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 9px;
}
.fdemo__edittitle { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 650; }
.fdemo__editfield {
  margin-top: 7px; border: 1px solid var(--border); border-radius: 9px;
  padding: 6px 8px; font-size: 10px; color: #191919; position: relative;
  animation: fdE-field 8s infinite;
}
@keyframes fdE-field { 0%, 26% { border-color: var(--border); } 30%, 70% { border-color: #1c8b4b; box-shadow: 0 0 0 2px rgba(28, 139, 75, 0.15); } 76%, 100% { border-color: var(--border); } }
.fdemo__editfield i { font-style: normal; position: absolute; left: 8px; top: 6px; white-space: nowrap; }
.fdemo__editfield i.old { animation: fdE-old 8s infinite; }
.fdemo__editfield i.new { opacity: 0; overflow: hidden; max-width: 0; animation: fdE-new 8s steps(16, end) infinite; }
@keyframes fdE-old { 0%, 30% { opacity: 1; } 34%, 96% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fdE-new { 0%, 32% { opacity: 0; max-width: 0; } 36% { opacity: 1; } 56%, 96% { opacity: 1; max-width: 100%; } 100% { opacity: 0; } }
.fdemo__editsave {
  margin-top: 8px; text-align: center; border-radius: 999px; padding: 6px;
  background: linear-gradient(140deg, #33a862, #0e5730); color: #fff;
  font-size: 9.5px; font-weight: 700; animation: fdE-save 8s infinite;
}
@keyframes fdE-save { 0%, 60% { opacity: 0.55; } 66%, 74% { opacity: 1; transform: scale(1.04); } 80%, 100% { opacity: 0.55; transform: scale(1); } }
.fdemo__edited { animation: fdE-toastt 8s infinite; }
@keyframes fdE-toastt { 0%, 74% { opacity: 0; transform: translateY(10px); } 80%, 92% { opacity: 1; transform: none; } 98%, 100% { opacity: 0; } }
/* bladeren met deals */
.fdemo__chipsrow { display: flex; gap: 4px; padding: 7px 8px 4px; overflow: hidden; }
.fdemo__catchip { font-size: 8px; font-weight: 700; border-radius: 999px; padding: 3px 8px; background: #fff; border: 1px solid var(--border); color: #333; white-space: nowrap; }
.fdemo__catchip--on { background: linear-gradient(135deg, #33a862, #0e5730); color: #fff; border-color: transparent; }
.fdemo__dealstrip { padding: 2px 8px 0; opacity: 0; animation: fdBR-strip 8s infinite; }
@keyframes fdBR-strip { 0%, 22% { opacity: 0; transform: translateY(8px); } 28%, 92% { opacity: 1; transform: none; } 98%, 100% { opacity: 0; } }
.fdemo__dealstrip h6 { margin: 2px 0 4px; font-size: 7px; letter-spacing: 0.13em; color: #9aa094; font-weight: 700; }
.fdemo__dealtiles { display: flex; gap: 5px; }
.fdemo__dealtile {
  flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 6px 5px; text-align: center; font-size: 8px; font-weight: 650;
}
.fdemo__dealtile em { display: block; font-style: normal; font-size: 13px; }
.fdemo__dealtile .fdemo__deal { margin: 3px auto 0; opacity: 1; transform: none; animation: none; display: inline-block; }
.fdemo__grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 6px 8px; }
.fdemo__gtile { background: #fff; border: 1px solid var(--border); border-radius: 10px; text-align: center; font-size: 7px; font-weight: 600; padding: 5px 2px 4px; color: #333; }
.fdemo__gtile em { display: block; font-style: normal; font-size: 12px; }
.fdemo--browse .fdemo__finger { animation-name: fdBR-finger; }
@keyframes fdBR-finger {
  0%, 20% { transform: translate(30px, 0); opacity: 0; }
  27% { transform: translate(-150px, -222px); opacity: 1; }
  32% { transform: translate(-150px, -228px) scale(1); }
  35% { transform: translate(-150px, -232px) scale(0.82); } /* tik op dealtegel */
  38% { transform: translate(-150px, -228px) scale(1); }
  46% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--browse .fdemo__toast { animation: fdBR-toast 8s infinite; }
@keyframes fdBR-toast { 0%, 40% { opacity: 0; transform: translateY(10px); } 46%, 84% { opacity: 1; transform: none; } 90%, 100% { opacity: 0; } }
/* uitnodig-deelsheet */
.fdemo__sharegrid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.fdemo__sharebtn {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid var(--border); border-radius: 10px; padding: 7px 4px;
  font-size: 8.5px; font-weight: 700; color: #222; background: #fff;
}
.fdemo__sharebtn--wa { background: #25d366; color: #fff; border-color: transparent; animation: fdI-wa 8s infinite; }
@keyframes fdI-wa { 0%, 48% { transform: scale(1); } 52% { transform: scale(0.92); } 56%, 100% { transform: scale(1); } }
.fdemo--invite .fdemo__finger { animation-name: fdI-finger; z-index: 6; }
@keyframes fdI-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  5% { transform: translate(-132px, -320px); opacity: 1; }
  9% { transform: translate(-132px, -326px) scale(1); }
  12% { transform: translate(-132px, -330px) scale(0.82); } /* tik op 👤+ */
  15% { transform: translate(-132px, -326px) scale(1); }
  24% { transform: translate(-40px, -80px); opacity: 0; }
  40% { transform: translate(-172px, -108px); opacity: 0; }
  44% { transform: translate(-172px, -114px) scale(1); opacity: 1; }
  48% { transform: translate(-172px, -118px) scale(0.82); } /* tik op WhatsApp */
  52% { transform: translate(-172px, -114px) scale(1); }
  60% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--invite .fdemo__toast { animation: fdI-toast 8s infinite; }
@keyframes fdI-toast { 0%, 56% { opacity: 0; transform: translateY(10px); } 62%, 88% { opacity: 1; transform: none; } 94%, 100% { opacity: 0; } }
.fdemo__inviteicon {
  position: absolute; top: 7px; right: 10px; z-index: 2;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; background: rgba(28, 139, 75, 0.12); color: #14713c; font-weight: 800;
}
/* AI-chat */
.fdemo__chat { padding: 10px 10px 0; display: flex; flex-direction: column; gap: 6px; }
.fdemo__msg {
  max-width: 82%; border-radius: 12px; padding: 7px 9px; font-size: 9.5px; line-height: 1.4;
  opacity: 0; transform: translateY(8px);
}
.fdemo__msg--user { align-self: flex-end; background: linear-gradient(140deg, #33a862, #0e5730); color: #fff; animation: fdA-m1 8s infinite; }
.fdemo__msg--ai { align-self: flex-start; background: #fff; border: 1px solid var(--border); color: #222; animation: fdA-m2 8s infinite; }
@keyframes fdA-m1 { 0%, 8% { opacity: 0; transform: translateY(8px); } 13%, 94% { opacity: 1; transform: none; } 100% { opacity: 0; } }
@keyframes fdA-m2 { 0%, 26% { opacity: 0; transform: translateY(8px); } 31%, 94% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.fdemo--aichat .fdemo__sec--1, .fdemo--aichat .fdemo__item--1 { animation-name: fdA-in1; }
.fdemo--aichat .fdemo__item--2 { animation-name: fdA-in2; }
@keyframes fdA-in1 { 0%, 38% { opacity: 0; transform: translateY(10px); } 43%, 46% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 51%, 94% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
@keyframes fdA-in2 { 0%, 44% { opacity: 0; transform: translateY(10px); } 49%, 52% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 57%, 94% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo--aichat .fdemo__sec--1 { animation-name: fdA-sec1; }
@keyframes fdA-sec1 { 0%, 38% { opacity: 0; } 43%, 94% { opacity: 1; } 100% { opacity: 0; } }
/* voorraad auto-bij */
.fdemo__pantry {
  margin: 8px 8px 0; border: 1px solid var(--border); border-radius: 12px;
  background: #fff; padding: 7px 9px;
}
.fdemo__pantry h6 { margin: 0 0 4px; font-size: 7px; letter-spacing: 0.13em; color: #9aa094; font-weight: 700; }
.fdemo__prow { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 650; }
.fdemo__pcount { position: relative; margin-left: auto; width: 26px; height: 15px; font-size: 9.5px; font-weight: 800; }
.fdemo__pcount i { position: absolute; inset: 0; font-style: normal; text-align: right; }
.fdemo__pcount .c2 { animation: fdP-c2 8s infinite; }
.fdemo__pcount .c1 { opacity: 0; color: #b45309; animation: fdP-c1 8s infinite; }
.fdemo__pcount .c2b { opacity: 0; color: #14713c; animation: fdP-c2b 8s infinite; }
@keyframes fdP-c2 { 0%, 24% { opacity: 1; } 28%, 96% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fdP-c1 { 0%, 24% { opacity: 0; } 28%, 62% { opacity: 1; } 66%, 100% { opacity: 0; } }
@keyframes fdP-c2b { 0%, 62% { opacity: 0; } 66%, 96% { opacity: 1; } 100% { opacity: 0; } }
.fdemo--pantry .fdemo__sec--1, .fdemo--pantry .fdemo__item--1 { animation-name: fdP-in1; }
@keyframes fdP-in1 { 0%, 18% { opacity: 0; transform: translateY(10px); } 23%, 26% { opacity: 1; transform: none; background: rgba(74,222,128,0.3); } 31%, 94% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo--pantry .fdemo__sec--1 { animation-name: fdP-sec1; }
@keyframes fdP-sec1 { 0%, 18% { opacity: 0; } 23%, 94% { opacity: 1; } 100% { opacity: 0; } }
.fdemo--pantry .fdemo__flash { animation: fdP-flash 8s infinite; }
@keyframes fdP-flash { 0%, 58% { opacity: 0; } 60% { opacity: 0.85; } 64%, 100% { opacity: 0; } }
.fdemo__pnote { text-align: center; font-size: 7.5px; color: #9aa094; padding-top: 4px; }
.fdemo__pnote i { font-style: normal; opacity: 0; animation: fdP-note2 8s infinite; }
@keyframes fdP-note2 { 0%, 62% { opacity: 0; } 68%, 94% { opacity: 1; } 100% { opacity: 0; } }

/* ---- item-photo: eigen foto op een lijst-item ---- */
.fdemo--photo .fdemo__item--1 .fdemo__tile {
  position: relative; overflow: hidden; transition: none;
  animation: fdPH-tile 8s infinite;
}
@keyframes fdPH-tile {
  0%, 44% { background: #e8f2e4; }
  50%, 96% { background: linear-gradient(135deg, #a7d18a, #4e9d4e); box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
  100% { background: #e8f2e4; }
}
.fdemo--photo .fdemo__item--1 .fdemo__tile b {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 22px; opacity: 0; animation: fdPH-emoji 8s infinite;
}
@keyframes fdPH-emoji { 0%, 46% { opacity: 0; transform: scale(.5); } 52%, 96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
.fdemo--photo .fdemo__photobadge {
  position: absolute; left: 40px; top: 84px; z-index: 4;
  background: #1c8b4b; color: #fff; font-size: 7.5px; font-weight: 700;
  border-radius: 999px; padding: 2px 7px; opacity: 0; animation: fdPH-badge 8s infinite;
}
@keyframes fdPH-badge { 0%, 52% { opacity: 0; transform: translateY(6px); } 58%, 92% { opacity: 1; transform: none; } 98%, 100% { opacity: 0; } }
.fdemo--photo .fdemo__finger { animation-name: fdPH-finger; }
@keyframes fdPH-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  8% { transform: translate(112px, -46px); opacity: 1; }
  13% { transform: translate(112px, -52px) scale(1); }
  16% { transform: translate(112px, -56px) scale(.82); } /* tik camera-knop */
  19% { transform: translate(112px, -52px) scale(1); }
  28% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--photo .fdemo__flash { animation: fdPH-flash 8s infinite; }
@keyframes fdPH-flash { 0%, 40% { opacity: 0; } 44% { opacity: .85; } 50%, 100% { opacity: 0; } }

/* ---- quick-add: deel-naar / snelkoppeling ---- */
.fdemo--quickadd .fdemo__sheet h5 { display: flex; align-items: center; gap: 5px; }
.fdemo--quickadd .fdemo__sharebtn--fmc {
  grid-column: 1 / -1; background: linear-gradient(135deg, #33a862, #0e5730);
  color: #fff; border-color: transparent; animation: fdQ-fmc 8s infinite;
}
@keyframes fdQ-fmc { 0%, 40% { box-shadow: none; } 46%, 88% { box-shadow: 0 0 0 2px rgba(28,139,75,.4), 0 6px 16px rgba(28,139,75,.3); } 94%, 100% { box-shadow: none; } }
.fdemo--quickadd .fdemo__finger { animation-name: fdQ-finger; z-index: 6; }
@keyframes fdQ-finger {
  0%, 26% { transform: translate(30px, 0); opacity: 0; }
  30% { transform: translate(-92px, -150px); opacity: 1; }
  33% { transform: translate(-92px, -156px) scale(1); }
  36% { transform: translate(-92px, -160px) scale(.82); } /* tik FeedMyCart */
  39% { transform: translate(-92px, -156px) scale(1); }
  48% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}
.fdemo--quickadd .fdemo__item--1 { animation-name: fdQ-in1; }
@keyframes fdQ-in1 { 0%, 34% { opacity: 0; transform: translateY(10px); } 40%, 43% { opacity: 1; transform: none; background: rgba(74,222,128,.3); } 48%, 94% { opacity: 1; transform: none; background: #fff; } 100% { opacity: 0; } }
.fdemo--quickadd .fdemo__toast { animation: fdQ-toast 8s infinite; }
@keyframes fdQ-toast { 0%, 44% { opacity: 0; transform: translateY(10px); } 50%, 86% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; } }

/* ---- list-duplicate-archive: lijst-menu ---- */
.fdemo--lists .fdemo__tab--dots { cursor: default; }
.fdemo--lists .fdemo__menu {
  position: absolute; left: 90px; top: 44px; z-index: 6; width: 130px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18); padding: 5px; overflow: hidden;
  opacity: 0; transform: scale(.9); transform-origin: top left; animation: fdL-menu 8s infinite;
}
@keyframes fdL-menu { 0%, 20% { opacity: 0; transform: scale(.9); } 26%, 60% { opacity: 1; transform: scale(1); } 66%, 100% { opacity: 0; transform: scale(.95); } }
.fdemo--lists .fdemo__menu span {
  display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600;
  color: #222; padding: 6px 8px; border-radius: 8px;
}
.fdemo--lists .fdemo__menu span:first-child { animation: fdL-hl 8s infinite; }
@keyframes fdL-hl { 0%, 34% { background: transparent; } 40%, 52% { background: rgba(28,139,75,.12); } 58%, 100% { background: transparent; } }
.fdemo--lists .fdemo__tab--new {
  opacity: 0; transform: scale(.6); transform-origin: left center; animation: fdL-newtab 8s infinite;
}
@keyframes fdL-newtab { 0%, 60% { opacity: 0; transform: scale(.6); } 68%, 94% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
.fdemo--lists .fdemo__finger { animation-name: fdL-finger; z-index: 7; }
@keyframes fdL-finger {
  0% { transform: translate(30px, 0); opacity: 0; }
  5% { transform: translate(60px, -300px); opacity: 1; }
  9% { transform: translate(60px, -306px) scale(1); }
  12% { transform: translate(60px, -310px) scale(.82); } /* tik … */
  15% { transform: translate(60px, -306px) scale(1); }
  24% { transform: translate(-40px, -260px); opacity: 0; }
  30% { transform: translate(-118px, -268px); opacity: 1; }
  35% { transform: translate(-118px, -274px) scale(.82); } /* tik Dupliceer */
  39% { transform: translate(-118px, -268px) scale(1); }
  48% { transform: translate(10px, -6px); opacity: 0; }
  100% { transform: translate(30px, 0); opacity: 0; }
}

/* Taal-schakelaar in de nav (NL | EN | IT) */
.nav__langs {
  display: inline-flex;
  gap: 2px;
  margin-left: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav__langs a {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--ink-soft, #5b6461);
  text-decoration: none;
}
.nav__langs a:hover { background: rgba(28, 139, 75, 0.08); }
.nav__langs a[data-active="1"],
html[lang="nl"] .nav__langs a[data-lang="nl"] {
  background: rgba(28, 139, 75, 0.12);
  color: var(--brand, #1c8b4b);
}
@media (max-width: 760px) {
  .nav__langs { display: none; } /* mobiel: hamburger-menu heeft de links */
}
.nav__mobile-langs {
  padding: 10px 4px 2px;
  font-size: 0.8rem;
  color: var(--ink-soft, #5b6461);
}
.nav__mobile-langs a { color: inherit; font-weight: 600; }
html[lang="en"] .nav__mobile-langs a[data-lang="en"],
html[lang="it"] .nav__mobile-langs a[data-lang="it"],
html[lang="nl"] .nav__mobile-langs a[data-lang="nl"] { color: var(--brand, #1c8b4b); }

/* Taal-suggestie-balk (alleen op de NL-pagina bij EN/IT-browsers) */
.lang-suggest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 40px 8px 14px;
  background: #103d26;
  color: #e9f5ee;
  font-size: 0.82rem;
  position: relative;
  z-index: 60;
}
.lang-suggest a { color: #7fd4a3; font-weight: 700; text-decoration: none; }
.lang-suggest a:hover { text-decoration: underline; }
.lang-suggest button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #e9f5ee;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 8px;
}

/* Compacte taal-select in de nav (10 talen) */
.nav__lang-select {
  margin-left: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(28, 139, 75, 0.25);
  background: rgba(255, 255, 255, 0.6);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand, #1c8b4b);
  cursor: pointer;
  max-width: 96px;
}
@media (max-width: 760px) { .nav__lang-select { display: none; } }
.nav__mobile-langs { line-height: 1.9; }

/* ── Lanceer-balk (A) — vast bovenaan, nav schuift eronder ── */
:root { --promo-h: 40px; }
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  min-height: var(--promo-h);
  display: flex; align-items: center; justify-content: center;
  text-align: center; text-decoration: none;
  background: linear-gradient(140deg, #23B3A4 0%, #1C8B4B 60%, #0E5730 100%);
  color: #fff; font-size: 13px; line-height: 1.35; padding: 7px 40px;
}
.promo-bar strong { font-weight: 700; }
.promo-bar span { border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; }
body { padding-top: var(--promo-h); }
#nav.nav { top: calc(var(--promo-h) + 3px); }
@media (max-width: 620px){
  :root { --promo-h: 58px; }
  .promo-bar { font-size: 12px; padding: 7px 14px; }
}

/* ── Hero geen-addertje-regel (D) ── */
.hero__nocatch {
  margin-top: 10px; font-size: 13px; color: var(--ink-soft, #5b6461); font-weight: 500;
}

/* ── Gratis vs Premium (C) ── */
.tiers { padding: 72px 0; }
.tiers__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px;
}
@media (max-width: 780px){ .tiers__grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--card, #fff); border: 1px solid var(--border, #E6E3DD);
  border-radius: 20px; padding: 26px 24px; position: relative;
}
.tier--premium {
  border-color: rgba(196,169,106,0.5);
  box-shadow: 0 8px 30px rgba(196,169,106,0.12);
}
.tier__badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
  background: rgba(28,139,75,0.10); color: #0E5730; margin-bottom: 12px;
}
.tier__badge--gold { background: rgba(196,169,106,0.18); color: #8a6d2f; }
.tier__title { font-size: 20px; margin: 0 0 14px; letter-spacing: -0.01em; }
.tier__list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 9px; }
.tier__list li { font-size: 14.5px; line-height: 1.4; color: var(--ink, #171613); }
.tier__price { font-size: 14px; color: var(--ink-soft, #5b6461); margin: 0 0 8px; }
.tier__price s { color: #a8a29a; }
.tier__foot { font-size: 12.5px; color: var(--ink-soft, #5b6461); margin: 0; }
.tier__foot--gold { color: #8a6d2f; font-weight: 600; }
.tiers__cta { text-align: center; margin-top: 26px; }
