/* Fightclubs — marketingsite. Zelfde huisstijl als de app en de demo:
   near-black, vlakke grijze kaarten, vermiljoen als enig merkaccent. */
:root {
  --bg: #141414;
  --surface: #1f1f1f;
  --surface-2: #262626;
  --edge: #333333;
  --ink: #f4f4f4;
  --muted: #a3a3a3;
  --accent: #f73718;
  --ok: #2fbf71;
  --warn: #ffb020;
  --display: "Anton", "Impact", "Arial Narrow", sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.4rem; }
p { margin: 0; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.ok { color: var(--ok); }
.warn { color: var(--warn); }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--bg); padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }

/* Navigatie */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(20,20,20,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--edge); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; color: var(--accent); }
.logo img { width: 30px; height: 30px; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .4rem 1rem; align-items: center; }
@media (min-width: 760px) { .nav ul { gap: 1.4rem; } }
@media (max-width: 420px) { .nav .only-contact { display: none; } .logo { font-size: 1.3rem; } }
.nav a:not(.logo):not(.btn) { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav a:not(.logo):not(.btn):hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: .5em; }
.nav .only-wide { display: none; }
@media (min-width: 760px) { .nav .only-wide { display: inline-flex; } }

/* Knoppen */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .02em; padding: .85rem 1.4rem; text-decoration: none; border: 1px solid transparent; line-height: 1; cursor: pointer; transition: background-color .15s ease, border-color .15s ease, color .15s ease, translate .1s ease; }
.btn:active { translate: 0 1px; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: #ff5a3c; }
.btn-ghost { border-color: var(--edge); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.04); }
.btn-sm { font-size: 1rem; padding: .6rem 1rem; }

/* Secties */
section { padding-block: clamp(3rem, 8vw, 6rem); }
section + section { border-top: 1px solid var(--edge); }
.eyebrow { font-family: var(--display); text-transform: uppercase; color: var(--accent); font-size: .95rem; letter-spacing: .08em; margin-bottom: .8rem; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 60ch; margin-top: 1rem; }
.section-head { max-width: 70ch; margin-bottom: 2.5rem; }

/* Hero */
.hero { padding-block: clamp(3rem, 9vw, 7rem) clamp(2rem, 6vw, 4rem); overflow: hidden; }
.hero .wrap { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero .wrap { grid-template-columns: 1.1fr .9fr; } }
.hero h1 span { color: var(--accent); }
.hero .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero .trust { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: 1.6rem; color: var(--muted); font-size: .92rem; }
.hero .trust li { list-style: none; display: inline-flex; align-items: baseline; gap: .45rem; }
.hero .trust ul { padding: 0; margin: 0; display: contents; }
.dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--ok); display: inline-block; }
.phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; align-items: start; }
.phones figure { margin: 0; border: 1px solid var(--edge); background: var(--surface); overflow: hidden; }
.phones figure:nth-child(2) { transform: translateY(1.5rem); }
.phones img { width: 100%; height: auto; aspect-ratio: 390 / 760; object-fit: cover; object-position: top; }
.phones figcaption { padding: .45rem .6rem; font-size: .8rem; color: var(--muted); border-top: 1px solid var(--edge); }

/* Kaartenrasters */
.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--edge); padding: 1.5rem; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); }
.card .num { font-family: var(--display); font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: .6rem; }
.card .tag { display: inline-block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; border: 1px solid var(--edge); padding: .15rem .5rem; color: var(--muted); margin-top: .8rem; }

/* Functie-blokken met schermafbeelding */
.feature { display: grid; gap: 2rem; align-items: center; padding-block: 2.5rem; }
.feature + .feature { border-top: 1px solid var(--edge); }
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature.flip > .shot { order: -1; }
}
.feature ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.feature li + li { margin-top: .35rem; }
.shot { margin: 0; border: 1px solid var(--edge); background: var(--surface); overflow: hidden; }
.shot img { width: 100%; }
.shot.phone { max-width: 330px; margin-inline: auto; }
.shot figcaption { padding: .5rem .8rem; font-size: .82rem; color: var(--muted); border-top: 1px solid var(--edge); }
.shot video { width: 100%; height: auto; display: block; }
.deurvideos { display: grid; gap: .8rem; margin-top: 2.2rem; }
@media (min-width: 860px) { .deurvideos { grid-template-columns: 1fr 1fr; max-width: 720px; margin-inline: auto; } }

/* Stappen — het cijfer staat ín de kaart, en op breed scherm verbindt een streepje de stappen */
.steps { counter-reset: stap; }
.step { position: relative; padding-left: 4rem; }
.steps-list { display: grid; gap: .8rem; max-width: 78ch; }
.steps-list .step { padding: 1.25rem 1.25rem 1.25rem 4.5rem; }
.steps-list .step::before { left: 1.25rem; top: 1rem; }
.step::before { counter-increment: stap; content: counter(stap); position: absolute; left: 0; top: -.2rem; font-family: var(--display); font-size: 3rem; color: var(--accent); line-height: 1; }
.steps .card.step { padding: 1.5rem 1.5rem 1.5rem 4.6rem; }
.steps .card.step::before { left: 1.4rem; top: 1.25rem; }
@media (min-width: 860px) {
  .steps .card.step:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -1rem; width: 1rem; height: 1px; background: var(--edge); }
}

/* Tabellen */
.table-wrap { overflow-x: auto; border: 1px solid var(--edge); }
table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: .95rem; }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--edge); vertical-align: top; }
th { font-family: var(--display); text-transform: uppercase; font-weight: 400; letter-spacing: .04em; color: var(--ink); background: var(--surface-2); }
td { color: var(--muted); }
td:first-child { color: var(--ink); }
td.c, th.c { text-align: center; }
tr:last-child td { border-bottom: 0; }
/* Vergelijkingstabel: de Fightclubs-kolom licht getint; eerste kolom blijft staan bij horizontaal scrollen op mobiel */
#voor-wie td:nth-child(2) { background: rgba(247,55,24,.06); }
#voor-wie th:nth-child(2) { background: linear-gradient(rgba(247,55,24,.1), rgba(247,55,24,.1)), var(--surface-2); box-shadow: inset 0 2px 0 var(--accent); }
@media (max-width: 760px) {
  td:first-child, th:first-child { position: sticky; left: 0; z-index: 1; background: var(--surface); box-shadow: 1px 0 0 var(--edge); }
  th:first-child { background: var(--surface-2); }
}

/* Prijzen */
.plans { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--edge); padding: 1.75rem; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--accent); box-shadow: 0 24px 70px -40px rgba(247,55,24,.55); }
.plan .name { font-family: var(--display); font-size: 1.6rem; text-transform: uppercase; }
.plan .price { font-family: var(--display); font-size: 3rem; line-height: 1; margin-top: .8rem; }
.plan .price small { font-family: var(--sans); font-size: 1rem; color: var(--muted); text-transform: none; letter-spacing: 0; }
.plan .per { color: var(--muted); font-size: .92rem; margin-top: .3rem; }
.plan ul { list-style: none; margin: 1.2rem 0; padding: 0; flex-grow: 1; }
.plan li { padding: .45rem 0; border-top: 1px solid var(--edge); color: var(--muted); font-size: .95rem; display: flex; gap: .6rem; }
.plan li::before { content: "✓"; color: var(--ok); font-weight: 700; }
.plan li.soon::before { content: "◷"; color: var(--warn); }
.plan .btn { width: 100%; }
.note { font-size: .9rem; color: var(--muted); margin-top: 1.2rem; max-width: 75ch; }

/* FAQ */
.faq details { border: 1px solid var(--edge); background: var(--surface); padding: 0 1.25rem; }
.faq details + details { margin-top: .6rem; }
.faq summary { cursor: pointer; padding: 1rem 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--display); font-size: 1.4rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq details p { padding-bottom: 1.1rem; color: var(--muted); }
/* Inhoud schuift open waar de browser het kan (Chrome 131+); elders klapt hij gewoon om. */
.faq details::details-content { overflow: hidden; block-size: 0; transition: block-size .25s ease, content-visibility .25s allow-discrete; }
.faq details[open]::details-content { block-size: auto; }
@supports (interpolate-size: allow-keywords) { .faq details { interpolate-size: allow-keywords; } }

/* CTA-band */
.cta-band { background: var(--accent); color: var(--bg); }
.cta-band .wrap { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 800px) { .cta-band .wrap { grid-template-columns: 1fr auto; } }
.cta-band h2 { color: var(--bg); }
.cta-band p { color: rgba(20,20,20,.8); margin-top: .6rem; max-width: 60ch; }
.cta-band .btn-primary { background: var(--bg); color: var(--ink); }
.cta-band .btn-ghost { border-color: rgba(20,20,20,.5); color: var(--bg); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .6rem; }
.contact-list a { color: var(--ink); }

/* Footer */
footer { border-top: 1px solid var(--edge); padding-block: 2.5rem; color: var(--muted); font-size: .9rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: space-between; align-items: center; }
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem; }
footer a { color: var(--muted); }
footer a:hover { color: var(--ink); }

/* Proza-pagina's */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.8rem; margin: 2.2rem 0 .8rem; }
.prose h3 { margin: 1.6rem 0 .5rem; }
.prose p + p { margin-top: .9rem; }
.prose ul { color: var(--muted); padding-left: 1.2rem; }
.prose li + li { margin-top: .3rem; }

/* Breadcrumbs */
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li + li::before { content: "›"; margin-right: .4rem; }
.crumbs a { color: var(--muted); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .phones figure:nth-child(2) { transform: none; } }

/* Statement-band (wedge) */
.statement { background: var(--surface); }
.statement-lines { display: flex; flex-direction: column; gap: .25rem; font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.05; max-width: 30ch; }
.statement-lines span:not(.accent) { color: var(--muted); }

/* Demo op de telefoon: QR + stappen — compact, in de stijl van de rest */
.phone-install { display: grid; gap: 1.5rem; align-items: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--edge); }
@media (min-width: 700px) { .phone-install { grid-template-columns: 1fr auto; gap: 3rem; } }
/* Op een telefoon ben je al op het juiste toestel: geen QR om te scannen. */
.phone-install .qr { display: none; margin: 0; flex-direction: column; align-items: center; gap: .5rem; justify-self: center; }
@media (min-width: 700px) { .phone-install .qr { display: flex; } }
.phone-install .qr img { width: 132px; height: 132px; background: #fff; padding: 6px; border: 1px solid var(--edge); }
.phone-install .qr figcaption { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.phone-install h3 { margin-bottom: .6rem; }
.phone-install ol { margin: 0 0 .8rem; padding-left: 1.2rem; color: var(--muted); }
.phone-install li + li { margin-top: .35rem; }
.phone-install strong, .phone-install em { color: var(--ink); font-style: normal; }

/* Startclubs-aanbod */
.promo { display: grid; gap: 1.25rem; align-items: center; border: 1px solid var(--accent); background: var(--surface); padding: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 700px) { .promo { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.promo h3 { margin-bottom: .5rem; }
.promo p.muted { font-size: .95rem; max-width: 70ch; }
.promo-count { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--edge); padding: 1rem 1.5rem; min-width: 9rem; }
.promo-count .display { font-size: 3rem; line-height: 1; color: var(--accent); }
.promo-count span:last-child { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* Rekenmodule (/prijzen#rekenen): één paneel — links drie "faders" (label, groot
   uitleescijfer dat je ook kunt typen, dunne streep met vermiljoen vulling),
   rechts één stelling ("De huur is / Twee leden.") met de som en twee grootboekregels. */
#rekenen { scroll-margin-top: 80px; }
#rekenen h2 { text-wrap: balance; }
.calc { display: grid; background: var(--surface); border: 1px solid var(--edge); }
@media (min-width: 860px) { .calc { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); } }
.calc-in { padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); align-content: start; border-bottom: 1px solid var(--edge); }
@media (min-width: 860px) { .calc-in { border-bottom: 0; border-right: 1px solid var(--edge); } }
.calc-out { padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: .75rem; align-content: start; }

/* Fader: label + uitleescijfer op één regel, streep eronder */
.calc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.calc-head label { font-weight: 600; line-height: 1.3; }
.calc-tag { display: block; width: max-content; margin-top: .4rem; font-size: .7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); border: 1px solid var(--accent); padding: .1rem .4rem; }
.calc-readout { display: inline-flex; align-items: baseline; gap: .15rem; flex: 0 0 auto; font-family: var(--display); font-size: 1.9rem; line-height: 1; color: var(--ink); }
.calc-unit { font-size: 1.2rem; color: var(--muted); }
.calc input[type="number"] { width: 3.4ch; min-width: 1.6ch; padding: 0 0 .1rem; margin: 0; border: 0; border-bottom: 1px solid transparent; border-radius: 0; background: transparent; font: inherit; color: inherit; text-align: right; -moz-appearance: textfield; appearance: textfield; field-sizing: content; }
.calc input[type="number"]::-webkit-outer-spin-button, .calc input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc input[type="number"]:hover { border-bottom-color: var(--edge); }
.calc input[type="number"]:focus-visible { outline: none; border-bottom-color: var(--accent); }
.calc-hint { font-size: .85rem; color: var(--muted); margin-top: .6rem; max-width: 48ch; }

/* Streep: 2 px spoor, vulling tot de duim via --v (gezet door rekenen.mjs), blokvormige duim */
.calc input[type="range"] { -webkit-appearance: none; appearance: none; display: block; width: 100%; height: 1.75rem; margin: 0; padding: 0; background: transparent; cursor: pointer; --v: 0%; }
.calc input[type="range"]::-webkit-slider-runnable-track { height: 2px; background: linear-gradient(90deg, var(--accent) var(--v), var(--edge) 0); }
.calc input[type="range"]::-moz-range-track { height: 2px; background: var(--edge); }
.calc input[type="range"]::-moz-range-progress { height: 2px; background: var(--accent); }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 12px; height: 22px; margin-top: -10px; background: var(--accent); border: 0; border-radius: 0; }
.calc input[type="range"]::-moz-range-thumb { width: 12px; height: 22px; background: var(--accent); border: 0; border-radius: 0; }
.calc input[type="range"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Stelling en grootboek */
.calc output { display: block; }
.calc-label { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: .95rem; color: var(--muted); }
.calc-thesis { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.6rem, 6vw, 4rem); line-height: .95; color: var(--accent); margin-top: -.1rem; }
.calc-sub { color: var(--muted); font-size: .95rem; max-width: 58ch; }
.calc-ledger { margin: 1rem 0 0; padding: 0; display: grid; }
.calc-line { padding: 1rem 0; border-top: 1px solid var(--edge); }
.calc-line dt { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1; color: var(--ink); }
.calc-line dd { margin: .35rem 0 0; color: var(--muted); font-size: .95rem; max-width: 58ch; }
.calc-slot { color: var(--ink); font-weight: 600; margin-top: .2rem; }
.calc-offerte { font-size: .9rem; color: var(--warn); }
.calc-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .75rem; padding-top: 1rem; border-top: 1px solid var(--edge); }
@media (max-width: 420px) { .calc-actions .btn { width: 100%; } }

.card p a, .lede a { color: var(--ink); text-underline-offset: .15em; }
.card p a:hover, .lede a:hover { color: var(--accent); }

/* ====================================================================
   Verfijning (19-08-2026): dezelfde huisstijl, strakkere uitvoering.
   Alles hieronder is progressive: oudere browsers krijgen gewoon de vlakke versie,
   en wie "minder beweging" heeft ingesteld, krijgt geen enkele animatie.
   ==================================================================== */

/* Fundamenten: typografie, selectie, focus, ankerafstand */
html { scroll-padding-top: 80px; }
h1, h2, h3 { text-wrap: balance; }
p, li, .lede, .note, dd { text-wrap: pretty; }
.plan .price, .promo-count .display, table td, .calc-readout, .calc-thesis, .calc-line dt { font-variant-numeric: tabular-nums; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.eyebrow { display: flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ""; width: 1.25rem; height: 2px; background: var(--accent); flex: 0 0 auto; }
.cta-band .eyebrow::before { background: var(--bg); }

/* Hero: raster-textuur met vermiljoen gloed op de achtergrond, en een backlight in de
   statuskleur achter elke telefoon — groen, oranje, rood, letterlijk. */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(55% 60% at 12% 0%, rgba(247,55,24,.16), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 1px, transparent 1px 80px);
  -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent 95%);
  mask-image: linear-gradient(to bottom, #000 30%, transparent 95%);
}
.phones figure { --glow: var(--ok); box-shadow: 0 26px 60px -18px color-mix(in srgb, var(--glow) 55%, transparent), 0 30px 60px -30px rgba(0,0,0,.9); }
.phones figure:nth-child(2) { --glow: var(--warn); }
.phones figure:nth-child(3) { --glow: var(--accent); }

/* Schermafbeeldingen: iets losser van de achtergrond */
.shot { box-shadow: 0 30px 60px -36px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.05); }

/* Kaarten: rustige hover (alleen op apparaten met een muis) */
.card, .plan { transition: border-color .2s ease, box-shadow .2s ease; }
@media (hover: hover) {
  .card:hover { border-color: #474747; box-shadow: inset 0 2px 0 var(--accent); }
  .plan:not(.featured):hover { border-color: #474747; }
}

/* Beweging — alleen als de bezoeker dat toelaat */
@media (prefers-reduced-motion: no-preference) {
  /* Intro van de hero: tekst en telefoons komen kort op, in volgorde */
  @keyframes opkomen { from { opacity: 0; translate: 0 14px; } to { opacity: 1; translate: 0 0; } }
  .hero .eyebrow, .hero h1, .hero .lede, .hero .actions, .hero .trust, .phones figure { animation: opkomen .7s cubic-bezier(.2, .7, .2, 1) both; }
  .hero h1 { animation-delay: .06s; }
  .hero .lede { animation-delay: .14s; }
  .hero .actions { animation-delay: .22s; }
  .hero .trust { animation-delay: .3s; }
  .phones figure:nth-child(1) { animation-delay: .18s; }
  .phones figure:nth-child(2) { animation-delay: .28s; }
  .phones figure:nth-child(3) { animation-delay: .38s; }

  /* Scroll-gestuurd verschijnen, zonder JavaScript (Chrome/Edge; elders gewoon zichtbaar) */
  @supports (animation-timeline: view()) {
    @keyframes verschijn { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }
    .card, .feature, .plan, .promo, .calc, .table-wrap, .faq details, .phone-install, .statement-lines { animation: verschijn linear both; animation-timeline: view(); animation-range: entry 0% entry 28%; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .card, .plan, .faq summary::after, .faq details::details-content { transition: none; }
}
