/* ============================================================
   RECENSIEKAART v2 — Review Signal System
   Dark-first. NFC signal language. Mobile-first.
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --tq: #3dbf8a; --tq-h: #6dd8aa; --tq-p: #2ea873; --tq-d: #1c6f4a;
  --tq-glow: rgba(61,191,138,0.22); --tq-glow-lg: rgba(61,191,138,0.10);
  --bg: #080808; --surf: #111111; --elev: #1a1a1a; --elev2: #222222;
  --fg: #ffffff; --fg2: #e2e2e2; --fg3: #b0b0b0; --fg4: #949494;
  --border: rgba(255,255,255,0.08); --border2: rgba(255,255,255,0.14); --border3: rgba(255,255,255,0.28);
  --star: #fbbf24; --red: #ef4444; --red-soft: rgba(239,68,68,0.12);
  /* Extended palette */
  --amber: #f59e0b; --amber-glow: rgba(245,158,11,0.22); --amber-soft: rgba(245,158,11,0.08);
  --cobalt-soft: rgba(37,99,235,0.10);
  --font: 'Outfit', system-ui, sans-serif;
  --font-google: 'Roboto', Arial, system-ui, sans-serif;
  --ease: cubic-bezier(0.16,1,0.3,1); --ease-std: cubic-bezier(0.4,0,0.2,1);
  --r: 8px; --r-md: 10px; --r-lg: 12px; --r-xl: 16px; --r-2xl: 20px; --r-3xl: 28px; --r-pill: 9999px;
}


html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 1100px 900px at -8vw 24vh,  rgba(61,191,138,0.030) 0%, transparent 60%),
    radial-gradient(ellipse 1000px 760px at  50vw 200vh, rgba(61,191,138,0.022) 0%, transparent 60%),
    var(--bg);
  color: var(--fg); font-family: var(--font);
  font-size: 16px; line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--tq); color: #061a11; }

/* ── Accessibility: visible keyboard focus ───────────── */
:focus-visible {
  outline: 3px solid var(--tq);
  outline-offset: 2px;
  border-radius: 3px;
}
/* don't show the ring on mouse/touch, only keyboard */
:focus:not(:focus-visible) { outline: none; }
/* dark elements (turquoise buttons) get a light ring for contrast */
.btn-primary:focus-visible, .btn-price.primary:focus-visible,
.bundle-opt:focus-visible {
  outline-color: #3dbf8a;
  outline-offset: 3px;
}

/* ── Skip link ───────────────────────────────────────── */
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  background: var(--tq); color: #061a11; font-weight: 700;
  padding: 12px 20px; border-radius: var(--r);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 16px; outline: 3px solid #fff; outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Cookie consent banner ───────────────────────────── */
#cookiebar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9000;
  max-width: 760px; margin: 0 auto;
  background: var(--elev); border: 1px solid var(--border2);
  border-radius: var(--r-xl); box-shadow: 0 12px 48px rgba(0,0,0,0.6);
  padding: 20px 22px;
  display: none; gap: 18px; align-items: center; flex-wrap: wrap;
  transform: translateY(8px); opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
#cookiebar.show { display: flex; opacity: 1; transform: translateY(0); }
.cb-text { flex: 1 1 320px; font-size: 13.5px; line-height: 1.55; color: var(--fg2); }
.cb-text strong { color: var(--fg); font-weight: 700; }
.cb-text a { color: var(--tq); text-decoration: underline; text-underline-offset: 2px; }
.cb-actions { display: flex; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; }
.cb-btn {
  font-family: inherit; font-size: 14px; font-weight: 700;
  padding: 11px 20px; border-radius: var(--r-pill); white-space: nowrap;
  min-height: 44px;
}
.cb-accept { background: var(--tq); color: #061a11; }
.cb-accept:hover { background: var(--tq-h); }
.cb-decline { background: transparent; color: var(--fg2); border: 1px solid var(--border2); }
.cb-decline:hover { border-color: var(--border3); color: var(--fg); }
@media (max-width: 540px) {
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1 1 auto; }
}

/* Dot grid */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 120% 90% at 50% 0%, #000 30%, transparent 80%);
}

/* Grain texture overlay */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  opacity: 0.055;
  mix-blend-mode: overlay;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.accent { color: var(--tq); }
.text-red { color: var(--red); }

/* ══════════════════════════════════════════════════
   SIGNAL LINE — NFC spine connecting sections
   ══════════════════════════════════════════════════ */

/* Scroll progress spine — left edge */
#signal-spine {
  position: fixed; left: 0; top: 0; width: 3px; height: 0; z-index: 50;
  background: linear-gradient(180deg, var(--tq), rgba(61,191,138,0.3));
  box-shadow: 2px 0 14px var(--tq-glow);
  transition: height 0.1s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* Section connectors */
.sig-connector {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; position: relative; z-index: 2; padding: 0;
  margin: 0 auto;
}
.sig-connector .sc-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.14), rgba(255,255,255,0));
}
.sig-connector .sc-node {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tq);
  box-shadow: 0 0 0 3px rgba(61,191,138,0.08);
  position: relative; flex-shrink: 0; opacity: 0.85;
}
.sig-connector .sc-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg4); margin-top: 8px; opacity: 0.7;
}



/* Section top glow accent — creates bleed between sections */
section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(600px, 90%); height: 1px; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, transparent);
}
section#hero::before, section#whynow::before, section#demo::before,
section#ranking::before, section#guarantee::before { 
  background: linear-gradient(90deg, transparent, rgba(61,191,138,0.12) 30%, rgba(61,191,138,0.12) 70%, transparent);
  height: 1px;
}

/* ── Scroll reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .42s var(--ease), transform .42s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Sections ─────────────────────────────────────── */
section { padding: 104px 0; position: relative; }

.tint {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surf) 80px, var(--surf) calc(100% - 80px), var(--bg) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--tq); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--tq); display: inline-block; }
.eyebrow.center { display: flex; justify-content: center; }
.title { font-size: clamp(28px,4.2vw,50px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; text-wrap: balance; }
.title.sm { font-size: clamp(24px,3.4vw,40px); }
.lede { font-size: clamp(16px,1.8vw,19px); color: var(--fg2); line-height: 1.65; max-width: 540px; margin-top: 18px; text-wrap: pretty; }
.head { margin-bottom: 60px; }
.head.center { text-align: center; }
.head.center .lede { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; border-radius: var(--r-pill); transition: all .25s var(--ease); white-space: nowrap; cursor: pointer; }
.btn svg { transition: transform .25s var(--ease); }

/* ── TIER 1 · Primary CTA — glass + animated RGB border ── */
@property --rgb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.btn-primary {
  background: rgb(12, 38, 26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #6effc0; font-size: 16px; font-weight: 800; letter-spacing: -0.01em;
  padding: 17px 34px; position: relative; overflow: hidden;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 rgba(61,191,138,0.15);
  animation: innerPulse 3s ease-in-out infinite;
  transition: transform .18s var(--ease);
  isolation: isolate;
}
@keyframes innerPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 rgba(61,191,138,0.15); }
  50%      { box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 0 40px rgba(61,191,138,0.14), inset 0 1px 0 rgba(61,191,138,0.2); }
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--rgb-angle),
    rgba(61,191,138,0.0) 0deg,
    rgba(61,191,138,0.6) 30deg,
    rgba(120,220,180,0.9) 50deg,
    rgba(180,255,230,1.0) 65deg,
    rgba(100,200,255,0.7) 80deg,
    rgba(61,120,200,0.4) 100deg,
    rgba(61,191,138,0.1) 130deg,
    rgba(61,191,138,0.0) 180deg,
    rgba(61,191,138,0.0) 360deg
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 2px; z-index: 0;
  animation: rgb-border-spin 6s linear infinite;
  pointer-events: none;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg); pointer-events: none;
  animation: ctaSheen 5.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes rgb-border-spin { to { --rgb-angle: 360deg; } }
@keyframes ctaSheen { 0%, 16% { left: -80%; } 36%, 100% { left: 160%; } }
.btn-primary:hover {
  background: rgb(18, 52, 36);
  box-shadow: 0 14px 44px rgba(0,0,0,0.7), inset 0 0 50px rgba(61,191,138,0.18), inset 0 1px 0 rgba(61,191,138,0.25);
  transform: translateY(-2px);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0) scale(.98); }
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { display: none; }
  .btn-primary::before { animation: none; }
}

/* ── TIER 2 · Secondary action — fill bij hover ── */
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.65); font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.2); padding: 14px 26px;
  overflow: hidden; position: relative;
}
.btn-secondary::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0.06);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover::before { transform: scaleX(1); }
.btn-secondary:active { transform: scale(.98); }
.btn-secondary svg { opacity: .75; }

/* ── TIER 3 · Ghost / tertiary — whispers. ── */
.btn-ghost {
  color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.18); padding: 14px 24px;
  background: transparent; overflow: hidden; position: relative;
}
.btn-ghost::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0.05);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.32); color: #fff; }
.btn-ghost:hover::before { transform: scaleX(1); }

.btn-lg { font-size: 17px; padding: 19px 36px; }
.btn-block { width: 100%; justify-content: center; }

/* Trust pulse */
.trust-pulse { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.tp { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--fg3); }
.tp svg { color: var(--tq); }

/* ── Status chips ─────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--r-pill); padding: 6px 13px;
  background: rgba(61,191,138,0.1); border: 1px solid rgba(61,191,138,0.28); color: var(--tq);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tq); }
.chip.live .dot { animation: blink 1.5s ease-in-out infinite; }

/* ── Nav ──────────────────────────────────────────── */
#site-header { display: contents; }
nav {
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--fg3); transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-price { font-size: 13px; color: var(--fg3); }

/* ── Hamburger button ─────────────────────────────── */
.nav-burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  width: 22px; height: 2px; background: var(--fg); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu — full-screen takeover ───────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 85;
  background:
    radial-gradient(ellipse 95% 48% at 50% 16%, rgba(61,191,138,0.16), transparent 60%),
    var(--bg);
  display: flex; flex-direction: column;
  padding: calc(env(safe-area-inset-top) + 84px) 26px calc(env(safe-area-inset-bottom) + 28px);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .34s var(--ease), transform .34s var(--ease), visibility .34s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 600px) {
  .mobile-menu { padding-top: calc(env(safe-area-inset-top) + 60px); }
}

/* Terwijl het mobiele menu open is: verberg drijvende overlays die anders
   over (of door) het menu heen vallen \u2014 ze delen de onderkant met de menu-CTA. */
body.menu-open #salespop,
body.menu-open #scrollcta { display: none !important; }

.mm-nav { margin-top: 4px; }
.mm-links { list-style: none; display: flex; flex-direction: column; }
.mm-links li { border-bottom: 1px solid var(--border); }
.mm-links a {
  display: flex; align-items: center; gap: 16px; padding: 22px 4px; color: var(--fg);
  font-size: clamp(26px, 8vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
}
.mm-num { font-size: 13px; font-weight: 700; color: var(--tq); font-variant-numeric: tabular-nums; width: 26px; flex-shrink: 0; }
.mm-lbl { flex: 1; }
.mm-arrow { color: var(--fg4); flex-shrink: 0; transition: transform .25s var(--ease), color .25s; }
.mm-links a:active, .mm-links a:hover { color: var(--tq); }
.mm-links a:active .mm-arrow, .mm-links a:hover .mm-arrow { color: var(--tq); transform: translateX(5px); }

.mm-foot { margin-top: auto; padding-top: 30px; }
.mm-cta { width: 100%; display: flex; align-items: center; justify-content: center; text-align: center; box-sizing: border-box; }
.mm-trust { text-align: center; margin-top: 16px; font-size: 13px; color: var(--fg3); text-wrap: pretty; }
.mm-trust .s { color: var(--star); letter-spacing: 1px; }

/* Gestaggerde reveal van links + footer bij openen */
.mobile-menu .mm-links li, .mobile-menu .mm-foot {
  opacity: 0; transform: translateY(16px);
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}
.mobile-menu.open .mm-links li, .mobile-menu.open .mm-foot { opacity: 1; transform: none; }
.mobile-menu.open .mm-links li:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mm-links li:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mm-links li:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open .mm-links li:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open .mm-foot { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu .mm-links li, .mobile-menu .mm-foot, .nav-burger span { transition: none; }
}
.nav-price strong { color: var(--fg); font-size: 15px; }
.nav-cta {
  position: relative; overflow: hidden; isolation: isolate;
  background: rgb(12, 38, 26);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  color: #6effc0; font-weight: 800; font-size: 14px;
  border-radius: var(--r-pill); padding: 11px 22px;
  border: none; box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(61,191,138,0.15);
  animation: innerPulse 3s ease-in-out infinite;
  transition: transform .25s var(--ease);
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: conic-gradient(from var(--rgb-angle), rgba(61,191,138,0.0) 0deg, rgba(61,191,138,0.6) 30deg, rgba(120,220,180,0.9) 50deg, rgba(180,255,230,1.0) 65deg, rgba(100,200,255,0.7) 80deg, rgba(61,120,200,0.4) 100deg, rgba(61,191,138,0.1) 130deg, rgba(61,191,138,0.0) 180deg, rgba(61,191,138,0.0) 360deg);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 2px; z-index: 0;
  animation: rgb-border-spin 6s linear infinite;
  pointer-events: none;
}
.nav-cta:hover { background: rgb(18, 52, 36); box-shadow: 0 6px 24px rgba(0,0,0,0.6), inset 0 0 30px rgba(61,191,138,0.16); transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────── */
#hero {
  padding: 84px 0 72px; overflow: hidden;
  background:
    radial-gradient(ellipse 72% 58% at 78% 2%, rgba(61,191,138,0.20), transparent 55%),
    radial-gradient(ellipse 48% 44% at 12% 88%, var(--cobalt-soft), transparent 55%),
    radial-gradient(ellipse 28% 28% at 88% 90%, rgba(61,191,138,0.06), transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(36px,5.2vw,68px); font-weight: 900; line-height: 1.02; letter-spacing: -0.035em; text-wrap: balance; }
.hero-sub { font-size: clamp(16px,1.8vw,19px); color: var(--fg2); line-height: 1.6; margin: 22px 0 30px; max-width: 460px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-strip { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.hs { display: flex; align-items: center; gap: 9px; }
.hs-val { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.hs-lbl { font-size: 12px; color: var(--fg3); line-height: 1.3; }
.hs-stars { color: var(--star); font-size: 14px; letter-spacing: 1px; }
.hs-div { width: 1px; height: 32px; background: var(--border); }

/* NFC card */
.stage { perspective: 1100px; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.card-orbit { position: relative; }

/* Hero auto-loop demo */
.hero-demo { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; }
.hero-demo .hero-scene { gap: clamp(36px, 5vw, 56px); min-height: 360px; padding: 8px 0; transform: scale(1.16); transform-origin: center; position: relative; }
/* Desktop: houd de telefoon (het brandpunt) gecentreerd in de kolom. De kaart
   staat absoluut links ervan en schuift er tijdens de tik achter — zo blijft
   de payoff (review op de telefoon) netjes in het midden staan.
   Alleen op de tweekolommen-layout; daaronder behoudt de demo de eigen
   (verticale) stapeling uit recensiekaart-sections.css. */
@media (min-width: 901px) {
  /* De kaart zit áchter de telefoon (telefoon heeft hogere z-index) en peekt
     er rechts iets achteruit — gecentreerd mét de telefoon, dus nooit los
     naast de tekst. Een subtiele 'druk'-nudge tijdens de tik geeft leven. */
  .hero-demo #heroCardBox {
    position: absolute; top: 50%; left: 50%; margin: 0;
    transform: translate(-50%, -50%) translateX(38px) rotate(3deg);
  }
  .hero-demo #heroCardBox.moving {
    transform: translate(-50%, -50%) translateX(24px) rotate(-2deg);
  }
  .hero-demo .demo-tap-hint { display: none; }
}
@media (max-width: 900px) {
  .hero-demo .hero-scene { transform: scale(1.08); }
}
@media (max-width: 480px) {
  .hero-demo .hero-scene { transform: scale(1); min-height: 0; }
  .stage { min-height: 0; }
}

/* Product image (tilt) */
.product-tilt {
  transform: rotateY(-12deg) rotateX(6deg);
  transition: transform .35s var(--ease);
  will-change: transform;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(61,191,138,0.15));
  position: relative; z-index: 2;
}
.product-img { width: 300px; height: auto; border-radius: 16px; display: block; }
.co-product-img { width: 72%; height: auto; margin: auto; border-radius: 10px; }
.co-thumb img { width: 60%; height: auto; margin: auto; }
.nfc-card {
  width: 350px; height: 218px; border-radius: 20px; position: relative; overflow: hidden;
  background: linear-gradient(140deg, #1f1f1f 0%, #121212 55%, #0c0c0c 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.09);
  padding: 26px 30px; display: flex; flex-direction: column; justify-content: space-between;
  transform: rotateY(-16deg) rotateX(7deg); transition: transform .35s var(--ease);
  will-change: transform;
}
.nfc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(61,191,138,0.1), transparent 50%); }
.nfc-sheen {
  position: absolute; top: -60%; left: -30%; width: 60%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: rotate(18deg); animation: sheen 5.5s ease-in-out infinite; pointer-events: none;
}
.nfc-logo { height: 22px; filter: brightness(0) invert(1); opacity: 0.92; width: auto; position: relative; }
.nfc-foot { display: flex; align-items: flex-end; justify-content: space-between; position: relative; }
.nfc-tap { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.16em; }
.nfc-waves { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); width: 74px; opacity: 0.5; filter: brightness(0) saturate(100%) invert(64%) sepia(46%) saturate(560%) hue-rotate(108deg); }
.card-badge { position: absolute; bottom: -12px; right: -10px; z-index: 3; }
.card-size { position: absolute; top: -12px; left: -10px; z-index: 3; background: var(--elev); border-color: var(--border2); color: var(--fg2); text-transform: none; letter-spacing: 0.01em; }
.card-size svg { color: var(--tq); }
.card-glow { position: absolute; inset: -50px; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(61,191,138,0.18), transparent 62%); animation: glowpulse 4s ease-in-out infinite; }
.ripple { position: absolute; top: 50%; right: 30px; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--tq); transform: translateY(-50%); opacity: 0; pointer-events: none; z-index: 1; }
.ripple.r1 { animation: ripple 3s ease-out infinite; }
.ripple.r2 { animation: ripple 3s ease-out infinite 1s; }
.ripple.r3 { animation: ripple 3s ease-out infinite 2s; }

/* ── Generic card ─────────────────────────────────── */
.card { background: var(--surf); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; transition: all .25s var(--ease); }
.card:hover { border-color: var(--border2); }
.card.glowable:hover { border-color: rgba(61,191,138,0.34); box-shadow: 0 0 26px var(--tq-glow); transform: translateY(-3px); }

/* ── 3D Icons ─────────────────────────────────────── */
.ico-3d {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(145deg, rgba(61,191,138,0.18) 0%, rgba(61,191,138,0.04) 100%);
  border: 1px solid rgba(61,191,138,0.3);
  box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 28px rgba(61,191,138,0.07), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: var(--tq);
  margin: 0 auto 20px;
  transform: perspective(200px) rotateX(10deg) rotateY(-4deg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.ico-3d::after {
  content: ''; position: absolute; bottom: -8px; left: 12px; right: 12px;
  height: 12px; background: rgba(61,191,138,0.14); filter: blur(6px); border-radius: 50%;
}
.card:hover .ico-3d, .obj:hover .ico-3d, .simple-cell:hover .ico-3d {
  transform: perspective(200px) rotateX(2deg) rotateY(0deg) translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 40px rgba(61,191,138,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ico-3d.sm { width: 48px; height: 48px; border-radius: 12px; margin: 0 0 14px; }
.ico-3d.sm::after { bottom: -6px; left: 8px; right: 8px; }

/* ── Payment logos (Mollie CDN) ───────────────────── */
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; align-items: center; }
.pay-logo { height: 20px; width: auto; border-radius: 5px; object-fit: contain; filter: brightness(0.95); transition: filter .2s; }
.pay-logo:hover { filter: brightness(1.1); }
.pay-postnl { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.postnl-logo { height: 28px; width: auto; object-fit: contain; }
.postnl-txt { font-size: 12px; color: var(--fg3); }

/* ── Review Links zoekwidget ──────────────────────── */
.rls-section { margin: 24px 0; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xl); overflow: hidden; background: transparent; }
.rls-header { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); }
.rls-ico { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); box-shadow: none; }
.rls-htext { min-width: 0; flex: 1; }
.rls-title { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 16px; font-weight: 800; color: var(--fg); line-height: 1.25; letter-spacing: -0.01em; }
.rls-step { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-pill); padding: 2px 9px; }
.rls-sub { font-size: 13px; color: var(--fg2); margin-top: 4px; line-height: 1.45; text-wrap: pretty; overflow-wrap: anywhere; }
.rls-item { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.rls-item:last-child { border-bottom: none; }
/* "Gebruik voor alle kaarten" pill-knop */
.rls-apply-all {
  display: none; align-items: center; gap: 7px;
  margin: 10px 18px 14px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  cursor: pointer; font-family: var(--font);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  width: fit-content;
}
.rls-apply-all:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); color: #fff; }
.rls-label { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.rls-num { font-size: 12px; font-weight: 700; color: var(--fg2); background: rgba(255,255,255,0.07); border-radius: var(--r-pill); padding: 2px 10px; }
.rls-status { font-size: 11px; font-weight: 600; border-radius: var(--r-pill); padding: 2px 9px; }
.rls-status.pending { background: rgba(239,68,68,0.14); color: #ff6f66; }
.rls-status.done { background: rgba(61,191,138,0.15); color: var(--tq); }
.rls-search { position: relative; display: flex; align-items: center; }
.rls-search svg { position: absolute; left: 13px; color: rgba(251,191,36,0.5); flex-shrink: 0; }
.rls-input { width: 100%; background: rgba(251,191,36,0.04); border: 1.5px solid rgba(251,191,36,0.22); border-radius: var(--r-lg); padding: 13px 38px; font-family: var(--font); font-size: 14px; color: var(--fg); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.rls-input:hover { border-color: rgba(251,191,36,0.38); }
.rls-input:focus { border-color: var(--tq); box-shadow: 0 0 0 3px rgba(61,191,138,0.18); background: rgba(255,255,255,0.08); }
.rls-input::placeholder { color: var(--fg3); }
.rls-clear { position: absolute; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: var(--elev); color: var(--fg3); font-size: 15px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); cursor: pointer; transition: all .2s; }
.rls-clear:hover { color: var(--fg); border-color: var(--border2); }

/* ── Checkout validatie ──────────────────────────────── */
.co-validation-msg {
  display: none; align-items: center; gap: 9px;
  background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.28);
  border-radius: var(--r-lg); padding: 12px 15px; margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: #ff6f66; line-height: 1.4;
}
.co-validation-msg.show { display: flex; animation: fadeSlideIn .25s var(--ease); }
.co-validation-msg svg { flex-shrink: 0; }
.rls-input.error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.18) !important;
  background: rgba(239,68,68,0.06) !important;
  animation: rlsShake .4s cubic-bezier(.4,0,.2,1);
}
@keyframes rlsShake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-7px); }
  40%     { transform: translateX(7px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}
/* ── Google-style autocomplete dropdown (white) ─────── */
.rls-dropdown { background: #fff; border: 1px solid #dadce0; border-radius: 10px; margin-top: 6px; overflow: hidden; box-shadow: 0 6px 22px rgba(32,33,36,0.28); position: relative; z-index: 10; font-family: var(--font-google); padding: 4px 0; }
.rls-result { display: flex; align-items: center; gap: 14px; padding: 9px 16px; cursor: pointer; transition: background .12s; }
.rls-result:hover { background: #f1f3f4; }
.rls-result-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #5f6368; }
.rls-result-icon svg { width: 18px; height: 18px; }
.rls-result-name { font-size: 14px; font-weight: 400; color: #202124; font-family: var(--font-google); line-height: 1.3; }
.rls-result-name b { font-weight: 700; }
.rls-result-addr { font-size: 12.5px; color: #70757a; margin-top: 1px; font-family: var(--font-google); }
.rls-result-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #70757a; margin-top: 2px; }
.rls-result-rating .rr-score { color: #70757a; font-weight: 500; }
.rls-result-rating .rr-stars { color: #fbbc04; letter-spacing: -1px; font-size: 11px; }
.rls-powered { display: flex; align-items: center; justify-content: flex-end; gap: 5px; padding: 7px 16px 5px; font-size: 10.5px; color: #70757a; font-family: var(--font-google); border-top: 1px solid #f1f3f4; margin-top: 3px; }
.rls-powered .gwm { font-family: var(--font-google); font-weight: 500; font-size: 13px; letter-spacing: -0.5px; }
.rls-empty { display: flex; align-items: center; gap: 8px; padding: 14px 16px; font-size: 13px; color: #70757a; font-family: var(--font-google); }
.rls-empty svg { flex-shrink: 0; color: #9aa0a6; }

/* ── Bedrijf niet gevonden ──────────────────────────────── */
.rls-notfound-trigger {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  font-size: 12.5px; color: #1a73e8;
  font-family: var(--font-google);
  cursor: pointer;
  border-top: 1px solid #f1f3f4;
  transition: background .12s;
}
.rls-notfound-trigger:hover { background: #f8f9fa; }
.rls-notfound-trigger svg { color: #1a73e8; flex-shrink: 0; }

.rls-notfound-panel {
  padding: 16px;
  font-family: var(--font-google);
}
.rls-notfound-back {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0 0 12px;
  font-size: 12px; color: #5f6368; cursor: pointer;
  font-family: var(--font-google);
  transition: color .12s;
}
.rls-notfound-back:hover { color: #1a73e8; }
.rls-notfound-title {
  font-size: 14px; font-weight: 600; color: #202124;
  margin-bottom: 6px;
}
.rls-notfound-text {
  font-size: 13px; color: #5f6368; line-height: 1.5;
  margin-bottom: 12px;
}
.rls-notfound-steps {
  font-size: 12.5px; color: #202124; line-height: 1.7;
  padding-left: 18px; margin-bottom: 14px;
}
.rls-notfound-steps li { margin-bottom: 2px; }
.rls-notfound-cta {
  display: inline-flex; align-items: center;
  background: #1a73e8; color: #fff;
  font-size: 13px; font-weight: 600; font-family: var(--font-google);
  padding: 8px 16px; border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
}
.rls-notfound-cta:hover { background: #1557b0; }
.rls-notfound-note {
  font-size: 11px; color: #9aa0a6; margin-top: 10px; line-height: 1.4;
}
.rls-confirmed { display: flex; align-items: center; gap: 12px; background: var(--elev2); border: 1px solid var(--border2); border-left: 3px solid var(--tq); border-radius: var(--r-lg); padding: 13px 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.rls-confirmed-check { width: 30px; height: 30px; border-radius: 50%; background: var(--tq); color: #04140d; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 14px var(--tq-glow); }
.rls-confirmed-name { font-size: 14px; font-weight: 700; color: var(--fg); }
.rls-confirmed-addr { font-size: 12px; color: var(--fg3); margin-top: 1px; }
.rls-confirmed-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.rls-view { font-size: 11px; color: var(--tq); text-decoration: none; font-weight: 600; }
.rls-view:hover { text-decoration: underline; }
.rls-change { font-size: 11px; color: var(--fg4); background: none; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 3px 9px; cursor: pointer; transition: all .2s; font-family: var(--font); }
.rls-change:hover { color: var(--fg); border-color: var(--border2); }
.rls-api-note { padding: 10px 18px; display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--fg4); background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.rls-api-note svg { color: var(--amber); flex-shrink: 0; }

/* ── Footer link buttons (legal) ─────────────────── */
.footer-link-btn {
  background: none; border: none; padding: 0; font-family: inherit;
  font-size: 14px; color: var(--fg3); cursor: pointer; text-align: left;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color .2s;
}
.footer-link-btn:hover { color: var(--fg); }
.footer-legal .footer-link-btn { font-size: 13px; color: var(--fg4); min-height: 44px; padding: 10px 0; }
.footer-legal .footer-link-btn:hover { color: var(--fg2); }

/* ── Legal modals ─────────────────────────────────── */
.legal-modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(8,8,8,0.86); backdrop-filter: blur(10px);
}
.legal-modal.show { display: flex; }
.lm-card {
  background: var(--elev); border: 1px solid var(--border2);
  border-radius: var(--r-3xl); width: 100%; max-width: 640px;
  max-height: 88vh; display: flex; flex-direction: column;
  box-shadow: 0 40px 90px rgba(0,0,0,0.7), 0 0 60px rgba(61,191,138,0.07);
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn { from { transform: translateY(22px); opacity: 0; } to { transform: none; opacity: 1; } }
.lm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.lm-head h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.lm-close {
  width: 34px; height: 34px; border-radius: 50%; background: var(--elev2);
  border: 1px solid var(--border); color: var(--fg3); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; line-height: 1;
}
.lm-close:hover { background: var(--surf); color: var(--fg); border-color: var(--border2); }
.lm-body { padding: 28px; overflow-y: auto; flex: 1; }
.lm-body p, .lm-body li { font-size: 15px; color: var(--fg2); line-height: 1.7; }
.lm-body h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.lm-placeholder {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lm-placeholder svg { color: var(--tq); opacity: 0.6; }
.lm-placeholder p { color: var(--fg3); max-width: 340px; }
.lm-contact { font-size: 13px; color: var(--fg4); }
.lm-contact a { color: var(--tq); }
.lm-contact a:hover { text-decoration: underline; }
.lm-text .lm-contact { display: block; margin-top: 22px; }
.lm-text h3:first-of-type { margin-top: 0; }
.lm-body ul { padding-left: 18px; margin: 8px 0 16px; display: flex; flex-direction: column; gap: 4px; }
.lm-body a { color: var(--tq); text-decoration: none; }
.lm-body a:hover { text-decoration: underline; }
.lm-body strong { color: var(--fg); font-weight: 600; }

/* ── Footer ───────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 64px 0 40px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo {
  height: 48px; width: auto; display: block;
  margin-top: -16px; margin-left: -6px; margin-bottom: 10px;
}
.footer-tagline { font-size: 14px; color: var(--fg3); line-height: 1.6; max-width: 240px; }
.footer-contact { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.footer-contact-btn { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--fg3); transition: color .2s; min-height: 44px; padding: 0; }
.footer-contact-btn:hover { color: var(--tq); }
.footer-contact-btn svg { flex-shrink: 0; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tq); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--fg3); transition: color .2s; }
.footer-col a:hover { color: var(--fg); }
.footer-trust { display: flex; flex-direction: column; gap: 10px; }
.ft { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg3); }
.ft svg { color: var(--tq); flex-shrink: 0; }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.footer-bottom-row1 { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 20px; }
.footer-bottom-row2 {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 4px 20px;
  padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-reg { font-size: 12px; color: var(--fg4); }
.footer-copy { font-size: 12px; color: var(--fg4); line-height: 1.65; }
/* ── Footer legal link buttons ───────────────────────────── */
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-legal .footer-link-btn { font-size: 13px; color: var(--fg4); min-height: 44px; padding: 10px 0; }
.footer-legal .footer-link-btn:hover { color: var(--fg2); }

/* ── Scroll CTA ───────────────────────────────────── */
#scrollcta {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  background: rgb(12, 38, 26);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  color: #6effc0; font-weight: 700; font-size: 15px;
  border: none; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; cursor: pointer; text-decoration: none;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 rgba(61,191,138,0.15);
  animation: innerPulse 3s ease-in-out infinite;
  transform: translateY(140%); transition: transform .5s var(--ease); opacity: 0;
}
#scrollcta::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: conic-gradient(from var(--rgb-angle), rgba(61,191,138,0.0) 0deg, rgba(61,191,138,0.6) 30deg, rgba(120,220,180,0.9) 50deg, rgba(180,255,230,1.0) 65deg, rgba(100,200,255,0.7) 80deg, rgba(61,120,200,0.4) 100deg, rgba(61,191,138,0.1) 130deg, rgba(61,191,138,0.0) 180deg, rgba(61,191,138,0.0) 360deg);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 2px; z-index: 0;
  animation: rgb-border-spin 6s linear infinite;
  pointer-events: none;
}
#scrollcta:hover { background: rgb(18, 52, 36); box-shadow: 0 12px 40px rgba(0,0,0,0.7), inset 0 0 30px rgba(61,191,138,0.16); }
#scrollcta.show { transform: translateY(0); opacity: 1; }

/* ── Hero scroll hint (mobile only) ──────────────── */
.hero-scroll-hint {
  display: none;
  margin: 20px auto 0;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  border-radius: 50%;
  transition: color 0.2s;
  animation: scrollBounce 1.8s cubic-bezier(0.4,0,0.2,1) infinite;
}
.hero-scroll-hint:hover { color: var(--tq); }
@keyframes scrollBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(6px); }
}
@media (max-width: 900px) {
  .hero-scroll-hint { display: flex; }
}

/* ── Sticky kortingsbalk ─────────────────────────── */
#sbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: #111111;
  border-top: 1px solid rgba(61,191,138,0.3);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.55);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
#sbar.show { transform: translateY(0); }
.sbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 48px 14px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.sbar-text { flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 2px; }
.sbar-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--tq); }
.sbar-title { font-size: 15px; font-weight: 700; color: #fff; }
.sbar-code {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: rgba(61,191,138,0.08); border: 1.5px dashed rgba(61,191,138,0.45);
  border-radius: 8px; padding: 8px 14px; cursor: pointer; font-family: var(--font);
  transition: background 0.18s, border-color 0.18s;
}
.sbar-code:hover { background: rgba(61,191,138,0.14); border-color: var(--tq); }
.sbar-code.copied { border-style: solid; border-color: var(--tq); background: rgba(61,191,138,0.16); }
.sbar-code-val { font-size: 15px; font-weight: 800; letter-spacing: 0.08em; color: #fff; }
.sbar-copy-lbl { font-size: 12px; font-weight: 700; color: var(--tq); white-space: nowrap; }
@media (max-width: 600px) {
  .sbar-inner { padding: 12px 44px 12px 16px; gap: 10px; flex-wrap: nowrap; }
  .sbar-code { flex: 1; justify-content: center; }
}
.sbar-close {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); background: transparent;
  transition: background 0.15s, color 0.15s; z-index: 1;
}
.sbar-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── Animations ───────────────────────────────────── */
@keyframes ripple { 0% { width:30px;height:30px;opacity:.7 } 100% { width:230px;height:230px;opacity:0 } }
@keyframes sheen { 0%,70%,100% { left:-30% } 35% { left:120% } }
@keyframes glowpulse { 0%,100% { opacity:.55;transform:scale(1) } 50% { opacity:1;transform:scale(1.08) } }
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:.25 } }
@keyframes float { 0%,100% { transform:rotateY(12deg) rotateX(6deg) translateY(0) } 50% { transform:rotateY(12deg) rotateX(6deg) translateY(-14px) } }

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .nfc-card { transform: rotateY(-12deg) rotateX(6deg) !important; }
  .product-tilt { transform: rotateY(-12deg) rotateX(6deg) !important; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stage { order: 1; min-height: 320px; }
  /* Hero tekst centreren op tablet/mobiel */
  .hero-text { text-align: center; }
  .hero-actions, .trust-pulse { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .nfc-card { width: 300px; height: 188px; }
  .product-img { width: 240px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  /* Mobiel/tablet: schone header — alleen logo + menu. CTA leeft in het menu. */
  .nav-cta, .nav-price { display: none; }
}
@media (max-width: 600px) {
  body {
    background:
      radial-gradient(ellipse 600px 400px at 50% 22vh, rgba(61,191,138,0.04) 0%, transparent 65%),
      var(--bg);
  }
  .nav-price { display: none; }
  .nav-in { height: 60px; }
  .nav-logo img { height: 52px; }
  .nav-cta { padding: 10px 18px; font-size: 13.5px; }
  /* Urgency bar overrides — verwijderd */
  #scrollcta { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .footer-logo { height: 44px; margin-top: -15px; margin-left: -5px; margin-bottom: 8px; }
  .footer-legal { justify-content: center; }
  .footer-copy { text-wrap: pretty; }
  .footer-reg { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .footer-bottom-row2 { justify-content: center; text-align: center; }
  .footer-bottom-row2 { text-align: center; }
  .hero-strip { gap: 12px 16px; }
  .hs-div { display: none; }
  /* Hero mobile: compacte spacing zodat alles op het eerste scherm past */
  .hero-text .chip { margin-bottom: 12px !important; }
  .hero-sub { margin: 12px auto 16px !important; line-height: 1.5 !important; }
  .hero-actions { gap: 8px; }
  .trust-pulse { margin-top: 10px; gap: 6px 12px; }
  .tp { font-size: 12px; }
}
/* Very small phones (≤360px, e.g. iPhone SE) — tighten gutters so nothing clips */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 17px 24px; font-size: 16px; }
  /* Any long CTA may wrap instead of overflowing on tiny screens */
  .btn-lg, .btn-primary, .btn-rank-cta { white-space: normal; text-align: center; }
  .hero-actions .btn { width: 100%; justify-content: center; min-width: 0; }
}

/* ── Winkelmand-knop in de nav ── */
.nav-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.14); color: #fff; transition: border-color 150ms, color 150ms, background 150ms; }
.nav-cart:hover { border-color: #3dbf8a; color: #3dbf8a; background: rgba(61,191,138,0.08); }
.nav-cart-count { position: absolute; top: -5px; right: -5px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9999px; background: #3dbf8a; color: #000; font-size: 10.5px; font-weight: 800; line-height: 17px; text-align: center; }
@media (max-width: 720px) { .nav-cart { width: 38px; height: 38px; margin-right: 2px; } }

/* ── Custom bundel-banner onder de prijs-grid ── */
.custom-bundle { margin-top: 20px; padding: 22px 26px; background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.custom-bundle .cb-title { font-size: 17px; font-weight: 700; color: #fff; }
.custom-bundle .cb-sub { font-size: 13.5px; color: #949494; margin-top: 3px; line-height: 1.5; }
.custom-bundle .cb-btn { flex: 0 0 auto; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 640px) { .custom-bundle { flex-direction: column; align-items: stretch; text-align: center; } }

/* ── Footer: uniforme, strakke regelafstanden (override) ── */
.footer-col { gap: 11px !important; }
.footer-col a,
.footer-col .footer-link-btn {
  display: block !important;
  font-size: 14px !important; line-height: 1.45 !important;
  padding: 0 !important; margin: 0 !important; min-height: 0 !important;
}
.footer-contact { gap: 8px !important; margin-top: 14px !important; }
.footer-contact-btn { min-height: 0 !important; padding: 0 !important; }
.footer-tagline { margin: 0 !important; }
/* Op touch-apparaten blijven de aanraakdoelen ruim */
@media (hover: none) {
  .footer-col a, .footer-col .footer-link-btn, .footer-contact-btn { padding: 6px 0 !important; }
}

/* ── Uitverkochte bundels ── */
.rk-oos { position: relative; opacity: .5; cursor: not-allowed !important; }
.rk-oos:hover { transform: none !important; box-shadow: none !important; }
.rk-oos-badge { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 9999px; background: rgba(239,68,68,.16); border: 1px solid rgba(239,68,68,.4); color: #ef4444; font-size: 11px; font-weight: 700; letter-spacing: .02em; vertical-align: middle; }
.rk-stock-msg { display: none; margin-top: 14px; padding: 13px 16px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.3); border-radius: 12px; color: #f4b4b4; font-size: 13.5px; line-height: 1.5; }
.rk-stock-msg.show { display: block; }

/* -- Bestelsectie op mobiel (echte klassen: bundle-radio / bundle-info / bundle-pr) -- */
@media (max-width: 640px) {
  #bundleForm .bundle-opt { display: grid !important; grid-template-columns: auto 1fr auto; align-items: center; gap: 6px 12px; padding: 16px !important; text-align: left; }
  #bundleForm .bundle-opt .bundle-radio { grid-column: 1; grid-row: 1; }
  #bundleForm .bundle-opt .bundle-info { grid-column: 2; grid-row: 1; min-width: 0; }
  #bundleForm .bundle-opt .bundle-info .nm { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; }
  #bundleForm .bundle-opt .bundle-pr { grid-column: 3; grid-row: 1; text-align: right; white-space: nowrap; }
  #bundleForm .bundle-opt .rk-oos-badge { grid-column: 2 / -1; grid-row: 2; justify-self: start; margin-left: 0; position: static !important; }
  #bundleForm .bundle-opt.rk-oos { padding-bottom: 16px !important; }
}
@media (max-width: 440px) {
  #bundleForm .bundle-opt { grid-template-columns: auto 1fr; }
  #bundleForm .bundle-opt .bundle-pr { grid-column: 2; grid-row: 2; text-align: left; }
  #bundleForm .bundle-opt .rk-oos-badge { grid-row: 3; }
  #bundleForm .bundle-opt .bundle-pr .sv { display: inline-block; margin-left: 8px; }
}


/* ═══════════ v5.8.6: bestelsectie mobiel netjes uitgelijnd ═══════════ */
@media (max-width: 640px) {
  #bundleForm .bundle-opt {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important; gap: 4px 12px !important;
    padding: 14px 15px !important; text-align: left !important;
  }
  #bundleForm .bundle-opt .bundle-radio { grid-column: 1 !important; grid-row: 1 !important; align-self: center !important; }
  #bundleForm .bundle-opt .bundle-info {
    grid-column: 2 !important; grid-row: 1 !important; min-width: 0 !important;
    display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 3px !important;
  }
  #bundleForm .bundle-opt .bundle-info .nm { font-size: 14.5px !important; line-height: 1.25 !important; display: flex !important; flex-wrap: wrap !important; align-items: center !important; gap: 5px 7px !important; }
  #bundleForm .bundle-opt .bundle-info .qt { font-size: 12px !important; line-height: 1.3 !important; }
  #bundleForm .bundle-opt .bundle-pr {
    grid-column: 3 !important; grid-row: 1 !important; align-self: center !important;
    display: flex !important; flex-wrap: wrap !important; justify-content: flex-end !important; align-items: baseline !important;
    gap: 2px 6px !important; text-align: right !important; white-space: nowrap !important; min-width: 0 !important;
  }
  #bundleForm .bundle-opt .bundle-pr .now { font-size: 15.5px !important; }
  #bundleForm .bundle-opt .bundle-pr .was { font-size: 11.5px !important; }
  #bundleForm .bundle-opt .bundle-pr .sv { width: 100% !important; text-align: right !important; font-size: 10.5px !important; margin: 0 !important; }
  #bundleForm .bundle-opt .rk-oos-badge { grid-column: 2 / -1 !important; grid-row: 2 !important; justify-self: start !important; margin-left: 0 !important; position: static !important; }
}
@media (max-width: 400px) {
  #bundleForm .bundle-opt { padding: 13px !important; gap: 4px 9px !important; }
  #bundleForm .bundle-opt .bundle-info .nm { font-size: 13.5px !important; }
  #bundleForm .bundle-opt .bundle-pr .now { font-size: 14.5px !important; }
  .bundle-flag { font-size: 9px !important; padding: 1px 5px !important; }
}

/* ═══════════ v5.8.6: footermenu mobiel — strakkere regelafstand ═══════════ */
@media (max-width: 900px) {
  .footer-col { gap: 2px !important; }
  .footer-col a, .footer-col .footer-link-btn { padding: 7px 0 !important; line-height: 1.3 !important; }
  .footer-col-title { margin-bottom: 2px !important; }
  .footer-tagline { line-height: 1.5 !important; max-width: none !important; }
  .footer-contact { gap: 2px !important; margin-top: 12px !important; }
  .footer-contact-btn { padding: 7px 0 !important; line-height: 1.3 !important; }
  .footer-trust { gap: 8px !important; }
}
