:root {
  --sm-bg:          rgb(255, 255, 227);
  --sm-ink:         #152b47;
  --sm-ink-2:       rgba(21, 43, 71, .62);
  --sm-ink-3:       rgba(21, 43, 71, .38);
  --sm-font:        'Satoshi', system-ui, sans-serif;
  --sm-font-title:  'Sen', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { background: var(--sm-bg); -webkit-font-smoothing: antialiased }
body {
  font-family: var(--sm-font);
  background: var(--sm-bg);
  color: var(--sm-ink);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: pointer }

/* Nav */
.nav {
  background: rgb(255,255,227);
  border-bottom: 1px solid rgba(21,43,71,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px,5vw,72px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}
.nav__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .nav__wordmark { display: none }
  .nav__mark { width: 32px; height: 32px }
}
.nav__logo-naam {
  font-family: var(--sm-font-title);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: #1A1A1A;
}
.nav__back {
  font-family: var(--sm-font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(21,43,71,.38);
  transition: color .2s ease;
}
.nav__back:hover { color: var(--sm-ink) }

/* Page layout */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px,7vw,88px) clamp(28px,5vw,72px) clamp(80px,10vw,120px);
}
.page__eyebrow {
  font-family: var(--sm-font);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sm-ink-3);
  margin-bottom: 16px;
}
.page__title {
  font-family: var(--sm-font-title);
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.page__meta {
  font-family: var(--sm-font);
  font-size: .8125rem;
  color: var(--sm-ink-3);
  margin-bottom: clamp(28px,4vw,40px);
}

/* Intro blok (privacyverklaring) */
.page__intro {
  font-family: var(--sm-font);
  font-size: 1rem;
  color: var(--sm-ink-2);
  line-height: 1.72;
  margin-bottom: clamp(40px,6vw,64px);
  padding: 20px 24px;
  background: rgba(21,43,71,.05);
  border-left: 3px solid var(--sm-ink);
  border-radius: 0 8px 8px 0;
}
.page__intro strong { color: var(--sm-ink); font-weight: 700 }

/* Plain intro (veelgestelde vragen) */
.page__intro--plain {
  font-size: 1.0625rem;
  color: var(--sm-ink-2);
  line-height: 1.65;
  margin-bottom: clamp(48px,7vw,80px);
  padding: 0;
  background: none;
  border-left: none;
  border-radius: 0;
}
.page__intro--plain a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--sm-ink);
}

/* Secties (AV + privacy) */
.sectie { margin-bottom: 48px }
.sectie h2 {
  font-family: var(--sm-font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21,43,71,.09);
}
.sectie p {
  font-family: var(--sm-font);
  font-size: 1rem;
  color: var(--sm-ink-2);
  line-height: 1.72;
  margin-bottom: 12px;
}
.sectie p:last-child { margin-bottom: 0 }
.sectie p strong { color: var(--sm-ink); font-weight: 700 }
.sectie ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.sectie ul li {
  font-family: var(--sm-font);
  font-size: 1rem;
  color: var(--sm-ink-2);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}
.sectie ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sm-ink-3);
}

/* Garantie blok (AV) */
.garantie-blok {
  background: rgba(21,43,71,.05);
  border-left: 3px solid var(--sm-ink);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 16px 0;
}
.garantie-blok p { color: var(--sm-ink) !important; font-weight: 700; margin-bottom: 8px !important }
.garantie-blok p:last-child { margin-bottom: 0 !important; font-weight: 400; font-size: .875rem !important; color: var(--sm-ink-2) !important }

/* Tabel (privacy) */
.tabel-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tabel { width: 100%; border-collapse: collapse; margin-top: 16px }
.tabel th, .tabel td {
  text-align: left;
  padding: 12px 14px;
  font-family: var(--sm-font);
  font-size: .875rem;
  border-bottom: 1px solid rgba(21,43,71,.08);
  vertical-align: top;
}
.tabel th {
  font-weight: 700;
  color: var(--sm-ink-3);
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tabel td { color: var(--sm-ink-2); line-height: 1.6 }
.tabel tr:last-child td { border-bottom: none }

/* FAQ groepen */
.faq__groepen {
  display: flex;
  flex-direction: column;
  gap: clamp(48px,6vw,72px);
}
.faq__groep-label {
  font-family: var(--sm-font);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sm-ink-3);
  margin-bottom: 4px;
}

/* Accordion */
.faq { display: flex; flex-direction: column }
details { border-bottom: 1px solid rgba(21,43,71,.09) }
details:first-child { border-top: 1px solid rgba(21,43,71,.09) }
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  user-select: none;
  transition: opacity .15s ease;
}
summary::-webkit-details-marker { display: none }
summary:hover { opacity: .7 }
.summary__text {
  font-family: var(--sm-font-title);
  font-size: clamp(.9375rem, .85rem + .4vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--sm-ink);
}
.summary__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(21,43,71,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background .2s ease, border-color .2s ease;
}
.summary__icon::after {
  content: '+';
  font-family: var(--sm-font-title);
  font-size: .875rem;
  font-weight: 700;
  color: rgba(21,43,71,.38);
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}
details[open] .summary__icon {
  background: var(--sm-ink);
  border-color: var(--sm-ink);
}
details[open] .summary__icon::after {
  transform: rotate(45deg);
  color: rgba(255,255,227,.8);
}
.faq__answer {
  padding: 0 48px 26px 0;
  font-family: var(--sm-font);
  font-size: 1rem;
  color: var(--sm-ink-2);
  line-height: 1.72;
  max-width: 580px;
}
.faq__answer a {
  color: var(--sm-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__answer a:hover { opacity: .6 }

/* FAQ CTA blok */
.faq__cta {
  margin-top: clamp(56px,7vw,80px);
  padding: clamp(28px,4vw,40px);
  background: var(--sm-ink);
  border-radius: 16px;
}
.faq__cta p:not(.faq__cta-reply) {
  font-family: var(--sm-font-title);
  font-size: clamp(1.125rem, .9rem + .8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: rgb(255,255,227);
  line-height: 1.2;
  margin-bottom: 20px;
}
.faq__cta-email {
  display: block;
  font-family: var(--sm-font-title);
  font-size: clamp(1.125rem, .9rem + 1.2vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgb(255,255,227);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,227,.3);
  text-underline-offset: .12em;
  margin-top: 16px;
  transition: text-decoration-color .2s ease;
}
.faq__cta-email:hover { text-decoration-color: rgba(255,255,227,.75) }
.faq__cta-reply {
  margin-top: 10px;
  font-family: var(--sm-font);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,227,.32);
}

/* Footer */
.footer { background: #152b47; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.06) }
.footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(28px,5vw,72px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px }
.footer__logo { display: flex; flex-direction: row; gap: 5px; align-items: center }
.footer__mark { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.footer__wordmark { display: flex; flex-direction: column; gap: 0; align-items: flex-start }
.footer__logo-naam { font-family: var(--sm-font-title); font-size: 1.25rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: #fff }
.footer__faq { font-family: var(--sm-font); font-size: .9375rem; font-weight: 400; letter-spacing: -.01em; color: rgba(255,255,227,.35); text-decoration: none; white-space: nowrap; transition: color .2s ease }
.footer__faq:hover { color: rgba(255,255,227,.7) }
.footer__meta { font-family: var(--sm-font); font-size: .6875rem; color: rgba(255,255,227,.2); text-align: right }
.footer__meta a { color: rgba(255,255,227,.2); text-decoration: underline; text-underline-offset: 3px }
.footer__meta a:hover { color: rgba(255,255,227,.45) }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; gap: 12px } .footer__meta { text-align: left } }
