/* ============================================================
   PuurO3 — Ozonwater webshop
   Style: clean & fresh-blue · micro-interactions
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand blues */
  --ink: #0a1b2b;
  --ink-2: #15304a;
  --brand-900: #073255;
  --brand-700: #0a4d8c;
  --brand-600: #0c5a9e;
  --brand-500: #1273c7;
  --brand-400: #2e9be6;
  --aqua-400: #38c6e0;
  --aqua-300: #7fe0e9;
  --aqua-200: #b7eef3;
  --mint-100: #e7f6fb;

  /* Surfaces */
  --bg: #ffffff;
  --bg-tint: #f3f9fd;
  --bg-tint-2: #eaf4fb;
  --warm: #f8f5ef;        /* warm ivory — breaks the all-blue with a little warmth (light bands) */
  --surface: #ffffff;
  --border: #e3edf6;
  --border-strong: #cfe1f0;

  /* Text */
  --text: #102a40;
  --text-muted: #44586b;        /* darkened from #51687c → ~7:1 on white/tint (AA headroom) */
  --text-on-dark: #eaf4fb;
  --text-on-dark-muted: #a7c4dc;

  /* Warm accent — used sparingly for value/quality cues (stars, "meestgekozen") */
  --accent: #c77f00;
  --accent-ink: #835500;        /* on the warm tint below: AA for small text */
  --accent-tint: #fdf3df;
  --accent-border: #f0dcb0;

  /* Accent gradient */
  --grad: linear-gradient(120deg, var(--brand-500) 0%, var(--aqua-400) 100%);
  --grad-deep: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 55%, var(--aqua-400) 100%);

  /* Typography */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-display: "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(10, 45, 90, .06), 0 2px 8px rgba(10, 45, 90, .05);
  --sh-md: 0 8px 24px rgba(12, 90, 158, .10), 0 2px 6px rgba(12, 90, 158, .06);
  --sh-lg: 0 24px 60px rgba(12, 90, 158, .16), 0 6px 18px rgba(12, 90, 158, .08);
  --sh-glow: 0 20px 60px rgba(56, 198, 224, .35);

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: .18s;
  --t-med: .32s;

  --container: 1180px;
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
/* overflow-x: clip stopt elke horizontale 'jiggle' op mobiel (reveal-animaties
   schuiven onder de vouw kort buiten beeld) zonder de sticky header of
   smooth-scroll te breken — anders dan overflow-x: hidden. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Accessible, branded keyboard focus */
:focus-visible { outline: 2.5px solid var(--brand-500); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { outline-offset: 4px; }
main:focus, main:focus-visible { outline: none; }

/* Skip to content */
.skip-link { position: fixed; left: 16px; top: -64px; z-index: 1000; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; box-shadow: var(--sh-md); transition: top .25s var(--ease-out); }
.skip-link:focus { top: 12px; }
ul { list-style: none; padding: 0; }
sub { font-size: .62em; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); font-weight: 700; }
/* Editorial serif for the major headlines; crisp sans stays for UI / small titles */
h1, h2, .section__title, .hero__title { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.005em; text-wrap: balance; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section__head { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
/* Left-aligned variant — breaks the centered cadence on select sections (editorial rhythm) */
.section__head--left { text-align: left; margin-inline: 0; max-width: 760px; }
.section__title { font-size: clamp(2.1rem, 4.8vw, 3.4rem); line-height: 1.08; }
.section__title--light { color: #fff; }
.section__sub { margin-top: 16px; color: var(--text-muted); font-size: 1.08rem; }

/* gradient text */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text--light { background: linear-gradient(120deg, #fff, var(--aqua-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow--light { color: var(--aqua-300); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua-400); box-shadow: 0 0 0 3px rgba(56,198,224,.16); animation: pulseDot 3.2s ease-in-out infinite; }
/* calm "glans": ring stays one size, only its opacity breathes — no fuzzy expansion */
@keyframes pulseDot { 0%,100%{ box-shadow: 0 0 0 3px rgba(56,198,224,.18);} 50%{ box-shadow: 0 0 0 3px rgba(56,198,224,.05);} }

/* generic icon */
.ic { width: 20px; height: 20px; fill: none; stroke: var(--brand-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic--accent { stroke: var(--aqua-400); }
.ic--light { stroke: var(--aqua-300); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--brand-600);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 13px 22px; border-radius: var(--r-pill); white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
  position: relative;
}
.btn svg { transition: transform .3s var(--ease-out); }
/* Magnetic buttons get a gentle glide so the subtle pull feels smooth */
[data-magnetic] { transition: transform .28s var(--ease-out), box-shadow .3s var(--ease-out), background .25s var(--ease-out); }
.btn--primary { background: var(--grad); color: #fff; }
.btn--primary:hover { background: var(--grad-deep); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { background: #fff; color: var(--brand-700); border: 1px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--brand-400); background: var(--mint-100); }
.btn--white { background: #fff; color: var(--brand-700); }
.btn--white:hover { background: var(--mint-100); }
.btn:active { transform: scale(.98); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--block { width: 100%; }

/* ============================================================
   Topbar (marquee)
   ============================================================ */
.topbar { background: var(--ink); color: var(--text-on-dark); font-size: .82rem; overflow: hidden; }
.topbar__track {
  display: flex; width: max-content;
  padding: 9px 0; animation: marquee 34s linear infinite; will-change: transform;
}
.topbar__group { display: flex; align-items: center; gap: 48px; padding-right: 48px; flex: none; }
.topbar__group span { letter-spacing: .03em; opacity: .85; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.topbar:hover .topbar__track { animation-play-state: paused; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-med), border-color var(--t-med), background var(--t-med);
}
.header.is-scrolled { box-shadow: var(--sh-sm); border-color: var(--border); background: #fff; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: grid; place-items: center; transition: transform var(--t-med) var(--ease-spring); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__mark .device-pulse, .brand__mark circle { transition: opacity .3s; }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.03em; color: var(--ink); }
.brand__o3 { color: var(--brand-500); }
.brand__o3 sub { color: var(--aqua-400); }

.nav { display: flex; gap: 30px; }
.nav a { font-family: var(--font-display); font-weight: 500; font-size: .96rem; color: var(--ink-2); position: relative; padding: 4px 0; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease-out); }
.nav a:hover { color: var(--brand-600); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__quote { white-space: nowrap; }

.cart-toggle { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--ink); transition: background var(--t-fast), transform var(--t-fast); }
.cart-toggle:hover { background: var(--mint-100); transform: translateY(-2px); }
.cart-toggle__count { position: absolute; top: 2px; right: 0; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--aqua-400); color: var(--ink); font-size: .72rem; font-weight: 700; font-family: var(--font-display); display: grid; place-items: center; box-shadow: 0 2px 6px rgba(56,198,224,.5); animation: popIn .3s var(--ease-spring); }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 6px; padding: 12px clamp(20px,5vw,40px) 22px; border-top: 1px solid var(--border); background: #fff; }
.mobile-menu a { padding: 12px 4px; font-family: var(--font-display); font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--border); }
.mobile-menu a.btn { border: none; margin-top: 10px; color: #fff; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 5vw, 64px); background: radial-gradient(120% 90% at 80% -10%, var(--bg-tint-2) 0%, var(--bg) 60%); overflow: visible; }
/* Clip the ambient blobs here (not on .hero) so hero content — e.g. the eyebrow's pulsing dot — is never cut off. */
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; opacity: .2; }
.blob--1 { width: 460px; height: 460px; right: -120px; top: -80px; background: radial-gradient(circle, var(--aqua-300), transparent 70%); animation: drift 28s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; left: -140px; top: 180px; background: radial-gradient(circle, var(--brand-400), transparent 70%); opacity: .15; animation: drift 34s ease-in-out infinite reverse; }
.blob--3 { width: 300px; height: 300px; right: 18%; bottom: -120px; background: radial-gradient(circle, var(--aqua-200), transparent 70%); opacity: .18; animation: drift 30s ease-in-out infinite 1.5s; }
/* Slow ambient breathing — scale only (compositor-cheap, no re-raster of the blur) */
@keyframes drift { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.hero__inner { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; line-height: 1.04; margin: 24px 0 0; text-wrap: balance; }
.hero__lead { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-muted); max-width: 46ch; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--ink-2); }
.hero__trust .ic { width: 18px; height: 18px; stroke: var(--aqua-400); }

/* hero visual */
.hero__visual { position: relative; }
/* Device sits directly on the hero background — no card surface, no shadow, same plane */
.device-card { position: relative; padding: clamp(12px, 2vw, 24px); }
.device-card__glow { display: none; }
/* flattened — no inner panel/frame, so the device sits on the one card surface */
.device-card__screen { padding: 0; background: none; }
.device-illu { width: 100%; height: auto; }
.device-card__badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); color: var(--brand-700); border-radius: var(--r-pill); padding: 6px 13px 6px 11px; }
.device-card__badge-text { font-family: var(--font-display); font-weight: 700; font-size: .86rem; letter-spacing: .01em; }
.device-card__badge-text sub { color: var(--brand-500); font-size: .66em; }
.device-card__badge-text em { font-style: normal; font-weight: 600; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-left: 6px; }
/* Calm "actief" indicator: steady ring whose opacity gently breathes (no attention-grabbing ping) */
.device-card__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua-400); box-shadow: 0 0 0 3px rgba(56,198,224,.16); animation: liveDot 3.4s ease-in-out infinite; }
@keyframes liveDot { 0%,100%{ box-shadow: 0 0 0 3px rgba(56,198,224,.18);} 50%{ box-shadow: 0 0 0 3px rgba(56,198,224,.05);} }

/* hero device stats row (below the card) */
.device-stats { list-style: none; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 22px; margin: 20px auto 0; padding: 0; }
.device-stats li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .86rem; color: var(--ink-2); }
.device-stats .ic { width: 17px; height: 17px; stroke: var(--aqua-400); }

.floating-chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 10px 16px; font-family: var(--font-display); font-weight: 600; font-size: .86rem; box-shadow: var(--sh-md); }
/* refined "Made in Italy" provenance mark — frosted, quiet, premium (not a sticker) */
.chip--c {
  bottom: 6%; left: 50%; transform: translateX(-50%);
  padding: 7px 15px;
  background: rgba(255,255,255,.66);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 6px 20px -10px rgba(10,27,43,.35);
  font-weight: 600; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }
/* "Made in Italy" chip is static (no float) */
@keyframes floatyC { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(-10px);} }

/* device animations */
.device-pulse { animation: devPulse 2.6s var(--ease-out) infinite; transform-origin: center; }
@keyframes devPulse { 0%,100%{ opacity: 1; r: 6;} 50%{ opacity: .5; } }
.bubble { animation: rise 3.4s ease-in infinite; opacity: 0; }
.b1 { animation-delay: 0s; } .b2 { animation-delay: 1.1s; } .b3 { animation-delay: 2.1s; }
@keyframes rise { 0%{ transform: translateY(0); opacity: 0; } 15%{ opacity: .9;} 100%{ transform: translateY(-90px); opacity: 0; } }

/* logo strip */
.logostrip { margin-top: clamp(40px, 6vw, 72px); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
.logostrip > span { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.logostrip__items { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.logostrip__items span { font-family: var(--font-display); font-weight: 700; color: var(--ink-2); font-size: 1.02rem; }
.logostrip__items i { width: 5px; height: 5px; border-radius: 50%; background: var(--border-strong); }

/* ============================================================
   USP bar
   ============================================================ */
.usps { background: var(--ink); position: relative; }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: clamp(40px,6vw,64px) 0; }
.usp { padding: 22px; border-radius: var(--r-md); text-align: left; transition: background var(--t-med); }
.usp:hover { background: rgba(255,255,255,.04); }
.usp__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(56,198,224,.14); margin-bottom: 16px; }
.usp__ic svg { width: 26px; height: 26px; fill: none; stroke: var(--aqua-300); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.usp h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.usp p { color: var(--text-on-dark-muted); font-size: .94rem; line-height: 1.55; }

/* ============================================================
   How it works
   ============================================================ */
.how { background: var(--warm); }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps__line { display: none; }
.step { position: relative; text-align: center; padding: 0 6px; }
.step__num { display: block; margin: 0 0 8px; font-family: var(--font-serif); font-weight: 600; font-size: 3.4rem; line-height: 1; letter-spacing: -.02em; color: var(--brand-400); transition: transform var(--t-med) var(--ease-out), color var(--t-med); }
.step:hover .step__num { transform: translateY(-3px); color: var(--brand-600); }
.step__num::after { content: ""; display: block; width: 26px; height: 2px; margin: 10px auto 0; background: var(--grad); border-radius: 2px; opacity: .5; }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .95rem; }

/* ============================================================
   Product
   ============================================================ */
.product__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
/* Clean white "matted frame" around the product photo — one soft shadow, no glow */
.product__stage { position: relative; border-radius: var(--r-xl); background: #fff; border: 1px solid var(--border); padding: 0; overflow: hidden; box-shadow: var(--sh-md); transition: box-shadow var(--t-med) var(--ease-out); }
.product__halo { display: none; }
.device-illu--lg { position: relative; max-width: 360px; margin: 0 auto; }
.product__media-3d { position: relative; max-width: 100%; margin: 0 auto; }
.product__photo { width: 100%; height: auto; display: block; -webkit-user-drag: none; user-select: none; }
/* product image stays static — no idle float and no hover zoom (no transition: it never animates) */
.device-photo { width: 100%; height: auto; display: block; }

.product__info .eyebrow { margin-bottom: 16px; }
.product__info .section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.rating { display: flex; align-items: center; gap: 10px; margin: 14px 0 4px; }
.rating__stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
.rating__text { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.product__desc { margin: 18px 0 26px; color: var(--text-muted); }

.variants { display: grid; gap: 12px; }
.variant { display: block; cursor: pointer; padding: 18px 20px; border: 1px solid var(--border-strong); border-radius: var(--r-md); transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast); position: relative; background: #fff; }
.variant:hover { border-color: var(--brand-400); transform: translateY(-2px); }
.variant input { position: absolute; opacity: 0; pointer-events: none; }
.variant--active { border-color: var(--brand-500); background: linear-gradient(180deg, #fff, var(--bg-tint-2)); box-shadow: 0 0 0 3px rgba(18,115,199,.10), 0 14px 28px -18px rgba(10,45,90,.22); }
.variant__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.variant__name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.variant__price { font-family: var(--font-display); font-weight: 700; color: var(--brand-600); font-size: 1.06rem; }
.variant__desc { display: block; margin-top: 6px; font-size: .9rem; color: var(--text-muted); }
/* "Meestgekozen" tag — the only warm-accent moment in the buy flow */
.variant__badge { position: absolute; top: -11px; right: 16px; background: var(--accent-tint); color: var(--accent-ink); border: 1px solid var(--accent-border); border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .02em; padding: 3px 11px; box-shadow: var(--sh-sm); }

.buybar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 26px 0; padding: 20px 22px; border-radius: var(--r-lg); background: linear-gradient(145deg, #102a44, var(--ink)); box-shadow: 0 18px 40px -22px rgba(10,27,43,.55); flex-wrap: wrap; }
.buybar__price { display: flex; flex-direction: column; }
.buybar__amount { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.buybar__note { font-size: .8rem; color: var(--text-on-dark-muted); margin-top: 5px; }

.product__specs { display: grid; gap: 12px; }
.product__specs li { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: var(--ink-2); font-weight: 500; }
.product__specs .ic { stroke: var(--aqua-400); }

/* ============================================================
   Applications / tabs
   ============================================================ */
.tabs__nav { display: inline-flex; gap: 4px; padding: 5px; border-radius: var(--r-pill); background: var(--bg-tint-2); border: 1px solid var(--border); margin: 0 auto clamp(28px,4vw,40px); justify-content: center; }
.tabs { text-align: center; }
.tab { padding: 11px 26px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: var(--ink-2); transition: color var(--t-fast); position: relative; }
.tab--active { color: #fff; background: var(--grad); box-shadow: 0 6px 16px rgba(18,115,199,.3); }
.apps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.app-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--sh-sm); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out); }
.app-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(46,155,230,.10), transparent 55%); opacity: 0; transition: opacity .5s var(--ease-out); pointer-events: none; }
.app-card > * { position: relative; z-index: 1; }
.app-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-strong); }
.app-card:hover::before { opacity: 1; }
.app-card__ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--mint-100); border: 1px solid var(--border); margin-bottom: 16px; transition: transform .4s var(--ease-out), background .4s var(--ease-out); }
.app-card__ic svg { width: 26px; height: 26px; fill: none; stroke: var(--brand-500); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-card:hover .app-card__ic { transform: scale(1.06); background: var(--bg-tint-2); }
.app-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.app-card p { color: var(--text-muted); font-size: .92rem; }

/* ============================================================
   Savings (dark)
   ============================================================ */
.savings { background: var(--grad-deep); position: relative; overflow: hidden; }
.savings::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); top: -160px; right: -120px; }
.savings__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.savings__lead { color: var(--text-on-dark); opacity: .9; margin: 20px 0 30px; font-size: 1.08rem; }
.savings__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-lg); padding: 26px 22px; transition: transform var(--t-med) var(--ease-out), background var(--t-med); }
.stat:hover { transform: translateY(-4px); background: rgba(255,255,255,.13); }
.stat__num { display: block; font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.3rem, 4.6vw, 3.1rem); letter-spacing: -.01em; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { display: block; margin-top: 12px; color: var(--text-on-dark-muted); font-size: .9rem; line-height: 1.5; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews__score { margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--text-muted); }
.reviews__score strong { color: var(--ink); font-size: 1.06rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-sm); transition: transform .4s var(--ease-out), box-shadow var(--t-med) var(--ease-out); }
.review::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-out); }
.reviews__grid .review:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.review:hover::after { transform: scaleX(1); }
.review__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-family: var(--font-serif); font-style: italic; font-size: 1.22rem; color: var(--ink); line-height: 1.5; letter-spacing: -.005em; }
.review figcaption { margin-top: 18px; font-size: .9rem; color: var(--text-muted); }
.review figcaption strong { color: var(--ink); font-family: var(--font-display); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--warm); }
.faq__wrap { max-width: 820px; margin: 0 auto; }
.accordion { display: grid; gap: 12px; }
.acc { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--t-med), border-color var(--t-med); }
.acc[open] { box-shadow: var(--sh-md); border-color: var(--border-strong); }
.acc summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { position: relative; width: 18px; height: 18px; flex: none; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--brand-500); border-radius: 2px; transition: transform var(--t-med) var(--ease-out); }
.acc__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.acc[open] .acc__icon::after { transform: scaleY(0); }
.acc__body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease-out), padding var(--t-med); }
.acc__body p { color: var(--text-muted); }
.acc[open] .acc__body { padding: 0 24px 22px; max-height: 320px; }

/* ============================================================
   Contact
   ============================================================ */
.contact__card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); background: var(--grad-deep); border-radius: var(--r-xl); padding: clamp(32px, 5vw, 64px); box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.contact__card::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(127,224,233,.25), transparent 70%); bottom: -140px; left: -100px; }
.contact__copy { position: relative; color: var(--text-on-dark); }
.contact__copy p { margin-top: 16px; opacity: .9; }
.contact__list { margin-top: 26px; display: grid; gap: 14px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact__form { position: relative; background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-md); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; font-family: var(--font-display); }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm); font: inherit; font-size: 16px; color: var(--ink); background: var(--bg-tint); transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast); resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 3px rgba(18,115,199,.14); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #e0526b; background: #fff5f6; }
.field__error { display: block; color: #d23a55; font-size: .8rem; margin-top: 6px; min-height: 1em; }
.contact__success { margin-top: 14px; color: var(--brand-600); font-weight: 600; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--text-on-dark-muted); padding: clamp(48px,6vw,72px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.brand--footer .brand__word { color: #fff; }
.footer__brand p { margin-top: 14px; font-size: .92rem; max-width: 30ch; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: .92rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--aqua-300); }
.footer__badges li { padding: 6px 0; font-size: .9rem; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }

/* ============================================================
   Cart drawer + overlay
   ============================================================ */
.drawer-overlay { position: fixed; inset: 0; background: rgba(10,27,43,.55); z-index: 200; opacity: 0; transition: opacity var(--t-med); }
.drawer-overlay.is-open { opacity: 1; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100dvh; width: min(420px, 92vw); background: #fff; z-index: 210; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(10,27,43,.2); transform: translateX(100%); transition: transform var(--t-med) var(--ease-out); }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.cart-drawer__head h3 { font-size: 1.2rem; }
.cart-drawer__close { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink); transition: background var(--t-fast), transform var(--t-fast); }
.cart-drawer__close:hover { background: var(--bg-tint-2); transform: rotate(90deg); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { text-align: center; padding: 48px 0; color: var(--text-muted); }
.cart-empty__ic { font-size: 2.6rem; display: block; margin-bottom: 14px; opacity: .6; }
.cart-empty p { margin-bottom: 18px; }

.cart-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); animation: itemIn .35s var(--ease-out); }
@keyframes itemIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
.cart-item__thumb { width: 56px; height: 56px; border-radius: var(--r-sm); background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; }
.cart-item__name { font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: var(--ink); }
.cart-item__price { font-size: .86rem; color: var(--text-muted); margin-top: 2px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 7px; background: var(--bg-tint-2); display: grid; place-items: center; font-weight: 700; color: var(--brand-700); transition: background var(--t-fast); }
.qty-btn:hover { background: var(--border-strong); }
.cart-item__count { min-width: 22px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-item__remove { color: var(--text-muted); font-size: .8rem; text-decoration: underline; transition: color var(--t-fast); }
.cart-item__remove:hover { color: #d23a55; }
.cart-item__line { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

.cart-drawer__foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: var(--bg-tint); }
.cart-drawer__total { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-display); }
.cart-drawer__total span { color: var(--text-muted); }
.cart-drawer__total strong { font-size: 1.5rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.cart-drawer__note { font-size: .8rem; color: var(--text-muted); margin: 4px 0 16px; }
.cart-drawer__secure { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 12px; }

/* toast */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: var(--r-pill); box-shadow: var(--sh-lg); z-index: 300; font-weight: 600; font-size: .92rem; opacity: 0; transition: opacity var(--t-med), transform var(--t-med) var(--ease-spring); pointer-events: none; }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
/* No persistent will-change: it promotes a tight GPU layer that clipped magnetic
   buttons (e.g. .hero__cta) at the layer edge on hover. The transition is smooth without it. */
.reveal { opacity: 0; transform: translateY(20px) scale(.99); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal--left { transform: translate(-42px, 0); }
.reveal--right { transform: translate(42px, 0); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Sticky mobile buy bar (mobile only; shown via media query + JS) */
.mobile-buybar { display: none; }

/* Reviews carousel pagination dots (mobile only) */
.reviews__dots { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__lead { max-width: 50ch; }
  .hero__visual { max-width: 460px; }
  .usps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .steps__line { display: none; }
  .product__grid { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: repeat(2, 1fr); }
  .savings__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav, .header__quote { display: none; }
  .menu-toggle { display: flex; }

  /* Tighter vertical rhythm for phone */
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 34px; }

  /* Editorial type, sized for phone */
  .hero { padding-top: 26px; }
  .hero__title { font-size: 2.2rem; line-height: 1.08; }
  .hero__lead { font-size: 1.04rem; max-width: none; }
  .section__title { font-size: 1.9rem; line-height: 1.12; }
  .section__sub { font-size: 1rem; }

  /* "Hoe werkt het" — roomy single-column list, left-aligned */
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; row-gap: 2px; text-align: left; padding: 18px 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .step__num { margin: 0; grid-row: 1 / span 2; align-self: start; font-size: 2.6rem; }
  .step__num::after { margin: 8px 0 0; }
  .step h3 { font-size: 1.1rem; margin: 3px 0 2px; }
  .step p { font-size: .96rem; }

  /* Savings — keep a compact 2×2 */
  .savings__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 18px 16px; }

  /* Reviews — swipeable carousel */
  .reviews__grid { display: flex; grid-template-columns: none; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 14px; scrollbar-width: none; }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review { flex: 0 0 84%; scroll-snap-align: center; }
  .reviews .reveal { opacity: 1 !important; transform: none !important; }
  .review blockquote { font-size: 1.1rem; }
  .reviews__dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .reviews__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); padding: 0; cursor: pointer; transition: background .3s var(--ease-out), width .3s var(--ease-out); }
  .reviews__dot::after { content: ""; position: absolute; inset: -7px; } /* ~22px tap target around the 8px visual dot */
  .reviews__dot.is-active { background: var(--brand-500); width: 22px; border-radius: 4px; }

  /* Bigger touch targets for the cart quantity stepper (was 28px) */
  .qty-btn { width: 40px; height: 40px; font-size: 1.2rem; }
  .cart-item__qty { gap: 6px; }

  .contact__card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .buybar { flex-direction: column; align-items: stretch; }
  .buybar .btn { width: 100%; }

  /* Sticky mobile buy bar */
  .mobile-buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -10px 28px rgba(10,45,90,.12); transform: translateY(130%); transition: transform .38s var(--ease-out); }
  .mobile-buybar.is-visible { transform: translateY(0); }
  .mobile-buybar__info { display: flex; flex-direction: column; line-height: 1.15; }
  .mobile-buybar__name { font-size: .74rem; font-weight: 600; color: var(--text-muted); }
  .mobile-buybar__price { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); font-variant-numeric: tabular-nums; }
  .mobile-buybar .btn { padding: 12px 22px; white-space: nowrap; }
}

@media (max-width: 520px) {
  .usps__grid { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 12px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2rem; }
  .section__title { font-size: 1.7rem; }
}

/* ============================================================
   How it works — animated process diagram
   ============================================================ */
.flowdiagram {
  max-width: 1000px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: clamp(20px, 3vw, 34px) clamp(18px, 3vw, 36px);
  background: linear-gradient(160deg, #fff, var(--warm));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.flowdiagram__svg { width: 100%; height: auto; overflow: visible; }
.fd-nodes { filter: drop-shadow(0 6px 14px rgba(12, 90, 158, .12)); }
.fd-pipe { fill: none; stroke: var(--border-strong); stroke-width: 6; stroke-linecap: round; }
.fd-flow { fill: none; stroke: var(--aqua-400); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 0.01 24; animation: fdFlow 2.6s linear infinite; }
.fd-node { fill: #fff; stroke: var(--border); stroke-width: 2; }
.fd-glyph { fill: none; stroke: var(--brand-500); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.fd-accent { fill: var(--aqua-400); }
.fd-accent-2 { fill: var(--aqua-300); }
.fd-speck { fill: rgba(81, 104, 124, .55); transform-box: fill-box; transform-origin: center; animation: fdDissolve 3s var(--ease-out) infinite; }
.fd-speck--2 { animation-delay: .7s; }
.fd-speck--3 { animation-delay: 1.4s; }
.fd-num { font-family: var(--font-serif); font-weight: 600; font-size: 15px; fill: var(--brand-400); }
.fd-label { font-family: var(--font-display); font-weight: 700; font-size: 17px; fill: var(--ink); }
.fd-pulse { transform-box: fill-box; transform-origin: center; animation: fdPulse 2.6s var(--ease-out) infinite; }
.fd-drop { animation: fdDrop 2.2s var(--ease-out) infinite; }
.fd-bubble { transform-box: fill-box; transform-origin: center; animation: fdBubble 2.8s ease-in infinite; opacity: 0; }
.fd-bubble--2 { animation-delay: .9s; }
.fd-bubble--3 { animation-delay: 1.7s; }
.fd-spark { transform-box: fill-box; transform-origin: center; animation: fdSpark 3s var(--ease-out) infinite; }
.fd-escape { animation: fdEscape 3.2s var(--ease-out) infinite; }

@keyframes fdFlow { to { stroke-dashoffset: -48; } }
@keyframes fdPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.88); } }
@keyframes fdDrop { 0% { transform: translateY(-2px); opacity: 0; } 25% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }
@keyframes fdBubble { 0% { transform: translateY(7px); opacity: 0; } 30% { opacity: .9; } 100% { transform: translateY(-15px); opacity: 0; } }
@keyframes fdDissolve { 0% { opacity: .7; transform: scale(1); } 55% { opacity: .7; } 100% { opacity: 0; transform: scale(.3); } }
@keyframes fdSpark { 0%, 55% { opacity: 0; transform: scale(.4) rotate(0deg); } 72% { opacity: 1; transform: scale(1) rotate(18deg); } 100% { opacity: 0; transform: scale(.6) rotate(36deg); } }
@keyframes fdEscape { 0% { transform: translateY(0); opacity: 1; } 60% { opacity: 1; } 100% { transform: translateY(-15px); opacity: 0; } }

/* ============================================================
   Application cards — visual scene tiles (photo-ready)
   ============================================================ */
.apps__grid .app-card { padding: 0; }
.app-card__media {
  position: relative; aspect-ratio: 16 / 11; display: grid; place-items: center;
  overflow: hidden; background: linear-gradient(150deg, var(--bg-tint-2), var(--mint-100));
  border-bottom: 1px solid var(--border);
}
.apps__grid .app-card:nth-child(4n+2) .app-card__media { background: linear-gradient(150deg, var(--mint-100), var(--aqua-200)); }
.apps__grid .app-card:nth-child(4n+3) .app-card__media { background: linear-gradient(150deg, #eef7fe, var(--bg-tint-2)); }
.apps__grid .app-card:nth-child(4n+4) .app-card__media { background: linear-gradient(150deg, var(--aqua-200), #f4fbfe); }
.app-card__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 28% 12%, rgba(255,255,255,.55), transparent 58%); pointer-events: none; }
/* Drop a real photo in by adding <img class="app-card__photo" src="assets/apps/keuken.webp" alt="…"> inside .app-card__media */
.app-card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.app-card__media .app-card__ic {
  position: relative; z-index: 2; width: 66px; height: 66px; margin: 0; border-radius: 18px;
  background: #fff; border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 22px rgba(12,90,158,.16); transition: transform .4s var(--ease-out);
}
.app-card__media .app-card__ic svg { width: 32px; height: 32px; stroke: var(--brand-600); }
.app-card:hover .app-card__media .app-card__ic { transform: scale(1.07) translateY(-2px); }
/* Ambient floating bubbles removed — calmer, more premium; the tiles get real photos later */
.app-card__bubbles { display: none; }
.app-card__bubbles i { position: absolute; display: block; border-radius: 50%; background: rgba(56,198,224,.35); animation: appFloat 6.5s ease-in-out infinite; }
.app-card__bubbles i:nth-child(1) { width: 14px; height: 14px; left: 15%; top: 62%; }
.app-card__bubbles i:nth-child(2) { width: 9px; height: 9px; left: 72%; top: 26%; background: rgba(18,115,199,.20); animation-delay: 1.5s; }
.app-card__bubbles i:nth-child(3) { width: 22px; height: 22px; left: 78%; top: 66%; background: rgba(127,224,233,.38); animation-delay: 2.8s; }
@keyframes appFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.app-card__body { padding: 22px 22px 26px; }
.app-card__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.app-card__body p { color: var(--text-muted); font-size: .92rem; line-height: 1.55; }

@media (max-width: 760px) {
  .flowdiagram { display: none; }
}

/* ============================================================
   Reveal-on-scroll — varied, premium motion vocabulary
   ============================================================ */
/* shared neutral end-state. NOTE: do NOT add clip-path here — inset(0) clips
   transformed children (it cut off the magnetic hero buttons). The mask reveal
   resets its own clip-path in .reveal--mask.is-visible below. */
.reveal.is-visible { filter: none; }

/* mask wipe — for signature headlines (rises in behind a clip) */
.reveal--mask { opacity: 1; transform: translateY(10px); clip-path: inset(100% 0 0 0); transition: clip-path .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal--mask.is-visible { clip-path: inset(0 0 0 0); transform: none; }

/* soft fade-rise — for eyebrows, leads, section heads (blur removed) */
.reveal--blur { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal--blur.is-visible { opacity: 1; transform: none; }

/* gentle zoom-in — for media / large cards */
.reveal--scale { opacity: 0; transform: scale(.93); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); }
.reveal--scale.is-visible { opacity: 1; transform: none; }

/* staggered children — the container is just the in-view trigger */
.reveal--stagger { opacity: 1; transform: none; }
.reveal--stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), box-shadow var(--t-med) var(--ease-out), background var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out); }
.reveal--stagger.is-visible > * { opacity: 1; transform: none; }
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 60ms; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 130ms; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 340ms; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 410ms; }

/* Application scene tiles — stagger in, and re-stagger when a tab is switched */
.tabs .app-card { opacity: 0; transform: translateY(18px) scale(.99); transition: opacity .6s var(--ease-out), transform .55s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out); }
.tabs.is-visible .tabs__panel:not([hidden]) .app-card { opacity: 1; transform: none; }
.tabs.is-visible .tabs__panel:not([hidden]) .app-card:nth-child(1) { transition-delay: 60ms; }
.tabs.is-visible .tabs__panel:not([hidden]) .app-card:nth-child(2) { transition-delay: 140ms; }
.tabs.is-visible .tabs__panel:not([hidden]) .app-card:nth-child(3) { transition-delay: 220ms; }
.tabs.is-visible .tabs__panel:not([hidden]) .app-card:nth-child(4) { transition-delay: 300ms; }

/* ============================================================
   Handcrafted micro-interactions (calm, state-triggered)
   ============================================================ */
/* Primary button keeps a calm hover (lift + shadow + arrow nudge); the moving
   sheen was removed — quieter, and it no longer clips the arrow. */

/* Variant selector — selected state is shown by border + tint + ring (.variant--active).
   The left gradient accent bar was removed: it clashed with the rounded corners + active ring. */

/* Product spec checkmarks draw themselves in, one after another, on reveal */
.product__specs .ic path { stroke-dasharray: 26; stroke-dashoffset: 26; transition: stroke-dashoffset .5s var(--ease-out); }
.product__info.is-visible .product__specs li:nth-child(1) .ic path { stroke-dashoffset: 0; transition-delay: .15s; }
.product__info.is-visible .product__specs li:nth-child(2) .ic path { stroke-dashoffset: 0; transition-delay: .27s; }
.product__info.is-visible .product__specs li:nth-child(3) .ic path { stroke-dashoffset: 0; transition-delay: .39s; }
.product__info.is-visible .product__specs li:nth-child(4) .ic path { stroke-dashoffset: 0; transition-delay: .51s; }

/* "Hoe werkt het" — the little accent line under each number draws on reveal */
.step__num::after { transform: scaleX(0); transform-origin: center; transition: transform .55s var(--ease-out) .2s; }
.step.is-visible .step__num::after { transform: scaleX(1); }

/* FAQ — calm hover cue on the question + its icon */
.acc summary:hover { color: var(--brand-600); }
.acc summary:hover .acc__icon::before, .acc summary:hover .acc__icon::after { background: var(--brand-600); }

/* ============================================================
   Cart drawer — refined
   ============================================================ */
.cart-drawer { box-shadow: -30px 0 80px rgba(10, 27, 43, .22); }
.cart-drawer__head h3 { display: inline-flex; align-items: center; gap: 10px; }
.cart-drawer__count { display: inline-grid; place-items: center; min-width: 23px; height: 23px; padding: 0 7px; border-radius: 12px; background: var(--mint-100); color: var(--brand-700); font-family: var(--font-display); font-weight: 700; font-size: .8rem; font-variant-numeric: tabular-nums; }

.cart-item { grid-template-columns: 64px 1fr; gap: 14px; align-items: start; transition: opacity .24s var(--ease-out), transform .24s var(--ease-out); }
.cart-item.is-removing { opacity: 0; transform: translateX(26px); }
.cart-item__thumb { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(155deg, #fbfdff, var(--bg-tint-2)); border: 1px solid var(--border); box-shadow: inset 0 1px 2px rgba(10,45,90,.05); overflow: hidden; flex: none; }
.cart-item__thumb-img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item__main { min-width: 0; }
.cart-item__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.cart-item__remove { display: grid; place-items: center; width: 28px; height: 28px; margin: -3px -4px 0 0; border-radius: 8px; color: var(--text-muted); text-decoration: none; transition: color var(--t-fast), background var(--t-fast); flex: none; }
.cart-item__remove:hover { color: #d23a55; background: #fff1f3; }
.cart-item__price { margin-top: 3px; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 4px; margin: 0; padding: 3px; border: 1px solid var(--border); border-radius: var(--r-pill); background: var(--bg-tint); }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; background: #fff; box-shadow: var(--sh-sm); color: var(--brand-700); font-size: 1.05rem; line-height: 1; transition: background var(--t-fast), transform var(--t-fast); }
.qty-btn:hover { background: var(--mint-100); transform: translateY(-1px); }
.qty-btn:active { transform: scale(.9); }
.cart-item__count { min-width: 26px; text-align: center; }
.cart-item__line { font-size: 1.02rem; }
/* Comfortabele tap-targets in de winkelwagen op mobiel (min ~40px) */
@media (max-width: 760px) {
  .qty-btn { width: 40px; height: 40px; font-size: 1.2rem; }
  .cart-item__qty { gap: 6px; }
  .cart-item__remove { width: 40px; height: 40px; margin: -6px -8px 0 0; }
}

.cart-drawer__summary { display: grid; gap: 9px; margin-bottom: 16px; }
.cart-drawer__row { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-display); font-size: .96rem; color: var(--text-muted); }
.cart-drawer__row > span:last-child, .cart-drawer__row strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-drawer__free { color: #0a7a4e; font-weight: 700; } /* AA on bg-tint (5.06:1) */
.cart-drawer__row--total { padding-top: 12px; margin-top: 1px; border-top: 1px solid var(--border-strong); }
.cart-drawer__row--total > span:first-child { color: var(--ink); font-size: 1.04rem; }
.cart-drawer__row--total strong { font-size: 1.5rem; font-weight: 800; }
.cart-drawer__pay { display: flex; flex-direction: column; align-items: center; gap: 5px; margin-top: 12px; }
.cart-drawer__secure { margin: 0; }
.cart-drawer__methods { font-size: .76rem; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; }

/* ============================================================
   Editorial statement band (left-aligned — breaks the centered cadence)
   ============================================================ */
/* No own top padding: the section above already supplies the gap, so doubling it
   left far more whitespace above the eyebrow than below the band. */
.statement { padding: 0 0 clamp(64px, 9vw, 120px); background: linear-gradient(180deg, var(--bg) 0%, var(--warm) 100%); }
.statement__inner { max-width: 940px; }
.statement .eyebrow { margin-bottom: 20px; }
.statement__lead { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 1.06; letter-spacing: -.02em; text-wrap: balance; color: var(--ink); }
/* The tight line-height lets the j-stok and g-staart poke outside the box;
   give the mask reveal negative clip margins so inset(0) doesn't cut them off. */
.statement__lead.reveal--mask { clip-path: inset(100% 0 -0.2em 0); }
.statement__lead.reveal--mask.is-visible { clip-path: inset(-0.2em 0 -0.2em 0); }
.statement__sub { margin-top: 22px; max-width: 48ch; font-size: clamp(1.05rem, 1.6vw, 1.18rem); color: var(--text-muted); }
@media (max-width: 760px) { .statement__lead { font-size: 2rem; line-height: 1.12; } }

/* Footer legal row */
.footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__legal a { font-size: .84rem; transition: color var(--t-fast); }
.footer__legal a:hover { color: var(--aqua-300); }

/* ============================================================
   Savings proof cards (on the dark band)
   ============================================================ */
.savings__proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.proofcard { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg); padding: clamp(20px,2.6vw,28px); display: flex; flex-direction: column; gap: 12px; }
.proofcard__ic { flex: none; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: rgba(127,224,233,.14); border: 1px solid rgba(127,224,233,.26); }
.proofcard__ic svg { width: 26px; height: 26px; fill: none; stroke: var(--aqua-300); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.proofcard__num { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.4rem,5.5vw,3.2rem); line-height: 1; letter-spacing: -.02em; color: var(--aqua-200); font-variant-numeric: tabular-nums; }
.proofcard__num--sm { font-size: clamp(1.55rem,3.2vw,2rem); color: #fff; }
.proofcard__label { color: var(--text-on-dark); opacity: .9; font-size: .95rem; line-height: 1.5; }
.proofcard--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 18px; }
.proofcard--wide .proofcard__body { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 520px) { .savings__proof { grid-template-columns: 1fr; } }

/* ============================================================
   "Zie het in actie" — click-to-play demo video
   ============================================================ */
.how__demo { max-width: 880px; margin: clamp(40px,6vw,64px) auto 0; }
.vplayer { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-xl); overflow: hidden; background: var(--grad-deep); border: 1px solid var(--border); box-shadow: var(--sh-lg); cursor: pointer; }
/* contain: toon de volledige video binnen het 16:9-kader (geen bijsnijden, ongeacht de beeldverhouding). */
.vplayer__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: var(--ink); display: block; }
.vplayer__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: 1; }
.vplayer__play { position: absolute; inset: 0; margin: auto; z-index: 2; width: clamp(64px,9vw,86px); height: clamp(64px,9vw,86px); border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(7,50,85,.35); transition: transform var(--t-fast) var(--ease-out), background var(--t-fast); }
.vplayer__play svg { width: 32px; height: 32px; fill: var(--brand-600); margin-left: 5px; }
.vplayer:hover .vplayer__play { transform: scale(1.08); background: #fff; }
.vplayer__hint { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .84rem; letter-spacing: .02em; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.vplayer.is-playing { cursor: default; }
.vplayer.is-playing .vplayer__poster, .vplayer.is-playing .vplayer__hint { opacity: 0; pointer-events: none; transition: opacity .3s; }
.vplayer.is-playing .vplayer__play { opacity: 0; visibility: hidden; }
.how__demo figcaption { margin-top: 14px; text-align: center; color: var(--text-muted); font-size: .92rem; }

/* Multi-video carousel (the carousel now provides the frame; nested .vplayer drops its own) */
.vcarousel { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-lg); }
.vcarousel__track { display: flex; transition: transform .5s var(--ease-out); }
.vslide { flex: 0 0 100%; min-width: 0; }
.vcarousel .vplayer { border-radius: 0; border: 0; box-shadow: none; }
.vcarousel__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--brand-700); display: grid; place-items: center; box-shadow: var(--sh-md); transition: background var(--t-fast), transform var(--t-fast); }
.vcarousel__nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.vcarousel__nav:hover { background: #fff; }
.vcarousel__nav:active { transform: translateY(-50%) scale(.92); }
.vcarousel__nav--prev { left: 14px; }
.vcarousel__nav--next { right: 14px; }
.vcarousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.vcarousel__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); transition: background .3s var(--ease-out), width .3s var(--ease-out); }
.vcarousel__dot.is-active { background: var(--brand-500); width: 22px; border-radius: 4px; }
.vcarousel__cap { margin-top: 14px; text-align: center; color: var(--text-muted); font-size: .92rem; }
@media (max-width: 520px) { .vcarousel__nav { width: 38px; height: 38px; } }

/* "Wat zit erin" — unboxing block */
.whatsinbox { background: var(--bg-tint); }
.whatsinbox__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.whatsinbox__copy .eyebrow { margin-bottom: 14px; }
.whatsinbox__copy .section__title { font-size: clamp(1.8rem,3.6vw,2.6rem); }
.whatsinbox__lead { margin: 16px 0 22px; color: var(--text-muted); font-size: 1.08rem; }
.whatsinbox__list { display: grid; gap: 12px; }
.whatsinbox__list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--ink-2); font-weight: 500; }
.whatsinbox__list .ic { stroke: var(--aqua-400); flex: none; }
@media (max-width: 860px) { .whatsinbox__grid { grid-template-columns: 1fr; } }

/* Inline video inside a FAQ answer (needs more open height than a text-only answer) */
.acc--media[open] .acc__body { max-height: 860px; }
.vplayer--inline { margin-top: 16px; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .reveal--stagger > *, .tabs .app-card { opacity: 1 !important; transform: none !important; }
  .product__specs .ic path { stroke-dashoffset: 0 !important; }
  .step__num::after { transform: none !important; }
  .topbar__track { animation: none; }
  .blob, .floating-chip, .bubble, .device-pulse { animation: none !important; }
}
