/* ==========================================================================
   Contentbundel.nl
   Kleur: 70% papier, 20% wit/zand, 8% zwart, 2% goud (logo-palet)
   Typografie: Manrope, één familie, premium door ruimte en schaal
   ========================================================================== */

:root {
  --paper: #f9f4ec;
  --paper-deep: #f1ebe0;
  --white: #ffffff;
  --ink: #171717;
  --ink-soft: #4a4845;
  --ink-mute: #78736b;
  --brand: #171717;
  --brand-dark: #000000;
  --sand: #efe7d6;
  --gold: #b59564;
  --gold-deep: #8a6b34;
  --gold-soft: #f2e9da;
  --line: #e5dfd2;
  --line-strong: #d6cdbb;

  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(23, 23, 23, 0.04);
  --shadow-md: 0 12px 40px rgba(23, 23, 23, 0.06);
  --shadow-lg: 0 24px 70px rgba(23, 23, 23, 0.1);

  --wrap: 1180px;
  --gutter: 24px;

  --section-y: 64px;
}

/* --------------------------------------------------------------- reset -- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--narrow {
  max-width: 840px;
}

section {
  padding: var(--section-y) 0;
}

.sec-white {
  background: var(--white);
}

.sec-sage {
  background: var(--sand);
}

.sec-dark {
  background: var(--brand);
  color: var(--white);
}

.sec-paper-deep {
  background: var(--paper-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  z-index: 200;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* --------------------------------------------------------- typography -- */

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 20px;
}

.sec-dark .eyebrow {
  color: var(--gold);
}

h1,
.h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2,
.h2 {
  font-size: clamp(32px, 4.4vw, 46px);
  letter-spacing: -0.035em;
}

h3,
.h3 {
  font-size: clamp(21px, 2.2vw, 24px);
}

.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--ink-soft);
  line-height: 1.6;
}

.sec-dark .lead {
  color: rgba(255, 255, 255, 0.82);
}

.sec-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head p {
  margin-top: 20px;
}

.accent {
  color: var(--gold-deep);
}

/* tweede regel of tweede zin van een kop in logo-goud */
.kop-goud {
  color: #a0824f;
}

/* in koppen begint het gouden deel altijd op een eigen regel */
h1 .kop-goud,
h2 .kop-goud {
  display: block;
}

.sec-dark .kop-goud {
  color: var(--gold);
}

/* ---------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 17px 30px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.2);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.24);
}

.btn-lg {
  font-size: 19px;
  padding: 21px 38px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(23, 23, 23, 0.04);
}

.btn-light {
  background: var(--white);
  color: var(--brand);
}

.btn-light:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-note {
  font-size: 15px;
  color: var(--ink-mute);
  margin-top: 18px;
}

/* markers in plaats van vinkjes */
.marks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 13px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.marks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--brand);
}

.marks li:last-child {
  margin-bottom: 0;
}

.marks--gold li::before {
  background: var(--gold);
}

/* ---------------------------------------------------------- header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 244, 236, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(249, 244, 236, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex: none;
  object-fit: contain;
}

.logo-word {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo-word em {
  font-style: normal;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.16s ease;
}

.nav a:hover {
  color: var(--brand);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta .btn {
  padding: 13px 22px;
  font-size: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-btn);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ------------------------------------------------------------ hero ---- */

.hero {
  padding: 88px 0 108px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 231, 214, 0.8) 0%,
    rgba(249, 244, 236, 0) 68%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 64px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(38px, 5vw, 59px);
}

.hero h1 span {
  display: block;
}

.hero-sub {
  font-size: clamp(18px, 1.7vw, 21px);
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-price strong {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-price span {
  font-size: 16px;
  color: var(--ink-mute);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-mute);
}

/* kalender mockup */

.calendar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  transform: rotate(-0.6deg);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.calendar-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.calendar-month {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
}

.cal-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
}

.cal-item:last-of-type {
  border-bottom: 0;
}

.cal-day {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 3px;
}

.cal-body h4 {
  font-size: 16.5px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}

.cal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--sand);
  color: var(--brand);
  white-space: nowrap;
}

.tag--gold {
  background: var(--gold-soft);
  color: var(--gold-deep);
}

.tag--plain {
  background: var(--paper-deep);
  color: var(--ink-soft);
}

.calendar-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.calendar-foot em {
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}

/* ------------------------------------------------------- productregel -- */

.specs {
  padding: 0;
  background: var(--paper);
}

.specs dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specs dl > div {
  flex: 1 1 200px;
  padding: 22px 28px 22px 0;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.specs dl > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.specs dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 5px;
}

.specs dd {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}

@media (max-width: 860px) {
  .specs dl > div {
    flex: 1 1 45%;
    padding: 18px 20px;
    border-left: 0;
  }
  .specs dl > div:nth-child(odd) {
    padding-left: 0;
  }
  .specs dl > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

/* ---------------------------------------------------------- herkenbaar */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.pain-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0;
}

.pain-closer .accent {
  display: block;
}

.pain-closer {
  margin-top: 48px;
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 720px;
}

/* ------------------------------------------------------------ stappen -- */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--sand);
  color: var(--brand);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.step h3 {
  margin-bottom: 14px;
}

.step p {
  font-size: 16.5px;
  color: var(--ink-soft);
}

.step ul {
  margin-top: 8px;
}

/* --------------------------------------------------------- voor en na -- */

.compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.compare-col {
  border-radius: var(--radius-card);
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.compare-col--bad {
  background: var(--paper-deep);
}

.compare-col--good {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.compare-col h3 {
  font-size: 19px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16.5px;
  color: var(--ink-soft);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-day {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.compare-col--good .compare-row span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
  flex: none;
}

.dot--brand {
  background: var(--brand);
}

.dot--gold {
  background: var(--gold);
}

.dot--mute {
  background: var(--line-strong);
}

/* ------------------------------------------------------- voorbeelden --- */

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.16s ease;
}

.tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.tab[aria-selected="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.panel[hidden] {
  display: none;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.post-day {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.post-card h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.post-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.post-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-mute);
}

.post-foot strong {
  color: var(--ink-soft);
  font-weight: 700;
}

.panel-note {
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink-mute);
}

/* ---------------------------------------------------------- pakketten -- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.plan--featured {
  background: #fdfbf7;
  border-color: var(--brand);
  border-top: 5px solid var(--brand);
  padding: 44px 34px;
  margin-top: -22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 34px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.plan-tier {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}

.plan--featured .plan-tier {
  color: var(--brand);
}

.plan h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.plan-intro {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.plan-count {
  font-size: 17px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  background: var(--paper-deep);
  margin-bottom: 26px;
}

.plan--featured .plan-count {
  background: var(--sand);
  color: var(--brand);
}

.plan ul {
  margin-bottom: 30px;
}

.plan-price {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}

.plan-price strong {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.045em;
  display: block;
  line-height: 1;
}

.plan--featured .plan-price strong {
  font-size: 52px;
}

.plan-price span {
  font-size: 15px;
  color: var(--ink-mute);
}

.plan-perpost {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
}

/* -------------------------------------------------------- rekensom ----- */

.math {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}

.math-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.math-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16.5px;
  color: var(--ink-soft);
}

.math-row strong {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.math-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--radius-btn);
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
}

.math-total strong {
  font-size: 28px;
  letter-spacing: -0.03em;
}

/* --------------------------------------------------- voorbeeldbundel --- */

.proef {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px;
  border-radius: var(--radius-card);
  background: var(--sand);
  border: 1px solid #ddd2ba;
}

.proef h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.proef p {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}

.proef .btn {
  flex: none;
}

@media (max-width: 700px) {
  .proef {
    padding: 26px 24px;
  }
}

/* ------------------------------------------------------- belofte ------- */

.belofte {
  columns: 2;
  column-gap: 48px;
  max-width: 900px;
}

.belofte li {
  break-inside: avoid;
  font-size: 18px;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .belofte {
    columns: 1;
  }
}

/* ----------------------------------------------------- vergelijking ---- */

.vgl-scroll {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.vgl {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.vgl th,
.vgl td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
  vertical-align: top;
}

.vgl thead th {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line-strong);
}

.vgl tbody th {
  font-weight: 700;
  color: var(--ink);
  width: 26%;
}

.vgl .col-ons {
  background: rgba(239, 231, 214, 0.55);
  color: var(--ink);
  font-weight: 600;
}

.vgl thead .col-ons {
  background: var(--brand);
  color: var(--white);
}

.vgl tbody tr:last-child th,
.vgl tbody tr:last-child td {
  border-bottom: 0;
}

.vgl-note {
  margin-top: 20px;
  font-size: 15px;
  color: var(--ink-mute);
}

/* --------------------------------------------------------- eerlijk ----- */

.eerlijk {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: start;
}

.eerlijk-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 32px;
}

.eerlijk-col--niet {
  background: var(--paper-deep);
}

.eerlijk-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.marks--mute li::before {
  background: var(--line-strong);
}

/* ------------------------------------------------------- contentmix ---- */

.mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mix-card {
  padding: 30px 28px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--paper);
}

.mix-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.mix-card p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------- branches ---- */

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.branch {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 32px;
}

.branch h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.branch p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0;
}

.branch--wide {
  grid-column: 1 / -1;
  background: var(--sand);
  border-color: var(--sand);
}

/* ------------------------------------------------------------- veilig -- */

.safe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.safe-card {
  padding: 28px 24px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.safe-card h3 {
  font-size: 17.5px;
  margin-bottom: 9px;
  color: var(--white);
}

.safe-card p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

/* --------------------------------------------------------------- faq --- */

.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 44px 26px 0;
  text-align: left;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.faq-q::after,
.faq-q::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  background: var(--brand);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-q::before {
  width: 16px;
  height: 2px;
  margin-top: -1px;
}

.faq-q::after {
  width: 2px;
  height: 16px;
  right: 13px;
  margin-top: -8px;
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-a {
  display: none;
  padding: 0 60px 28px 0;
  font-size: 17px;
  color: var(--ink-soft);
}

.faq-a.is-open {
  display: block;
}

.faq-a ul {
  columns: 2;
  column-gap: 32px;
  margin-top: 10px;
}

.faq-a ul li {
  margin-bottom: 6px;
}

/* ---------------------------------------------------------- slot-cta --- */

.final {
  text-align: center;
}

.final h2 {
  max-width: 900px;
  margin: 0 auto 26px;
}

.final-card {
  max-width: 560px;
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  padding: 40px;
}

.final-card .plan-tier {
  color: var(--sand);
}

.final-card ul li {
  color: rgba(255, 255, 255, 0.82);
}

.final-card .marks li::before {
  background: var(--sand);
}

.final-price {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 22px 0 6px;
}

.final-price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
}

.final .btn-light {
  margin-top: 26px;
}

.final-note {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
}

/* ------------------------------------------------------------ footer --- */

.site-footer {
  background: var(--paper-deep);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-merk p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 320px;
  margin: 16px 0 22px;
}

.footer-merk .btn {
  padding: 13px 24px;
  font-size: 16px;
}

.footer-kop {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 16px;
}

.footer-lijst li {
  margin-bottom: 11px;
}

.footer-lijst a,
.footer-lijst span {
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-lijst a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.footer-lijst .prijs {
  color: var(--ink-mute);
  font-size: 15px;
}

.footer-troef {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}

.footer-troef span {
  position: relative;
  padding-left: 18px;
}

.footer-troef span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink-mute);
}

.footer-bottom a {
  color: var(--ink-mute);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.footer-juridisch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

/* ------------------------------------------------------ subpagina's ---- */

.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 50px);
  margin-bottom: 18px;
}

.prose {
  padding: 72px 0 110px;
}

.prose h2 {
  font-size: 26px;
  margin: 48px 0 16px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  font-size: 17px;
  color: var(--ink-soft);
}

.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 20px;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--brand);
}

/* -------------------------------------------------------- animaties ---- */

/* Alleen verbergen wanneer JavaScript beschikbaar is, anders blijft content
   onzichtbaar als het script niet laadt. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ------------------------------------------------------- responsive ---- */

@media (max-width: 1080px) {
  :root {
    --section-y: 48px;
  }

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

  .calendar {
    transform: none;
    max-width: 560px;
  }

  .math {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .post-grid,
  .mix-grid,
  .pain-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .plan--featured {
    margin-top: 0;
  }

  .safe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
  }

  .site-header.nav-open .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-merk {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --section-y: 38px;
    --gutter: 20px;
  }

  body {
    font-size: 17px;
  }

  .hero {
    padding: 56px 0 72px;
  }




  .post-grid,
  .mix-grid,
  .pain-grid,
  .steps,
  .compare,
  .branch-grid,
  .safe-grid,
  .eerlijk {
    grid-template-columns: 1fr;
  }

  .sec-head {
    margin-bottom: 44px;
  }

  .calendar {
    padding: 20px;
  }

  .faq-a ul {
    columns: 1;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: block;
  }

  .hero-actions .btn + .btn {
    margin-top: 12px;
  }

  .final-card {
    padding: 30px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------- kennisbank --- */

.kb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.kb-kaart {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px 32px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kb-kaart:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.kb-kaart h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.kb-kaart p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.kb-kaart span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* leesbare artikelbreedte */
.artikel {
  padding: 56px 0 96px;
}

.artikel .wrap {
  max-width: 760px;
}

.artikel h2 {
  font-size: clamp(25px, 3vw, 31px);
  margin: 52px 0 18px;
}

.artikel h3 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.artikel p,
.artikel li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.artikel ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 22px;
}

.artikel li {
  margin-bottom: 10px;
}

.artikel a {
  color: var(--gold-deep);
}

.artikel table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 16.5px;
}

.artikel th,
.artikel td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.artikel thead th {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--paper-deep);
}

.artikel tbody th {
  color: var(--ink);
  font-weight: 700;
}

.kruimels {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-bottom: 22px;
}

.kruimels a {
  color: var(--ink-mute);
  text-decoration: none;
}

.kruimels a:hover {
  color: var(--gold-deep);
  text-decoration: underline;
}

.kb-cta {
  margin-top: 56px;
  padding: 34px 36px;
  border-radius: var(--radius-card);
  background: var(--sand);
  border: 1px solid #ddd2ba;
}

.kb-cta h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.kb-cta p {
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .kb-grid {
    grid-template-columns: 1fr;
  }
  .artikel table {
    display: block;
    overflow-x: auto;
  }
  .kb-cta {
    padding: 26px 24px;
  }
}
