/*
Theme Name: AVG Theme
Theme URI: https://algemenevoorwaardenvoorbeeld.nl
Author: AVG Generator
Description: Custom marketing theme voor Algemene Voorwaarden Voorbeeld
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: avg-theme
*/

/* ── Reset & base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #0F172A;
  --primary-h:     #1E293B;
  --accent:        #6366F1;
  --text:          #1E293B;
  --muted:         #64748B;
  --bg:            #F8FAFC;
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --dark:          #0F172A;
  --dark-2:        #1E293B;
  --green:         #10B981;
  --r:             12px;
  --r-sm:          8px;
  --shadow:        0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: background .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary-h); box-shadow: var(--shadow-md); }

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { background: #F1F5F9; box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ── Navigation ────────────────────────────────────────────────────────── */
.avg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.avg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.avg-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.avg-logo img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 780px) {
  .avg-logo img { height: 44px; }
}
@media (max-width: 480px) {
  .avg-logo img { height: 38px; }
}

.avg-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.avg-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.avg-nav a:hover { color: var(--primary); }

.avg-header__cta {
  flex-shrink: 0;
}
.avg-header__cta-short { display: none; }
@media (max-width: 480px) {
  .avg-header__cta-long  { display: none; }
  .avg-header__cta-short { display: inline; }
}

/* ── Hamburger button ──────────────────────────────────────────────────── */
.avg-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: 8px;
  transition: border-color .15s, background .15s;
}
.avg-burger:hover { border-color: var(--accent); background: var(--bg); }
.avg-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s, opacity .15s;
}
.avg-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.avg-burger.is-open span:nth-child(2) { opacity: 0; }
.avg-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile drawer ─────────────────────────────────────────────────────── */
.avg-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
html.avg-nav-open .avg-mobile-menu {
  display: block;
  animation: avg-menu-in .22s ease;
}
html.avg-nav-open { overflow: hidden; }

@keyframes avg-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.avg-mobile-menu nav {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}
.avg-mobile-menu nav a {
  padding: 18px 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .15s, padding-left .15s, background .15s;
  border-radius: 8px;
}
.avg-mobile-menu nav a:hover,
.avg-mobile-menu nav a:focus {
  color: var(--accent);
  padding-left: 18px;
  background: var(--bg);
}
.avg-mobile-menu nav a:last-child { border-bottom: none; }

/* Show hamburger only on mobile */
@media (max-width: 780px) {
  .avg-burger { display: inline-flex !important; }
}
@media (min-width: 781px) {
  .avg-mobile-menu, .avg-burger { display: none !important; }
}

/* ════════════════════════════════════════════════════════════════════════
   HERO — split layout met document-stack
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    radial-gradient(ellipse 800px 600px at 100% 0%, rgba(167,139,250,.13) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 100%, rgba(99,102,241,.08) 0%, transparent 55%),
    linear-gradient(180deg, #FAFBFF 0%, var(--white) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(99,102,241,.07) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, var(--white), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, var(--white), transparent 80%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

/* TEKST kolom */
.hero__col-text { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--white);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .01em;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(99,102,241,.08);
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.hero__eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--green);
  border-radius: 50%;
  opacity: .35;
  animation: avg-pulse 2s ease-out infinite;
}
@keyframes avg-pulse {
  0%   { transform: scale(1);   opacity: .35; }
  100% { transform: scale(2.5); opacity: 0;   }
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.05;
  letter-spacing: -.028em;
  margin-bottom: 24px;
  max-width: 580px;
}
.hero__title-accent {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 2px;
  height: 12px;
  background: linear-gradient(90deg, rgba(99,102,241,.18), rgba(167,139,250,.18));
  border-radius: 4px;
  z-index: -1;
}

.hero__sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
}

.hero__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 32px -16px rgba(15,23,42,.12);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero__form input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--primary);
  outline: none;
  min-width: 0;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.hero__form input::placeholder { color: #94A3B8; }
.hero__form input:hover { border-color: #CBD5E1; }
.hero__form input:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.hero__form .btn {
  height: 46px;
  padding: 0 22px;
  white-space: nowrap;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.hero__trust-icon {
  width: 18px; height: 18px;
  padding: 2px;
  background: linear-gradient(135deg, var(--green), #34D399);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(16,185,129,.3);
}

/* VISUAL kolom — gestapelde documenten */
.hero__col-visual {
  position: relative;
  height: 580px;
}

.hero-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stack__stamp {
  position: absolute;
  top: 4px; right: -10px;
  z-index: 10;
  background: linear-gradient(135deg, var(--green), #34D399);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 12px 28px -8px rgba(16,185,129,.5);
  transform: rotate(8deg);
  text-transform: uppercase;
}

/* Document basis */
.hero-doc {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Top kaart — webshop, volledig zichtbaar */
.hero-doc--1 {
  width: 380px;
  height: 480px;
  z-index: 3;
  box-shadow:
    0 40px 80px -24px rgba(15,23,42,.35),
    0 0 0 1px rgba(15,23,42,.05);
  transform: rotate(-2deg) translateY(-8px);
}
.hero-doc--1 .hero-doc__header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-doc--1 .hero-doc__dots { display: flex; gap: 5px; }
.hero-doc--1 .hero-doc__dots span {
  width: 9px; height: 9px; border-radius: 50%;
}
.hero-doc--1 .hero-doc__dots span:nth-child(1) { background: #FCA5A5; }
.hero-doc--1 .hero-doc__dots span:nth-child(2) { background: #FCD34D; }
.hero-doc--1 .hero-doc__dots span:nth-child(3) { background: #6EE7B7; }

.hero-doc--1 .hero-doc__body {
  padding: 28px 30px;
}
.hero-doc--1 .hero-doc__h {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -.015em;
}
.hero-doc--1 .hero-doc__company {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-doc--1 .hero-doc__section { margin-bottom: 18px; }
.hero-doc--1 .hero-doc__section strong {
  display: block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .02em;
}

/* Achterste kaarten — gestapeld, minder zichtbaar */
.hero-doc--2 {
  width: 320px;
  height: 420px;
  z-index: 2;
  box-shadow: 0 24px 50px -16px rgba(15,23,42,.25);
  transform: rotate(4deg) translate(40px, 20px);
  padding: 24px 26px;
}
.hero-doc--3 {
  width: 280px;
  height: 380px;
  z-index: 1;
  box-shadow: 0 16px 36px -12px rgba(15,23,42,.2);
  transform: rotate(-6deg) translate(-40px, 40px);
  padding: 22px 24px;
  opacity: .92;
}
.hero-doc--2 .hero-doc__title,
.hero-doc--3 .hero-doc__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin: 14px 0 18px;
  letter-spacing: -.01em;
}

/* Generieke styling voor tag + lines */
.hero-doc__tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.1));
  color: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero-doc__line {
  height: 6px;
  background: linear-gradient(90deg, var(--bg) 0%, var(--border) 100%);
  border-radius: 3px;
  margin-bottom: 8px;
}

/* Hover: subtiele animatie van de hele stack */
.hero__col-visual:hover .hero-doc--1 { transform: rotate(-1deg) translateY(-12px); }
.hero__col-visual:hover .hero-doc--2 { transform: rotate(5deg) translate(50px, 18px); }
.hero__col-visual:hover .hero-doc--3 { transform: rotate(-7deg) translate(-48px, 42px); }

/* Floating badges */
.hero-float {
  position: absolute;
  z-index: 5;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 16px 32px -8px rgba(15,23,42,.15),
    0 0 0 1px rgba(15,23,42,.04);
  white-space: nowrap;
}
.hero-float--top {
  top: 60px;
  left: -10px;
  animation: avg-float-a 6s ease-in-out infinite;
}
.hero-float--bottom {
  bottom: 80px;
  right: -10px;
  animation: avg-float-b 7s ease-in-out infinite;
}
@keyframes avg-float-a {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes avg-float-b {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}
.hero-float__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--green), #34D399);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.hero-float__icon { font-size: 16px; }

/* ════════════════════════════════════════════════════════════════════════
   FEATURES — premium genummerde cards
   ════════════════════════════════════════════════════════════════════════ */
.feat-section {
  padding: 96px 0;
  background: var(--white);
  position: relative;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feat-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all .3s ease;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.feat-card:hover {
  border-color: rgba(99,102,241,.2);
  transform: translateY(-4px);
  box-shadow:
    0 24px 56px -24px rgba(15,23,42,.18),
    0 0 0 1px rgba(99,102,241,.08);
}
.feat-card:hover::before { transform: scaleX(1); }

.feat-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: .08em;
  transition: color .25s;
}
.feat-card:hover .feat-card__num { color: var(--accent); }

.feat-card__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 22px;
  position: relative;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.08));
  color: var(--accent);
  box-shadow: 0 8px 20px -8px rgba(99,102,241,.25);
  transition: transform .3s ease;
}
.feat-card:hover .feat-card__icon {
  transform: scale(1.06) rotate(-3deg);
}
.feat-card__icon svg { width: 26px; height: 26px; }

/* Toon-varianten per icon */
.feat-card__icon[data-tone="green"] {
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(52,211,153,.08));
  color: var(--green);
  box-shadow: 0 8px 20px -8px rgba(16,185,129,.3);
}
.feat-card__icon[data-tone="blue"] {
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(96,165,250,.08));
  color: #3B82F6;
  box-shadow: 0 8px 20px -8px rgba(59,130,246,.3);
}
.feat-card__icon[data-tone="purple"] {
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(167,139,250,.08));
  color: #7C3AED;
  box-shadow: 0 8px 20px -8px rgba(124,58,237,.3);
}
.feat-card__icon[data-tone="orange"] {
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(251,191,36,.08));
  color: #F59E0B;
  box-shadow: 0 8px 20px -8px rgba(245,158,11,.3);
}
.feat-card__icon[data-tone="pink"] {
  background: linear-gradient(135deg, rgba(236,72,153,.12), rgba(244,114,182,.08));
  color: #EC4899;
  box-shadow: 0 8px 20px -8px rgba(236,72,153,.3);
}

.feat-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.015em;
  margin-bottom: 10px;
  line-height: 1.25;
}

.feat-card__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__title { max-width: 100%; }
  .hero__col-visual { height: 520px; max-width: 520px; margin: 0 auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero { padding: 48px 0 72px; }
  .hero__title { font-size: clamp(30px, 8vw, 42px); }
  .hero__form { grid-template-columns: 1fr; padding: 6px; }
  .hero__form .btn { width: 100%; justify-content: center; }
  .hero__col-visual { height: 420px; }
  .hero-doc--1 { width: 280px; height: 360px; }
  .hero-doc--1 .hero-doc__body { padding: 22px 24px; }
  .hero-doc--2 { width: 240px; height: 320px; }
  .hero-doc--3 { width: 210px; height: 290px; }
  .hero-float { display: none; }
  .feat-grid { grid-template-columns: 1fr; gap: 16px; }
  .feat-card { padding: 28px 24px; }
}

/* ── How it works ──────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.667% + 16px);
  right: calc(16.667% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.step__icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Audience grid ─────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.audience-card__icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.audience-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.audience-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── What's included ───────────────────────────────────────────────────── */
.included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.included__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.included__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.included__item-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: white;
}

.included__item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.included__item-desc {
  font-size: 13px;
  color: var(--muted);
}

/* ── Accordion ─────────────────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 8px; }

details.acc-item {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.section--gray details.acc-item,
.section:not(.section--dark):not(.section--dark-2) details.acc-item {
  border-color: var(--border);
  background: var(--white);
}

details.acc-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
details.acc-item summary::-webkit-details-marker { display: none; }

.section--gray details.acc-item summary,
.section:not(.section--dark):not(.section--dark-2) details.acc-item summary {
  color: var(--primary);
}

details.acc-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .2s;
  opacity: .7;
}
details.acc-item[open] summary::after {
  transform: rotate(45deg);
}

.acc-item__body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.section--gray .acc-item__body,
.section:not(.section--dark):not(.section--dark-2) .acc-item__body {
  color: var(--muted);
}

/* ── Article cards ─────────────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-card__thumb {
  height: 160px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.article-card__body { padding: 20px; flex: 1; }

.article-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.article-card__desc { font-size: 14px; color: var(--muted); }

/* ── CTA section ───────────────────────────────────────────────────────── */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.cta-section p {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 32px;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.avg-footer {
  background: var(--dark);
  color: #94A3B8;
  padding: 60px 0 32px;
}

.avg-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.avg-footer__logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.avg-footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.avg-footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.avg-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.avg-footer__links a {
  font-size: 14px;
  color: #94A3B8;
  transition: color .15s;
}
.avg-footer__links a:hover { color: var(--white); }

.avg-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Knowledge section (dark) ──────────────────────────────────────────── */
.knowledge-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Blog: heading family (Inter, geen serif) ─────────────────────────── */
:root {
  --serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ════════════════════════════════════════════════════════════════════════
   SINGLE POST — magazine layout
   ════════════════════════════════════════════════════════════════════════ */
.post-hero {
  padding: 72px 0 0;
  background:
    radial-gradient(ellipse at top right, rgba(167,139,250,.12) 0%, transparent 50%),
    linear-gradient(180deg, #FAFBFF 0%, #F4F1FF 100%);
  position: relative;
  overflow: hidden;
}

.post-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--white));
  pointer-events: none;
}

.post-hero__inner { position: relative; z-index: 1; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
  font-weight: 500;
}
.post-meta > * { display: inline-flex; align-items: center; gap: 8px; }
.post-meta > *:not(:first-child)::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--muted);
  border-radius: 50%;
  opacity: .6;
  margin-right: 6px;
}
.post-meta .post-cat::before { display: none; }

.post-cat {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(99,102,241,.1);
}

.post-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 28px;
  max-width: 880px;
}

.post-hero .lead {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 680px;
  font-weight: 400;
}

.post-hero__image {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  box-shadow:
    0 30px 60px -20px rgba(15,23,42,.35),
    0 0 0 1px rgba(15,23,42,.05);
  position: relative;
  z-index: 2;
}
.post-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 64px; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  z-index: 99;
  width: 0;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(99,102,241,.6);
}

.post-body {
  padding: 80px 0 100px;
  background: var(--white);
}

.post-content {
  font-size: 18px;
  line-height: 1.78;
  color: #334155;
  font-weight: 400;
}

/* Intro paragraph — wat groter, geen drop-cap */
.post-content > p:first-of-type {
  font-size: 20px;
  line-height: 1.7;
  color: var(--primary);
  font-weight: 400;
}

.post-content h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -.02em;
  margin: 64px 0 22px;
  line-height: 1.2;
  position: relative;
  padding-left: 22px;
}
.post-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  border-radius: 4px;
}

.post-content h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--primary);
  margin: 44px 0 14px;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.post-content p { margin-bottom: 24px; }

/* Custom lists */
.post-content ul,
.post-content ol {
  padding-left: 4px;
  margin-bottom: 28px;
  list-style: none;
}
.post-content ul li,
.post-content ol li {
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
}
.post-content ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  border-radius: 2px;
  transform: rotate(45deg);
}
.post-content ol { counter-reset: list-counter; }
.post-content ol li { counter-increment: list-counter; }
.post-content ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0; top: 3px;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--accent), #818CF8);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(99,102,241,.3);
}

.post-content strong { font-weight: 700; color: var(--primary); }
.post-content em      { font-style: italic; }

/* Animated underline links */
.post-content a {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(transparent 92%, rgba(99,102,241,.35) 92%);
  background-size: 100% 100%;
  background-position: 0 100%;
  transition: background-size .25s ease, color .15s;
  padding: 0 1px;
  font-weight: 500;
}
.post-content a:hover {
  color: var(--primary);
  background-image: linear-gradient(transparent 0%, rgba(167,139,250,.25) 0%);
}

.post-content blockquote {
  margin: 44px 0;
  padding: 32px 36px 32px 60px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
  border: none;
  border-radius: 16px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--primary);
  position: relative;
}
.post-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 90px;
  font-family: var(--serif);
  color: var(--accent);
  opacity: .3;
  line-height: 1;
}

.post-content img {
  margin: 36px 0;
  border-radius: 12px;
  box-shadow: 0 12px 28px -10px rgba(15,23,42,.18);
}

.post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 56px auto;
  max-width: 50%;
}

/* CTA block */
.post-cta {
  margin-top: 72px;
  padding: 52px 44px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 55%, #6D28D9 100%);
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px -16px rgba(99,102,241,.5),
    0 0 0 1px rgba(255,255,255,.1) inset;
}
.post-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.post-cta h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -.015em;
  position: relative;
}
.post-cta p {
  font-size: 16px;
  opacity: .9;
  margin: 0 auto 28px;
  max-width: 460px;
  position: relative;
}
.post-cta .btn {
  position: relative;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,.25);
}

/* Share buttons */
.post-share {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.post-share__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.post-share__buttons { display: flex; gap: 8px; }
.post-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.post-share__btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -4px rgba(99,102,241,.4);
}

/* ════════════════════════════════════════════════════════════════════════
   ARCHIVE — magazine grid
   ════════════════════════════════════════════════════════════════════════ */
.archive-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(ellipse at top left, rgba(167,139,250,.1) 0%, transparent 50%),
    linear-gradient(180deg, #FAFBFF 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.archive-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(99,102,241,.08);
}

.archive-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -.025em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.archive-hero p {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.6;
}

.archive-body { padding: 72px 0 100px; background: var(--white); }

/* Featured (first) post — full-width hero card */
.archive-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -24px rgba(15,23,42,.2),
    0 0 0 1px rgba(15,23,42,.04);
  transition: transform .25s, box-shadow .25s;
}
.archive-featured:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 80px -24px rgba(15,23,42,.28),
    0 0 0 1px rgba(15,23,42,.06);
}
.archive-featured__image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg);
}
.archive-featured__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.archive-featured:hover .archive-featured__image img { transform: scale(1.04); }

.archive-featured__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive-featured__cat {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(99,102,241,.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.archive-featured__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.archive-featured__title a { color: inherit; }
.archive-featured:hover .archive-featured__title { color: var(--accent); }
.archive-featured__excerpt {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.archive-featured__meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.archive-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: gap .2s;
}
.archive-featured:hover .archive-featured__cta { gap: 14px; }

/* Standard grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.archive-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  border: 1px solid transparent;
}
.archive-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 48px -20px rgba(15,23,42,.18),
    0 0 0 1px rgba(99,102,241,.1);
  border-color: rgba(99,102,241,.1);
}

.archive-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
  border-radius: 14px 14px 0 0;
  position: relative;
}
.archive-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(15,23,42,.15));
  opacity: 0;
  transition: opacity .25s;
}
.archive-card:hover .archive-card__image::after { opacity: 1; }
.archive-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.archive-card:hover .archive-card__image img { transform: scale(1.06); }

.archive-card__body {
  padding: 24px 24px 28px;
  background: var(--white);
}

.archive-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  background: rgba(99,102,241,.08);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.archive-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -.015em;
  transition: color .2s;
}
.archive-card__title a { color: inherit; }
.archive-card:hover .archive-card__title { color: var(--accent); }

.archive-card__excerpt {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-card__meta {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.archive-card__meta::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

/* Pagination */
.archive-body .nav-links,
.archive-body .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.archive-body .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.archive-body .page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.archive-body .page-numbers.current {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 12px -2px rgba(99,102,241,.4);
}


/* ════════════════════════════════════════════════════════════════════════
   BEROEP PAGINA — premium template
   ════════════════════════════════════════════════════════════════════════ */

/* HERO */
.bp-hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(167,139,250,.14) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(99,102,241,.08) 0%, transparent 50%),
    linear-gradient(180deg, #FAFBFF 0%, #F4F1FF 100%);
  position: relative;
  overflow: hidden;
}
.bp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(99,102,241,.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: .4;
  pointer-events: none;
}

.bp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.bp-hero__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.bp-hero__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 20px -8px rgba(99,102,241,.3);
  margin-right: 6px;
}
.bp-hero__tag {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(99,102,241,.08);
}
.bp-hero__tag--ghost {
  color: var(--muted);
  border-color: var(--border);
  background: rgba(255,255,255,.6);
  box-shadow: none;
}

.bp-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.bp-hero__lead {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.bp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bp-hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(99,102,241,.12);
}
.bp-hero__trust > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.bp-hero__trust .check {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

/* Mock document */
.bp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.bp-doc {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 32px 80px -20px rgba(15,23,42,.3),
    0 0 0 1px rgba(15,23,42,.04);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform .35s ease;
  position: relative;
}
.bp-doc:hover { transform: rotate(0); }

.bp-doc__header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bp-doc__dots { display: flex; gap: 5px; }
.bp-doc__dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
}
.bp-doc__dots span:nth-child(1) { background: #FCA5A5; }
.bp-doc__dots span:nth-child(2) { background: #FCD34D; }
.bp-doc__dots span:nth-child(3) { background: #6EE7B7; }
.bp-doc__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.bp-doc__body { padding: 26px 28px 38px; }
.bp-doc__h {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.bp-doc__h:not(:first-child) { margin-top: 22px; }
.bp-doc__line {
  height: 8px;
  background: linear-gradient(90deg, var(--bg), var(--border));
  border-radius: 4px;
  margin-bottom: 8px;
}
.bp-doc__stamp {
  position: absolute;
  bottom: 18px; right: 18px;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 6px 14px -4px rgba(99,102,241,.5);
}

/* BODY met sidebar */
.bp-body { padding: 72px 0 96px; background: var(--white); }

.bp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* Content typography (re-use post-content stijlen, eigen overrides) */
.bp-content {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}
.bp-content > p:first-of-type {
  font-size: 19px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.bp-content h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 56px 0 20px;
  position: relative;
  padding-left: 20px;
}
.bp-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 0.3em; bottom: 0.3em;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  border-radius: 4px;
}
.bp-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
  letter-spacing: -.015em;
}
.bp-content p { margin-bottom: 22px; }

.bp-content ul, .bp-content ol {
  padding-left: 4px;
  margin-bottom: 28px;
  list-style: none;
}
.bp-content ul li, .bp-content ol li {
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}
.bp-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 12px;
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  border-radius: 2px;
  transform: rotate(45deg);
}
.bp-content ol { counter-reset: bp-counter; }
.bp-content ol li { counter-increment: bp-counter; }
.bp-content ol li::before {
  content: counter(bp-counter);
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--accent), #818CF8);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(99,102,241,.3);
}
.bp-content strong { font-weight: 700; color: var(--primary); }
.bp-content a {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(transparent 92%, rgba(99,102,241,.3) 92%);
  background-size: 100% 100%;
  padding: 0 2px;
  transition: background-image .25s, color .15s;
  font-weight: 500;
}
.bp-content a:hover {
  color: var(--primary);
  background-image: linear-gradient(transparent 0%, rgba(167,139,250,.2) 0%);
}

/* SIDEBAR */
.bp-sidebar { position: sticky; top: 80px; }

.bp-sidebar__cta {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-radius: 16px;
  padding: 28px 26px;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow:
    0 20px 40px -16px rgba(99,102,241,.5),
    0 0 0 1px rgba(255,255,255,.1) inset;
  position: relative;
  overflow: hidden;
}
.bp-sidebar__cta-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.18);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.bp-sidebar__cta h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.bp-sidebar__cta p {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 18px;
  line-height: 1.55;
}
.bp-sidebar__cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
  padding: 13px 18px;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .2s;
}
.bp-sidebar__cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -4px rgba(0,0,0,.25);
}

.bp-sidebar__perks {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-sidebar__perks li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  padding: 0;
  margin: 0;
}
.bp-sidebar__perks li::before { display: none; }

/* Andere beroepen nav */
.bp-sidebar__nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.bp-sidebar__nav h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding: 0 4px;
}
.bp-sidebar__nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-sidebar__nav li {
  padding: 0;
  margin: 0;
}
.bp-sidebar__nav li::before { display: none; }
.bp-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s, transform .15s;
}
.bp-sidebar__nav a:hover {
  background: rgba(99,102,241,.06);
  color: var(--accent);
  transform: translateX(2px);
}
.bp-sidebar__nav a.is-active {
  background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(167,139,250,.12));
  color: var(--accent);
  font-weight: 700;
}
.bp-sidebar__nav .emoji {
  font-size: 17px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.bp-sidebar__all {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.bp-sidebar__all:hover { color: var(--primary); }

/* FAQ sectie — branche-specifiek */
.bp-faq {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
}
.bp-faq__head { text-align: center; margin-bottom: 48px; }
.bp-faq__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.bp-faq__head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.bp-faq__head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.bp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.bp-faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.bp-faq__item[open] {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.25);
}

.bp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -.005em;
  transition: color .15s;
}
.bp-faq__item summary::-webkit-details-marker { display: none; }
.bp-faq__item summary:hover { color: var(--accent); }

.bp-faq__q { flex: 1; }

.bp-faq__toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: 18px;
  transition: transform .25s, background .15s, color .15s;
}
.bp-faq__item[open] .bp-faq__toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.bp-faq__a {
  padding: 0 26px 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
}
.bp-faq__a p { margin-bottom: 12px; }
.bp-faq__a p:last-child { margin-bottom: 0; }
.bp-faq__a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero subtitel - "voorbeeld & sjabloon" italic */
.bp-hero h1 .bp-hero__sub {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
  letter-spacing: -.01em;
  margin-top: 8px;
  opacity: .9;
}

/* SEO content sectie */
.bp-seo {
  padding: 72px 0;
  background: linear-gradient(180deg, #FAFBFF 0%, var(--white) 100%);
  border-top: 1px solid var(--border);
}
.bp-seo__head {
  text-align: center;
  margin-bottom: 40px;
}
.bp-seo__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(99,102,241,.08);
  border-radius: 100px;
}
.bp-seo__head h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.022em;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto;
}
.bp-seo__content { font-size: 16px; }
.bp-seo__content > p:first-of-type {
  font-size: 18px;
  color: var(--primary);
  line-height: 1.65;
  font-weight: 400;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

/* BANNER CTA onderaan */
.bp-banner {
  padding: 0 0 80px;
  background: var(--white);
}
.bp-banner__inner {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, #1E293B 100%);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  flex-wrap: wrap;
  box-shadow: 0 24px 60px -20px rgba(15,23,42,.4);
  position: relative;
  overflow: hidden;
}
.bp-banner__inner::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(99,102,241,.25) 0%, transparent 60%);
  pointer-events: none;
}
.bp-banner__inner > div {
  flex: 1;
  min-width: 280px;
  position: relative;
}
.bp-banner__inner h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  color: var(--white);
}
.bp-banner__inner p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
}
.bp-banner__inner .btn { position: relative; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .bp-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .bp-hero__visual { max-width: 420px; margin: 0 auto; }
  .bp-layout { grid-template-columns: 1fr; gap: 48px; }
  .bp-sidebar { position: static; }
}

@media (max-width: 640px) {
  .bp-hero { padding: 56px 0 64px; }
  .bp-hero__actions .btn { width: 100%; justify-content: center; }
  .bp-banner__inner { padding: 36px 28px; flex-direction: column; align-items: flex-start; text-align: left; }
  .bp-banner__inner .btn { width: 100%; justify-content: center; }
}

/* ── Beroep overview grid ─────────────────────────────────────────────── */
.beroep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.beroep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow .18s, transform .18s, border-color .18s;
  text-decoration: none;
  display: block;
}
.beroep-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.beroep-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.beroep-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.beroep-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Lead paragraph ───────────────────────────────────────────────────── */
.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════════
   TABLE OF CONTENTS
   ════════════════════════════════════════════════════════════════════════ */
.post-toc {
  margin: 0 0 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: 14px;
}
/* Reset post-content ol+h2 styling binnen de TOC */
.post-content .post-toc__title {
  padding-left: 0;
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  border: 0;
}
.post-content .post-toc__title::before { display: none; }
.post-content .post-toc__list { counter-reset: toc-counter; padding: 0; margin: 0; }
.post-content .post-toc__list li {
  padding-left: 0;
  margin: 0;
  counter-increment: toc-counter;
}
.post-content .post-toc__list li::before {
  display: none;
}
.post-toc__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.post-toc__label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.post-toc__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.post-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
.post-toc__list li {
  counter-increment: toc-counter;
  margin: 0;
  padding: 0;
}
.post-toc__list li::before { display: none; }
.post-toc__list a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border-bottom: 1px dashed rgba(99,102,241,.15);
  transition: color .15s, padding-left .15s;
  text-decoration: none;
}
.post-toc__list a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  min-width: 26px;
  padding-top: 3px;
}
.post-toc__list a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.post-toc__list li:last-child a { border-bottom: none; }

.post-content h2[id],
.post-content h3[id] { scroll-margin-top: 90px; }

/* ════════════════════════════════════════════════════════════════════════
   AUTHOR CARD
   ════════════════════════════════════════════════════════════════════════ */
.post-author {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(135deg, #FAFBFF 0%, #F4F1FF 100%);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.post-author__avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  box-shadow: 0 8px 20px -6px rgba(99,102,241,.4);
}
.post-author__body { flex: 1; }
.post-author__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.post-author__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.post-author__bio {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════════
   PREV/NEXT POST NAVIGATION
   ════════════════════════════════════════════════════════════════════════ */
.post-nav-grid {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.post-nav-card {
  display: block;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .2s;
  text-decoration: none;
}
.post-nav-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 24px -12px rgba(99,102,241,.25);
  transform: translateY(-2px);
}
.post-nav-card__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.post-nav-card__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}
.post-nav-card--next { text-align: right; }

/* ════════════════════════════════════════════════════════════════════════
   HUB / OVERZICHTSPAGINA — beroepen
   ════════════════════════════════════════════════════════════════════════ */
.hub-hero {
  padding: 52px 0 44px;
  text-align: left;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: none;
}
.hub-hero__badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hub-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 760px;
  margin: 0 0 18px;
}

.hub-hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.hub-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hub section */
.hub-section {
  padding: 88px 0;
  background: var(--white);
}

.hub-section__head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hub-section__head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.hub-section__head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* Card grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.25);
  box-shadow:
    0 24px 48px -20px rgba(15,23,42,.18),
    0 0 0 1px rgba(99,102,241,.08);
}
.hub-card:hover::before { transform: scaleX(1); }

.hub-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hub-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.08));
  border-radius: 14px;
  transition: transform .25s ease;
}
.hub-card:hover .hub-card__icon { transform: scale(1.08) rotate(-3deg); }

.hub-card__tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 100px;
}

.hub-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -.015em;
  transition: color .2s;
}
.hub-card:hover .hub-card__title { color: var(--accent); }

.hub-card__intro {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: gap .25s ease;
}
.hub-card:hover .hub-card__cta { gap: 12px; }

/* Accent card (fallback "geen branche") */
.hub-card--accent {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(99,102,241,.4);
}
.hub-card--accent::before { display: none; }
.hub-card--accent .hub-card__icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.hub-card--accent .hub-card__title { color: var(--white); }
.hub-card--accent:hover .hub-card__title { color: var(--white); }
.hub-card--accent .hub-card__intro { color: rgba(255,255,255,.85); }
.hub-card--accent .hub-card__cta {
  color: var(--white);
  border-top-color: rgba(255,255,255,.2);
}
.hub-card--accent .hub-card__tag--white {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.hub-card--accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(99,102,241,.5);
}

/* Why section */
.hub-why {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
}
.hub-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hub-why__grid h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 14px 0 20px;
}
.hub-why__grid > div:first-child > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hub-why__list {
  list-style: none;
  padding: 0;
}
.hub-why__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.hub-why__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--green), #34D399);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-why__visual {
  position: relative;
}
.hub-why__card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow:
    0 24px 60px -20px rgba(15,23,42,.2),
    0 0 0 1px rgba(15,23,42,.04);
  transform: rotate(1.5deg);
  transition: transform .3s ease;
}
.hub-why__card:hover { transform: rotate(0); }

.hub-why__card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.hub-why__card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.hub-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.hub-compare th, .hub-compare td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hub-compare th {
  font-weight: 700;
  color: var(--primary);
  font-size: 13px;
}
.hub-compare td:first-child {
  color: var(--muted);
  font-weight: 500;
}
.hub-compare td:not(:first-child) {
  font-weight: 600;
  color: var(--primary);
}
.hub-compare tr:last-child th,
.hub-compare tr:last-child td { border-bottom: none; }

/* Final CTA */
.hub-cta {
  padding: 80px 0;
  background: var(--primary);
}
.hub-cta__inner {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 24px 60px -20px rgba(99,102,241,.5);
  position: relative;
  overflow: hidden;
}
.hub-cta__inner h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.hub-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .hub-why__grid { grid-template-columns: 1fr; gap: 40px; }
  .hub-hero__stats { gap: 32px; }
}

@media (max-width: 600px) {
  .hub-grid { grid-template-columns: 1fr; }
  .hub-hero { padding: 64px 0 48px; }
  .hub-cta__inner { padding: 44px 28px; }
}

/* ════════════════════════════════════════════════════════════════════════
   PAGE HERO + PROSE (over-ons, legal, etc.)
   ════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 72px 0 24px;
  background: linear-gradient(180deg, #FAFBFF 0%, var(--white) 100%);
  text-align: left;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

.page-body {
  padding: 40px 0 96px;
  background: var(--white);
}

/* Prose typografie — voor legal/over-ons */
.prose {
  font-size: 17px;
  line-height: 1.78;
  color: #334155;
}
.prose > p.lead,
.prose > .lead {
  font-size: 19px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.prose h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.018em;
  line-height: 1.25;
  margin: 56px 0 16px;
  position: relative;
  padding-left: 18px;
}
.prose h2::before {
  content: '';
  position: absolute;
  left: 0; top: 0.35em; bottom: 0.35em;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  border-radius: 4px;
}
.prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
  letter-spacing: -.01em;
}
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol {
  padding-left: 4px;
  margin-bottom: 24px;
  list-style: none;
}
.prose ul li, .prose ol li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 12px;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.prose ol { counter-reset: prose-c; }
.prose ol li { counter-increment: prose-c; }
.prose ol li::before {
  content: counter(prose-c);
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.prose strong { font-weight: 700; color: var(--primary); }
.prose em { font-style: italic; color: var(--muted); }
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
}
.prose a:hover { color: var(--primary); }

/* ════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════════════ */
.contact-hero {
  padding: 52px 0 44px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: none;
}
.contact-hero__badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.contact-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.contact-hero p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

.contact-body { padding: 56px 0 96px; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Formulier */
.contact-form-wrap h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.contact-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.5;
}
.contact-alert--success {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.3);
  color: #047857;
}
.contact-alert--error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.3);
  color: #B91C1C;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.contact-form__field .req { color: var(--accent); }

.contact-form__field input,
.contact-form__field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--primary);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 6px;
}

.contact-form__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.contact-form__note a { color: var(--accent); text-decoration: underline; }

/* Info kaarten */
.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-info__card {
  padding: 22px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-info__card:hover {
  border-color: rgba(99,102,241,.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.2);
}

.contact-info__icon {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.08));
  border-radius: 10px;
  margin-bottom: 14px;
}

.contact-info__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-info__card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.contact-info__card p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.contact-info__card p a:hover { text-decoration: underline; }

.contact-info__meta {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .04em;
}

.contact-info__card--accent {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 16px 32px -12px rgba(99,102,241,.4);
}
.contact-info__card--accent .contact-info__icon {
  background: rgba(255,255,255,.2);
}
.contact-info__card--accent h3 { color: var(--white); }
.contact-info__card--accent p,
.contact-info__card--accent p a { color: rgba(255,255,255,.92); }
.contact-info__card--accent .contact-info__meta { color: rgba(255,255,255,.85); }

.contact-info__card--ghost {
  background: var(--bg);
  border-color: transparent;
}

/* Captcha rekensom */
.contact-captcha {
  background: linear-gradient(135deg, #FAFBFF 0%, #F4F1FF 100%);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: 12px;
  padding: 16px 18px;
}
.contact-captcha label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.contact-captcha__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-captcha__question {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
}
.contact-captcha__question strong {
  font-weight: 800;
  color: var(--accent);
  background: var(--white);
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid rgba(99,102,241,.2);
  margin: 0 2px;
}
.contact-captcha input[type="text"] {
  max-width: 140px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* FAQ sectie onderaan contact page */
.contact-faq-section {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
  border-top: 1px solid var(--border);
}
.contact-faq-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.contact-faq-section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-faq-section__head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.022em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.contact-faq-section__head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.contact-faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.contact-faq-item[open] {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.25);
}
.contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -.005em;
  transition: color .15s;
}
.contact-faq-item summary::-webkit-details-marker { display: none; }
.contact-faq-item summary:hover { color: var(--accent); }
.contact-faq-item__q { flex: 1; }
.contact-faq-item__toggle {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: 17px;
  transition: transform .25s, background .15s, color .15s;
}
.contact-faq-item[open] .contact-faq-item__toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.contact-faq-item__a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
}

/* ════════════════════════════════════════════════════════════════════════
   SITEMAP PAGE
   ════════════════════════════════════════════════════════════════════════ */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.sitemap-col--wide { grid-column: 1 / -1; }
.sitemap-col h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 14px;
  padding: 0 0 10px;
  border-bottom: 2px solid var(--accent);
  letter-spacing: -.01em;
  display: inline-block;
}
.sitemap-col h2:first-child { margin-top: 0; }

.sitemap-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sitemap-col ul li {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
}
.sitemap-col ul li::before { display: none; }
.sitemap-col ul li:last-child { border-bottom: none; }
.sitemap-col ul li a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
  flex: 1;
}
.sitemap-col ul li a:hover { color: var(--accent); }
.sitemap-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .sitemap-grid { grid-template-columns: 1fr; gap: 24px; }
  .sitemap-col--wide { grid-column: auto; }
}
@media (max-width: 540px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   KENNISBANK — index (archive-avg_term)
   ════════════════════════════════════════════════════════════════════════ */
.kb-hero {
  padding: 52px 0 44px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.kb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: none;
}
.kb-hero__badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.kb-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.12;
  max-width: 720px;
  margin: 0 0 16px;
}
.kb-hero p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 26px;
  line-height: 1.6;
}

.kb-search {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 0 24px;
}
.kb-search input {
  flex: 1;
  padding: 0 18px;
  height: 50px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--primary);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.kb-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.kb-search .btn { height: 50px; }

.kb-hero__stats {
  display: inline-flex;
  gap: 22px;
  font-size: 13.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.kb-hero__stats strong { color: var(--primary); font-weight: 700; }

.kb-body { padding: 64px 0 80px; background: var(--white); }

/* Categorie navigatie (sticky pill bar) */
.kb-cat-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  padding: 16px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.kb-cat-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.kb-cat-nav__item em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}
.kb-cat-nav__item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(99,102,241,.3);
}

/* Sectie per categorie */
.kb-section {
  margin-bottom: 64px;
  scroll-margin-top: 90px;
}
.kb-section__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.kb-section__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.1));
  border-radius: 14px;
}
.kb-section__head h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.018em;
  margin: 0 0 4px;
}
.kb-section__head p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Grid van term-cards */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kb-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  text-decoration: none;
  transition: all .25s ease;
  overflow: hidden;
  position: relative;
}
.kb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.kb-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.25);
  box-shadow: 0 16px 32px -16px rgba(15,23,42,.16);
}
.kb-card:hover::before { transform: scaleX(1); }

.kb-card__body { padding: 22px 22px 24px; }

.kb-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  transition: color .2s;
}
.kb-card:hover .kb-card__title { color: var(--accent); }

.kb-card__def {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kb-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  transition: gap .25s ease;
}
.kb-card:hover .kb-card__cta { gap: 12px; }

.kb-card__cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.kb-card__icon { font-size: 28px; padding: 22px 0 0 22px; display: inline-block; }

/* Zoekresultaten */
.kb-search-results { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.kb-search-results h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.kb-search-results__count {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.kb-no-results {
  padding: 32px;
  background: var(--bg);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

/* Final CTA */
.kb-cta { padding: 64px 0 80px; background: var(--white); }
.kb-cta__inner {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-radius: 20px;
  padding: 56px 44px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 24px 60px -20px rgba(99,102,241,.5);
}
.kb-cta__inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.kb-cta__inner p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 26px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════════════════
   KENNISBANK — single term
   ════════════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════════════
   KENNISBANK — single term (sprankelende variant)
   ════════════════════════════════════════════════════════════════════════ */

/* HERO */
.term-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse at top right, rgba(167,139,250,.14) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(99,102,241,.08) 0%, transparent 55%),
    linear-gradient(180deg, #FAFBFF 0%, #F4F1FF 100%);
  position: relative;
  overflow: hidden;
}
.term-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(99,102,241,.07) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: .5;
  pointer-events: none;
}

.term-hero__inner { position: relative; max-width: 880px; }

.term-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.term-hero__icon {
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 28px -10px rgba(99,102,241,.3);
  flex-shrink: 0;
}
.term-hero__meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.term-hero__cat {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(99,102,241,.08);
  text-decoration: none;
  transition: all .15s;
}
.term-hero__cat:hover { background: var(--accent); color: var(--white); }
.term-hero__readtime {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.term-hero__readtime::before {
  content: '⏱'; font-size: 14px;
}

.term-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.028em;
  line-height: 1.05;
  margin-bottom: 28px;
}

/* Definitie-blok */
.term-definition {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 32px;
  margin-bottom: 32px;
  box-shadow:
    0 16px 40px -16px rgba(99,102,241,.18),
    0 0 0 1px rgba(99,102,241,.08);
  position: relative;
}
.term-definition::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  border-radius: 4px;
}
.term-definition__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.term-definition p {
  font-size: 19px;
  color: var(--primary);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* Inline quickfacts (hero) — strip horizontaal */
.term-quickfacts--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.term-quickfact {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: transform .2s, background .2s;
}
.term-quickfact:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.term-quickfact__icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.1));
  border-radius: 10px;
  flex-shrink: 0;
}
.term-quickfact > div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.term-quickfact__label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.term-quickfact__value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BODY layout: content + sidebar */
.term-body { padding: 64px 0 80px; background: var(--white); }

.term-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.term-main { min-width: 0; }
.term-content { }

/* Inline CTA na content */
.term-action {
  margin-top: 56px;
  padding: 36px 40px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--white);
  box-shadow: 0 24px 48px -16px rgba(99,102,241,.45);
  position: relative;
  overflow: hidden;
}
.term-action::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.term-action > div { flex: 1; min-width: 240px; position: relative; }
.term-action__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.term-action h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.015em;
}
.term-action p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.55;
}
.term-action .btn { position: relative; box-shadow: 0 8px 18px -4px rgba(0,0,0,.25); }

/* SIDEBAR */
.term-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.term-sidebar__block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.term-sidebar__head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.term-sidebar__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.term-sidebar__label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* TOC */
.term-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: term-toc;
}
.term-toc li { counter-increment: term-toc; }
.term-toc li::before { display: none; }
.term-toc a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px dashed rgba(99,102,241,.12);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  line-height: 1.35;
}
.term-toc a::before {
  content: counter(term-toc, decimal-leading-zero);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  padding-top: 2px;
  flex-shrink: 0;
}
.term-toc a:hover { color: var(--accent); padding-left: 4px; }
.term-toc li:last-child a { border-bottom: none; }

/* Quick facts in sidebar */
.term-facts-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.term-facts-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
}
.term-facts-card li::before { display: none; }
.term-facts-card__icon {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.08));
  border-radius: 10px;
  flex-shrink: 0;
}
.term-facts-card li > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.term-facts-card__label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.term-facts-card li strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

/* CTA sidebar */
.term-sidebar__cta {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-radius: 14px;
  padding: 24px 22px;
  color: var(--white);
  box-shadow: 0 16px 32px -12px rgba(99,102,241,.4);
}
.term-sidebar__cta-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.term-sidebar__cta h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: -.01em;
}
.term-sidebar__cta p {
  font-size: 13.5px;
  opacity: .9;
  margin-bottom: 16px;
  line-height: 1.5;
}
.term-sidebar__cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
  padding: 11px 18px;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.2);
}

/* ════════════════════════════════════════════════════════════════════════
   TERM FAQ
   ════════════════════════════════════════════════════════════════════════ */
.term-faq {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
  border-top: 1px solid var(--border);
}
.term-faq__head { text-align: center; margin-bottom: 40px; }
.term-faq__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.term-faq__head h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.018em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.term-faq__head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.term-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.term-faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.term-faq__item[open] {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.25);
}

.term-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -.005em;
  transition: color .15s;
}
.term-faq__item summary::-webkit-details-marker { display: none; }
.term-faq__item summary:hover { color: var(--accent); }
.term-faq__q { flex: 1; }

.term-faq__toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: 18px;
  transition: transform .25s, background .15s, color .15s;
}
.term-faq__item[open] .term-faq__toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.term-faq__a {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.term-faq__a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════════════════
   RELATED TERMS
   ════════════════════════════════════════════════════════════════════════ */
.term-related {
  padding: 64px 0 88px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.term-related__head {
  text-align: center;
  margin-bottom: 36px;
}
.term-related__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.term-related h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.018em;
  margin: 0;
}
.term-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.term-related__card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.term-related__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.term-related__card:hover {
  border-color: rgba(99,102,241,.25);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(99,102,241,.2);
}
.term-related__card:hover::before { transform: scaleY(1); }

.term-related__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.08));
  border-radius: 10px;
}
.term-related__card > div { flex: 1; min-width: 0; }
.term-related__cat {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.term-related__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color .15s;
}
.term-related__card:hover h3 { color: var(--accent); }
.term-related__card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.term-related__all {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
}
.term-related__all:hover { text-decoration: underline; }

@media (max-width: 1000px) {
  .term-layout { grid-template-columns: 1fr; gap: 40px; }
  .term-sidebar { position: static; }
}
@media (max-width: 700px) {
  .term-related__grid { grid-template-columns: 1fr; }
  .term-quickfacts--inline { grid-template-columns: 1fr; }
  .term-action { padding: 28px 24px; flex-direction: column; align-items: flex-start; text-align: left; }
  .term-action .btn { width: 100%; justify-content: center; }
  .term-definition { padding: 20px 22px; }
  .term-definition p { font-size: 17px; }
}


@media (max-width: 900px) {
  .kb-grid { grid-template-columns: 1fr 1fr; }
  .term-related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .kb-grid { grid-template-columns: 1fr; }
  .kb-search { flex-direction: column; }
  .kb-search .btn { width: 100%; justify-content: center; }
  .kb-section__head { flex-direction: column; gap: 12px; }
  .term-action { padding: 24px 22px; flex-direction: column; align-items: flex-start; }
  .term-action .btn { width: 100%; justify-content: center; }
}

/* ── Popi homepage links (verkochte plekken) ──────────────────────────── */
.popi-section {
  padding: 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.popi-section .container {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.popi-section a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 6px;
  transition: color .15s;
}
.popi-section a:hover { color: var(--accent); }

/* ── Zakelijk netwerk (uitklapbare partner-links in footer) ───────────── */
.avg-network {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin: 32px 0 24px;
  padding: 0;
}
.avg-network summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.avg-network summary::-webkit-details-marker { display: none; }
.avg-network__label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
}
.avg-network__hint {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.avg-network__icon {
  margin-left: auto;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  transition: transform .25s, background .15s;
}
.avg-network[open] .avg-network__icon {
  background: rgba(255,255,255,.18);
  color: var(--white);
  transform: rotate(45deg);
}

.avg-network__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 24px;
  padding: 8px 0 24px;
}
.avg-network__grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  border-bottom: 1px solid transparent;
}
.avg-network__grid a:hover {
  color: var(--white);
  padding-left: 4px;
}
.avg-network__grid a span {
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .avg-network__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .avg-network__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   HOME — Stappenplan (premium versie)
   ════════════════════════════════════════════════════════════════════════ */
.steps-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 14%;
  right: 14%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--accent) 0 6px, transparent 6px 14px);
  opacity: .35;
  z-index: 0;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  transition: all .3s ease;
  z-index: 1;
}
.step-card:hover {
  border-color: rgba(99,102,241,.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -24px rgba(15,23,42,.18), 0 0 0 1px rgba(99,102,241,.06);
}

.step-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 13px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: .08em;
  transition: color .25s;
}
.step-card:hover .step-card__num { color: var(--accent); }

.step-card__icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  color: var(--accent);
  margin-bottom: 22px;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}
.step-card:hover .step-card__icon {
  transform: scale(1.05) rotate(-3deg);
  border-color: var(--accent);
}
.step-card__icon svg { width: 28px; height: 28px; }
.step-card__icon[data-tone="accent"] {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.06));
  border-color: rgba(99,102,241,.25);
  color: var(--accent);
}
.step-card__icon[data-tone="purple"] {
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(167,139,250,.06));
  border-color: rgba(124,58,237,.25);
  color: #7C3AED;
}
.step-card__icon[data-tone="green"] {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(52,211,153,.06));
  border-color: rgba(16,185,129,.25);
  color: var(--green);
}

.step-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.015em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.step-card__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

.steps-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════════════
   HOME — Voor wie (audience grid)
   ════════════════════════════════════════════════════════════════════════ */
.audience-section {
  padding: 96px 0;
  background: var(--white);
}
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.aud-card {
  display: block;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.aud-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.aud-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.2);
  box-shadow: 0 16px 32px -16px rgba(15,23,42,.18);
}
.aud-card:hover::before { transform: scaleX(1); }

.aud-card__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.05));
  border-radius: 12px;
  margin-bottom: 14px;
  transition: transform .25s;
}
.aud-card:hover .aud-card__icon { transform: scale(1.08) rotate(-3deg); }

.aud-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.01em;
  margin-bottom: 6px;
  transition: color .15s;
}
.aud-card:hover h3 { color: var(--accent); }

.aud-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.aud-card--more {
  background: linear-gradient(135deg, #FAFBFF 0%, #F4F1FF 100%);
  border-color: rgba(99,102,241,.2);
}
.aud-card--more .aud-card__icon {
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}
.aud-card--more h3 { color: var(--accent); }

/* ════════════════════════════════════════════════════════════════════════
   HOME — Wat zit er in
   ════════════════════════════════════════════════════════════════════════ */
.incl-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
}
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.incl-text { padding-top: 8px; }
.incl-text .section__label { margin-bottom: 14px; }
.incl-text__title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 22px;
}
.incl-text__lead {
  font-size: 17px;
  color: var(--primary);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 400;
}
.incl-text__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.incl-text__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.incl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.incl-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .2s ease;
}
.incl-item:hover {
  border-color: rgba(99,102,241,.2);
  transform: translateX(4px);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.2);
}
.incl-item__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.06));
  color: var(--accent);
}
.incl-item__icon svg { width: 22px; height: 22px; }
.incl-item__icon[data-tone="green"]  { background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(52,211,153,.06)); color: var(--green); }
.incl-item__icon[data-tone="purple"] { background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(167,139,250,.06)); color: #7C3AED; }
.incl-item__icon[data-tone="orange"] { background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(251,191,36,.06)); color: #F59E0B; }
.incl-item__icon[data-tone="pink"]   { background: linear-gradient(135deg, rgba(236,72,153,.12), rgba(244,114,182,.06)); color: #EC4899; }
.incl-item__icon[data-tone="blue"]   { background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(96,165,250,.06)); color: #3B82F6; }

.incl-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.01em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.incl-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.incl-item__badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 100px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.incl-item__badge--required {
  background: rgba(99,102,241,.1);
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════════════
   HOME — Basisbegrippen (donkere sectie met kennisbank-tegels)
   ════════════════════════════════════════════════════════════════════════ */
.basis-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 800px 600px at 0% 0%, rgba(99,102,241,.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 100%, rgba(167,139,250,.12) 0%, transparent 60%),
    linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.basis-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
}

.basis-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
  position: relative;
}
.basis-head__main { }
.basis-head__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A78BFA;
  margin-bottom: 16px;
}
.basis-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 540px;
}
.basis-head p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 500px;
}
.basis-head__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #A78BFA;
  transition: gap .25s, color .15s;
}
.basis-head__cta:hover { gap: 12px; color: var(--white); }

.basis-head__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.basis-head__stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.basis-head__stats strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.basis-head__stats span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.basis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.basis-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.basis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.basis-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(167,139,250,.3);
  transform: translateY(-3px);
}
.basis-card:hover::before { transform: scaleX(1); }

.basis-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.basis-card__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(167,139,250,.15);
  border-radius: 12px;
}
.basis-card__tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #A78BFA;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(167,139,250,.12);
  border-radius: 100px;
}
.basis-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.basis-card__def {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.basis-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: #A78BFA;
  transition: color .15s;
}
.basis-card:hover .basis-card__cta { color: var(--white); }

/* ════════════════════════════════════════════════════════════════════════
   HOME — FAQ 2 kolommen
   ════════════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 96px 0;
  background: var(--white);
}
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.faq-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.faq-head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.25);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--primary);
  font-size: 15.5px;
  line-height: 1.4;
  letter-spacing: -.005em;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item__q { flex: 1; }
.faq-item__toggle {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: 17px;
  transition: transform .25s, background .15s, color .15s;
}
.faq-item[open] .faq-item__toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item__a {
  padding: 0 22px 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
}
.faq-item__a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section__footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section__footer p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════════════════
   HOME — Verder lezen (3 nieuwste blogs)
   ════════════════════════════════════════════════════════════════════════ */
.latest-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #FAFBFF 0%, var(--white) 100%);
}
.latest-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.latest-head__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.latest-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.022em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.latest-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}
.latest-head__all {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all .2s;
}
.latest-head__all:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(99,102,241,.4);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.latest-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all .3s ease;
}
.latest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.18);
  box-shadow: 0 24px 56px -24px rgba(15,23,42,.2);
}
.latest-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg), #EEF2FF);
}
.latest-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.latest-card:hover .latest-card__image img { transform: scale(1.06); }

.latest-card__body { padding: 22px 22px 24px; }

.latest-card__cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(99,102,241,.08);
  border-radius: 100px;
  margin-bottom: 12px;
}
.latest-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.012em;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color .15s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-card:hover .latest-card__title { color: var(--accent); }
.latest-card__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-card__meta {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1000px) {
  .basis-head { grid-template-columns: 1fr; gap: 32px; }
  .basis-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr 1fr; }
  .latest-grid > :last-child { grid-column: 1 / -1; }
  .latest-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .basis-grid { grid-template-columns: 1fr; }
  .basis-head__stats { grid-template-columns: repeat(3, 1fr); }
  .latest-grid { grid-template-columns: 1fr; }
  .latest-grid > :last-child { grid-column: auto; }
}

/* ════════════════════════════════════════════════════════════════════════
   HOME — SEO content sectie ("Algemene voorwaarden voorbeeld")
   ════════════════════════════════════════════════════════════════════════ */
.seo-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 700px 500px at 0% 0%, rgba(167,139,250,.06) 0%, transparent 60%),
    var(--white);
  position: relative;
}

.seo-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.seo-head__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(99,102,241,.08);
  border-radius: 100px;
}
.seo-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.seo-head h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.seo-head h2 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: linear-gradient(90deg, rgba(99,102,241,.18), rgba(167,139,250,.18));
  border-radius: 4px;
  z-index: -1;
}
.seo-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* Content kolom */
.seo-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.78;
  color: #334155;
}
.seo-content > p:first-of-type {
  font-size: 19px;
  color: var(--primary);
  line-height: 1.65;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.seo-content h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.018em;
  margin: 48px 0 14px;
  padding-left: 18px;
  position: relative;
  line-height: 1.25;
}
.seo-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: .3em; bottom: .3em;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  border-radius: 4px;
}
.seo-content p { margin-bottom: 18px; }
.seo-content strong { color: var(--primary); font-weight: 700; }
.seo-content em { font-style: italic; }
.seo-content a {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(transparent 92%, rgba(99,102,241,.3) 92%);
  background-size: 100% 100%;
  padding: 0 2px;
  transition: background-image .25s, color .15s;
  font-weight: 500;
}
.seo-content a:hover {
  color: var(--primary);
  background-image: linear-gradient(transparent 0%, rgba(167,139,250,.2) 0%);
}

/* Callout / pull-quote */
.seo-callout {
  margin: 36px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, #FAFBFF 0%, #F4F1FF 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  position: relative;
}
.seo-callout__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.seo-callout p {
  font-size: 16px;
  color: var(--primary);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.seo-callout p a {
  color: var(--accent);
  text-decoration: underline;
  background: none;
  padding: 0;
  text-underline-offset: 3px;
}

/* Quick-links onderaan */
.seo-links {
  max-width: 1100px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.seo-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: center;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.seo-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), #A78BFA);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.seo-link:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.2);
  box-shadow: 0 16px 32px -16px rgba(15,23,42,.18);
}
.seo-link:hover::before { transform: scaleY(1); }

.seo-link__icon {
  grid-row: 1 / 3;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.05));
  border-radius: 12px;
}
.seo-link__label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.seo-link strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.01em;
  transition: color .15s;
}
.seo-link:hover strong { color: var(--accent); }
.seo-link__arrow {
  grid-row: 1 / 3;
  font-size: 18px;
  font-weight: 700;
  color: var(--border);
  transition: color .25s, transform .25s;
}
.seo-link:hover .seo-link__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .seo-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .seo-links { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   HOME — Final CTA blok
   ════════════════════════════════════════════════════════════════════════ */
.home-cta {
  padding: 64px 0 96px;
  background: var(--white);
}
.home-cta__inner {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 32px 72px -24px rgba(99,102,241,.5),
    0 0 0 1px rgba(255,255,255,.1) inset;
}
.home-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: .4;
  pointer-events: none;
}
.home-cta__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  position: relative;
}
.home-cta__inner h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
  position: relative;
}
.home-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
  position: relative;
}
.home-cta__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.home-cta__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: .88;
  transition: opacity .15s, gap .25s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.home-cta__link:hover { opacity: 1; gap: 8px; }

/* Responsive */
@media (max-width: 1000px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .incl-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .aud-grid { grid-template-columns: 1fr; }
  .home-cta__inner { padding: 48px 28px; }
  .incl-item { grid-template-columns: auto 1fr; }
  .incl-item__badge { grid-column: 2; justify-self: start; }
}

/* ════════════════════════════════════════════════════════════════════════
   ADVERTEREN PAGINA
   ════════════════════════════════════════════════════════════════════════ */
.adv-hero {
  padding: 52px 0 44px;
  text-align: left;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.adv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  margin-bottom: 18px;
  box-shadow: none;
}
.adv-hero__badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.adv-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.12;
  max-width: 760px;
  margin: 0 0 18px;
}
.adv-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}
.adv-hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.adv-stats {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 56px;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.adv-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.adv-stats strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
}
.adv-stats span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* AUDIENCE */
.adv-audience { padding: 96px 0; background: var(--white); }
.adv-audience__head { text-align: center; margin-bottom: 48px; }
.adv-audience__head .section__label { display: inline-block; }
.adv-audience__head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.022em;
  line-height: 1.15;
  margin: 12px 0;
}
.adv-audience__head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.adv-audience__head em { color: var(--accent); font-style: italic; }

.adv-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.adv-audience__card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all .25s ease;
}
.adv-audience__card:hover {
  border-color: rgba(99,102,241,.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(15,23,42,.18);
}
.adv-audience__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.06));
  border-radius: 12px;
  margin-bottom: 16px;
}
.adv-audience__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.adv-audience__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* OPTIES */
.adv-options {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFF 100%);
}
.adv-options__head { text-align: center; margin-bottom: 56px; }
.adv-options__head .section__label { display: inline-block; }
.adv-options__head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.022em;
  line-height: 1.15;
  margin-top: 12px;
}

.adv-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-options__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
  margin: 0 auto;
}

.adv-option {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  overflow: hidden;
}
.adv-option::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.adv-option:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.25);
  box-shadow: 0 24px 56px -24px rgba(15,23,42,.2);
}
.adv-option:hover::before { transform: scaleX(1); }

.adv-option--featured {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(167,139,250,.06) 0%, transparent 60%),
    var(--white);
  border-color: rgba(99,102,241,.25);
  box-shadow: 0 20px 40px -20px rgba(99,102,241,.2);
}
.adv-option--featured::before {
  transform: scaleX(1);
  height: 4px;
}

.adv-option__badge {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(99,102,241,.3);
}

.adv-option__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: .08em;
}
.adv-option--featured .adv-option__num { display: none; }

.adv-option__icon {
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(167,139,250,.06));
  color: var(--accent);
  box-shadow: 0 8px 20px -8px rgba(99,102,241,.25);
  transition: transform .3s ease;
}
.adv-option:hover .adv-option__icon { transform: scale(1.06) rotate(-3deg); }
.adv-option__icon svg { width: 26px; height: 26px; }
.adv-option__icon[data-tone="purple"] {
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(167,139,250,.06));
  color: #7C3AED;
}
.adv-option__icon[data-tone="green"] {
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(52,211,153,.06));
  color: var(--green);
}

.adv-option h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.015em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.adv-option__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.adv-option__desc strong { color: var(--primary); font-weight: 700; }

.adv-option__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.adv-option__perks li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
}
.adv-option__perks li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 16px; height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), #34D399);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.adv-option__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: gap .25s, color .15s;
  text-decoration: none;
}
.adv-option__cta:hover { gap: 12px; color: var(--primary); }

/* WAAROM */
.adv-why { padding: 96px 0; background: var(--white); }
.adv-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.adv-why__text .section__label { margin-bottom: 14px; display: inline-block; }
.adv-why__text h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.022em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.adv-why__text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.adv-why__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adv-why__benefit {
  display: flex;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .2s;
}
.adv-why__benefit:hover {
  border-color: rgba(99,102,241,.2);
  transform: translateX(4px);
}
.adv-why__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), #34D399);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}
.adv-why__benefit h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.adv-why__benefit p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* CTA */
.adv-cta { padding: 64px 0 96px; background: var(--white); }
.adv-cta__inner {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, #1E293B 100%);
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 72px -24px rgba(15,23,42,.4);
}
.adv-cta__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(99,102,241,.25) 0%, transparent 60%);
  pointer-events: none;
}
.adv-cta__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.adv-cta__inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.022em;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
}
.adv-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
  position: relative;
}
.adv-cta__note {
  font-size: 13px !important;
  color: rgba(255,255,255,.55) !important;
  margin-top: 18px !important;
}

@media (max-width: 1000px) {
  .adv-audience__grid { grid-template-columns: repeat(2, 1fr); }
  .adv-options__grid { grid-template-columns: 1fr; }
  .adv-why__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .adv-audience__grid { grid-template-columns: 1fr; }
  .adv-stats { gap: 24px 32px; }
  .adv-stats strong { font-size: 26px; }
  .adv-cta__inner { padding: 48px 28px; }
}

/* ════════════════════════════════════════════════════════════════════════
   AUTHOR PAGE
   ════════════════════════════════════════════════════════════════════════ */
.author-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(ellipse 800px 600px at 100% 0%, rgba(167,139,250,.13) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 100%, rgba(99,102,241,.08) 0%, transparent 55%),
    linear-gradient(180deg, #FAFBFF 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.author-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(99,102,241,.06) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
}

.author-hero__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.author-hero__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.author-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 20px 40px -16px rgba(99,102,241,.4);
  border: 4px solid var(--white);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-avatar__initial {
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.author-hero__body { min-width: 0; }

.author-hero__role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.author-hero__body h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.author-hero__bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 560px;
}

.author-hero__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.author-hero__meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all .15s;
}
.author-hero__meta a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(99,102,241,.3);
}

/* Stats sidebar */
.author-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 32px -16px rgba(15,23,42,.1);
}
.author-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.author-stat:last-child { border-bottom: none; }
.author-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.author-stat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Posts section */
.author-posts {
  padding: 72px 0 96px;
  background: var(--white);
}
.author-posts__head {
  text-align: center;
  margin-bottom: 40px;
}
.author-posts__head h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.author-posts__head p {
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .author-hero__grid { grid-template-columns: 1fr; }
  .author-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .author-stat { border-bottom: none; border-right: 1px dashed var(--border); }
  .author-stat:last-child { border-right: none; }
}
@media (max-width: 600px) {
  .author-hero__main { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .author-avatar { margin: 0 auto; width: 100px; height: 100px; }
  .author-avatar__initial { font-size: 40px; }
  .author-hero__meta { justify-content: center; }
  .author-hero__bio { margin: 0 auto 22px; }
}

/* ════════════════════════════════════════════════════════════════════════
   MOBILE FIXES — overflow + truncation
   ════════════════════════════════════════════════════════════════════════ */
/* overflow-x: clip houdt sticky positioning werkend (anders dan hidden) */
html, body { overflow-x: clip; }
/* Fallback voor oudere browsers die clip niet kennen — alleen sticky body */
@supports not (overflow-x: clip) {
  body { overflow-x: hidden; }
  html { overflow-x: visible; }
}

@media (max-width: 780px) {
  /* Header CTA-knop kleiner op mobile */
  .avg-header__inner {
    gap: 12px;
  }
  .avg-logo {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60vw;
  }
  .avg-nav { display: none; }
  .avg-header__cta .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  /* CTA-knop nog korter op kleine schermen */
  .avg-logo { font-size: 12px; max-width: 50vw; }
  .avg-header__cta .btn {
    padding: 7px 12px;
    font-size: 12px;
  }
  .container { padding: 0 16px; }
  .container--narrow { padding: 0 16px; }

  /* Hero/h1 + grote titels niet uit het scherm laten lopen */
  h1, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero__title { font-size: clamp(26px, 7.5vw, 36px) !important; }
  .section__title, .seo-head h2, .faq-head h2, .basis-head h2,
  .latest-head h2, .home-cta__inner h2, .bp-hero h1,
  .term-hero h1, .kb-hero h1, .hub-hero h1,
  .archive-hero h1, .post-hero h1 {
    font-size: clamp(24px, 7vw, 32px) !important;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Breadcrumbs op smalle schermen niet over rand */
  .avg-breadcrumbs ol { font-size: 12px; }
  .avg-breadcrumbs li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60vw;
  }

  /* Hero stats / trust items netter wrappen */
  .hero__trust { gap: 12px; }
  .hero__trust-item { font-size: 13px; }
  .hero__form { padding: 6px; }

  /* Beroep hero icon + tags wrappen */
  .bp-hero__tags { gap: 8px; }
  .bp-hero__icon { width: 48px; height: 48px; font-size: 24px; }

  /* Section sub-text */
  .section__sub { font-size: 15px; }
}

/* ── Breadcrumbs ───────────────────────────────────────────────────────── */
.avg-breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.avg-breadcrumbs ol {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.avg-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.avg-breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: var(--border);
  font-weight: 600;
}
.avg-breadcrumbs a {
  color: var(--muted);
  font-weight: 500;
  transition: color .15s;
}
.avg-breadcrumbs a:hover { color: var(--accent); }
.avg-breadcrumbs li:last-child { color: var(--primary); font-weight: 600; }

/* ── Mobile responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .beroep-grid { grid-template-columns: repeat(3, 1fr); }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .archive-featured { grid-template-columns: 1fr; }
  .archive-featured__body { padding: 36px 32px; }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .included { grid-template-columns: 1fr; gap: 40px; }
  .knowledge-cols { grid-template-columns: 1fr; }
  .avg-footer__grid { grid-template-columns: 1fr 1fr; }
  .beroep-layout { grid-template-columns: 1fr; }
  .beroep-sidebar { position: static; }
  .beroep-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .post-author { flex-direction: column; gap: 16px; }
  .post-nav-grid { grid-template-columns: 1fr; }
  .post-nav-card--next { text-align: left; }
  .post-toc { padding: 22px 24px; }
  .post-cta { padding: 36px 24px; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .beroep-grid { grid-template-columns: 1fr 1fr; }
  .avg-footer__grid { grid-template-columns: 1fr; }
  .avg-nav { display: none; }
  .section { padding: 56px 0; }
  .hero__form { flex-direction: column; }
  .hero__form input, .hero__form select { width: 100%; flex: none; }
  .post-cta { padding: 28px 20px; }
}

/* ──────────────────────────────────────────────────────────────────────────
   PAGE HERO v2 — gedeelde editorial header voor hub/kennisbank/adverteren/contact
   ────────────────────────────────────────────────────────────────────────── */

.hub-hero, .kb-hero, .adv-hero, .contact-hero {
  padding: 56px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hub-hero::after, .kb-hero::after,
.adv-hero::after, .contact-hero::after {
  content: '';
  position: absolute;
  right: -180px; top: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(99,102,241,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hub-hero > .container,
.kb-hero > .container,
.adv-hero > .container,
.contact-hero > .container {
  position: relative;
  z-index: 1;
}

.ph-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.ph-main { min-width: 0; }

.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ph-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.ph-eyebrow__sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #CBD0DC;
}
.ph-eyebrow__muted {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  font-size: 12.5px;
}

.ph-title {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.ph-title em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ph-lead {
  font-size: clamp(15.5px, 1.4vw, 17px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 580px;
}

.ph-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Right panel ────────────────────────────────────── */
.ph-panel {
  background: linear-gradient(180deg, #FAFBFF 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px -16px rgba(15,23,42,.14);
  position: relative;
}
.ph-panel__title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ph-panel__title::before {
  content: '';
  width: 12px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.ph-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.ph-panel__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: border-color .15s, transform .15s, background .15s;
}
.ph-panel__list a:hover {
  border-color: var(--accent);
  background: #FAFBFF;
  transform: translateX(3px);
}
.ph-panel__icon {
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #F0F2FA;
  border-radius: 6px;
  flex-shrink: 0;
}
.ph-panel__foot {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.ph-panel__foot a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.ph-panel__foot a:hover { text-decoration: underline; }

/* Tariefkaart variant (adverteren) */
.ph-price__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  gap: 16px;
}
.ph-price__row:last-of-type { border-bottom: 0; padding-bottom: 4px; }
.ph-price__label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}
.ph-price__small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.ph-price__val {
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
  letter-spacing: -.01em;
}

/* Reply card variant (contact) */
.ph-reply {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
}
.ph-reply__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.ph-reply__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.ph-reply__name { font-weight: 700; color: var(--primary); font-size: 14px; }
.ph-reply__time { font-size: 12px; color: var(--muted); font-weight: 500; }
.ph-reply__msg { font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.55; }

/* Responsive */
@media (max-width: 880px) {
  .ph-grid { grid-template-columns: 1fr; gap: 36px; }
  .ph-panel { padding: 18px; }
  .hub-hero, .kb-hero, .adv-hero, .contact-hero { padding: 40px 0 36px; }
  .hub-hero::after, .kb-hero::after,
  .adv-hero::after, .contact-hero::after {
    right: -220px; top: -220px;
    width: 360px; height: 360px;
  }
}
