/* ════════════════════════════════════════════════════════════════════
   MorphiCustom v2 — design system "Ink & Violet" (restyle 10-7-2026)
   Licht, kalm en vertrouwenwekkend: wit canvas + Morphi-paars, donkere
   inkt alleen voor hero/footer/accenten. Space Grotesk/Inter self-hosted.
   Let op: klassen met "lime" in de naam zijn historisch — ze zijn
   geherstyled naar wit/violet (geen lime meer in het palet).
   ════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-var-latin.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-var-latin.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --ink: #14101D;
  --ink-2: #1C1528;
  --ink-3: #251C38;
  --paper: #FFFFFF;
  --surface: #FFFFFF;
  --zacht: #F7F6FA;
  --violet: #6D28D9;
  --violet-hl: #7C3AED;
  --violet-dk: #5B21B6;
  --violet-lt: #F3F0FA;
  --violet-md: #DDD6FE;
  --violet-zacht: #A78BFA;
  --text: #17131F;
  --muted: #64606E;
  --border: #E9E7EF;
  --groen: #059669;
  --rood: #DC2626;
  --oranje: #D97706;
  --radius: 12px;
  --radius-lg: 18px;
  --schaduw: 0 8px 28px rgba(23, 19, 31, .08);
  --schaduw-zwaar: 0 20px 60px rgba(20, 16, 29, .22);
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --layer-lines: repeating-linear-gradient(to bottom, transparent 0 7px, rgba(109,40,217,.04) 7px 8px);
  --layer-lines-licht: repeating-linear-gradient(to bottom, transparent 0 7px, rgba(255,255,255,.03) 7px 8px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Het hidden-attribuut moet altijd winnen — anders overrulen display-klassen
   (.btn, .prijs-regels…) het en blijven verborgen elementen toch zichtbaar. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--violet); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Knoppen ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--radius);
  font: 700 15px/1 var(--font-body); text-decoration: none; cursor: pointer;
  border: none; transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-dk); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(109,40,217,.28); }
/* .btn-lime: historische naam — inmiddels de "witte" knop voor donkere vlakken */
.btn-lime { background: #fff; color: var(--ink); }
.btn-lime:hover { background: var(--violet-lt); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.btn-ghost { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); color: #fff; font-weight: 600; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-omrand { background: transparent; border: 1.5px solid var(--violet-md); color: var(--violet-dk); font-weight: 600; }
.btn-omrand:hover { border-color: var(--violet); background: var(--violet-lt); }
.btn-groot { padding: 17px 34px; font-size: 16px; }
.btn-klein { padding: 9px 16px; font-size: 13px; border-radius: 10px; }

/* ── Navigatie ───────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.site-nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(23,17,31,.06); }
.nav-inner { max-width: 1180px; margin: 0 auto; height: 70px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--violet);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(109,40,217,.28); transition: transform .25s;
}
.nav-logo:hover .nav-logo-mark { transform: scale(1.05); }
.nav-logo-mark svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.nav-logo-mark.lime { background: var(--violet-hl); box-shadow: 0 4px 12px rgba(124,58,237,.3); }
.nav-logo-mark.lime svg { stroke: #fff; }
.nav-logo-tekst { font: 700 19px/1 var(--font-display); letter-spacing: -.03em; }
.nav-logo-tekst em { font-style: normal; color: var(--violet); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font: 600 14px/1 var(--font-body); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-acties { display: flex; align-items: center; gap: 18px; }
.nav-contact { color: var(--muted); font: 600 14px/1 var(--font-body); text-decoration: none; }
.nav-contact:hover { color: var(--text); }
.nav-cta { padding: 11px 20px; font-size: 14px; }
.nav-ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-ham span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.mobile-nav { display: none; flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 28px 26px; box-shadow: 0 16px 32px rgba(11,7,19,.10); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--text); text-decoration: none; font: 600 15px/1 var(--font-body); }
.mobile-nav .m-cta { margin-top: 16px; background: var(--violet); color: #fff; text-align: center; padding: 15px; border-radius: var(--radius); border-bottom: none; }

/* ── Flash ───────────────────────────────────────────────────────── */
.flash-stapel { max-width: 1180px; margin: 14px auto 0; padding: 0 28px; display: grid; gap: 8px; }
.flash { padding: 13px 18px; border-radius: 12px; font: 600 14px/1.5 var(--font-body); border: 1px solid; }
.flash-ok { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.flash-fout { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.flash-info { background: var(--violet-lt); border-color: var(--violet-md); color: var(--violet-dk); }

/* ── Secties ─────────────────────────────────────────────────────── */
.sectie { padding: 92px 0; }
.sectie-strak { padding: 64px 0; }
.sectie-donker { background: var(--ink); color: #fff; position: relative; }
.sectie-donker::before { content: ''; position: absolute; inset: 0; background: var(--layer-lines-licht); pointer-events: none; }
.sectie-donker > * { position: relative; }
.sectie-zacht { background: var(--zacht); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font: 800 12px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 14px;
}
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--violet); border-radius: 2px; }
.sectie-donker .kicker { color: var(--violet-zacht); }
.sectie-donker .kicker::before { background: var(--violet-zacht); }
.h-display { font-size: clamp(30px, 4vw, 48px); font-weight: 700; margin-bottom: 16px; }
.h-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.75; }
.sectie-donker .h-sub { color: rgba(255,255,255,.65); }
.sectie-kop { margin-bottom: 52px; }
.sectie-kop.midden { text-align: center; }
.sectie-kop.midden .h-sub, .sectie-kop.midden .kicker { margin-left: auto; margin-right: auto; }

/* ── Kaarten & grids ─────────────────────────────────────────────── */
.kaart {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw); }
.kaart h3 { font-size: 19px; margin-bottom: 10px; }
.kaart p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.stap-nummer {
  width: 42px; height: 42px; border-radius: 12px; background: var(--violet-lt);
  color: var(--violet-dk); font: 700 17px/1 var(--font-display);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  border: 1px solid var(--violet-md);
}
.icoon-chip {
  width: 48px; height: 48px; border-radius: 13px; background: var(--violet-lt);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.icoon-chip svg { width: 23px; height: 23px; stroke: var(--violet); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Badges ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px;
  border-radius: 99px; font: 700 12px/1.4 var(--font-body);
  background: var(--violet-lt); color: var(--violet-dk);
}
.badge-lime { background: var(--violet); color: #fff; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 99px; font: 700 13px/1.4 var(--font-body); color: #fff; }
.status-badge .stip { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.85); }

/* ── Formulieren ─────────────────────────────────────────────────── */
.veld { margin-bottom: 20px; }
.veld label { display: block; font: 600 14px/1.4 var(--font-body); margin-bottom: 7px; }
.veld .hint { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.veld input[type=text], .veld input[type=email], .veld input[type=tel], .veld input[type=number],
.veld input[type=url], .veld input[type=password], .veld select, .veld textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font: 500 15px/1.4 var(--font-body); color: var(--text); background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.veld textarea { min-height: 130px; resize: vertical; }
.veld .fout-tekst { color: var(--rood); font-size: 13px; margin-top: 5px; font-weight: 600; }
.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.verplicht::after { content: ' *'; color: var(--violet); }

.keuze-kaarten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.keuze-kaarten.twee { grid-template-columns: 1fr 1fr; }
.keuze-kaart { position: relative; }
.keuze-kaart input { position: absolute; opacity: 0; }
.keuze-kaart .kk-inhoud {
  display: block; border: 1.5px solid var(--border); border-radius: 14px; padding: 18px;
  cursor: pointer; transition: border-color .15s, background .15s; height: 100%;
}
.keuze-kaart input:checked + .kk-inhoud { border-color: var(--violet); background: var(--violet-lt); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.keuze-kaart input:focus-visible + .kk-inhoud { outline: 2px solid var(--violet); outline-offset: 2px; }
.kk-inhoud strong { display: block; font: 700 15px/1.3 var(--font-body); margin-bottom: 4px; }
.kk-inhoud span { font-size: 13px; color: var(--muted); line-height: 1.5; display: block; }

.kleur-keuze { display: flex; flex-wrap: wrap; gap: 10px; }
.kleur-stip { position: relative; }
.kleur-stip input { position: absolute; opacity: 0; }
.kleur-stip .ks-vlak {
  display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer;
  padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 12px; min-width: 78px;
  font: 600 12px/1.2 var(--font-body); color: var(--muted); transition: .15s;
}
.kleur-stip .ks-bol { width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(0,0,0,.08); }
.kleur-stip input:checked + .ks-vlak { border-color: var(--violet); background: var(--violet-lt); color: var(--violet-dk); }

/* ── Upload-zone ─────────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--violet-md); border-radius: var(--radius-lg);
  padding: 42px 24px; text-align: center; cursor: pointer; background: var(--violet-lt);
  transition: border-color .2s, background .2s;
}
.upload-zone:hover, .upload-zone.sleep { border-color: var(--violet); background: #E9E2FA; }
.upload-zone .uz-icoon { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; background: var(--violet); display: flex; align-items: center; justify-content: center; }
.upload-zone .uz-icoon svg { width: 25px; height: 25px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.upload-zone strong { font: 700 16px/1.4 var(--font-body); display: block; }
.upload-zone span { font-size: 13px; color: var(--muted); }
.upload-lijst { margin-top: 14px; display: grid; gap: 8px; }
.upload-item { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; font: 600 13.5px/1.4 var(--font-body); }
.upload-item .ui-maat { color: var(--muted); font-weight: 500; margin-left: auto; }
.upload-item button { background: none; border: none; color: var(--rood); font-size: 17px; cursor: pointer; line-height: 1; }

/* ── Prijsindicatie-paneel ───────────────────────────────────────── */
.prijs-paneel {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden;
}
.prijs-paneel::before { content: ''; position: absolute; inset: 0; background: var(--layer-lines-licht); pointer-events: none; }
.prijs-paneel > * { position: relative; }
.prijs-paneel .pp-label { font: 800 11px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--violet-zacht); margin-bottom: 10px; }
.prijs-paneel .pp-bedrag { font: 700 40px/1 var(--font-display); letter-spacing: -.03em; }
.prijs-paneel .pp-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.6; }
.prijs-regels { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 14px; display: grid; gap: 7px; }
.prijs-regel { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,.75); }
.prijs-regel strong { color: #fff; }

/* ── Tabellen ────────────────────────────────────────────────────── */
.tabel-scroll { overflow-x: auto; }
table.tabel { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.tabel th { text-align: left; font: 700 12.5px/1.4 var(--font-body); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 13px 16px; border-bottom: 2px solid var(--border); background: var(--paper); }
.tabel td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; vertical-align: middle; }
.tabel tr:last-child td { border-bottom: none; }
.tabel tbody tr:hover { background: var(--violet-lt); }

/* ── Accordeon (FAQ) ─────────────────────────────────────────────── */
.accordeon { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.accordeon + .accordeon { margin-top: 12px; }
.accordeon summary {
  padding: 20px 24px; cursor: pointer; font: 700 16px/1.45 var(--font-body); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.accordeon summary::-webkit-details-marker { display: none; }
.accordeon summary::after { content: '+'; font: 400 26px/1 var(--font-display); color: var(--violet); transition: transform .2s; flex-shrink: 0; }
.accordeon[open] summary::after { transform: rotate(45deg); }
.accordeon .acc-inhoud { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ── Tijdlijn (volg-pagina) ──────────────────────────────────────── */
.tijdlijn { position: relative; padding-left: 34px; }
.tijdlijn::before { content: ''; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item::before {
  content: ''; position: absolute; left: -30px; top: 4px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--surface); border: 3px solid var(--border);
}
.tl-item.actief::before { border-color: var(--violet); background: var(--violet); box-shadow: 0 0 0 5px rgba(124,58,237,.18); }
.tl-item.gedaan::before { border-color: var(--groen); background: var(--groen); }
.tl-item strong { display: block; font: 700 15px/1.4 var(--font-body); }
.tl-item span { font-size: 13px; color: var(--muted); }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); position: relative; margin-top: 0; }
.site-footer::before { content: ''; position: absolute; inset: 0; background: var(--layer-lines-licht); pointer-events: none; }
.footer-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 64px 28px 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-kol h4 { color: #fff; font: 700 14px/1 var(--font-display); margin-bottom: 16px; letter-spacing: .02em; }
.footer-kol a, .footer-kol span { display: block; color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; padding: 5px 0; }
.footer-kol a:hover { color: #fff; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-top: 14px; max-width: 320px; }
.footer-brand .footer-kvk { font-size: 12px; color: rgba(255,255,255,.38); }
.footer-logo { margin-bottom: 4px; }
.footer-logo .nav-logo-tekst { color: #fff; }
.footer-onder { position: relative; border-top: 1px solid rgba(255,255,255,.1); }
.footer-onder { max-width: 1180px; margin: 0 auto; padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12.5px; }
.footer-onder nav { display: flex; gap: 18px; }
.footer-onder a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-onder a:hover { color: #fff; }

/* ── Hero (home) ─────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(11,7,19,.96) 8%, rgba(21,13,38,.82) 48%, rgba(91,33,182,.45) 100%); }
.hero-lagen { position: absolute; inset: 0; background: var(--layer-lines-licht); pointer-events: none; }
.hero-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 108px 28px 96px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 99px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font: 700 12px/1 var(--font-body); letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.hero-badge .stip { width: 8px; height: 8px; border-radius: 50%; background: #34D399; animation: pols 2s infinite; }
@keyframes pols { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); } 50% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } }
.hero h1 { font-size: clamp(38px, 5vw, 62px); font-weight: 700; letter-spacing: -.035em; margin-bottom: 20px; }
.hero h1 .accent { color: var(--violet-zacht); }
.hero .hero-sub { font-size: 17.5px; color: rgba(255,255,255,.72); max-width: 500px; line-height: 1.8; margin-bottom: 36px; }
.hero-knoppen { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-usps { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-usp { display: flex; align-items: center; gap: 8px; font: 600 13.5px/1.4 var(--font-body); color: rgba(255,255,255,.72); }
.hero-usp::before { content: '✓'; color: #34D399; font-weight: 900; }

.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-foto { border-radius: 16px; overflow: hidden; aspect-ratio: 1; background: var(--ink-3); }
.hero-foto.hoog { grid-row: span 2; aspect-ratio: auto; }
.hero-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hero-foto:hover img { transform: scale(1.06); }

/* ── Stats-band ──────────────────────────────────────────────────── */
.stats-band { background: var(--surface); border-bottom: 1px solid var(--border); padding: 26px 0; }
.stats-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.stat { color: var(--text); }
.stat .st-n { font: 700 27px/1.1 var(--font-display); letter-spacing: -.02em; color: var(--violet); }
.stat .st-l { font: 700 11.5px/1.4 var(--font-body); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* ── Galerij / inspiratie ────────────────────────────────────────── */
.insp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insp-kaart { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.insp-kaart.breed { grid-column: span 2; }
.insp-kaart img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.insp-kaart.breed img { aspect-ratio: 16/8.2; }
.insp-kaart:hover img { transform: scale(1.05); }
.insp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,7,19,.92) 0%, rgba(11,7,19,.25) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.insp-overlay .badge-lime { width: fit-content; margin-bottom: 10px; }
.insp-overlay h3 { color: #fff; font-size: 19px; }
.insp-overlay p { color: rgba(255,255,255,.7); font-size: 13.5px; margin-top: 4px; }

/* ── CTA-band ────────────────────────────────────────────────────── */
.cta-band { background: var(--ink); border-radius: var(--radius-lg); padding: 64px 56px; color: #fff; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 400px at 85% 20%, rgba(124,58,237,.45), transparent 60%), var(--layer-lines-licht); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.68); font-size: 15.5px; line-height: 1.75; }
.cta-band .cta-acties { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ── Wizard ──────────────────────────────────────────────────────── */
.wizard-stappen { display: flex; gap: 10px; margin-bottom: 36px; }
.wz-stap { flex: 1; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-radius: 13px; background: var(--surface); border: 1.5px solid var(--border); font: 700 13.5px/1.3 var(--font-body); color: var(--muted); }
.wz-stap .wz-n { width: 26px; height: 26px; border-radius: 8px; background: var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font: 700 13px/1 var(--font-display); flex-shrink: 0; }
.wz-stap.actief { border-color: var(--violet); color: var(--text); background: var(--violet-lt); }
.wz-stap.actief .wz-n { background: var(--violet); color: #fff; }
.wz-stap.gedaan .wz-n { background: var(--groen); color: #fff; }
.wizard-paneel { display: none; }
.wizard-paneel.actief { display: block; animation: fadein .25s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; }

/* ── Diversen ────────────────────────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--violet); }
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 38px 0 12px; }
.prose h3 { font-size: 18px; margin: 26px 0 10px; }
.prose p, .prose li { font-size: 15px; color: var(--muted); line-height: 1.85; }
.prose ul { padding-left: 22px; margin: 10px 0; }
.prose strong { color: var(--text); }
.checklijst { list-style: none; padding: 0; display: grid; gap: 10px; }
.checklijst li { display: flex; gap: 11px; font-size: 15px; line-height: 1.6; }
.checklijst li::before { content: '✓'; color: var(--groen); font-weight: 900; flex-shrink: 0; }
.foto-rij { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.foto-rij .foto { border-radius: 13px; overflow: hidden; aspect-ratio: 1; }
.foto-rij img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.foto-rij .foto:hover img { transform: scale(1.07); }
.nootje { font-size: 12.5px; color: var(--muted); }
.skiplink { position: absolute; left: -9999px; }
.skiplink:focus { position: fixed; left: 12px; top: 12px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 999; }

/* ── Cookie-consent-balk ─────────────────────────────────────────── */
.cookie-balk { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; background: var(--ink); color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); box-shadow: var(--schaduw-zwaar); animation: cookie-omhoog .4s ease; }
@keyframes cookie-omhoog { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-inner { max-width: 1180px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cookie-tekst { max-width: 640px; }
.cookie-titel { display: block; font: 700 16px/1.3 var(--font-display); margin-bottom: 5px; }
.cookie-inner p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.72); margin: 0; }
.cookie-inner a { color: #fff; text-decoration: underline; }
.cookie-knoppen { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
/* "Ja" = prominente, uitnodigende actie */
.cookie-ja { background: var(--violet); color: #fff; border: none; cursor: pointer; font: 700 15px/1 var(--font-body); padding: 15px 30px; border-radius: var(--radius); box-shadow: 0 6px 22px rgba(124,58,237,.5); transition: transform .15s, box-shadow .15s, background .15s; }
.cookie-ja:hover { background: var(--violet-hl); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,.62); }
/* "Liever niet" = zichtbaar maar rustiger (geen dark pattern) */
.cookie-nee { background: transparent; color: rgba(255,255,255,.6); border: none; cursor: pointer; font: 600 13.5px/1 var(--font-body); padding: 14px 16px; border-radius: var(--radius); text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.cookie-nee:hover { color: #fff; }
@media (max-width: 620px) {
  .cookie-inner { padding: 18px; gap: 16px; }
  .cookie-knoppen { width: 100%; flex-direction: column-reverse; }
  .cookie-ja { width: 100%; padding: 15px; }
  .cookie-nee { width: 100%; }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding: 84px 28px 72px; }
  .hero-visual { max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 48px 36px; }
  .cta-band .cta-acties { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .nav-links, .nav-contact { display: none; }
  .nav-ham { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .insp-grid { grid-template-columns: 1fr; }
  .insp-kaart.breed { grid-column: span 1; }
  .keuze-kaarten, .keuze-kaarten.twee { grid-template-columns: 1fr; }
  .veld-rij { grid-template-columns: 1fr; }
  .sectie { padding: 64px 0; }
  .foto-rij { grid-template-columns: repeat(3, 1fr); }
  .wizard-stappen { flex-direction: column; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .wrap, .nav-inner { padding-left: 18px; padding-right: 18px; }
  .nav-cta { display: none; }
  .foto-rij { grid-template-columns: repeat(2, 1fr); }
  .hero-knoppen .btn { width: 100%; }
}
