/* ============================================================
   SlimKoper™ — Components
   Header, hero, indicator, cards, CTAs, modal, footer
   ============================================================ */

/* ────────────────────────────────────────────────────
   HEADER (sticky, persistent €19 CTA)
   ──────────────────────────────────────────────────── */
.sk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--parch-2);
  height: var(--header-h);
}
.sk-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.sk-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}
.sk-brand__shield { width: 26px; height: 34px; }
.sk-brand__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.sk-brand__name span {
  font-family: var(--font-sans);
  font-weight: 300;
  margin-left: 1px;
}

/* ────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-lite);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover {
  background: #FFB13D;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--navy-deep);
}
.btn--ghost {
  background: transparent;
  border-color: var(--parch-2);
  color: var(--navy);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--paper);
}
.btn--sm { padding: var(--space-2) var(--space-3); font-size: 13px; }
.btn--lg { padding: var(--space-4) var(--space-6); font-size: 15px; }
.btn--block { width: 100%; }

.btn__strike {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 4px;
  font-weight: 400;
}

/* ────────────────────────────────────────────────────
   HERO (Funda input)
   ──────────────────────────────────────────────────── */
.hero {
  padding: var(--space-12) 0 var(--space-10);
  background: linear-gradient(180deg, var(--parch) 0%, var(--white) 100%);
}
.hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  text-align: center;
}
.hero__title {
  margin-bottom: var(--space-3);
}
.hero__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Tool form */
.tool {
  background: var(--white);
  border: 1px solid var(--parch-2);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.tool__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.tool__grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 640px) {
  .tool__grid, .tool__grid--3 { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
}
.field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.field__input,
.field__select {
  border: 1.5px solid var(--parch-2);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease);
  width: 100%;
}
.field__input:focus, .field__select:focus {
  outline: none;
  border-color: var(--navy);
}
.tool__cta {
  margin-top: var(--space-5);
}
.tool__disclaimer {
  font-size: 11px;
  color: var(--muted);
  margin-top: var(--space-3);
  text-align: center;
}

/* Type picker chips */
.type-picker {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.type-chip {
  padding: 6px 12px;
  border: 1px solid var(--parch-2);
  border-radius: var(--r-full);
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.type-chip:hover { border-color: var(--navy-lite); }
.type-chip.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ────────────────────────────────────────────────────
   INDICATOR (Overprijsindicator — hero-adjacent)
   ──────────────────────────────────────────────────── */
.indicator {
  background: var(--white);
  border: 1px solid var(--parch-2);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 640px) {
  .indicator { grid-template-columns: 1fr; text-align: center; }
}
.indicator__pct {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 600;
  line-height: 1;
  color: var(--warn);
}
.indicator__pct.is-ok { color: var(--ok); }
.indicator__pct.is-bad { color: var(--danger); }
.indicator__title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.indicator__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.indicator__bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.bar {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
}
.bar__label { color: var(--muted); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.bar__track { height: 8px; background: var(--parch); border-radius: var(--r-full); overflow: hidden; position: relative; }
.bar__fill {
  height: 100%;
  background: var(--navy);
  width: 0;
  transition: width 700ms var(--ease);
  border-radius: var(--r-full);
}
.bar__fill--market { background: var(--gold); }
.bar__fill--fair { background: var(--ok); }
.bar__val { font-weight: 700; color: var(--navy); white-space: nowrap; }

.indicator__source {
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.indicator__source-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  font-weight: 700;
  margin-left: 4px;
}
.indicator__source-badge--live {
  background: rgba(29,158,117,0.15);
  color: var(--ok);
  border: 1px solid rgba(29,158,117,0.3);
}
.indicator__source-badge--est {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(239,159,39,0.3);
}

/* ────────────────────────────────────────────────────
   EVIDENCE STACK (cost / risk / market cards)
   ──────────────────────────────────────────────────── */
.evidence {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 900px) {
  .evidence { grid-template-columns: 1fr; }
}
.evidence__card {
  background: var(--white);
  border: 1px solid var(--parch-2);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.evidence__card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.cost-total {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
  font-weight: 600;
}
.cost-total span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.cost-list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  font-size: 13px;
}
.cost-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--parch);
}
.cost-list li:last-child {
  border-bottom: 0;
  padding-top: 10px;
  font-weight: 700;
  color: var(--navy);
}
.cost-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: var(--space-3);
  font-style: italic;
}

.risk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--parch);
  font-size: 13px;
}
.risk-row:last-child { border: 0; }
.risk-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.risk-badge--low  { background: rgba(29,158,117,0.15); color: var(--ok); }
.risk-badge--mid  { background: var(--gold-soft); color: var(--warn); }
.risk-badge--high { background: rgba(168,48,31,0.12); color: var(--danger); }

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.market-stat {
  padding: var(--space-3);
  background: var(--paper);
  border-radius: var(--r-md);
  text-align: center;
}
.market-stat__val {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
}
.market-stat__val.is-warn { color: var(--warn); }
.market-stat__label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}

/* ────────────────────────────────────────────────────
   PAYWALL (sticky €19 CTA after evidence)
   ──────────────────────────────────────────────────── */
.paywall {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.paywall::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.paywall__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.paywall__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--white);
  margin-bottom: var(--space-3);
}
.paywall__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto var(--space-5);
}
.paywall__price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.paywall__strike {
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.5;
}
.paywall__amount {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
}
.paywall__features {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 640px) {
  .paywall__features { grid-template-columns: 1fr; }
}
.paywall__features li {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding-left: 22px;
  position: relative;
}
.paywall__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.paywall__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
}

/* Sticky bottom CTA (mobile + after scroll) */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
  z-index: 90;
  transform: translateY(100%);
  transition: transform var(--t-base) var(--ease);
}
.sticky-cta.is-visible {
  display: flex;
  transform: translateY(0);
}
.sticky-cta__text {
  font-size: 13px;
  flex: 1;
  min-width: 0;
}
.sticky-cta__text strong { color: var(--gold); }

/* ────────────────────────────────────────────────────
   CAROUSEL (sample reports)
   ──────────────────────────────────────────────────── */
.carousel-section {
  background: var(--navy-deep);
  padding: var(--space-12) 0;
  overflow: hidden;
}
.carousel-section h2,
.carousel-section .eyebrow { color: var(--white); }
.carousel {
  position: relative;
  max-width: 880px;
  margin: var(--space-6) auto 0;
}
.carousel__track {
  display: flex;
  transition: transform 500ms var(--ease);
}
.carousel__slide {
  flex: 0 0 100%;
  padding: 0 var(--space-3);
}
.carousel__card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  min-height: 360px;
  box-shadow: var(--shadow-lg);
}
.carousel__card h3 {
  font-size: 16px;
  margin-bottom: var(--space-2);
}
.carousel__card p {
  font-size: 13px;
  color: var(--ink-soft);
}
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  border: none;
  padding: 0;
}
.carousel__dot.is-active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--r-full);
}

/* ────────────────────────────────────────────────────
   MAP CARD (now lower priority — appears below evidence)
   ──────────────────────────────────────────────────── */
.map-card {
  background: var(--white);
  border: 1px solid var(--parch-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-card__header {
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--parch-2);
  background: var(--paper);
}
.map-card__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}
.map-card__chip {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--navy);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--r-sm);
}
.map-card__frame {
  height: 260px;
  width: 100%;
  position: relative;
}
.map-card__frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--parch-2);
  border-radius: var(--r-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  background: var(--white);
}
.faq__q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--t-base) var(--ease);
}
.faq__item.is-open .faq__q::after { content: '−'; transform: rotate(0); }
.faq__a {
  display: none;
  padding: 0 var(--space-5) var(--space-4);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.faq__item.is-open .faq__a { display: block; }

/* ────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────── */
.sk-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: var(--space-12) 0 var(--space-6);
  font-size: 13px;
}
.sk-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.sk-footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 6px;
}
.sk-footer a:hover { color: var(--white); }
.sk-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (max-width: 760px) {
  .sk-footer__grid { grid-template-columns: 1fr 1fr; }
}
.sk-footer__brand .sk-brand__name { color: var(--white); }
.sk-footer__tag {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-top: var(--space-2);
}
.sk-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

/* ────────────────────────────────────────────────────
   MODAL (rapport request)
   ──────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,31,58,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: var(--space-4);
  align-items: center;
  justify-content: center;
}
.modal.is-open { display: flex; }
.modal__body {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.modal__head {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__head-title {
  font-family: var(--font-serif);
  font-size: 17px;
}
.modal__close {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__pilot {
  background: var(--gold-soft);
  border: 1px solid rgba(239,159,39,0.3);
  border-radius: var(--r-md);
  padding: var(--space-3);
  margin-top: var(--space-3);
  font-size: 12px;
  color: var(--white);
}
.modal__pilot strong { color: var(--gold); }
.modal__form {
  padding: var(--space-6);
}
.modal__form .field { margin-bottom: var(--space-4); }
.modal__success {
  display: none;
  padding: var(--space-8);
  text-align: center;
}
.modal__success.is-visible { display: block; }

/* ────────────────────────────────────────────────────
   COOKIE BANNER
   ──────────────────────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: var(--space-3) var(--space-5);
  z-index: 9999;
  color: var(--white);
  font-size: 13px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}
.cookie-banner a { color: var(--gold); }

/* ────────────────────────────────────────────────────
   LOADER / SKELETON STATES
   ──────────────────────────────────────────────────── */
.is-hidden { display: none !important; }
.is-loading {
  pointer-events: none;
  opacity: 0.6;
}
.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ────────────────────────────────────────────────────
   VOORBEELDRAPPORT PDF INTEGRATION
   Added 22 mei 2026 · updated 26 mei 2026 with thumbnails
   - Inline link above carousel
   - Per-card PDF thumbnail + body + button
   - Brand wordmark colour fix for dark sections
   ──────────────────────────────────────────────────── */

/* Prominent inline link above the carousel (sits on navy bg) */
.voorbeeld-inline-cta {
  text-align: center;
  margin: var(--space-6) auto var(--space-5);
  padding: 0 var(--space-4);
  max-width: 720px;
}
.voorbeeld-inline-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
  line-height: 1.4;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.voorbeeld-inline-link:hover,
.voorbeeld-inline-link:focus-visible {
  border-bottom-color: var(--gold);
  color: var(--white);
  outline: none;
}
.voorbeeld-inline-meta {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.voorbeeld-inline-arrow {
  display: inline-block;
  transform: translateY(-1px);
  transition: transform var(--t-fast) var(--ease);
}
.voorbeeld-inline-link:hover .voorbeeld-inline-arrow {
  transform: translate(3px, -1px);
}
@media (max-width: 640px) {
  .voorbeeld-inline-link { font-size: 15px; line-height: 1.5; }
  .voorbeeld-inline-meta { font-size: 13px; display: block; margin-top: 2px; }
}

/* ─── Thumbnail-first card layout ─── */
.carousel__card.voorbeeld-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.voorbeeld-card__thumb {
  position: relative;
  display: block;
  background: var(--parch-2);
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 800 / 474;
}
.voorbeeld-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-base) var(--ease);
}
.voorbeeld-card__thumb:hover img,
.voorbeeld-card__thumb:focus-visible img {
  transform: scale(1.02);
}
/* Surgical clamp — ensures thumb never exceeds card width */
.carousel__slide .voorbeeld-card__thumb { max-width: 100%; width: 100%; }
.carousel__slide .voorbeeld-card__thumb img { max-width: 100%; }

.voorbeeld-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: rgba(12, 68, 124, 0);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: background var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  pointer-events: none;
}
.voorbeeld-card__thumb:hover .voorbeeld-card__overlay,
.voorbeeld-card__thumb:focus-visible .voorbeeld-card__overlay {
  background: rgba(12, 68, 124, 0.78);
  opacity: 1;
}
.voorbeeld-card__overlay-icon {
  font-size: 22px;
  font-weight: 400;
}

.voorbeeld-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.voorbeeld-card__body .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.voorbeeld-card__body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--space-2);
}
.voorbeeld-card__body p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 var(--space-3);
  flex: 1;
}

/* Per-card PDF button */
.voorbeeld-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  margin: 0 0 var(--space-3);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  box-sizing: border-box;
}
.voorbeeld-pdf-btn:hover,
.voorbeeld-pdf-btn:focus-visible {
  background: var(--navy-lite);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
  outline: none;
}
.voorbeeld-pdf-btn:active {
  transform: translateY(0);
}
.voorbeeld-pdf-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.voorbeeld-pdf-arrow {
  display: inline-block;
  font-weight: 500;
  transition: transform var(--t-fast) var(--ease);
}
.voorbeeld-pdf-btn:hover .voorbeeld-pdf-arrow {
  transform: translateX(3px);
}
@media (max-width: 640px) {
  .voorbeeld-pdf-btn { font-size: 13px; padding: var(--space-3); }
}

/* ─── Brand wordmark on dark sections ───
   Ensure SlimKoper wordmark stays white when used inside dark sections. */
.carousel-section .sk-brand__name,
.section--deep .sk-brand__name {
  color: var(--white);
}

/* ────────────────────────────────────────────────────
   RESULT CTA (appears right after the indicator percentage)
   Added 28 mei 2026 — feedback: create desire for full report
   immediately at the result, not only in paywall below.
   ──────────────────────────────────────────────────── */
.result-cta {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: var(--gold-soft);
  border: 1px solid rgba(239, 159, 39, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.result-cta__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  min-width: 260px;
}
.result-cta__text strong {
  color: var(--navy);
  font-weight: 700;
}
.result-cta__btn {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .result-cta { flex-direction: column; align-items: stretch; }
  .result-cta__btn { width: 100%; }
}

/* ────────────────────────────────────────────────────
   CARD TEASER (per-evidence-card upsell hook)
   Added 28 mei 2026 — feedback: each section should hint
   at what's deeper in the paid report + a CTA.
   Uses [data-rapport-cta] so app.js opens the modal.
   ──────────────────────────────────────────────────── */
.card-teaser {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-top: 1px dashed var(--parch-2);
  margin-top: var(--space-4);
  padding: var(--space-3) 0 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.card-teaser:hover,
.card-teaser:focus-visible {
  color: var(--gold);
  outline: none;
}
/* Postcode → city hint */
.field__hint {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  color: var(--gold, #EF9F27);
  margin-top: 6px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 200ms ease;
  letter-spacing: 0.02em;
}
.field__hint.is-visible { opacity: 1; }

/* Testimonial — pre-paywall trust line */
.testimonial {
  max-width: 720px;
  margin: var(--space-8) auto var(--space-6);
  padding: var(--space-5) var(--space-5) var(--space-4);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(239, 159, 39, 0.25);
  border-bottom: 1px solid rgba(239, 159, 39, 0.25);
}
.testimonial__quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 0.4;
  color: var(--gold, #EF9F27);
  opacity: 0.55;
  margin-bottom: 4px;
  user-select: none;
}
.testimonial__text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy, #0B2C4D);
  font-style: italic;
  margin: 0 0 var(--space-3);
  font-weight: 400;
}
.testimonial__attr {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy, #0B2C4D);
  opacity: 0.65;
}
@media (max-width: 600px) {
  .testimonial { padding: var(--space-4) var(--space-3); margin: var(--space-6) auto var(--space-5); }
  .testimonial__text { font-size: 16px; }
  .testimonial__quote-mark { font-size: 44px; }
}
