/* ===================================================================
   Scheidingwijzer.nl: gedeeld designsysteem
   Huisstijl vastgelegd 8 juli 2026: kleuren en typografie van
   Scheidingwijzer.nl (een initiatief van Blended Family).
   =================================================================== */

@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Huisstijlkleuren: vastgelegd, niet wijzigen zonder overleg */
  --warm-dark: #2C3639;
  --teal: #3D8B7A;
  --teal-dark: #2E6A5C;
  --coral: #E07A5F;
  --coral-dark: #C85A3E;
  --gold: #D4A853;
  --cream: #FFFCF7;
  --paper: #FFFFFF;

  --ink: var(--warm-dark);
  --ink-soft: #5B6A67;
  --rule: #E7E0D2;
  --teal-soft: #E7F1EE;
  --coral-soft: #FBEAE3;
  --gold-soft: #F8EEDA;

  /* Afgeleide knop-tint (geen huisstijl-basiskleur): --coral is te licht voor
     witte tekst (2,95:1). Deze donkerdere coral haalt WCAG 2.1 AA:
     #B84B30 op #ffffff = 5,14:1. Alleen gebruiken voor knoppen met witte tekst. */
  --coral-btn: #B84B30;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', ui-sans-serif, Segoe UI, Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(44,54,57,0.07);
  --shadow-lg: 0 10px 32px rgba(44,54,57,0.12);
  --max: 1120px;
}

/* Kindgerichte ruimte: zelfde systeem, iets warmer/speelser accent */
body.kids-zone {
  --ink: #33302B;
}
body.kids-zone .site-header { background: var(--coral-soft); }

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden; /* vangnet tegen horizontale overflow op smalle schermen */
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-dark); text-decoration-color: color-mix(in srgb, var(--teal) 40%, transparent); }
a:hover { color: var(--coral-dark); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 2px; }

/* Skip-link: standaard buiten beeld, bij focus zichtbaar linksboven */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--teal-dark); color: #fff; padding: 10px 16px; border-radius: 0 0 6px 0; text-decoration: none; }
.skip-link:focus { left: 0; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 0.5em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 0.9em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 42px 0; }
.section--tight { padding: 26px 0; }
.section--alt { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,252,247,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Beeldmerk: de weg die zich splitst in twee paden die naast elkaar verdergaan.
   Als achtergrond ingeladen, zodat geen enkele pagina eigen markup nodig heeft. */
.logo::before {
  content: "";
  flex: none;
  width: 24px;
  height: 37px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='46 22 108 180' fill='none'%3E%3Cpath d='M100 134 C 100 104, 126 98, 134 40' stroke='%23E07A5F' stroke-width='21' stroke-linecap='round'/%3E%3Cpath d='M100 184 L100 132 C 100 104, 74 98, 66 40' stroke='%233D8B7A' stroke-width='21' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.logo:hover { color: var(--teal-dark); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  order: 3;
  width: 100%;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 100px;
}
.main-nav a:hover { background: var(--teal-soft); color: var(--teal-dark); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  order: 2;
}
.nav-cta,
.exit-button {
  font-size: 14.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta { background: var(--teal-dark); color: #fff; }
.nav-cta:hover { background: color-mix(in srgb, var(--teal-dark) 80%, #000); color: #fff; }

.exit-button {
  color: #fff;
  background: var(--coral-btn);
}
.exit-button:hover { background: var(--warm-dark); color: #fff; }

@media (max-width: 640px) {
  .main-nav { gap: 2px; }
  .main-nav a { font-size: 13.5px; padding: 6px 9px; }
  .header-actions { gap: 6px; }
  .nav-cta, .exit-button { font-size: 13px; padding: 8px 12px; }
}

/* ---------- Abstract beeldsysteem (blobs) ---------- */
/* Zachte, wazige kleurvlakken in de huisstijlkleuren, i.p.v. foto's. Werkt als
   decoratieve laag achter een sectie: plaats .blob-art als eerste kind van een
   position:relative container, met daarna de echte content erbovenop. */
.blob-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.blob-art span {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.4;
}
.blob-art .b1 { width: 340px; height: 340px; background: var(--teal); top: -110px; right: -60px; }
.blob-art .b2 { width: 260px; height: 260px; background: var(--coral); bottom: -90px; left: 6%; opacity: 0.3; }
.blob-art .b3 { width: 180px; height: 180px; background: var(--gold); top: 30%; left: 40%; opacity: 0.25; }
.blob-art.blob-art--soft span { opacity: 0.55; filter: blur(80px); }

.art-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-soft), var(--cream) 60%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-panel .blob-art span { opacity: 0.55; }
.art-panel .glyph {
  position: relative;
  z-index: 1;
  font-size: 64px;
  filter: drop-shadow(0 6px 14px rgba(44,54,57,0.15));
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 36px;
  position: relative;
  overflow: hidden;
}
.hero > .container { position: relative; z-index: 1; }
.hero--tight { padding: 32px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 20px;
  max-width: 760px;
}
.hero h1 { margin-bottom: 0.4em; }
.hero .lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Ronde "gratis e-book"-sticker, rechts naast de introtekst (alleen bij ruimte) */
.ebook-sticker {
  position: absolute;
  top: 40px;
  right: 8px;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--coral-btn);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.2;
  text-decoration: none;
  transform: rotate(8deg);
  box-shadow: var(--shadow-lg);
  transition: transform .15s ease;
  z-index: 2;
}
.ebook-sticker:hover { transform: rotate(8deg) scale(1.06); color: #fff; }
@media (max-width: 1000px) { .ebook-sticker { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--teal-dark); color: #fff; }
.btn-primary:hover { background: color-mix(in srgb, var(--teal-dark) 80%, #000); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-coral { background: var(--coral-btn); color: #fff; }
.btn-coral:hover { background: color-mix(in srgb, var(--coral-btn) 82%, #000); color: #fff; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card a.card-link { font-weight: 700; font-size: 14.5px; text-decoration: none; }

.card--teal { background: var(--teal-soft); border-color: transparent; }
.card--coral { background: var(--coral-soft); border-color: transparent; }
.card--gold { background: var(--gold-soft); border-color: transparent; }

.card { position: relative; }
.sticker {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gold);
  color: #3A2C0A;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 100px;
  transform: rotate(5deg);
  box-shadow: var(--shadow);
  max-width: calc(100% - 32px);
}

/* Zachte doorverwijs-CTA (professional matching): bewust geen groot bannerachtig blok */
.soft-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 26px 0;
  padding: 16px 20px;
  border: 1px dashed color-mix(in srgb, var(--teal) 45%, var(--rule));
  border-radius: var(--radius);
  background: var(--teal-soft);
}
.soft-cta p { margin: 0; font-weight: 600; color: var(--ink); }
.soft-cta .btn { flex: none; }

.utility-line {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: -14px 0 0;
}
.utility-line a { font-weight: 700; }

/* ---------- Checklist / stepped content ---------- */
.steplist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.steplist li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 2px 0;
}
.steplist li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-top: 2px;
}

.pillrow { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 16px; }
.pill {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.pill.gold { background: var(--gold-soft); color: #8a6a24; }
.pill.coral { background: var(--coral-soft); color: var(--coral-dark); }

blockquote {
  margin: 16px 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius-sm); margin: 14px 0; }
table { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 15px; }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--rule); vertical-align: top; }
thead th { background: var(--teal-soft); color: var(--teal-dark); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Keuzehulp ---------- */
.keuzehulp-opties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}
@media (max-width: 700px) {
  .keuzehulp-opties { grid-template-columns: 1fr; }
}
.keuzehulp-optie {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}
.keuzehulp-optie:hover { border-color: var(--teal); }
.keuzehulp-optie input {
  margin-top: 3px;
  accent-color: var(--teal);
  flex: none;
}
.keuzehulp-optie:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.keuzehulp-resultaat {
  margin-top: 6px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.keuzehulp-resultaat[hidden] { display: none; }

/* ---------- Verzendcheck: nauwkeurige check + coach (geen AI) ---------- */

/* Introductietegels bovenaan (hergebruik van .card / .grid-3) */
.vc-tegels { margin-top: 4px; }
.vc-tegel { display: flex; flex-direction: column; }
.vc-tegel-icon { font-size: 26px; line-height: 1; margin-bottom: 10px; }
.vc-tegel h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 8px;
}
.vc-tegel p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

/* Privacy-melding (ook gebruikt op andere hulpmiddel-pagina's) */
.vc-privacy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 0 0;
  padding: 16px 20px;
  background: var(--teal-soft);
  border: 1px solid color-mix(in srgb, var(--teal) 35%, var(--rule));
  border-radius: var(--radius);
  max-width: 680px;
}
.vc-privacy .icon { font-size: 20px; flex: none; line-height: 1.3; }
.vc-privacy p { margin: 0; font-size: 14px; color: var(--ink); }
.vc-privacy strong { color: var(--teal-dark); }

.vc-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.vc-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 22px;
  border-bottom: 1px solid var(--rule);
  background: var(--teal-soft);
}
.vc-panel-header h2 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
  margin-right: auto;
}

/* Badge: benadrukt dat dit geen AI is, maar vaste regels lokaal */
.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--paper);
  color: var(--teal-dark);
  border: 1px solid color-mix(in srgb, var(--teal) 45%, var(--rule));
}
.vc-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
}

/* Stappen */
.vc-step {
  padding: 22px;
  border-bottom: 1px solid var(--rule);
}
.vc-step:last-child { border-bottom: none; }
.vc-step[hidden] { display: none; }
.vc-step-kop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.vc-step-nr {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.vc-step-kop h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.vc-step-uitleg {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.vc-step-acties {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.vc-textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  background: var(--cream);
  color: var(--ink);
}
.vc-textarea:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }

/* Algemene indruk: rustig / gespannen / heftig */
.vc-indruk { margin: 0 0 14px; }
.vc-indruk:empty { display: none; }
.vc-indruk-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule);
  background: var(--cream);
}
.vc-indruk-icon { font-size: 20px; line-height: 1.3; flex: none; }
.vc-indruk-kop { margin: 0 0 2px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.vc-indruk-uitleg { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.vc-indruk-inner.toon-rustig { background: var(--teal-soft); border-color: color-mix(in srgb, var(--teal) 35%, var(--rule)); }
.vc-indruk-inner.toon-licht { background: var(--teal-soft); border-color: color-mix(in srgb, var(--teal) 25%, var(--rule)); }
.vc-indruk-inner.toon-gespannen { background: var(--gold-soft); border-color: color-mix(in srgb, var(--gold) 35%, var(--rule)); }
.vc-indruk-inner.toon-heftig { background: var(--coral-soft); border-color: color-mix(in srgb, var(--coral) 40%, var(--rule)); }

/* Signalen: per gevonden patroon het exacte fragment + duiding + tip */
.vc-signalen { display: flex; flex-direction: column; gap: 10px; }
.vc-signalen:empty { display: none; }
.vc-signaal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  padding: 13px 15px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius-sm);
}
.vc-signaal-icon { font-size: 18px; line-height: 1.4; }
.vc-signaal-body { display: flex; flex-direction: column; gap: 5px; }
.vc-signaal-fragment {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.vc-signaal-overkomt { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink); }
.vc-signaal-tip { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.vc-signaal-tip strong { color: var(--teal-dark); }

/* Anonieme, opt-in feedback (alleen regel-id + oordeel, nooit tekst) */
.vc-feedback {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.vc-feedback-vraag { font-weight: 600; }
.vc-feedback-knop {
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 13px;
  cursor: pointer;
  line-height: 1.4;
}
.vc-feedback-knop:hover { border-color: var(--teal); }
.vc-feedback-dank { font-style: italic; }

/* Coach: principes van geweldloze communicatie met generieke voorbeelden */
.vc-principes {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: vc-p;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc-principes li {
  position: relative;
  padding: 12px 14px 12px 48px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}
.vc-principes li::before {
  counter-increment: vc-p;
  content: counter(vc-p);
  position: absolute;
  left: 12px; top: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.vc-principe-kop { margin: 0 0 3px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.vc-principe-uitleg { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.vc-principe-vb { margin: 8px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--teal-dark); }
.vc-vb-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 100px;
  padding: 1px 9px;
  margin-right: 7px;
}
.vc-herschrijf-label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 6px; color: var(--ink); }

/* ---------- E-learning: modulelijst + mock-inlog ---------- */
.modulelijst { display: grid; gap: 10px; margin: 16px 0 28px; }
.module-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.module-item .nr {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13.5px;
  display: flex; align-items: center; justify-content: center;
}
.module-item .info { flex: 1; }
.module-item h4 { margin: 0 0 2px; font-size: 15.5px; font-family: var(--font-body); font-weight: 700; }
.module-item .duur { font-size: 13px; color: var(--ink-soft); }
.module-item .status { flex: none; }
.module-item.locked .nr { background: var(--rule); color: var(--ink-soft); }

.gate {
  margin: 28px 0;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
}
.gate .icon { font-size: 26px; margin-bottom: 8px; }
.gate h3 { margin-bottom: 6px; }
.gate p.gate-sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.gate .vc-field { margin-bottom: 14px; }
.gate .vc-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 5px; }
.gate .vc-input { width: 100%; }
.gate .btn { width: 100%; justify-content: center; }
.gate .disclaimer { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); }

.les-inhoud[hidden] { display: none; }
.les-inhoud {
  margin: 28px 0;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.les-inhoud .slide { padding: 10px 0 22px; border-bottom: 1px solid var(--rule); margin-bottom: 22px; }
.les-inhoud .slide:last-of-type { border-bottom: none; margin-bottom: 0; }
.les-inhoud .slide h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.quiz {
  margin-top: 10px;
  padding: 18px;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
}
.quiz p.vraag { font-weight: 700; margin-bottom: 10px; }
.quiz .keuzehulp-opties { grid-template-columns: 1fr; margin: 0 0 10px; }
.quiz-feedback { font-size: 14px; font-weight: 600; min-height: 20px; }
.quiz-feedback.goed { color: var(--teal-dark); }
.quiz-feedback.fout { color: var(--coral-dark); }

/* ---------- Course outro: gratis/betaald tegels i.p.v. tekst-in-een-balk ---------- */
.course-outro {
  padding: 26px 30px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.course-outro h3 { margin-bottom: 4px; }
.course-outro > p.intro { color: var(--ink-soft); margin-bottom: 18px; }
.course-outro-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .course-outro-tiers { grid-template-columns: 1fr; }
}
.course-outro-tier {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
}
.course-outro-tier.tier-gratis { background: var(--teal-soft); }
.course-outro-tier.tier-betaald { background: var(--gold-soft); }
.course-outro-tier .tier-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.course-outro-tier.tier-gratis .tier-label { color: var(--teal-dark); }
.course-outro-tier.tier-betaald .tier-label { color: #8A6A24; }
.course-outro-tier p { margin: 0; font-size: 14.5px; color: var(--ink); }

/* ---------- Verdieping op verzoek: "lees meer" i.p.v. alles tonen ---------- */
.expandable {
  margin: 10px 0;
  border-top: 1px solid var(--rule);
}
.expandable summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal-dark);
  padding: 12px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.expandable summary::-webkit-details-marker { display: none; }
.expandable summary::before {
  content: "+";
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.expandable[open] summary::before { content: "\2212"; }
.expandable-body { padding: 0 0 16px 32px; color: var(--ink-soft); font-size: 15px; }
.expandable-body p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--warm-dark);
  color: #EDE7DC;
  padding: 28px 0 20px;
  margin-top: 26px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer a { color: #EDE7DC; }
.site-footer p { color: #B9C2BE; font-size: 14px; margin: 0; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14.5px; }
.footer-nav a { text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: var(--gold); }

/* ---------- Utility ---------- */
.muted { color: var(--ink-soft); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin: 12px 0; }
.stat { max-width: 260px; }
.stat .v { font-family: var(--font-display); font-size: 1.8rem; color: var(--teal-dark); }
.stat .l { font-size: 15.5px; color: var(--ink-soft); line-height: 1.4; }

/* ---------- Homepage: editorial linklijst + toolbanner ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 780px) {
  .feature-split { grid-template-columns: 1fr; }
}
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.link-list li { border-bottom: 1px solid var(--rule); }
.link-list li:last-child { border-bottom: none; }
.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15.5px;
}
.link-list a:hover { color: var(--teal-dark); }
.link-list a strong { font-weight: 700; }
.link-list .arrow { color: var(--ink-soft); font-weight: 700; flex: none; }
.link-list a:hover .arrow { color: var(--teal-dark); }

.tool-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--coral-soft);
  border: 1px solid color-mix(in srgb, var(--coral) 30%, var(--rule));
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  flex-wrap: wrap;
}
.tool-banner:hover { border-color: var(--coral); }
.tool-banner .sticker { position: static; transform: rotate(-2deg); flex: none; }
.tool-banner-text { flex: 1; font-size: 15px; min-width: 200px; }
.tool-banner-text strong { color: var(--coral-dark); }
.tool-banner-arrow { font-weight: 700; color: var(--coral-dark); flex: none; }

/* ---------- Kids-zone: speelse componenten ---------- */
/* Gebruikt op /voor-kinderen-en-tieners/*.html om de content minder als
   platte opsomming te laten voelen: ronde iconbadges, wippende kaarten,
   losse "sticker"-pillen en een echt gevoelenwiel. */

/* Kleine ronde iconbadge boven een kaart of paneel */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

/* Kaart die licht "wipt" bij hover/focus (uitgeschakeld door de globale
   prefers-reduced-motion-regel bovenaan dit bestand) */
.card--tilt { transition: transform .18s ease, box-shadow .18s ease; }
.card--tilt:hover, .card--tilt:focus-within {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: var(--shadow-lg);
}

/* Speelse pillrow: losse, licht gedraaide "stickers" i.p.v. een strak rijtje */
.pillrow--playful .pill { transition: transform .15s ease; }
.pillrow--playful .pill:nth-child(3n+1) { transform: rotate(-3deg); }
.pillrow--playful .pill:nth-child(3n+2) { transform: rotate(2deg); }
.pillrow--playful .pill:nth-child(3n) { transform: rotate(-1deg); }
.pillrow--playful .pill:hover { transform: scale(1.1) rotate(0deg); }

/* Pillen als knop gebruiken (bv. in het gevoelenwiel) zonder browserstijl */
button.pill { border: none; cursor: pointer; font-family: inherit; }

/* Steplist met kleurtint en hover-beweging, voor "hoort niet bij jou" /
   "mag jij wel"-achtige lijstjes */
.steplist--pop li {
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  margin: -4px -8px;
  transition: transform .15s ease, background .15s ease;
}
.steplist--pop li:hover { transform: translateX(6px); }
.steplist--coral li::before { border-color: var(--coral); }
.steplist--coral li:hover { background: var(--coral-soft); }
.steplist--teal li::before { border-color: var(--teal); }
.steplist--teal li:hover { background: var(--teal-soft); }

/* Gevoelenwiel: gevoelens als klikbare pillen rondom een middelpunt.
   Positionering met CSS sin()/cos() (moderne browsers, zelfde niveau als
   de :has()-selector die dit designsysteem al gebruikt bij .keuzehulp-optie). */
.feel-wheel {
  --radius: 128px;
  position: relative;
  width: 300px;
  height: 300px;
  margin: 12px auto 32px;
}
.feel-wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feel-wheel-hub .glyph { font-size: 40px; }
.feel-wheel-item {
  position: absolute;
  top: calc(50% + var(--radius) * sin(var(--a)));
  left: calc(50% + var(--radius) * cos(var(--a)));
  transform: translate(-50%, -50%);
}
.feel-wheel-item .pill { box-shadow: var(--shadow); white-space: nowrap; }
.feel-wheel-item .pill:hover,
.feel-wheel-item .pill:focus-visible { transform: scale(1.12); }
.feel-wheel-item .pill[aria-pressed="true"] { box-shadow: 0 0 0 3px var(--coral-dark); }
@media (max-width: 560px) {
  .feel-wheel { --radius: 92px; width: 230px; height: 230px; }
  .feel-wheel-hub { width: 88px; height: 88px; }
  .feel-wheel-hub .glyph { font-size: 30px; }
}
