/* =====================================================
   MERKHANDBOEK — Merqo Creative Agency
   Web scroll layout v3.0
   ===================================================== */

@font-face {
  font-family: 'PolySans';
  src: url('/fonts/PolySansTrial-Median.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSansTRIAL-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSansTRIAL-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSansTRIAL-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

/* ── Variables ───────────────────────────────────── */
:root {
  /* Merqo brand colors — exact uit offerte-template */
  --green:       #22231F;   /* Merqo matzwart — nav, cover, donkere secties */
  --green-dark:  #1a1b17;   /* Merqo diepzwart */
  --green-mid:   #5F8F95;   /* Merqo teal — standaard accentkleur */
  --green-light: #d4e9eb;   /* Merqo lichte teal tint */
  --teal:        #5F8F95;   /* Merqo teal (primair) */
  --teal-light:  #93BCC1;   /* Merqo lichtblauw (secondair, labels) */
  --cream:       #EFEFEC;   /* Merqo greige — binnenpagina's */
  --white:       #F7F7F5;   /* Merqo off-white */
  --text:        #22231F;   /* Tekst in Merqo matzwart */
  --muted:       #5F6567;   /* Merqo muted grijs */
  --border:      #DDDDD8;   /* Merqo border grijs */
  --nav-w:       252px;
  --font-head:   'PolySans', 'Plus Jakarta Sans', sans-serif;
  --font-body:   'SeasonSans', 'Plus Jakarta Sans', sans-serif;
  --max-w:       880px;
  --section-pad: 96px 72px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ──────────────────────────────────── */
.mhb-nav {
  position: fixed;
  left: 0; top: 0;
  width: var(--nav-w);
  height: 100vh;
  background: var(--green);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow: hidden;
}

.nav-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.nav-logo-img {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  opacity: 0.85;
}

.nav-client {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.nav-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

.nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-chapter {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  padding: 18px 8px 6px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
}

.nav-item {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
  margin-bottom: 1px;
}
.nav-item:hover {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}
.nav-item.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  font-weight: 500;
}

.nav-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.nav-footer-label {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.nav-footer-agency {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}

/* ── Main content ────────────────────────────────── */
.mhb-main {
  margin-left: var(--nav-w);
}

/* ── Section base ────────────────────────────────── */
.mhb-section {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.mhb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.mhb-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhb-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.mhb-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}
.mhb-title--xl { font-size: 64px; line-height: 1.0; }
.mhb-title--lg { font-size: 52px; }
.mhb-title--sm { font-size: 28px; margin-bottom: 20px; }

.mhb-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.mhb-body:last-child { margin-bottom: 0; }

.mhb-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 400;
  font-family: var(--font-body);
}

/* ── Cover ───────────────────────────────────────── */
.mhb-section--cover {
  background: var(--green);
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: none;
}

.mhb-section--cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 65%, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cover-bg-number {
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: var(--font-head);
  font-size: 500px;
  font-weight: 500;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.cover-top {
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cover-logo {
  width: 96px;
  height: auto;
  opacity: 0.8;
}

.cover-datum-top {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

/* Cover meta top-right (versie + label) */
.cover-meta-top {
  text-align: right;
}

.cover-meta-versie {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93BCC1;
  margin-bottom: 4px;
}

.cover-meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* Cover bottom */
.cover-bottom {
  padding: 0 52px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Cover client bar (bottom) */
.cover-client-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cover-client-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cover-client-for {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}

.cover-client-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.cover-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cover-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.cover-title {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 500;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
}

.cover-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  margin-top: 10px;
}

.cover-divider {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 24px 0;
}

/* ── Voorwoord ───────────────────────────────────── */
.mhb-section--voorwoord {
  background: var(--green);
  min-height: 70vh;
  border-bottom: none;
}

.mhb-section--voorwoord .mhb-title {
  color: #fff;
}

.voorwoord-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.voorwoord-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.voorwoord-quote {
  border-left: 2px solid rgba(255,255,255,0.15);
  padding: 16px 20px;
}

.voorwoord-quote p {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  font-style: italic;
}

/* ── Inhoudsopgave ───────────────────────────────── */
.mhb-section--toc {
  background: var(--cream);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}

.toc-chapter-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.toc-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-family: var(--font-body);
}
.toc-item:last-child { border-bottom: none; }

.toc-num {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-left: 12px;
}

/* ── Chapter dividers ────────────────────────────── */
.mhb-section--chapter {
  background: var(--green-dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.chapter-bg-num {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 380px;
  font-weight: 500;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.chapter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.chapter-num-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.chapter-title {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.chapter-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  max-width: 520px;
  line-height: 1.75;
  font-family: var(--font-body);
  margin-bottom: 36px;
}

.chapter-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.chapter-toc-item {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chapter-toc-item::before {
  content: '';
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  display: inline-block;
}

/* ── Afsluiting ──────────────────────────────────── */
.mhb-section--afsluiting {
  background: var(--green);
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.af-bg-num {
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-family: var(--font-head);
  font-size: 300px;
  font-weight: 500;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.af-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.af-kop {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.af-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.af-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.af-link {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

/* ── Split layout ────────────────────────────────── */
.mhb-section--split {
  padding: 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 80vh;
  background: var(--white);
}

.split-img {
  overflow: hidden;
}

.split-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, #2e3a38 0%, var(--green) 100%);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  padding: 72px 60px;
  display: flex;
  align-items: flex-start;
}

.split-text-inner {
  max-width: 460px;
}

/* ── Two-column ──────────────────────────────────── */
.mhb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ── Quote ───────────────────────────────────────── */
.mhb-quote {
  border-left: 3px solid var(--accent);
  padding: 18px 24px;
  background: var(--accent-light);
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}

.mhb-quote p {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Bullets ─────────────────────────────────────── */
.mhb-bullets {
  list-style: none;
  margin-top: 16px;
}

.mhb-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.mhb-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 8px;
}

.mhb-bullets--white li {
  color: rgba(255,255,255,0.55);
}
.mhb-bullets--white li::before {
  background: rgba(255,255,255,0.3);
}

/* ── Kernwaarden ─────────────────────────────────── */
.kw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.kw-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px 22px;
  border: 1px solid var(--border);
}

.kw-naam {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 10px;
}

.kw-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.kp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.kp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Archetypes ──────────────────────────────────── */
.archetype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arch-card {
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--cream);
}

.arch-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.arch-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 10px;
}

.arch-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.arch-tov {
  font-size: 12px;
  color: var(--green-mid);
  font-style: italic;
  font-family: var(--font-body);
}

.combinatie-tag {
  display: inline-block;
  background: var(--green-light);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 28px;
}
.combinatie-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.combinatie-naam {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
}

/* ── Merkprincipes ───────────────────────────────── */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.matrix-cell {
  border-radius: 12px;
  padding: 22px 20px;
}

.matrix-cell--mo { background: var(--green); }
.matrix-cell--sh { background: var(--green-light); }
.matrix-cell--co { background: var(--cream); border: 1px solid var(--border); }
.matrix-cell--wo { background: #f5f5f3; border: 1px solid var(--border); }

.matrix-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.matrix-cell--mo .matrix-label { color: #fff; }

.matrix-sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.matrix-cell--mo .matrix-sub { color: rgba(255,255,255,0.4); }

.matrix-item {
  font-size: 13.5px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
  font-family: var(--font-body);
}
.matrix-cell--mo .matrix-item { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
.matrix-item:last-child { border-bottom: none; }

/* ── Pay-off ─────────────────────────────────────── */
.payoff-display {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.1;
  margin: 20px 0 24px;
}

.payoff-varianten {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.payoff-variant {
  border-radius: 10px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.payoff-variant-ctx {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.payoff-variant-tekst {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

/* ── Tone of Voice ───────────────────────────────── */
.tov-kernzin {
  background: rgba(95, 143, 149, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 18px 24px;
  margin-bottom: 24px;
}
.tov-kernzin p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.tov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tov-col {
  border-radius: 12px;
  padding: 24px;
}
.tov-col--wel { background: var(--green-light); }
.tov-col--niet { background: #fff5f5; border: 1px solid rgba(180,30,30,0.07); }

.tov-header {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.tov-check { color: var(--green-mid); }
.tov-cross { color: #b41e1e; }

.tov-item {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
  font-family: var(--font-body);
}
.tov-item:last-child { border-bottom: none; }

/* ── Positionering statement ─────────────────────── */
.pos-statement {
  background: var(--green);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 32px;
}

.pos-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pos-row:last-child { border-bottom: none; }

.pos-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

.pos-value {
  font-size: 15px;
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.5;
}

/* ── Waardepropositie ────────────────────────────── */
.wp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wp-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
}

.wp-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 500;
  color: rgba(34,35,31,0.07);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}

.wp-titel {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 10px;
}

.wp-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Doelgroepen ─────────────────────────────────── */
.dg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.dg-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
}

.dg-naam {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.dg-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.dg-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

/* ── Klantreis ───────────────────────────────────── */
.kr-timeline {
  position: relative;
  padding-left: 28px;
}

.kr-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--green-light);
}

.kr-fase {
  position: relative;
  margin-bottom: 28px;
}
.kr-fase:last-child { margin-bottom: 0; }

.kr-fase::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-light);
}

.kr-label {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 4px;
}

.kr-touch {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Kanaalstrategie ─────────────────────────────── */
.kanaal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.kanaal-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kanaal-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.kanaal-naam {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.3;
}

.kanaal-badge {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 2px;
}
.kanaal-badge--hoog      { background: var(--teal); color: #fff; }
.kanaal-badge--middel    { background: #F0E8D8; color: #6B5232; }
.kanaal-badge--secondair { background: var(--cream); color: var(--muted); }

.kanaal-doel {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

.kanaal-freq {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--cream);
  border-radius: 20px;
  padding: 3px 10px;
  width: fit-content;
}

.kanaal-aanpak {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.kanaal-aanpak li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.kanaal-aanpak li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
  top: 2px;
}

.kanaal-stat {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.kanaal-stat-getal {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.1;
}
.kanaal-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 3px;
}

/* ── Logo sectie ─────────────────────────────────── */
.logo-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.logo-preview {
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-preview--licht { background: var(--cream); border: 1px solid var(--border); }
.logo-preview--donker { background: var(--green); }

.logo-preview img {
  max-width: 150px;
  height: auto;
}

.logo-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.logo-do {
  background: var(--green-light);
  border-radius: 12px;
  padding: 20px 22px;
}
.logo-dont {
  background: #fff5f5;
  border: 1px solid rgba(180,30,30,0.07);
  border-radius: 12px;
  padding: 20px 22px;
}

.logo-do-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.logo-do .logo-do-label { color: var(--green-mid); }
.logo-dont .logo-do-label { color: #b41e1e; }

/* ── Kleuren ─────────────────────────────────────── */
.kleuren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 16px;
}

.kleur-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.kleur-swatch {
  height: 96px;
  width: 100%;
}

.kleur-info {
  padding: 14px 14px 16px;
  background: var(--white);
}

.kleur-naam {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.kleur-type-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.kleur-type-badge--primair { background: var(--green-light); color: var(--green); }
.kleur-type-badge--secundair { background: #f0f0ec; color: var(--muted); }

.kleur-codes {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.9;
}

/* ── Typografie ──────────────────────────────────── */
.typo-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.typo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
}

/* Card header */
.typo-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.typo-card-fontname {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.typo-card-name-main {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.05;
}

.typo-card-family {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.typo-card-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(95,143,149,.1);
  border: 1px solid rgba(95,143,149,.28);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-top: 6px;
}

.typo-card-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 28px;
}

/* Card body: specimen | divider | weights | overview */
.typo-card-body {
  display: grid;
  grid-template-columns: 160px 1px 160px 1fr;
  gap: 0 28px;
  align-items: start;
}

.typo-card-specimen-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 8px;
}

.typo-card-specimen {
  font-size: 108px;
  line-height: 1;
  color: var(--text);
  font-weight: 400;
}

.typo-card-divider-vert {
  background: var(--border);
  align-self: stretch;
  min-height: 80px;
}

.typo-col-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.typo-weight-row {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.typo-weight-row:last-child { border-bottom: none; }

.typo-card-alphabet {
  font-size: 13px;
  line-height: 2;
  color: var(--text);
  letter-spacing: 0.01em;
}

.typo-hierarchy {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.typo-hier-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.typo-hier-row:last-child { border-bottom: none; }

.typo-hier-label {
  font-size: 11px;
  color: var(--muted);
  min-width: 80px;
  font-family: var(--font-body);
  flex-shrink: 0;
}

/* ── Toepassingen ────────────────────────────────── */
.toep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.toep-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.toep-img {
  height: 180px;
  overflow: hidden;
}
.toep-img img { width: 100%; height: 100%; object-fit: cover; }

.toep-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--green-mid) 100%);
}

.toep-info {
  padding: 16px 18px;
}

.toep-naam {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.toep-body {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Social feed ─────────────────────────────────── */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 20px;
  max-width: 480px;
}

.social-feed-item {
  aspect-ratio: 1;
  background: var(--green-light);
  border-radius: 6px;
  overflow: hidden;
}
.social-feed-item img { width: 100%; height: 100%; object-fit: cover; }

.social-feed-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--green-mid) 100%);
}

/* ── Contact ─────────────────────────────────────── */
.mhb-section--contact {
  background: var(--green-dark);
  min-height: 60vh;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-logo {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.55;
}

.contact-left .mhb-title {
  color: #fff;
  margin-bottom: 14px;
}

.contact-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  line-height: 1.75;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.contact-item-val {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}

/* ── Utility ─────────────────────────────────────── */
.mhb-section--cream { background: var(--cream); }
.mhb-section--white { background: var(--white); }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }

/* ── Kernpunt callout ── */
.kernpunt {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 20px 0 28px;
}

.kernpunt-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.kernpunt-tekst {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

/* ── Markt stats grid ── */
.markt-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.markt-stat-block {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  border-top: 3px solid var(--accent);
}

.markt-stat-getal {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.markt-stat-label {
  font-size: 12px;
  color: var(--text-muted, #888);
  line-height: 1.4;
}

/* ── VPC vereenvoudigd ── */
.vpc-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.vpc-insight {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  border-top: 3px solid var(--accent);
}

.vpc-insight-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mt-lg { margin-top: 40px; }
.mhb-hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── Print ───────────────────────────────────────── */
@media print {
  .mhb-nav { display: none; }
  .mhb-main { margin-left: 0; }
  .mhb-section--cover { min-height: auto; padding: 60px; }
}

/* =====================================================
   UITBREIDINGEN v3.1
   Scroll animaties, progress bar, copy, combinaties
   ===================================================== */

/* ── Progress bar ────────────────────────────────── */
.mhb-progress {
  position: fixed;
  top: 0;
  left: var(--nav-w);
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 200;
}

.mhb-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  width: 0%;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Scroll animaties ────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.16s; }
[data-animate-delay="3"] { transition-delay: 0.24s; }
[data-animate-delay="4"] { transition-delay: 0.32s; }

/* ── HEX copy button ─────────────────────────────── */
.kleur-hex-copy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 2px 6px 2px 0;
  border-radius: 4px;
  transition: all 0.15s;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  user-select: none;
  position: relative;
}

.kleur-hex-copy:hover {
  color: var(--green);
}

.copy-icon {
  opacity: 0;
  font-size: 10px;
  transition: opacity 0.15s;
}

.kleur-hex-copy:hover .copy-icon {
  opacity: 1;
}

.kleur-hex-copy.copied {
  color: var(--green-mid);
}

.copy-feedback {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  font-family: var(--font-body);
}

.kleur-hex-copy.copied .copy-feedback {
  opacity: 1;
}

/* ── Kleurcombinaties ────────────────────────────── */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.combo-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.combo-preview {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.combo-preview-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.combo-preview-sub {
  font-family: var(--font-body);
  font-size: 11px;
  margin-top: 4px;
  text-align: center;
  opacity: 0.6;
}

.combo-info {
  background: var(--white);
  padding: 12px 14px;
}

.combo-naam {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.combo-gebruik {
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--font-body);
}

.combo-dots {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.combo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ── Tone of Voice voorbeelden ───────────────────── */
.tov-voorbeelden {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.tov-voorbeeld-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.tov-voorbeeld-situatie {
  background: var(--cream);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: var(--font-body);
  border-bottom: 1px solid var(--border);
}

.tov-voorbeeld-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tov-voorbeeld-col {
  padding: 18px 20px;
}

.tov-voorbeeld-col--goed {
  background: var(--white);
  border-right: 1px solid var(--border);
}

.tov-voorbeeld-col--slecht {
  background: #fdfafa;
}

.tov-voorbeeld-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tov-voorbeeld-col--goed .tov-voorbeeld-label { color: var(--green-mid); }
.tov-voorbeeld-col--slecht .tov-voorbeeld-label { color: #b41e1e; }

.tov-voorbeeld-tekst {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  font-family: var(--font-body);
  font-style: italic;
}

/* =====================================================
   MERQO ACCENTKLEUR — vast #5F8F95 teal
   ===================================================== */

:root {
  --accent:       #5F8F95;
  --accent-light: rgba(95, 143, 149, 0.10);
}

/* Alle elementen die de accentkleur van de klant overnemen */
.mhb-eyebrow                        { color: var(--accent); }
.mhb-bullets li::before             { background: var(--accent); }
.mhb-quote                          { border-left-color: var(--accent); }
.title-accent-word                  { color: var(--accent); }
.mhb-progress-bar                   { background: var(--accent); }
.kp-dot                             { background: var(--accent); }
.kw-naam                            { color: var(--accent); }
.tov-check                          { color: var(--accent); }
.tov-kernzin                        { border-left-color: var(--accent); }
.kr-fase::before                    { background: var(--accent); }
.kr-fase::before                    { box-shadow: 0 0 0 2px var(--accent-light); }
.kr-label                           { color: var(--accent); }
.arch-name                          { color: var(--accent); }
.combinatie-naam                    { color: var(--accent); }
.kleur-hex-copy:hover               { color: var(--accent); }
.kleur-hex-copy.copied              { color: var(--accent); }
.tov-voorbeeld-col--goed .tov-voorbeeld-label { color: var(--accent); }
.logo-do .logo-do-label             { color: var(--accent); }
.chapter-toc-item::before           { background: rgba(255,255,255,0.15); }

/* Cover brand logo (prominent, boven de titel) */
.cover-brand-logo {
  margin-bottom: 32px;
}
.cover-brand-logo img {
  height: 140px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

/* Cover client logo */
.cover-client-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.cover-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cover-separator {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ── Positioneringsmatrix (scatter plot) ─────────── */
.pos-matrix {
  position: relative;
  width: 100%;
  height: 360px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-top: 28px;
  overflow: hidden;
}

.pos-axis-h {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.pos-axis-v {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

.pos-label-as {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--font-body);
  background: var(--cream);
  padding: 2px 6px;
}

.pos-label-as--top    { top: 10px; left: 50%; transform: translateX(-50%); }
.pos-label-as--bottom { bottom: 10px; left: 50%; transform: translateX(-50%); }
.pos-label-as--left   { left: 10px; top: 50%; transform: translateY(-50%); }
.pos-label-as--right  { right: 10px; top: 50%; transform: translateY(-50%); }

.pos-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pos-dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.pos-dot--client .pos-dot-circle {
  width: 16px;
  height: 16px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pos-dot-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.85);
  padding: 1px 5px;
  border-radius: 3px;
}

.pos-dot--client .pos-dot-name {
  color: var(--accent);
  font-weight: 700;
}

/* ── Golden Circle ───────────────────────────────────── */
.gc-blocks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.gc-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--gc-accent);
}

.gc-block--why  { --gc-accent: var(--accent); }
.gc-block--how  { --gc-accent: color-mix(in srgb, var(--accent) 65%, #aaa); }
.gc-block--what { --gc-accent: color-mix(in srgb, var(--accent) 35%, #bbb); }

.gc-content {
  flex: 1;
}

.gc-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-accent);
  margin-bottom: 2px;
}

.gc-kernzin {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 5px;
  line-height: 1.4;
}

.gc-body {
  font-size: 13px;
  color: var(--text-muted, #888);
  margin: 0;
  line-height: 1.65;
}

.gc-punten {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gc-punten li {
  font-size: 13px;
  color: var(--text-muted, #888);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.gc-punten li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gc-accent, var(--accent));
  font-size: 11px;
  top: 1px;
}

.gc-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.gc-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Concentric rings */
.gc-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.gc-ring--what {
  width: 240px;
  height: 240px;
  background: color-mix(in srgb, var(--accent) 18%, #fff);
}

.gc-ring--how {
  width: 168px;
  height: 168px;
  background: color-mix(in srgb, var(--accent) 35%, #fff);
}

.gc-ring--why {
  width: 96px;
  height: 96px;
  background: var(--accent);
}

.gc-ring-label {
  position: absolute;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
}

/* WHY label — center of inner ring */
.gc-ring--why .gc-ring-label { color: #fff; }

/* HOW label — positioned in the HOW ring band */
.gc-ring-label--how {
  bottom: 14px;
  color: rgba(255,255,255,0.9);
}

/* WHAT label — positioned in the WHAT ring band */
.gc-ring-label--what {
  bottom: 10px;
  color: color-mix(in srgb, var(--accent) 80%, #333);
}

/* Lines + descriptions to the right */
.gc-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.gc-line-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gc-line {
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  background: var(--border);
  margin-top: 9px;
}

.gc-line-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.gc-line-text strong {
  color: var(--text);
  font-weight: 600;
}

.gc-toelichting {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
}

@media (max-width: 700px) {
  .gc-visual { flex-direction: column; }
  .gc-lines { align-items: center; text-align: center; }
  .gc-ring--what { width: 200px; height: 200px; }
  .gc-ring--how { width: 140px; height: 140px; }
  .gc-ring--why { width: 80px; height: 80px; }
}

/* =====================================================
   STRATEGISCHE TOOLS v4.0
   Value Proposition Canvas · Persona · Empathy Map
   Customer Journey Map
   ===================================================== */

/* ── Value Proposition Canvas ────────────────────── */
.vpc-canvas {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  min-height: 420px;
}

.vpc-side { flex: 1; }

.vpc-side-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}

/* Waardemap: vierkant */
.vpc-square {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  overflow: hidden;
}

.vpc-block {
  padding: 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vpc-block:last-child { border-bottom: none; }
.vpc-block:nth-child(2) { border-right: none; }
.vpc-block:first-child { grid-column: 1 / -1; border-right: none; background: rgba(95,143,149,0.05); }

.vpc-block-icon {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--accent);
}
.vpc-icon--reliever { color: #c0392b; }
.vpc-icon--creator  { color: #27ae60; }

.vpc-block-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}

.vpc-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vpc-block ul li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.vpc-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Klantprofiel: cirkel */
.vpc-arrow {
  font-size: 24px;
  color: var(--border);
  padding: 0 16px;
  flex-shrink: 0;
  margin-top: 24px;
}

.vpc-circle-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  overflow: hidden;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}

.vpc-segment {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vpc-segment--tasks {
  grid-column: 1 / -1;
  background: rgba(95,143,149,0.06);
  border-bottom: 1px solid var(--border);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}

.vpc-segment--pains {
  background: rgba(192,57,43,0.04);
  border-right: 1px solid var(--border);
}

.vpc-segment--gains {
  background: rgba(39,174,96,0.04);
}

.vpc-segment ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vpc-segment ul li {
  font-size: 12px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.4;
}

/* ── Persona Card ────────────────────────────────── */
.persona-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.persona-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 28px;
}

.persona-avatar {
  grid-row: 1 / 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.persona-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.persona-naam {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}

.persona-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}

.persona-citaat {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--accent);
  margin-top: 8px;
  line-height: 1.5;
}

.persona-cols {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.persona-col-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.persona-col-label--pos::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #27ae60; flex-shrink: 0; }
.persona-col-label--neg::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #c0392b; flex-shrink: 0; }

.persona-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.persona-col ul li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.persona-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}

/* ── Empathy Map ─────────────────────────────────── */
.em-map {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.em-map-title {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 24px;
}

.em-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.em-cell {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.em-cell:nth-child(2), .em-cell:nth-child(4) { border-right: none; }
.em-cell:nth-child(3), .em-cell:nth-child(4) { border-bottom: none; }

.em-cell-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.em-cell--think { background: rgba(95,143,149,0.06); }
.em-cell--think .em-cell-label { color: var(--accent); }
.em-cell--see   { background: rgba(95,143,149,0.03); }
.em-cell--see .em-cell-label { color: var(--accent); }
.em-cell--hear  .em-cell-label { color: var(--accent); }
.em-cell--saydo .em-cell-label { color: var(--accent); }

.em-cell p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Customer Journey Map ────────────────────────── */
.cj-wrap {
  margin-top: 32px;
  overflow-x: auto;
}

.cj-table {
  min-width: 700px;
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.cj-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.cj-row:last-child { border-bottom: none; }

.cj-row-label {
  flex-shrink: 0;
  width: 130px;
  padding: 16px 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.cj-cell {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  border-right: 1px solid var(--border);
  line-height: 1.5;
}
.cj-cell:last-child { border-right: none; }

.cj-row--labels { background: var(--accent); }
.cj-cell--fase {
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  border-right-color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
}

.cj-touch-badge {
  display: inline-block;
  background: rgba(95,143,149,0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(95,143,149,0.2);
}

.cj-row--curve { background: var(--cream); min-height: 100px; }
.cj-curve-wrap { flex: 1; padding: 12px 0; }
.cj-curve-svg { width: 100%; height: 80px; }

.cj-curve-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cj-curve-dot {
  fill: var(--white);
  stroke: var(--accent);
  stroke-width: 2;
}
.cj-dot--pos { fill: var(--accent); stroke: var(--accent); }
.cj-dot--neg { fill: #c0392b; stroke: #c0392b; }

.cj-cell--kans {
  font-size: 12px;
  color: var(--accent);
  font-style: italic;
}


/* ── SWOT grid ───────────────────────────────────── */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
  border: 2px solid var(--border);
}

.swot-cell {
  padding: 28px 24px;
  background: var(--white);
}
.swot-cell:nth-child(1),
.swot-cell:nth-child(2) {
  border-bottom: 2px solid var(--border);
}
.swot-cell:nth-child(odd) {
  border-right: 2px solid var(--border);
}

.swot-cell-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.swot-cell-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.swot-cell-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-body);
  color: var(--muted);
}

.swot-cell--sterk .swot-cell-letter { background: rgba(95,143,149,.15); color: var(--teal); }
.swot-cell--zwak  .swot-cell-letter { background: rgba(200,100,80,.12);  color: #c05a40; }
.swot-cell--kans  .swot-cell-letter { background: rgba(95,143,149,.08);  color: var(--teal); }
.swot-cell--bedreiging .swot-cell-letter { background: rgba(180,140,80,.12); color: #9a7030; }

.swot-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.swot-cell ul li {
  font-size: 13.5px;
  color: var(--text);
  font-family: var(--font-body);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.swot-cell ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}
.swot-cell--sterk ul li::before { background: var(--teal); }
.swot-cell--zwak  ul li::before { background: #c05a40; }
.swot-cell--kans  ul li::before { background: var(--teal-light); }
.swot-cell--bedreiging ul li::before { background: #9a7030; }

/* Max 3 items zichtbaar per SWOT-kwadrant */
.swot-cell ul li:nth-child(n+4) { display: none; }

/* ── Contentpijlers ─────────────────────────────── */
.pijler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.pijler-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pijler-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pijler-naam {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.pijler-omschrijving {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--font-body);
  margin: 0;
}

.pijler-voorbeelden-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-family: var(--font-body);
  margin-top: 4px;
}

.pijler-voorbeelden {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pijler-voorbeelden li {
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.pijler-voorbeelden li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
}

/* ── Typografie card — responsive ─────────────────── */
@media (max-width: 860px) {
  .typo-card-body {
    grid-template-columns: 120px 1px 1fr;
  }
  .typo-card-overview-col {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
}
@media (max-width: 600px) {
  .typo-card { padding: 22px; }
  .typo-card-body {
    grid-template-columns: 1fr;
  }
  .typo-card-divider-vert { display: none; }
  .typo-card-specimen { font-size: 80px; }
  .typo-card-weights-col,
  .typo-card-overview-col {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
}

.typo-hier-ex {
  color: var(--text);
  font-family: var(--font-body);
}

@media (max-width: 700px) {
  .swot-grid {
    grid-template-columns: 1fr;
  }
  .swot-cell:nth-child(odd) {
    border-right: none;
  }
  .swot-cell:nth-child(1),
  .swot-cell:nth-child(2),
  .swot-cell:nth-child(3) {
    border-bottom: 2px solid var(--border);
  }
  .pijler-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Leeswijzer ──────────────────────────────────── */
.leeswijzer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.leeswijzer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.leeswijzer-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(95,188,193,0.20);
  color: #93BCC1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.leeswijzer-titel {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.leeswijzer-body {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 700px) {
  .leeswijzer { grid-template-columns: 1fr; }
}

/* ── Zie ook chips ───────────────────────────────── */
.zie-ook {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.zie-ook-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: var(--font-body);
  margin-right: 4px;
}

.zie-ook-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.zie-ook-chip:hover {
  background: rgba(95,143,149,.10);
  border-color: var(--accent);
}
.zie-ook-chip::after {
  content: '→';
  font-size: 11px;
}

/* ── Archetype merge visual ──────────────────────── */
.archetype-merge {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.arch-merge-pole {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.arch-merge-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.arch-merge-tov {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
}

.arch-merge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 8px;
}

.arch-merge-line {
  width: 60px;
  height: 1.5px;
  background: var(--border);
}

.arch-merge-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.arch-merge-result {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-family: var(--font-body);
  text-align: center;
  max-width: 120px;
}

@media (max-width: 700px) {
  .archetype-merge { flex-direction: column; gap: 20px; }
  .arch-merge-line { width: 1.5px; height: 24px; }
  .arch-merge-center { flex-direction: row; }
}

/* ── ToV layout + stemdiagram ────────────────────── */
.tov-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .tov-layout { grid-template-columns: 1fr; }
}

.tov-diagram-wrap {
  position: sticky;
  top: 100px;
}

.tov-diagram-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-family: var(--font-body);
  margin-bottom: 14px;
}

.tov-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tov-diag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.tov-diag-label {
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
}

.tov-diag-label--top,
.tov-diag-label--bottom {
  text-align: center;
  width: 100%;
  display: block;
}

.tov-diag-label--side { flex-shrink: 0; }

.tov-diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.tov-diag-quad {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.tov-diag-quad span {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.3;
}

.tov-diag-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(95,143,149,.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tov-diag-dot-label {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-body);
  background: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ── Beeldtaal do/don't ──────────────────────────── */
.beeldtaal-dodont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.bd-col {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.bd-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--border);
}

.bd-col--do .bd-col-header { background: rgba(95,143,149,.08); color: var(--teal); }
.bd-col--dont .bd-col-header { background: rgba(192,90,64,.06); color: #c05a40; }

.bd-icon { font-size: 13px; }

.bd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.bd-item:last-child { border-bottom: none; }

.bd-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.bd-thumb--do {
  background: linear-gradient(135deg, #c8b89a 0%, #8a7560 100%);
}

.bd-thumb--dont {
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
  position: relative;
  overflow: hidden;
}
.bd-thumb--dont::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(192,90,64,.15) 4px,
    rgba(192,90,64,.15) 5px
  );
}

.bd-item span {
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.4;
}

@media (max-width: 700px) {
  .beeldtaal-dodont { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   DESIGN SYSTEM REFACTOR – Unified components
   ════════════════════════════════════════════════ */

/* Sub-eyebrow: replaces all inline-styled <p class="mhb-eyebrow" style="..."> */
.mhb-sub-eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: var(--font-body);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mhb-sub-eyebrow.mt { margin-top: 24px; }

/* Unified quote block – used by mhb-quote AND tov-kernzin */
.mhb-quote,
.tov-kernzin {
  background: rgba(95,143,149,.07);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 16px 0;
}
.mhb-quote p,
.tov-kernzin p {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* Unified intro/lead paragraph under section titles */
.mhb-intro {
  font-size: 15px;
  color: var(--muted);
  font-family: var(--font-body);
  max-width: 640px;
  margin: 0 0 36px 0;
  line-height: 1.65;
}

/* Narrow body text (for single-column descriptive sections) */
.mhb-body--narrow {
  max-width: 600px;
}

/* Unified bullet list – override all previous bullet variants */
.mhb-bullets,
.kw-bullets,
.tov-col .tov-item,
.matrix-item {
  font-family: var(--font-body);
}

/* Typography hierarchy classes (replace inline font-size styles) */
.typo-hier-display { font-size: 40px; font-weight: 400; line-height: 1.1; }
.typo-hier-h1      { font-size: 28px; font-weight: 500; }
.typo-hier-h2      { font-size: 20px; font-weight: 500; }
.typo-hier-body    { font-size: 15.5px; }
.typo-hier-small   { font-size: 13px; color: var(--muted); }
.typo-hier-label   { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* Sub-label under section heading (e.g. "Voorbeeldzinnen in de praktijk") */
.mhb-sub-label {
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--font-body);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

/* Contextversies label in pay-off section */
.mhb-section-divider-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: var(--font-body);
  margin: 0 0 16px 0;
}

/* ── Brand Kit download sectie ─────────────────────────────── */
.mhb-section--dark {
  background: var(--green);
  color: var(--cream);
}
.mhb-eyebrow--light { color: var(--accent); }
.mhb-title--light   { color: var(--cream); }
.mhb-intro--light   { color: rgba(239,239,236,.7); }

.bk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.bk-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  text-decoration: none;
  color: var(--cream);
  transition: background .2s, border-color .2s, transform .2s;
}
.bk-card:hover {
  background: rgba(255,255,255,.11);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.bk-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(95,143,149,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.bk-icon svg { width: 20px; height: 20px; }
.bk-card-body { flex: 1; min-width: 0; }
.bk-card-title { font-weight: 600; font-size: .95rem; }
.bk-card-meta  { font-size: .75rem; opacity: .55; margin-top: .15rem; }
.bk-card-arrow {
  font-size: 1.1rem;
  opacity: .4;
  transition: opacity .2s, transform .2s;
}
.bk-card:hover .bk-card-arrow { opacity: 1; transform: translateY(2px); }

.bk-download-all {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .2s, transform .2s;
}
.bk-download-all:hover { opacity: .85; transform: translateY(-1px); }

/* ── WOW FEATURES ───────────────────────────────────────────── */

/* Copy button */
.copy-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .5rem; border: 1px solid rgba(95,143,149,.3);
  border-radius: 4px; background: transparent; color: var(--accent);
  font-size: .7rem; cursor: pointer; transition: all .15s;
  font-family: inherit;
}
.copy-btn:hover { background: rgba(95,143,149,.1); border-color: var(--accent); }
.copy-btn.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Copy toast */
.copy-toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--green); color: var(--cream); padding: .6rem 1.4rem;
  border-radius: 100px; font-size: .85rem; font-weight: 600;
  opacity: 0; transition: all .3s; pointer-events: none; z-index: 9999;
  white-space: nowrap;
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Kleur hex row */
.kleur-hex-row {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .2rem;
}
.kleur-hex-val { font-family: 'Courier New', monospace; font-size: .8rem; }

/* Share button */
.section-share-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-left: .75rem; padding: .15rem .4rem;
  border: 1px solid transparent; border-radius: 4px;
  background: transparent; color: var(--muted); font-size: .65rem;
  cursor: pointer; opacity: 0; transition: all .2s; vertical-align: middle;
  font-family: inherit;
}
section:hover .section-share-btn,
.section-share-btn:focus { opacity: 1; border-color: rgba(95,143,149,.3); color: var(--accent); }
.section-share-btn svg { flex-shrink: 0; }

/* Progress bar */
.nav-progress {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .5rem;
}
.nav-progress-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(239,239,236,.35); margin-bottom: .5rem; }
.nav-progress-bar-wrap { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.nav-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; width: 0%; transition: width .8s cubic-bezier(.4,0,.2,1); }
.nav-progress-pct { font-size: .75rem; font-weight: 600; color: var(--accent); margin-top: .4rem; }

/* Live typografie preview */
.typo-live-wrap {
  background: rgba(95,143,149,.07); border: 1px solid rgba(95,143,149,.2);
  border-radius: 12px; padding: 1.5rem; margin-bottom: 2.5rem;
}
.typo-live-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .75rem; }
.typo-live-input {
  width: 100%; padding: .75rem 1rem; border: 1px solid rgba(95,143,149,.3);
  border-radius: 8px; font-size: 1rem; background: #fff; color: var(--green);
  font-family: inherit; outline: none; transition: border-color .2s; box-sizing: border-box;
}
.typo-live-input:focus { border-color: var(--accent); }
.typo-live-preview-area { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.typo-live-ex { transition: all .1s; line-height: 1.2; }
.typo-live-ex--display { font-size: 2.5rem; font-weight: 700; }
.typo-live-ex--h1 { font-size: 1.5rem; font-weight: 600; }
.typo-live-ex--body { font-size: 1rem; color: var(--muted); }

/* ToV generator */
.tov-generator {
  background: var(--cream); border: 1px solid rgba(34,35,31,.1);
  border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem;
}
.tov-gen-label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); font-weight: 600; margin-bottom: 1rem;
}
.tov-gen-inner { display: flex; gap: .75rem; align-items: flex-start; }
.tov-gen-input {
  flex: 1; padding: .75rem 1rem; border: 1px solid rgba(34,35,31,.15);
  border-radius: 8px; font-size: .9rem; font-family: inherit; resize: none;
  background: #fff; color: var(--green); outline: none; transition: border-color .2s;
}
.tov-gen-input:focus { border-color: var(--accent); }
.tov-gen-btn {
  padding: .75rem 1.25rem; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-weight: 600; font-size: .85rem;
  cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: opacity .2s, transform .15s;
}
.tov-gen-btn:hover { opacity: .85; transform: translateY(-1px); }
.tov-gen-btn:disabled { opacity: .5; cursor: wait; }
.tov-gen-result { margin-top: 1.25rem; padding: 1rem; background: #fff; border-radius: 8px; border-left: 3px solid var(--accent); }
.tov-gen-result-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.tov-gen-result-text { font-size: 1rem; font-style: italic; color: var(--green); line-height: 1.6; margin-bottom: .75rem; }
.tov-gen-copy { margin-top: .25rem; }

/* Onboarding overlay */
.onboarding-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(34,35,31,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .5s;
}
.onboarding-overlay.hidden { opacity: 0; pointer-events: none; }
.onboarding-card {
  background: var(--cream); border-radius: 20px; padding: 3rem 3.5rem;
  max-width: 480px; width: 90%; text-align: center;
  transform: translateY(0); transition: transform .5s;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.onboarding-overlay.hidden .onboarding-card { transform: translateY(30px); }
.onboarding-logo { font-size: 1rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.onboarding-title { font-size: 2rem; font-weight: 700; line-height: 1.2; color: var(--green); margin-bottom: 1rem; }
.onboarding-brand { color: var(--accent); }
.onboarding-body { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 2rem; }
.onboarding-btn {
  display: inline-block; padding: 1rem 2.5rem; background: var(--green);
  color: var(--cream); border: none; border-radius: 8px; font-size: 1rem;
  font-weight: 700; cursor: pointer; font-family: inherit; letter-spacing: .02em;
  transition: opacity .2s, transform .15s;
}
.onboarding-btn:hover { opacity: .85; transform: translateY(-2px); }
