/* Meesterschoon — shared styles (draft, 2026-05-30). Fonts loaded via <link> in each page head (faster than @import). */
:root {
  --surface: oklch(96.5% 0.012 172);
  --surface-2: #ffffff;
  --surface-3: oklch(96% 0.012 150);
  --ink: oklch(22% 0.02 150);
  --ink-soft: oklch(44% 0.02 150);
  --accent: oklch(48% 0.11 165);
  --accent-deep: oklch(38% 0.10 165);
  --gold: oklch(72% 0.11 85);
  --line: color-mix(in oklch, var(--ink) 12%, transparent);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 44px -22px color-mix(in oklch, var(--accent-deep) 55%, transparent);
  --shadow-sm: 0 6px 18px -10px color-mix(in oklch, var(--ink) 40%, transparent);
  --maxw: 1120px;
  --text-hero: clamp(2.6rem, 1.2rem + 5.4vw, 5rem);
  --text-h2: clamp(1.7rem, 1.1rem + 2.2vw, 2.8rem);
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--surface); line-height: 1.55; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.02em; font-weight: 700; margin: 0; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 640; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }

header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); background: color-mix(in oklch, var(--surface) 82%, transparent); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo { font-weight: 760; font-size: 1.3rem; letter-spacing: -0.03em; display: flex; align-items: center; gap: .55rem; }
.logo .mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(150deg, var(--accent), var(--accent-deep)); color: #fff; font-size: .95rem; font-weight: 800; box-shadow: var(--shadow-sm); }
.logo small { color: var(--accent); font-weight: 760; }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: .95rem; font-weight: 540; }
.nav-links a:not(.btn) { color: var(--ink-soft); transition: color .2s var(--ease); }
.nav-links a:not(.btn):hover { color: var(--ink); }
.btn { display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; font: inherit; font-weight: 640; font-size: .98rem; border: 0; padding: .8rem 1.4rem; border-radius: 999px; background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); }
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: var(--shadow); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent-deep); }
.btn.gold { background: var(--gold); color: var(--ink); }
.nav .btn { padding: .65rem 1.2rem; }
@media (max-width: 760px) { .nav-links a:not(.btn) { display: none; } }

/* Hero + landing — contained two-column: copy left, photo card right */
.hero { position: relative; padding: clamp(1.75rem, 1rem + 3vw, 3.75rem) 0 clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
.hero-copy { min-width: 0; max-width: 560px; }
.hero-media { min-width: 0; position: relative; }
.hero-photo { display: block; width: 100%; height: auto; aspect-ratio: 2488 / 2176; object-fit: cover; border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow); background: var(--surface-3); }
.hero-badge { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: baseline; gap: .35rem; background: color-mix(in oklch, var(--surface-2) 90%, transparent); backdrop-filter: blur(8px); color: var(--ink); font-size: .9rem; font-weight: 600; padding: .55rem .95rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.hero-badge b { font-family: var(--font-display); font-weight: 740; font-size: 1.05rem; color: var(--accent-deep); }
@media (max-width: 820px) {
  /* Stacked: copy first, photo card below. Keep the source ratio so nobody's
     head/feet get cropped (cover into a wider ratio would clip the top). */
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 1.4rem; }
  .hero-copy { order: -1; max-width: none; }
  .hero-media { max-width: 460px; margin-inline: auto; }
}
.hero h1 { font-size: clamp(2.2rem, 1.3rem + 3.2vw, 3.6rem); margin: .7rem 0 1rem; }
.hero h1 .accent { color: var(--accent-deep); font-style: italic; font-weight: 600; }
.hero .lede { font-size: clamp(1.05rem, .98rem + .4vw, 1.3rem); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.3rem; }
.trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 1.6rem; font-size: .9rem; color: var(--ink-soft); }
.trust b { color: var(--ink); font-weight: 680; }
.trust span { display: flex; align-items: center; gap: .5rem; }
.trust span::before { content: "✓"; color: var(--accent); font-weight: 800; }
.hero-card { background: var(--surface-2); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-card h3, .hero-card .hc-title { font-size: 1.15rem; margin-bottom: .3rem; font-weight: 720; font-family: var(--font-display); }
.hero-card .sub { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; padding: .85rem 0; border-top: 1px solid var(--line); }
.price-row:first-of-type { border-top: 0; }
.price-row .label { font-weight: 600; color: var(--ink); }
.price-row .label small { display: block; font-weight: 440; color: var(--ink-soft); font-size: .8rem; }
.price-row .amt { text-align: right; }
.price-row .amt b { font-size: 1.35rem; font-weight: 740; }
.price-row .amt s { color: var(--ink-soft); font-size: .85rem; opacity: .8; }
.save-badge { display: inline-block; margin-top: 1rem; font-size: .82rem; font-weight: 680; color: var(--accent-deep); background: color-mix(in oklch, var(--gold) 22%, var(--surface-2)); padding: .45rem .8rem; border-radius: 999px; }

section { padding: var(--space-section) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head h2 { font-size: var(--text-h2); margin: 1rem 0 .8rem; }
.grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; row-gap: .55rem; align-items: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-3); color: var(--accent-deep); font-size: 1.2rem; margin: 0; }
.card h3 { font-size: 1.12rem; margin: 0; }
.card p { margin: 0; font-size: .95rem; grid-column: 1 / -1; }

.pricing { background: transparent; }

/* Guarantee / risk-reversal strip (critique: premium trust lever) */
.guarantees { padding-top: 0; padding-bottom: var(--space-section); }
.guarantee-row { list-style: none; margin: 0; padding: clamp(1rem, 2vw, 1.5rem) 0; display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: center; }
.guarantee-row li { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.guarantee-row li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.price-cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.plan { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured { border: 1.5px solid var(--accent); box-shadow: var(--shadow); }
.plan .tag { position: absolute; top: -.8rem; left: 1.9rem; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.plan h3 { font-size: 1.15rem; }
.plan .size { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1.2rem; }
.plan .big { font-size: 2.5rem; font-weight: 760; letter-spacing: -0.03em; color: var(--ink); }
.plan .big span { font-size: 1rem; font-weight: 540; color: var(--ink-soft); }
.plan .oneoff { font-size: .9rem; color: var(--ink-soft); margin: .4rem 0 1.2rem; }
.plan .oneoff s { opacity: .75; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.5rem; font-size: .92rem; }
.plan li { padding: .4rem 0 .4rem 1.6rem; position: relative; color: var(--ink-soft); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.plan .btn { width: 100%; justify-content: center; }
.pricing .note { text-align: center; margin-top: 2rem; font-size: .86rem; }

.steps { counter-reset: step; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { padding: 1.6rem; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent-deep); color: #fff; font-weight: 740; margin-bottom: 1rem; }
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { margin: 0; font-size: .93rem; }

/* Booking / instant quote */
.booking { background: linear-gradient(160deg, var(--accent-deep), oklch(30% 0.07 165)); color: #fff; }
.booking h2 { color: #fff; }
.booking p { color: color-mix(in oklch, #fff 80%, transparent); }
.quote { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: start; }
@media (max-width: 860px) { .quote { grid-template-columns: 1fr; } }
.config { background: var(--surface-2); color: var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 1rem + 2vw, 2rem); box-shadow: var(--shadow); }
.cfg-block { margin-bottom: 1.3rem; }
.cfg-block:last-child { margin-bottom: 0; }
.cfg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cfg-label { display: block; font-size: .85rem; font-weight: 620; margin-bottom: .55rem; color: var(--ink); }
.seg { display: inline-flex; background: var(--surface-3); border-radius: 999px; padding: .25rem; gap: .25rem; width: 100%; }
.seg label { flex: 1; position: relative; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: block; text-align: center; padding: .6rem .5rem; border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s var(--ease); }
.seg input:checked + span { background: var(--surface-2); color: var(--accent-deep); box-shadow: var(--shadow-sm); }
.seg.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; border-radius: var(--radius-sm); }
.seg.seg-grid span { display: flex; flex-direction: column; align-items: flex-start; gap: .05rem; text-align: left; padding: .5rem .65rem; border-radius: var(--radius-sm); line-height: 1.15; }
.seg.seg-grid em { font-style: normal; font-weight: 700; font-size: .78em; color: var(--accent-deep); }
.cfg-hint { font-style: normal; font-weight: 500; color: var(--ink-soft); font-size: .8em; }
.seg input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.config select { width: 100%; font: inherit; padding: .75rem .9rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); }
.stepper { display: flex; align-items: center; gap: .5rem; }
.stepper button { width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); font-size: 1.3rem; font-weight: 700; cursor: pointer; transition: all .2s var(--ease); }
.stepper button:hover { border-color: var(--accent); color: var(--accent-deep); }
.stepper output { flex: 1; text-align: center; font-size: 1.2rem; font-weight: 700; }
.quote-price { background: linear-gradient(160deg, var(--accent-deep), oklch(30% 0.07 165)); border: 0; border-radius: var(--radius); padding: clamp(1.4rem, 1rem + 2vw, 2rem); color: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.qp-eyebrow { font-size: .8rem; font-weight: 640; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.qp-amount { font-size: clamp(2.6rem, 1.5rem + 4vw, 3.6rem); font-weight: 780; letter-spacing: -0.03em; line-height: 1.05; margin: .4rem 0 .2rem; color: #fff; }
.qp-anchor { color: color-mix(in oklch, #fff 82%, transparent); font-size: .95rem; margin: 0; }
.qp-anchor s { opacity: .7; }
.qp-anchor b { color: #fff; }
.qp-credit { font-size: .82rem; color: color-mix(in oklch, #fff 78%, transparent); margin: .6rem 0 0; }
.qp-meta { font-size: .8rem; color: color-mix(in oklch, #fff 65%, transparent); margin: .7rem 0 1.2rem; }
.quote-price { text-align: left; }
.qp-extras { list-style: none; margin: .3rem 0 0; padding: .6rem 0 0; border-top: 1px solid color-mix(in oklch, #fff 22%, transparent); font-size: .82rem; }
.qp-extras li { display: flex; justify-content: space-between; gap: 1rem; color: color-mix(in oklch, #fff 84%, transparent); padding: .15rem 0; }
.qp-extras li span:last-child { color: #fff; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* "Bekijk opbouw" button on the green card */
.qp-spec { display: inline-flex; align-items: center; gap: .3rem; margin: .2rem 0 .9rem; background: none; border: 0; padding: 0; cursor: pointer; font: inherit; font-size: .78rem; font-weight: 700; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.qp-spec:hover { color: #fff; }

/* Price-breakdown overlay */
.spec-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; background: color-mix(in oklch, var(--ink) 55%, transparent); backdrop-filter: blur(4px); }
.spec-overlay.open { display: flex; }
.spec-modal { background: var(--surface-2); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); width: min(100%, 420px); max-height: 85vh; overflow: auto; padding: 1.4rem 1.5rem; text-align: left; }
.spec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.spec-head b { font-family: var(--font-display); font-size: 1.2rem; }
.spec-close { width: 34px; height: 34px; border: 0; background: var(--surface-3); border-radius: 50%; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--ink); }
.spec-lines { list-style: none; margin: 0 0 .6rem; padding: 0; }
.spec-lines li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-lines li span:first-child { color: var(--ink-soft); }
.spec-lines li span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); }
.spec-sub { margin: .1rem 0; }
.spec-row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; font-size: .9rem; color: var(--ink-soft); }
.spec-row span:last-child { font-variant-numeric: tabular-nums; color: var(--ink); }
.spec-row.spec-strong span { color: var(--ink); font-weight: 600; }
.spec-total { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0 .2rem; margin-top: .3rem; border-top: 2px solid var(--ink); font-weight: 760; font-size: 1.15rem; font-family: var(--font-display); }
.spec-total span:last-child { font-variant-numeric: tabular-nums; }
.spec-meta { font-size: .8rem; color: var(--ink-soft); margin: .5rem 0 0; }

/* Hero with calculator above the fold (index) */
.hero-quote { position: relative; padding: clamp(2rem, 1.5rem + 3vw, 3.5rem) 0 var(--space-section); overflow: hidden; }
.hero-quote::after { content: ""; position: absolute; inset: -20% -10% auto 30%; height: 60%; background: radial-gradient(circle, color-mix(in oklch, var(--accent) 14%, transparent), transparent 70%); pointer-events: none; z-index: 0; }
.hero-quote .wrap { position: relative; z-index: 1; }
.hq-head { max-width: 62ch; margin-bottom: clamp(1.4rem, 1rem + 2vw, 2.2rem); }
.hq-head h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.6rem); margin: 1rem 0 .6rem; }
.hq-head h1 .accent { color: var(--accent-deep); font-style: italic; font-weight: 600; }
.hq-head .lede { font-size: clamp(1rem, .95rem + .3vw, 1.2rem); max-width: 48ch; }
.quote-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1rem, .5rem + 1.5vw, 1.6rem); background: var(--surface-2); border: 0; border-radius: calc(var(--radius) + 4px); padding: clamp(1.25rem, .8rem + 1.6vw, 1.9rem); box-shadow: var(--shadow); align-items: stretch; }
@media (max-width: 820px) { .quote-card { grid-template-columns: 1fr; } }
.quote-card .config { box-shadow: none; border: 0; background: var(--surface-3); border-radius: var(--radius); padding: 1.15rem; }
.quote-card .cfg-block { margin-bottom: 1rem; }

/* Funnel sub-pages */
.funnel { padding: clamp(2.5rem, 2rem + 4vw, 5rem) 0; min-height: 70vh; }
.page-narrow { width: min(100% - 2.5rem, 680px); margin-inline: auto; }
.progress { display: flex; gap: .4rem; align-items: center; justify-content: center; margin: 0 auto clamp(1.8rem, 1rem + 2vw, 2.8rem); font-size: .74rem; font-weight: 640; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); flex-wrap: wrap; }
.progress .pstep { display: flex; align-items: center; gap: .5rem; }
.progress .dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-3); color: var(--ink-soft); font-size: .8rem; font-weight: 720; }
.progress .pstep.on { color: var(--ink); }
.progress .pstep.on .dot { background: var(--accent); color: #fff; }
.progress .pstep.done .dot { background: var(--accent-deep); color: #fff; }
.progress .sep { width: 16px; height: 1.5px; background: var(--line); }
.panel { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow); }
.panel h1 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); margin-bottom: .4rem; }
.panel .intro { font-size: .95rem; margin-bottom: 1.5rem; }
.recap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--surface-3); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.6rem; font-size: .9rem; color: var(--ink-soft); }
.recap b { color: var(--ink); }
.recap .price { font-size: 1.4rem; font-weight: 760; color: var(--ink); white-space: nowrap; }
.recap-extras { font-size: .82rem; color: var(--ink-soft); margin: -.6rem 0 1rem; }
.recap-extras[hidden] { display: none; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 620; margin-bottom: .4rem; }
.field input { width: 100%; font: inherit; padding: .75rem .9rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); transition: border-color .2s var(--ease); }
.field input:focus { outline: none; border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.prepay-note { font-size: .82rem; margin-top: 1rem; color: var(--ink-soft); }
.banks { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .6rem; margin: .5rem 0 1.4rem; }
.banks label { position: relative; }
.banks input { position: absolute; opacity: 0; pointer-events: none; }
.banks span { display: block; text-align: center; padding: .75rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s var(--ease); }
.banks input:checked + span { border-color: var(--accent); background: var(--surface-3); color: var(--accent-deep); }
.banks input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.confirm-mark { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 2rem; margin: 0 auto 1.2rem; }
.back { font-size: .85rem; color: var(--ink-soft); display: inline-flex; gap: .4rem; margin-top: 1.2rem; }
.back:hover { color: var(--accent-deep); }

/* Full-viewport funnel screens: everything above the fold, no page scroll */
body.app { height: 100dvh; display: flex; flex-direction: column; }
body.app header { position: static; flex: 0 0 auto; }
body.app .nav { padding: .4rem 0; }
body.app .logo { font-size: 1rem; gap: .45rem; }
body.app .logo .mark { width: 26px; height: 26px; font-size: 1rem; }
body.app .funnel { flex: 1 1 auto; min-height: 0; display: grid; place-items: center; padding: clamp(.4rem, 1.2vh, .9rem) 0; overflow: auto; }
body.app .progress { margin-bottom: clamp(.4rem, 1vh, .75rem); font-size: .72rem; }
body.app .progress .dot { width: 22px; height: 22px; }
body.app .hq-head { margin-bottom: clamp(.5rem, 1.4vh, 1rem); }
body.app .hq-head h1 { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.55rem); margin-bottom: .1rem; }
body.app .hq-head .lede { font-size: .85rem; max-width: 44ch; }
body.app .panel { padding: 1.6rem; }
body.app .panel h1 { font-size: clamp(1.45rem, 1.15rem + 1.5vw, 1.95rem); margin-bottom: .5rem; }
body.app .panel .intro { margin-bottom: .65rem; font-size: .85rem; line-height: 1.4; }
body.app .recap { margin-bottom: .9rem; padding: .7rem 1rem; }
body.app .recap .price { font-size: 1.2rem; }
body.app .field { margin-bottom: .6rem; }
body.app .field input { padding: .6rem .8rem; }
body.app .field label { margin-bottom: .25rem; }
body.app .cfg-block { margin-bottom: .5rem; }
body.app .cfg-label { margin-bottom: .35rem; }
body.app .config select { padding: .6rem .8rem; }
body.app .seg span { padding: .5rem; }
body.app .stepper button { width: 38px; height: 38px; }
body.app .stepper output { font-size: 1.05rem; }
body.app .quote-card { padding: 1.3rem; gap: clamp(.7rem, .4rem + 1vw, 1.1rem); }
body.app .quote-price { padding: clamp(1rem, .8rem + 1.2vw, 1.4rem); }
body.app .qp-amount { font-size: clamp(2rem, 1.4rem + 2.6vw, 2.8rem); margin: .2rem 0; }
body.app .qp-meta { margin: .5rem 0 .9rem; }
/* Tight type scale on funnel pages: 5 steps, each >= ~1.25x (clears flat-hierarchy) */
body.app .progress, body.app .qp-eyebrow, body.app .qp-meta, body.app .qp-credit, body.app .cfg-label, body.app .field label, body.app .prepay-note, body.app .banks span { font-size: .78rem; }
body.app .field input, body.app .config select, body.app .stepper output, body.app .btn, body.app .seg span, body.app .panel .intro, body.app .recap, body.app .qp-anchor, body.app .summary-line { font-size: 1rem; }
body.app .recap .price { font-size: 1.7rem; }
/* Snap stragglers into the scale (dots, back-link, lede, stepper glyphs) */
body.app .progress .dot { font-size: .78rem; }
body.app .back, body.app .hq-head .lede { font-size: .78rem; }
body.app .stepper button { font-size: 1rem; }

/* FAQ */
details.faq { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
details.faq summary { cursor: pointer; font-weight: 620; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--accent); font-weight: 700; font-size: 1.4rem; transition: transform .25s var(--ease); }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin: .9rem 0 0; font-size: .95rem; }

footer { padding: 3rem 0; border-top: 1px solid var(--line); font-size: .88rem; color: var(--ink-soft); }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; }
.foot .logo { font-size: 1.1rem; color: var(--ink); }

/* Deeper typeset: display font + tabular figures (stable, no jiggle on change) */
.qp-amount, .plan .big, .price-row .amt b { font-family: var(--font-display); }
.qp-amount, .plan .big, .recap .price, .price-row .amt b, .price-row .amt s { font-variant-numeric: tabular-nums; }
/* Colored sections: inner breathing room */
.pricing, .booking { padding-inline: clamp(.5rem, 2vw, 1.5rem); }
/* Delight (every page): tactile press on buttons, soft focus ring on inputs */
.btn:active { transform: translateY(0) scale(.97); }
/* Touch has no hover: give steppers + choice chips their own press feedback */
.stepper button:active { transform: scale(.92); border-color: var(--accent); }
.seg span:active, .banks span:active { transform: scale(.98); }
.field input:focus, .config select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 20%, transparent); }

/* Motion: purposeful, gated by reduced-motion preference */
@keyframes ms-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes ms-pop { 0% { opacity: 0; transform: scale(.6); } 60% { transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
@keyframes ms-pulse { 0% { transform: scale(1); } 35% { transform: scale(1.07); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: no-preference) {
  /* Landing hero (index) */
  .hero h1 { animation: ms-rise .7s var(--ease) both; }
  .hero .lede { animation: ms-rise .7s var(--ease) .08s both; }
  .hero-cta { animation: ms-rise .7s var(--ease) .16s both; }
  .trust { animation: ms-rise .7s var(--ease) .24s both; }
  .hero-media { animation: ms-rise .7s var(--ease) .2s both; }
  .hero-card { animation: ms-rise .7s var(--ease) .12s both; }
  /* Funnel step pages (bereken/gegevens/betalen/bedankt): content rises in on load */
  body.app .progress { animation: ms-rise .55s var(--ease) both; }
  body.app .hq-head { animation: ms-rise .6s var(--ease) .06s both; }
  body.app .panel { animation: ms-rise .6s var(--ease) .08s both; }
  body.app .quote-card { animation: ms-rise .6s var(--ease) .12s both; }
  /* Delight */
  .confirm-mark { animation: ms-pop .6s var(--ease) both; }
  .qp-amount.pulse { animation: ms-pulse .35s var(--ease); }
  /* Scroll reveal for marketing sections (index) — transform only, never hides text */
  body.js-reveal .reveal { transform: translateY(20px); transition: transform .65s var(--ease); }
  body.js-reveal .reveal.in { transform: none; }
}
/* Honeypot (spam trap) — visually hidden, off-screen */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Add-ons (extra's) page */
.addons-main { display: block; padding-top: clamp(.6rem, 2vh, 1.2rem); }
.addons-head { margin-bottom: 1rem; }
.addons-head h1 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.8rem); margin-bottom: .3rem; }
.addons-head .intro { font-size: 1rem; margin: 0; color: var(--ink-soft); }

/* Supplies options (radio cards) + pets chips */
.option-list { display: grid; gap: .6rem; }
.option { display: block; position: relative; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .85rem 1rem; cursor: pointer; background: var(--surface-2); transition: border-color .2s var(--ease), background .2s var(--ease); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.option-row b { font-weight: 660; }
.option-row em { font-style: normal; font-weight: 740; color: var(--accent-deep); white-space: nowrap; }
.option-note { display: block; font-size: .78rem; color: var(--ink-soft); margin-top: .25rem; line-height: 1.4; }
.option:has(input:checked) { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 6%, var(--surface-2)); }
.option:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: block; padding: .5rem .9rem; border: 1.5px solid var(--line); border-radius: 999px; font-size: 1rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s var(--ease); }
.chips input:checked + span { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 8%, var(--surface-2)); color: var(--accent-deep); }
.chips input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
h1 .opt { font-size: .5em; font-weight: 600; color: var(--ink-soft); font-family: var(--font); letter-spacing: 0; }
.addon-grid { display: grid; grid-template-columns: 1fr; gap: .5rem; }
@media (min-width: 640px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
.addon { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .55rem .8rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); }
.addon-info { display: flex; flex-direction: column; gap: .05rem; min-width: 0; }
.addon-name { font-weight: 600; font-size: .92rem; }
.addon-price { font-size: .76rem; color: var(--ink-soft); }
.stepper-sm { gap: .35rem; flex: 0 0 auto; }
.stepper-sm button { width: 32px; height: 32px; font-size: 1.05rem; border-radius: 8px; }
.stepper-sm output { min-width: 1.4rem; font-size: 1rem; flex: 0 0 auto; }
.addon-bar { flex: 0 0 auto; border-top: 1px solid var(--line); background: color-mix(in oklch, var(--surface) 90%, transparent); backdrop-filter: blur(8px); }
.addon-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; }
.addon-total { display: flex; flex-direction: column; line-height: 1.1; }
.addon-total small { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.addon-total b { font-size: 1.5rem; font-family: var(--font-display); font-variant-numeric: tabular-nums; }
.addon-disc { text-transform: none; letter-spacing: 0; color: var(--accent-deep); font-weight: 600; font-size: .8rem; margin: -.5rem 0 1rem; }
.addon-disc s { color: var(--ink-soft); font-weight: 400; }

/* Adapt: short viewports + small phones */
@media (max-height: 720px) {
  body.app .funnel { padding: .3rem 0; }
  body.app .progress { margin-bottom: .6rem; }
  body.app .hq-head { margin-bottom: .5rem; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .trust { gap: .6rem 1.2rem; }
  .quote-card { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; scroll-behavior: auto; } }
