/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-primary: #0f2942;
  --color-primary-dark: #081a2e;
  --color-accent: #e67e22;
  --color-accent-dark: #d36e16;
  --color-accent-soft: #fcefe1;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f6f8;
  --color-bg-warm: #fbf8f3;
  --color-border: #e5e7eb;
  --font-heading: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max-width: 1200px;
  --max-width-prose: 720px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,41,66,.04), 0 1px 3px rgba(15,41,66,.06);
  --shadow-md: 0 4px 12px -2px rgba(15,41,66,.08), 0 2px 6px rgba(15,41,66,.04);
  --shadow-lg: 0 12px 32px -8px rgba(15,41,66,.18), 0 4px 12px rgba(15,41,66,.06);
  --shadow-accent: 0 8px 24px -6px rgba(230,126,34,.45);
}

/* ==========================================================================
   Base resets
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); margin: 0 0 0.5em; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; text-transform: none; }
p { margin: 0 0 1em; }
ul { padding-left: 1.25rem; margin: 0 0 1em; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.container--prose { max-width: var(--max-width-prose); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  font-size: 16px;
}
.btn--primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--color-accent-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { background: var(--color-bg-alt); }
.btn--lg { padding: 1rem 2rem; font-size: 17px; }

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1.25rem; gap: 1rem; }
.site-header__logo { color: var(--color-primary); font-size: 18px; }
.site-header__logo:hover { text-decoration: none; }
.site-header__nav { display: none; align-items: center; gap: 1.5rem; }
.site-header__link { color: var(--color-text); font-weight: 500; }
.site-header__link.is-active, .site-header__link:hover { color: var(--color-accent-dark); }
.site-header__cta { margin-left: 0.5rem; }
.site-header__toggle { display: flex; flex-direction: column; gap: 4px; padding: 0.5rem; background: transparent; border: 0; cursor: pointer; }
.site-header__toggle span { width: 22px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .2s, opacity .2s; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .site-header__nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem; gap: 1rem;
    box-shadow: var(--shadow-md);
  }
}
@media (min-width: 1024px) {
  .site-header__toggle { display: none; }
  .site-header__nav { display: flex; }
}

/* ==========================================================================
   Generic section header pattern
   ========================================================================== */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--warm { background: var(--color-bg-warm); }
.section--dark { background: var(--color-primary); color: #fff; }
.section--dark h2 { color: #fff; }

.section__header { max-width: var(--max-width-prose); margin: 0 auto 2.5rem; text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-accent-soft); color: var(--color-accent-dark);
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: ''; display: inline-block; width: 16px; height: 2px;
  background: var(--color-accent); border-radius: 2px;
}
.section__title { margin-bottom: 0.75rem; }
.section__lede { color: var(--color-text-muted); font-size: 17px; }

/* ==========================================================================
   Hero (placeholder)
   ========================================================================== */
.hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 5rem); background: linear-gradient(180deg, var(--color-bg-warm), #fff); }
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.hero__title { color: var(--color-primary); }
.hero__lede { font-size: 18px; color: var(--color-text-muted); max-width: 520px; }
.hero__usps { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 0.5rem; }
.hero__usps li { padding-left: 1.75rem; position: relative; }
.hero__usps li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.hero__visual { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-md); min-height: 200px; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }

/* ==========================================================================
   Site footer
   ========================================================================== */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,.78); padding: 3rem 0 1.5rem; margin-top: 4rem; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--color-accent); text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer__brand { grid-column: 1 / -1; }
.site-footer__brand strong { color: #fff; font-size: 18px; display: block; margin-bottom: 0.5rem; }
.site-footer__bottom { padding-top: 1.5rem; color: rgba(255,255,255,.55); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } .site-footer__brand { grid-column: auto; } }

/* ==========================================================================
   Utility / placeholder section stub
   ========================================================================== */
.stub { padding: 3rem 0; border-top: 1px dashed var(--color-border); }
.stub__hint { color: var(--color-text-muted); font-size: 14px; }

/* ==========================================================================
   Cards (generic)
   ========================================================================== */
.cards { display: grid; gap: 1.25rem; }
.cards--3 { grid-template-columns: 1fr; }
.cards--4 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: box-shadow .15s, transform .15s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
a.card { color: inherit; text-decoration: none !important; display: block; }
a.card:hover { text-decoration: none !important; }
a.card .card__body { color: var(--color-text-muted); }
.card--highlight { border-color: var(--color-accent); box-shadow: var(--shadow-accent); position: relative; }
.card__title { color: var(--color-primary); margin-bottom: 0.5rem; }
.card__body { color: var(--color-text-muted); }

/* ==========================================================================
   Prose pages (over-ons, contact, legal)
   ========================================================================== */
.prose { max-width: var(--max-width-prose); margin: 0 auto; padding: 3rem 1.25rem; }
.prose h1 { margin-bottom: 1.5rem; }
.prose h2 { margin-top: 2.5rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose .lede { font-size: 18px; color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* ==========================================================================
   Hero extras
   ========================================================================== */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-accent-soft); color: var(--color-accent-dark);
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.hero__eyebrow::before {
  content: ''; display: inline-block; width: 16px; height: 2px;
  background: var(--color-accent); border-radius: 2px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-top: 2rem; }
.hero__cta-link { color: var(--color-text-muted); font-size: 15px; text-decoration: underline; text-underline-offset: 4px; }
.hero__cta-link:hover { color: var(--color-accent-dark); }

/* ==========================================================================
   Recommendation card (subtle "wij raden aan" featured card)
   ========================================================================== */
.rec-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.rec-card__badge {
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--color-accent); color: #fff;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: var(--shadow-accent);
}
.rec-card__title { font-size: 22px; margin: 0.5rem 0 0.25rem; color: var(--color-primary); }
.rec-card__stars { display: flex; align-items: center; gap: 0.25rem; color: var(--color-accent); font-size: 18px; margin-bottom: 0.75rem; }
.rec-card__stars small { color: var(--color-text-muted); margin-left: 0.5rem; font-size: 14px; }
.rec-card__cat { color: var(--color-text-muted); font-size: 14px; margin: 0 0 1rem; }
.rec-card__pros { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.4rem; font-size: 15px; }
.rec-card__pros li { padding-left: 1.5rem; position: relative; }
.rec-card__pros li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.rec-card__cta { display: inline-flex; }
.rec-card__note { display: block; color: var(--color-text-muted); font-size: 12px; margin-top: 0.75rem; line-height: 1.5; font-style: italic; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { display: grid; grid-template-columns: 1fr; gap: 1.5rem 2rem; }
.trust-bar__item { display: flex; flex-direction: column; gap: 0.25rem; padding-left: 1rem; border-left: 3px solid var(--color-accent); }
.trust-bar__item strong { color: var(--color-primary); font-size: 16px; }
.trust-bar__item span { color: var(--color-text-muted); font-size: 14px; }
@media (min-width: 768px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Stats band (donker)
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; text-align: center; }
.stats__item strong { display: block; font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--color-accent); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stats__item strong small { font-size: 0.6em; vertical-align: super; opacity: 0.8; }
.stats__item span { color: rgba(255,255,255,0.78); font-size: 14px; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Card extras
   ========================================================================== */
.card__icon { font-size: 28px; margin-bottom: 0.5rem; line-height: 1; }
.card__badge {
  display: inline-block; background: var(--color-accent); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.card__list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.4rem; font-size: 15px; }
.card__list li { padding-left: 1.4rem; position: relative; color: var(--color-text); }
.card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.card__note { font-size: 13px; color: var(--color-text-muted); border-top: 1px solid var(--color-border); padding-top: 0.75rem; margin-top: 0.75rem; }
.card__note a { color: var(--color-accent-dark); }

/* ==========================================================================
   Numbered list (kiesgids)
   ========================================================================== */
.numbered-list { list-style: none; counter-reset: nl; padding: 0; max-width: 760px; margin: 0 auto; display: grid; gap: 1.25rem; }
.numbered-list li {
  counter-increment: nl;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.numbered-list li::before {
  content: counter(nl);
  position: absolute; left: 1rem; top: 1.1rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent); color: #fff;
  border-radius: 50%;
  font-weight: 700; font-size: 16px;
}
.numbered-list strong { display: block; color: var(--color-primary); margin-bottom: 0.35rem; font-size: 16px; }

/* ==========================================================================
   Size & price tables
   ========================================================================== */
.data-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
}
.data-table th, .data-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.data-table thead { background: var(--color-bg-alt); }
.data-table th { font-weight: 700; color: var(--color-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--color-bg-warm); }
.data-table td strong { color: var(--color-primary); }
.data-table .muted { color: var(--color-text-muted); font-size: 14px; }

/* ==========================================================================
   Price factor list (kosten section)
   ========================================================================== */
.factor-list { display: grid; gap: 0.75rem; max-width: 760px; margin: 2rem auto 0; }
.factor-list__item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
.factor-list__item strong { color: var(--color-primary); display: block; margin-bottom: 0.2rem; }
.factor-list__item span { color: var(--color-text-muted); font-size: 14px; }
.factor-list__icon { color: var(--color-accent); font-size: 20px; flex-shrink: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 0.75rem; max-width: 760px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 0; box-shadow: var(--shadow-sm); transition: box-shadow .15s; }
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__item summary { padding: 1.1rem 1.25rem; font-weight: 600; color: var(--color-primary); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; color: var(--color-accent); font-size: 24px; font-weight: 400; transition: transform .15s; flex-shrink: 0; }
.faq__item[open] summary::after { content: '−'; }
.faq__answer { padding: 0 1.25rem 1.25rem; color: var(--color-text); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CTA-2 (donkere reprise band)
   ========================================================================== */
.cta2 { background: var(--color-primary); color: #fff; padding: clamp(3rem, 6vw, 5rem) 0; position: relative; overflow: hidden; }
.cta2::before, .cta2::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta2::before { width: 480px; height: 480px; background: radial-gradient(circle, rgba(230,126,34,.18), transparent 70%); top: -200px; left: -150px; }
.cta2::after { width: 380px; height: 380px; background: radial-gradient(circle, rgba(230,126,34,.12), transparent 70%); bottom: -150px; right: -100px; }
.cta2__inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta2 .section__eyebrow { background: rgba(230,126,34,.18); color: #fff; }
.cta2 h2 { color: #fff; }
.cta2__lede { color: rgba(255,255,255,0.78); font-size: 18px; margin-bottom: 2rem; }
.cta2__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.cta2__buttons .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.cta2__buttons .btn--ghost:hover { background: rgba(255,255,255,0.12); }
.cta2__note { display: block; color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 1.5rem; }

/* ==========================================================================
   Pull quote / editorial note
   ========================================================================== */
.editor-note {
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem auto;
  max-width: 760px;
}
.editor-note__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent-dark); display: block; margin-bottom: 0.4rem; }
.editor-note p { margin: 0; color: var(--color-text); }
.editor-note a { color: var(--color-accent-dark); font-weight: 600; }

/* ==========================================================================
   Hero layout adjustments for rec-card
   ========================================================================== */
.hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__title { color: var(--color-primary); margin-bottom: 1rem; }
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; }
  .rec-card { margin-top: 1rem; }
}
