:root {
  --navy: #1d1b3b;
  --navy-2: #2e2b52;
  --pink: #e84e8c;       /* accent in koppen */
  --pink-strong: #c8326f;/* vlakken met witte tekst (contrast) */
  --pink-light: #ef6aa3; /* accent op donkere achtergrond */
  --blue: #3f93d6;
  --yellow: #f2c744;
  --grey-bg: #efeff3;
  --line: #d9d8e4;
  --muted: #4f4d6b;
  --text: #1d1b3b;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius: 18px;
  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body { margin: 0; font-family: 'Overpass', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: var(--text); background: var(--white); font-size: 18px; line-height: 1.6; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; line-height: 1.05; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: 96px; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--white); padding: 8px 16px; z-index: 100; }
.skip:focus { left: 8px; }

.pink-text { color: var(--pink); }
.blue-text { color: var(--blue); }
.yellow-text { color: #c99a0e; }
.pink-light { color: var(--pink-light); }
.strong { font-weight: 700; color: var(--text); }

/* Knoppen */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 32px; border-radius: 999px; border: 0; font: inherit; font-weight: 700; font-size: 19px; text-decoration: none; cursor: pointer; }
.btn-pink { background: var(--pink-strong); color: var(--white); box-shadow: 0 10px 24px rgba(200, 50, 111, 0.28); }
.btn-pink:hover { background: #b12a61; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-sm { min-height: 48px; padding: 0 24px; font-size: 17px; }
.btn[disabled] { background: #e6e5ee; color: #6b6a82; box-shadow: none; cursor: not-allowed; }
.link { font-weight: 700; text-decoration: underline; text-underline-offset: 8px; text-decoration-color: var(--line); text-decoration-thickness: 3px; }
.link:hover { text-decoration-color: var(--pink); }
.link-btn { background: none; border: 0; font: inherit; font-weight: 700; color: var(--text); cursor: pointer; min-height: 44px; padding: 0 8px; text-decoration: underline; text-underline-offset: 6px; }

/* Labels boven koppen */
.eyebrow { display: flex; align-items: center; gap: 18px; font-size: 16px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 24px; }
.eyebrow.light { color: var(--white); }
.line { width: 56px; height: 4px; border-radius: 2px; flex-shrink: 0; }
.line.pink { background: var(--pink); } .line.blue { background: var(--blue); } .line.yellow { background: var(--yellow); }

/* Navigatie */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 32px; padding: 16px var(--pad); background: var(--navy); color: var(--white); }
.brand { display: flex; flex-direction: column; font-weight: 800; font-size: 12px; line-height: 13px; letter-spacing: 0.04em; text-decoration: none; }
.nav nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 36px; }
.nav ul a { text-decoration: none; font-size: 18px; }
.nav ul a:hover { color: var(--pink-light); }
@media (max-width: 860px) { .nav nav { display: none; } .nav .btn { margin-left: auto; } }

/* Hero */
.hero { max-width: var(--wrap); margin: 0 auto; padding: clamp(40px, 7vw, 88px) var(--pad); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(48px, 7vw, 96px); margin-bottom: 36px; }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--muted); max-width: 36em; margin-bottom: 20px; }
.lead.strong { color: var(--text); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 32px; margin-top: 16px; }
.hero-visual { position: relative; padding: 24px 24px 40px 0; }
.photo { position: relative; border-radius: var(--radius-lg); border-top: 5px solid var(--pink); overflow: hidden; background: #f3eee8; aspect-ratio: 4 / 3; box-shadow: 24px 32px 0 var(--yellow); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.badge-dark { position: absolute; top: 0; right: 0; display: inline-flex; align-items: center; gap: 12px; background: var(--navy); color: var(--white); font-weight: 700; padding: 14px 24px; border-radius: 999px; font-size: 16px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); display: inline-block; flex-shrink: 0; }
.dot.pink { background: var(--pink); } .dot.blue { background: var(--blue); } .dot.yellow { background: var(--yellow); }
.badge-card { position: absolute; left: -24px; bottom: 0; display: flex; align-items: center; gap: 16px; background: var(--white); border-radius: 22px; padding: 18px 26px 18px 18px; box-shadow: 0 16px 40px rgba(29, 27, 59, 0.14); color: var(--muted); font-size: 16px; line-height: 1.4; }
.badge-card strong { color: var(--text); font-size: 20px; }
.badge-mark { background: var(--pink-strong); color: var(--white); font-weight: 800; border-radius: 14px; padding: 14px 16px; font-size: 17px; }
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .badge-card { left: 0; }
}

/* Concept */
.concept, .nu { max-width: var(--wrap); margin: 0 auto; padding: clamp(56px, 8vw, 112px) var(--pad); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); }
.concept h2, .nu h2, .werkwijze h2, .signup h2 { font-size: clamp(36px, 4.6vw, 64px); }
.concept-body, .nu-body { display: flex; flex-direction: column; gap: 24px; color: var(--muted); font-size: clamp(18px, 1.5vw, 21px); }
@media (max-width: 860px) { .concept, .nu { grid-template-columns: 1fr; } }

/* Werkwijze */
.werkwijze { background: var(--grey-bg); padding: clamp(56px, 8vw, 112px) max(var(--pad), calc((100% - var(--wrap)) / 2 + var(--pad))); }
.werkwijze .intro { color: var(--muted); max-width: 44em; margin: 32px 0 56px; font-size: clamp(18px, 1.5vw, 21px); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px 40px; }
.step .num { font-size: 72px; font-weight: 800; line-height: 1; }
.step .bar { display: block; height: 8px; background: var(--grey-bg); border-radius: 4px; margin: 28px 0 32px; overflow: hidden; }
.step .bar i { display: block; height: 100%; border-radius: 4px; }
.step h3 { font-size: 26px; margin-bottom: 14px; }
.step p { color: var(--muted); font-size: 17px; }
.s1 .num { color: var(--pink); } .s1 .bar i { width: 25%; background: var(--pink); }
.s2 .num { color: var(--blue); } .s2 .bar i { width: 50%; background: var(--blue); }
.s3 .num { color: #d9a90f; } .s3 .bar i { width: 75%; background: var(--yellow); }
.s4 { background: var(--navy); color: var(--white); }
.s4 .bar { background: var(--navy-2); }
.s4 .bar i { width: 100%; background: linear-gradient(90deg, var(--pink), var(--blue), var(--yellow)); }
.s4 p { color: #e4e3ef; }
@media (max-width: 1060px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* Waar we nu staan */
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li { position: relative; padding-left: 36px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 7px; width: 20px; height: 12px; border-left: 3px solid var(--pink); border-bottom: 3px solid var(--pink); transform: rotate(-45deg); }

/* Aanmelden */
.signup { background: var(--navy); color: var(--white); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); padding: clamp(56px, 8vw, 112px) max(var(--pad), calc((100% - var(--wrap)) / 2 + var(--pad))); }
.signup-intro > p { color: #e4e3ef; font-size: clamp(18px, 1.6vw, 21px); margin: 32px 0; }
.dots { list-style: none; margin: 0; padding: 0; }
.dots li { display: flex; gap: 20px; align-items: baseline; padding: 20px 0; border-top: 1px solid var(--navy-2); }
.dots li:last-child { border-bottom: 1px solid var(--navy-2); }
.form-card { background: var(--white); color: var(--text); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 56px); align-self: start; }
@media (max-width: 960px) { .signup { grid-template-columns: 1fr; } }

.form-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.form-head h3 { font-size: clamp(28px, 3vw, 38px); }
.step-count { color: var(--muted); font-weight: 600; white-space: nowrap; }
.progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 20px 0 32px; }
.progress i { height: 8px; border-radius: 4px; background: #e6e5ee; }
.progress i.on { background: var(--pink-strong); }

.fstep { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .radios legend { font-weight: 700; }
.opt { font-weight: 400; color: var(--muted); }
input[type="text"], input[type="email"], input[type="url"], input[type="search"] { font: inherit; font-size: 18px; color: var(--text); min-height: 56px; padding: 0 18px; border: 2px solid var(--line); border-radius: 14px; background: #fbfbfd; width: 100%; }
input:focus { border-color: var(--pink-strong); outline: none; box-shadow: 0 0 0 3px rgba(200, 50, 111, 0.18); }
input[aria-invalid="true"] { border-color: #b3261e; }

.radios { border: 0; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.radios legend { width: 100%; margin-bottom: 10px; padding: 0; }
.radios label { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 20px 0 14px; border: 2px solid var(--line); border-radius: 999px; cursor: pointer; }
.radios label:has(input:checked) { border-color: var(--pink-strong); background: #fcebf2; }
.radios input { accent-color: var(--pink-strong); width: 18px; height: 18px; margin: 0; }
.main-spec { display: block; font-weight: 400; color: var(--muted); font-size: 16px; }
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.check input { accent-color: var(--pink-strong); width: 20px; height: 20px; margin-top: 4px; flex-shrink: 0; }
.expect { color: var(--muted); font-size: 16px; background: var(--grey-bg); border-radius: 12px; padding: 12px 16px; }

/* Specialisaties */
.spec { border: 0; margin: 0; padding: 0; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.spec legend { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; width: 100%; padding: 0; margin-bottom: 4px; font-weight: 700; font-size: 20px; }
.spec legend .hint { font-weight: 400; font-size: 16px; color: var(--muted); }
.search { display: flex; align-items: center; gap: 12px; border: 2px solid var(--line); border-radius: 14px; background: #fbfbfd; padding-left: 18px; }
.search:focus-within { border-color: var(--pink-strong); box-shadow: 0 0 0 3px rgba(200, 50, 111, 0.18); }
.search svg { width: 22px; height: 22px; fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.search input { border: 0; background: transparent; box-shadow: none !important; padding-left: 0; }

.selection { position: sticky; top: 88px; z-index: 5; background: #f6f5fa; border-radius: var(--radius); padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 6px 18px rgba(29, 27, 59, 0.06); }
.selection-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; font-size: 17px; }
.star-hint { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: var(--muted); }
.star-hint svg { width: 16px; height: 16px; }
.sel-empty { color: #6b6a82; }
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; align-items: center; background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 2px; font-size: 15px; font-weight: 600; }
.tag span { padding: 0 4px; }
.icon-btn { width: 40px; height: 40px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn:hover { background: #ecebf3; }
.icon-btn svg { width: 18px; height: 18px; }
.star-fill { fill: var(--pink-strong); stroke: var(--pink-strong); stroke-width: 1.5; stroke-linejoin: round; }
.star-empty { fill: none; stroke: #8a89a0; stroke-width: 1.8; stroke-linejoin: round; }
.x-icon { fill: none; stroke: var(--muted); stroke-width: 2.6; stroke-linecap: round; width: 14px !important; height: 14px !important; }
.limit { font-size: 15px; color: #7a4a00; background: #fdf3d6; border-radius: 10px; padding: 8px 12px; }
.no-results { color: var(--muted); }

.cats { display: flex; flex-direction: column; gap: 12px; }
.cat { border: 2px solid var(--navy); border-radius: var(--radius); overflow: hidden; }
.cat-head { width: 100%; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 20px; background: var(--white); border: 0; font: inherit; font-size: 20px; font-weight: 700; color: var(--text); text-align: left; cursor: pointer; }
.cat-head:hover { background: #f7f6fa; }
.cat-head .count { color: var(--pink-strong); }
.cat-head svg { width: 22px; height: 22px; fill: none; stroke: var(--text); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; flex-shrink: 0; }
.cat-head[aria-expanded="true"] svg { transform: rotate(180deg); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 20px 20px; }
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 20px; border: 2px solid var(--line); background: var(--white); color: var(--text); border-radius: 999px; font: inherit; font-size: 16px; font-weight: 600; cursor: pointer; text-align: left; }
.chip:hover { border-color: var(--pink-strong); }
.chip[aria-pressed="true"] { background: var(--pink-strong); border-color: var(--pink-strong); color: var(--white); font-weight: 700; padding-left: 16px; }
.chip[aria-pressed="true"]::before { content: ""; width: 12px; height: 7px; border-left: 3px solid var(--white); border-bottom: 3px solid var(--white); transform: rotate(-45deg) translate(1px, -2px); }
.chip.dashed { border-style: dashed; border-color: #8a89a0; align-self: flex-start; }
.anders { display: flex; flex-direction: column; gap: 12px; }
.anders-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.anders-row input { flex: 1 1 220px; }

.form-error { margin-top: 20px; color: #b3261e; font-weight: 600; }
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 32px; }
.done { display: flex; flex-direction: column; gap: 16px; }
.done h3 { font-size: clamp(28px, 3vw, 38px); }
.done p { color: var(--muted); font-size: 19px; }

.hp { position: absolute; left: -9999px; }

/* Footer */
.footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 28px var(--pad); background: var(--navy); color: #c9c8da; border-top: 1px solid var(--navy-2); font-size: 16px; }
.footer nav { display: flex; gap: 24px; }
