/* =========================================================================
   Bedrijfsgezondheidscan — Arbo Concern huisstijl
   Display: Comfortaa (rond, vriendelijk)  ·  Body: Lato
   Palet: oranje #ec641a · teal #79c6c0 · cyaan #85cee4 · slate #4c505a
   ========================================================================= */

:root {
  /* merk-tokens (overschreven vanuit settings.branding door scan.js) */
  --c-primary: #ec641a;
  --c-primary-deep: #d4530d;
  --c-accent: #79c6c0;
  --c-accent2: #85cee4;
  --c-ink: #4c505a;
  --c-muted: #686c7c;
  --c-soft: #f7f7f7;

  /* stoplicht */
  --st-groen: #4bb3a6;
  --st-oranje: #ec641a;
  --st-rood: #6b6f7e;

  /* afgeleid */
  --bg: #fbfaf8;
  --card: #ffffff;
  --line: #ece9e4;
  --ink-soft: #5b5f6a;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 14px rgba(76, 80, 90, .06);
  --shadow: 0 22px 60px -28px rgba(76, 80, 90, .35);
  --shadow-lg: 0 40px 90px -40px rgba(214, 83, 13, .35);

  --font-display: 'Comfortaa', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --maxw: 1280px;
  /* leeskolom: de breedte die de merkbalk, vragen, poort en profiel delen,
     zodat de header altijd even breed is als de content eronder. */
  --content: 900px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- atmosfeer ---------- */
.bg-mesh {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(133, 206, 228, .35), transparent 60%),
    radial-gradient(55% 45% at 92% 6%, rgba(236, 100, 26, .14), transparent 55%),
    radial-gradient(50% 50% at 85% 95%, rgba(121, 198, 192, .28), transparent 60%),
    linear-gradient(180deg, #fbfaf8, #f4f7f6);
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.app { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }

.brandbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 10px;
  max-width: var(--content); margin-inline: auto; width: 100%;
  transition: max-width .4s var(--ease);
}
/* Brede schermen (intro, dataduik, tips, roos) gebruiken de volle breedte,
   zodat logo links en badge rechts uitlijnen met de content eronder. */
.brandbar--wide { max-width: var(--maxw); }
.brandbar__logo { display: inline-flex; }
.brandbar__logo img { height: 38px; width: auto; display: block; }
.brandbar__tag {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--c-muted); letter-spacing: .01em;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 255, 255, .6); backdrop-filter: blur(6px);
}

.stage { padding: clamp(20px, 5vw, 48px) 0 24px; min-height: 60vh; }

.legal {
  text-align: center; color: var(--c-muted); font-size: 12.5px;
  padding: 28px 0 36px; margin: 0;
}

/* ---------- schermen + transitie ---------- */
.screen { display: none; }
.screen.is-active { display: block; animation: screen-in .5s var(--ease) both; }
@keyframes screen-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- typografie ---------- */
/* text-wrap: balance verdeelt koppen evenwichtig over de regels
   (geen volle regel met één los woord eronder). */
.display {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 7vw, 72px); line-height: 1.04;
  letter-spacing: -.02em; color: var(--c-ink); margin: 0 0 18px;
  text-wrap: balance;
}
.display--sm { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 12px; }
.accenttext { color: var(--c-primary); }
h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--c-ink); text-wrap: balance; }
/* text-wrap: pretty voorkomt weeswoorden onderaan lopende tekst. */
.lead { font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-soft); max-width: 60ch; text-wrap: pretty; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .02em;
  color: var(--c-primary-deep); text-transform: none; margin: 0 0 18px;
  background: rgba(236, 100, 26, .08); padding: 7px 14px; border-radius: 999px;
}
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary); box-shadow: 0 0 0 0 rgba(236, 100, 26, .5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(236, 100, 26, 0); } 100% { box-shadow: 0 0 0 0 rgba(236, 100, 26, 0); } }

.pill {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 12.5px; padding: 5px 13px; border-radius: 999px;
  background: var(--c-soft); color: var(--c-muted);
}
.pill--accent { background: rgba(121, 198, 192, .22); color: #2f7a73; }

/* ---------- kaarten ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3.5vw, 38px);
  box-shadow: var(--shadow-sm);
}

/* ---------- knoppen ---------- */
.btn {
  --pad: 13px 22px;
  appearance: none; border: 0; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: var(--pad); border-radius: 13px; line-height: 1;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn--lg { --pad: 17px 30px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-deep));
  color: #fff; box-shadow: 0 14px 28px -12px rgba(214, 83, 13, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(214, 83, 13, .75); }
.btn--ghost {
  background: #fff; color: var(--c-ink); border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--c-accent); color: #2f7a73; transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(133, 206, 228, .7); outline-offset: 2px; }

/* ===================== 1. INTRO ===================== */
#screen-intro.is-active { display: grid; }
.intro {
  /* in grid samen met art */
}
#screen-intro {
  grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 5vw, 60px); align-items: center;
}
.intro__cta { margin: 26px 0 22px; }
.intro__assure { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.intro__assure li {
  position: relative; padding-left: 26px; font-weight: 600; font-size: 14.5px; color: var(--ink-soft);
}
.intro__assure li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--c-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11L3.5 8l1-1 2 2 4.5-4.5 1 1z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* intro illustratie: zwevende gauge */
.intro__art { display: flex; justify-content: center; }
.gauge {
  position: relative; width: min(360px, 80vw); aspect-ratio: 1;
  display: grid; place-items: center;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-12px); } }
.gauge__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from -120deg, var(--st-rood) 0 18%, var(--c-primary) 18% 52%, var(--c-accent) 52% 100%);
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 57%);
  mask: radial-gradient(circle, transparent 56%, #000 57%);
  opacity: .9; box-shadow: var(--shadow-lg);
}
.gauge__core {
  width: 56%; aspect-ratio: 1; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.gauge__emoji { font-size: clamp(54px, 12vw, 92px); }
.gauge__chip {
  position: absolute; font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  background: #fff; color: var(--c-ink); padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.gauge__chip--1 { top: 6%; left: -6%; animation: float 5s ease-in-out infinite .4s; }
.gauge__chip--2 { bottom: 10%; right: -4%; animation: float 5.5s ease-in-out infinite .8s; }

/* ===================== 2/8. VRAAG ===================== */
.qhead { max-width: var(--content); margin: 0 auto 18px; }
.qhead__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.qhead__count { font-weight: 700; font-size: 14px; color: var(--c-muted); }
.progress { height: 8px; background: #eceae6; border-radius: 999px; overflow: hidden; }
.progress__bar {
  height: 100%; width: 6%; border-radius: 999px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  transition: width .5s var(--ease);
}
.qcard { max-width: var(--content); margin: 0 auto; }
.qcard.pop { animation: pop .4s var(--ease) both; }
@keyframes pop { from { opacity: .4; transform: translateY(10px) scale(.99); } to { opacity: 1; transform: none; } }
.qtheme {
  font-family: var(--font-display); font-weight: 600; color: var(--c-accent);
  color: #2f7a73; font-size: 14px; margin: 0 0 8px;
}
.qtext { font-size: clamp(20px, 3vw, 28px); line-height: 1.25; margin: 0 0 24px; text-wrap: balance; }
.answers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.answer {
  --i: 0;
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 16px; cursor: pointer; min-height: 70px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--c-ink);
  transition: border-color .18s, background .18s, transform .18s var(--ease);
  animation: ans-in .4s var(--ease) both; animation-delay: calc(var(--i) * 40ms);
}
@keyframes ans-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.answer__dot {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #d7d3cc; transition: all .18s; position: relative;
}
.answer:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.answer.is-selected { border-color: var(--c-primary); background: rgba(236, 100, 26, .06); }
.answer.is-selected .answer__dot {
  border-color: var(--c-primary); background: var(--c-primary);
  box-shadow: inset 0 0 0 3px #fff;
}
.answer--na { opacity: .92; }
.answer--na .answer__label { color: var(--c-muted); font-style: italic; }

.qprivacy { margin: 18px 0 0; font-size: 13px; color: var(--c-muted); }
.qnav { display: flex; justify-content: space-between; gap: 14px; max-width: var(--content); margin: 22px auto 0; }
.qnav--center { justify-content: center; }
.shake { animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-4px); } }

/* ===================== 3. LEAD-POORT ===================== */
.gate { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 56px); align-items: start; max-width: var(--content); margin-inline: auto; }
.gate__intro { padding-top: 6px; }
.gate__intro .pill--accent { display: inline-block; margin-bottom: 18px; }
.gate__intro .display { margin-bottom: 14px; }
.gate__intro .lead { max-width: 36ch; }
.gate__bullets { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.gate__bullets li {
  position: relative; padding-left: 30px; font-weight: 600; font-size: 15px; color: var(--ink-soft);
}
.gate__bullets li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--c-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11L3.5 8l1-1 2 2 4.5-4.5 1 1z'/%3E%3C/svg%3E") center/13px no-repeat;
}
/* formulierkaart: drijvend, met gekleurde accentrand bovenaan */
.gate__form { position: relative; overflow: hidden; padding: clamp(24px, 3vw, 36px); border-radius: 24px; box-shadow: var(--shadow); }
.gate__form::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent2) 45%, var(--c-primary)); }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 13.5px; letter-spacing: .01em; color: var(--c-ink); }
.req { color: var(--c-primary); }
.field input, .field select {
  font-family: var(--font-body); font-size: 16px; color: var(--c-ink);
  min-height: 50px; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 13px;
  background: #fcfcfb; transition: border-color .16s, box-shadow .16s, background .16s;
}
.field input::placeholder { color: #b7bac2; }
.field input:hover, .field select:hover { border-color: #d8dbd6; }
.field input:focus, .field select:focus {
  outline: 0; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px rgba(133, 206, 228, .28);
}
.field__err { margin: 0; font-size: 12.5px; color: #c5421f; min-height: 0; }
.field__err:not(:empty) { min-height: 16px; }
.field--check { grid-column: 1 / -1; }
.check { display: grid; grid-template-columns: 24px 1fr; align-items: start; column-gap: 12px; cursor: pointer; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); background: var(--c-soft); border: 1px solid var(--line); border-radius: 13px; padding: 13px 15px; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__label { line-height: 1.5; }
.check__box {
  flex: none; width: 24px; height: 24px; border-radius: 8px; border: 2px solid #cfd3cf;
  margin-top: calc((1.5em - 24px) / 2); transition: all .15s; background: #fff;
}
.check input:checked + .check__box {
  background: var(--c-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11L3.5 8l1-1 2 2 4.5-4.5 1 1z'/%3E%3C/svg%3E") center/16px no-repeat;
  border-color: var(--c-accent);
}
.check input:focus-visible + .check__box { box-shadow: 0 0 0 4px rgba(133, 206, 228, .35); }
.gate__form .btn--block { margin-top: 18px; }
.gate__avg { font-size: 12.5px; line-height: 1.5; color: var(--c-muted); margin: 16px 0 0; }
.gate__avg a { color: var(--c-primary-deep); font-weight: 700; }
.gate__fineprint { display: flex; align-items: center; justify-content: center; gap: 7px; text-align: center; font-size: 12px; color: var(--c-muted); margin: 14px 0 0; }
.gate__fineprint::before { content: ""; width: 13px; height: 14px; flex: none; background: var(--c-muted); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a5 5 0 0 0-5 5v3H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1V6a5 5 0 0 0-5-5zm3 8H9V6a3 3 0 0 1 6 0z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a5 5 0 0 0-5 5v3H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1V6a5 5 0 0 0-5-5zm3 8H9V6a3 3 0 0 1 6 0z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ===================== 4. PROFIEL (resultaat-hero) ===================== */
.result { max-width: 600px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.result__badge {
  position: relative; width: 96px; height: 96px; border-radius: 28px;
  display: grid; place-items: center; margin-bottom: 20px;
  animation: pop .6s var(--ease) both;
}
.result__badge.is-groen { background: linear-gradient(150deg, #e7f7f3, #cdeee7); box-shadow: 0 20px 46px -22px rgba(75, 179, 166, .6); }
.result__badge.is-oranje { background: linear-gradient(150deg, #fdeee3, #fbdcc6); box-shadow: 0 20px 46px -22px rgba(236, 100, 26, .5); }
.result__badge.is-rood { background: linear-gradient(150deg, #eef0f3, #dfe2e8); box-shadow: 0 20px 46px -22px rgba(107, 111, 126, .45); }
.result__icon { font-size: 46px; line-height: 1; }
.result__kicker { font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--c-muted); margin: 0 0 6px; }
#profileName { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.08; margin-bottom: 12px; }
.result__text { margin: 0 auto 26px; font-size: 16.5px; }
.result__scores { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; max-width: 540px; margin: 0 auto 30px; }
.scorechip { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm); text-align: left; animation: ans-in .5s var(--ease) both; }
.scorechip:nth-child(2) { animation-delay: .08s; }
.scorechip__top { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; }
.scorechip__top b { margin-left: auto; font-family: var(--font-display); font-size: 22px; color: var(--c-ink); }
.scorechip .bar { height: 9px; }
.dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.dot--groen { background: var(--st-groen); }
.dot--oranje { background: var(--st-oranje); }
.dot--rood { background: var(--st-rood); }
.result__note { margin: 26px auto 0; max-width: 46ch; font-size: 13.5px; line-height: 1.6; color: var(--c-muted); }

/* ---------- mobiel voor poort + resultaat ---------- */
@media (max-width: 640px) {
  .gate__intro .lead { max-width: none; }
  .gate__bullets { gap: 9px; }
  .formgrid { gap: 14px; }
  .result__scores { grid-template-columns: 1fr; gap: 12px; }
  .result__badge { width: 104px; height: 104px; border-radius: 30px; margin-bottom: 18px; }
  .result__icon { font-size: 48px; }
}

/* ===================== 5. DATADUIK ===================== */
.bars { display: grid; gap: 16px; margin: 26px 0; }
.barrow {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; transition: border-color .18s, transform .18s var(--ease), box-shadow .2s;
}
.barrow:hover { border-color: var(--c-accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.barrow__head { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-display); font-weight: 600; margin-bottom: 11px; }
.barrow__pct { font-size: 20px; }
.bar { height: 14px; background: #ecece9; border-radius: 999px; overflow: hidden; }
.bar--lg { height: 18px; }
.bar__fill { height: 100%; width: 0; border-radius: 999px; transition: width .9s var(--ease); background: var(--c-primary); }
.bar__fill--groen { background: linear-gradient(90deg, #6fc3b8, var(--st-groen)); }
.bar__fill--oranje { background: linear-gradient(90deg, #f4853f, var(--st-oranje)); }
.bar__fill--rood { background: linear-gradient(90deg, #868a98, var(--st-rood)); }
.barrow__hint { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--c-primary-deep); }
.data__summary { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.data__summary p { margin: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  padding: 7px 15px; border-radius: 999px; color: #fff;
}
.badge--groen { background: var(--st-groen); }
.badge--oranje { background: var(--st-oranje); }
.badge--rood { background: var(--st-rood); }

/* ===================== 6. THEMA-DETAIL ===================== */
.detail__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.detail__head h2 { margin: 0; }
.detail__body { margin: 22px 0 0; }
.detail { max-width: 820px; margin: 0 auto; }

/* ===================== 7. TIPS ===================== */
.tips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 26px 0 30px; }
.tip {
  --i: 0; position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 26px 24px 24px; overflow: hidden;
  animation: ans-in .5s var(--ease) both; animation-delay: calc(var(--i) * 80ms);
}
.tip::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(var(--c-accent), var(--c-primary)); }
.tip__num {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-deep)); margin-bottom: 14px;
}
.tip h3 { margin: 0 0 7px; font-size: 18px; }
.tip p { margin: 0; color: var(--ink-soft); text-wrap: pretty; }

.ctabox {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(133, 206, 228, .22), rgba(236, 100, 26, .1));
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 36px);
}
.ctabox h3 { margin: 0 0 6px; font-size: 22px; }
.ctabox p { margin: 0; color: var(--ink-soft); max-width: 52ch; text-wrap: pretty; }
.ctabox__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ctabox--solid {
  flex-direction: column; align-items: stretch; text-align: left;
  background: linear-gradient(150deg, #43474f, #2c2f36); border: 0; color: #fff;
}
.ctabox--solid h3 { color: #fff; }
.ctabox--solid p { color: rgba(255, 255, 255, .82); margin-bottom: 18px; }

/* ===================== 9. EINDRAPPORT / ROOS ===================== */
/* introzin op volle breedte zodat hij op één regel past (desktop) */
.report__intro { max-width: none; }
/* align-items: stretch laat de roos-kaart even hoog worden als de kolom rechts,
   zodat het donkere blok niet meer uitsteekt. */
.report { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: stretch; margin-top: 24px; }
.report__radar { display: grid; place-items: center; padding: clamp(16px, 2vw, 24px); height: 100%; }
.report__radar canvas { max-width: 100%; height: auto; }
.report__side { display: grid; gap: 20px; align-content: start; }
.report__mailed { margin: 0 0 18px; font-size: 13px; color: rgba(255, 255, 255, .72); padding-left: 22px; position: relative; }
.report__mailed::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--c-accent); font-weight: 700; }
.report__mailed:empty { display: none; }
.prio__list { list-style: none; counter-reset: p; padding: 0; margin: 14px 0 0; display: grid; gap: 14px; }
.prio__list li { display: flex; gap: 12px; align-items: flex-start; }
.prio__bullet { flex: none; width: 14px; height: 14px; border-radius: 50%; margin-top: 4px; }
.prio__meta { display: block; font-size: 13px; color: var(--c-muted); margin-top: 2px; }
.prio h3 { margin: 0; }

/* ---------- a11y ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  #screen-intro.is-active { grid-template-columns: 1fr; }
  .intro__art { order: -1; margin-bottom: 8px; }
  .gate { grid-template-columns: 1fr; }
  .report { grid-template-columns: 1fr; }
  .tips { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .answers { grid-template-columns: 1fr; }
  .formgrid { grid-template-columns: 1fr; }
  .qnav { flex-direction: row; }
  .ctabox { flex-direction: column; align-items: stretch; }
  .ctabox__actions .btn { width: 100%; }
  .brandbar__tag { display: none; }
}

/* ===================== GROTE SCHERMEN ===================== */
/* De vraagkolom blijft bewust leesbaar (max ~1000-1080px), maar de bredere
   schermen (intro, dataduik, tips, roos) en de typografie schalen mee. */
@media (min-width: 1500px) {
  :root { --maxw: 1400px; --content: 1000px; }
  .stage { padding: 60px 0 36px; }
  .lead { font-size: 20px; }
  .gauge { width: min(420px, 42vw); }
  .answer { min-height: 78px; }
}
@media (min-width: 1900px) {
  :root { --maxw: 1560px; --content: 1080px; }
  .display { font-size: clamp(56px, 5vw, 86px); }
  .display--sm { font-size: clamp(40px, 3.2vw, 56px); }
  .qtext { font-size: clamp(26px, 2vw, 34px); }
  .lead { font-size: 21px; }
  .gauge { width: min(480px, 38vw); }
  .answer { min-height: 86px; font-size: 16px; }
  .tips { gap: 24px; }
  .report { gap: 32px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
