/* ===========================================================
   Landing-pagina (B2B) - extra styling boven op site.css
   Stijl matcht /bieb: cream/teal/geel, met blauw als brand-accent.
   Lavendel/roze alleen in het Instagram-blok (.ig-strip in site.css).
   Buttons: erven van site.css (.btn-brand = geel, .btn-ghost = teal).
   =========================================================== */

.landing-body { background: #fff; }

/* Header gebruikt .site-header en .nav uit site.css - geen eigen overrides nodig */

/* Hero - cream achtergrond met foto-blok */
.lp-hero {
  background: linear-gradient(135deg, var(--cream, #f7f3eb) 0%, #fff8e8 60%, #f7f3eb 100%);
  padding: 48px 0;
  position: relative; overflow: hidden;
}
.lp-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.lp-hero__text h1 {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06; margin: 14px 0 18px; color: var(--bb-purple-deep, #0e3a38);
}
.lp-hero__text h1 em { font-style: normal; color: #3e5d8a; }
.lp-hero__text .lead { font-size: 18px; line-height: 1.55; color: var(--ink-soft, #4a5b5a); max-width: 540px; margin: 0 0 26px; }
.lp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.lp-hero__trust { font-size: 14px; color: var(--ink-soft, #6b7575); margin: 0; }
.lp-hero__visual {
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: linear-gradient(160deg, var(--bb-purple, #1f5d5b) 0%, var(--bb-purple-deep, #0e3a38) 100%) center/cover no-repeat;
  background-image: url('/assets/img/bck_top_1.jpg');
  background-size: cover;
  box-shadow: 0 24px 60px -20px rgba(14,58,56,.4);
}
@media (max-width: 900px) {
  .lp-hero { padding: 56px 0 64px; }
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero__visual { display: none; }
}

/* Calculator - live business case */
.lp-calc {
  margin-top: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) { .lp-calc { grid-template-columns: 1fr; } }
.lp-calc__input { display: flex; flex-direction: column; gap: 14px; }
.lp-calc__input label {
  display: block;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 600;
  color: var(--bb-yellow, #f3c44d);
}
.lp-calc__input-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-calc__input-row input[type="range"] {
  flex: 1 1 100%;
  -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px;
  background: linear-gradient(to right, var(--bb-yellow, #f3c44d) 0%, var(--bb-yellow, #f3c44d) var(--p, 5%), rgba(255,255,255,.18) var(--p, 5%), rgba(255,255,255,.18) 100%);
  outline: none;
}
/* Slider thumb 28×28 visueel; touchscreen-target wordt door browsers
   automatisch uitgebreid via input[type=range]-implementatie. Op AA-niveau
   ruim voldoende; AAA 44×44 niet haalbaar zonder enorme visuele thumb. */
.lp-calc__input-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bb-yellow, #f3c44d);
  border: 3px solid var(--bb-purple-deep, #0e3a38);
  cursor: pointer; box-shadow: 0 4px 8px -2px rgba(0,0,0,.3);
}
.lp-calc__input-row input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bb-yellow, #f3c44d);
  border: 3px solid var(--bb-purple-deep, #0e3a38);
  cursor: pointer;
}
/* Hoog ook de touch-zone op door padding/height op de input zelf */
.lp-calc__input-row input[type="range"] { padding: 14px 0; height: auto; }
.lp-calc__input-row input[type="number"] {
  width: 100px;
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 28px;
  background: #fff; color: var(--bb-purple-deep, #0e3a38);
  border: 0; border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  -moz-appearance: textfield;
}
.lp-calc__input-row input[type="number"]::-webkit-outer-spin-button,
.lp-calc__input-row input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.lp-calc__unit { color: rgba(255,255,255,.85); font-size: 15px; }
.lp-calc__sublabel {
  margin-top: 8px;
  display: block;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 600;
  color: var(--bb-yellow, #f3c44d);
}
.lp-calc__input-row--small input[type="number"] { width: 140px; font-size: 22px; padding: 6px 10px; }
.lp-calc__currency {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 22px; color: rgba(255,255,255,.85);
}

/* Pakket-toggle */
.lp-calc__packages {
  margin: 8px 0 0;
  border: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.lp-calc__packages legend {
  margin-top: 8px; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 600;
  color: var(--bb-yellow, #f3c44d);
}
/* Label zelf wordt flex-column zodat de card-span erin op 100% hoogte
   kan komen. Combineert met grid op .lp-calc__packages (align-items: stretch
   is grid-default) — alle 3 pakketten krijgen identieke hoogte ongeacht of
   hun label 1 of 2 regels neemt. */
.lp-calc__pkg {
  position: relative; cursor: pointer;
  display: flex; flex-direction: column;
}
.lp-calc__pkg input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.lp-calc__pkg-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 10px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 12px;
  text-align: center;
  transition: background .15s, border-color .15s, transform .15s;
  flex: 1; /* vult volle hoogte van de label */
  justify-content: center; /* content (naam/prijs/range) verticaal gecentreerd */
}
.lp-calc__pkg:hover .lp-calc__pkg-card { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.32); }
.lp-calc__pkg input:checked + .lp-calc__pkg-card {
  background: var(--bb-yellow, #f3c44d);
  border-color: var(--bb-yellow, #f3c44d);
  color: var(--bb-purple-deep, #0e3a38);
  box-shadow: 0 6px 18px -8px rgba(243,196,77,.6);
}
.lp-calc__pkg input:focus-visible + .lp-calc__pkg-card {
  outline: 2px solid var(--bb-yellow, #f3c44d); outline-offset: 2px;
}
.lp-calc__pkg-name {
  font-family: var(--font-mono, 'Space Grotesk', 'Inter', sans-serif);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: #fff;
}
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-name { color: var(--bb-purple-deep, #0e3a38); }
.lp-calc__pkg-price { font-size: 14px; color: rgba(255,255,255,.95); font-weight: 600; }
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-price { color: var(--bb-purple-deep, #0e3a38); }
.lp-calc__pkg-unit { display: block; font-size: 11px; line-height: 1.3; color: rgba(255,255,255,.8); margin-top: 1px; }
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-unit { color: rgba(14,58,56,.85); }
.lp-calc__pkg-range { font-size: 12px; color: rgba(255,255,255,.9); }
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-range { color: rgba(14,58,56,.92); }
@media (max-width: 540px) { .lp-calc__packages { grid-template-columns: 1fr; } }

.lp-calc__results { display: flex; flex-direction: column; gap: 4px; }
.lp-calc__row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}
.lp-calc__row:last-of-type { border-bottom: 0; }
/* Geen border onder de rij vlak vóór de win-box — voorkomt de visuele 'dubbele lijn' */
.lp-calc__row:has(+ .lp-calc__row--win) { border-bottom: 0; }
/* Sub-rij volgt na een normale rij: lichtere dotted line */
.lp-calc__row--sub { border-bottom-style: dotted; }
.lp-calc__row-label {
  color: #fff; font-size: 15px; line-height: 1.55; /* line-height 1.4→1.55 voor AAA 1.4.8 */
  display: flex; flex-direction: column; gap: 2px;
}
.lp-calc__row-sub {
  font-size: 12px; color: rgba(255,255,255,.85); /* .6 → .85 voor leesbaarheid op donker */
  font-weight: 400; line-height: 1.55; letter-spacing: 0;
}
.lp-calc__row-value {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 24px; color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap; flex-shrink: 0;
}
/* Sub-rijen — kleinere maat, blijft hetzelfde font-family voor uitlijning */
.lp-calc__row--sub .lp-calc__row-label { font-size: 14px; opacity: .92; }
.lp-calc__row--sub .lp-calc__row-value { font-size: 20px; opacity: .9; }
/* Note-rij (loonbeslag) — apart, italic, sans, geen euro-bedrag-look */
.lp-calc__row--note { padding: 10px 0; border-bottom: 0; opacity: .85; }
.lp-calc__row--note .lp-calc__row-label { font-size: 14px; }
.lp-calc__row--note .lp-calc__row-value {
  font-family: var(--font-sans);
  font-size: 14px; font-style: italic; font-weight: 500;
  opacity: .85;
}
/* Totaalrij groot */
.lp-calc__row--big { padding: 18px 0; }
.lp-calc__row-value--big {
  font-size: clamp(34px, 4.5vw, 48px);
  color: var(--bb-yellow, #f3c44d);
  line-height: 1.05;
}
/* Investment-rij: jaarbedrag groot + maandbedrag klein eronder */
.lp-calc__row--investment { padding: 16px 0; border-bottom: 0; }
.lp-calc__row--investment .lp-calc__row-value-stack {
  display: flex; flex-direction: column; align-items: flex-end;
  white-space: nowrap; flex-shrink: 0;
}
.lp-calc__row--investment .lp-calc__row-value--big {
  font-size: clamp(28px, 3.6vw, 38px);
  color: #fff;
  line-height: 1;
}
.lp-calc__row-value-sub {
  font-family: var(--font-sans);
  font-size: 13px; color: rgba(255,255,255,.9); /* .7 → .9 voor leesbaarheid (AAA) */
  font-weight: 500; margin-top: 2px;
  letter-spacing: 0;
}
/* Verschil-rij (was 'win') */
.lp-calc__row--win {
  background: rgba(243,196,77,.12); border-radius: 12px;
  padding: 18px 16px; border-bottom: 0; margin-top: 8px;
}
.lp-calc__row--win .lp-calc__row-value {
  color: var(--bb-yellow, #f3c44d);
  font-size: clamp(22px, 2.6vw, 28px);
}

/* Pakket-legend tussenkopje "(prijzen excl. btw)" */
.lp-calc__legend-hint {
  font-weight: 400; opacity: .65; letter-spacing: .02em;
  text-transform: none; font-size: 11px; margin-left: 6px;
}

/* (?)-info button + popover bij Groot-pakket */
.lp-calc__pkg-name {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.lp-calc__pkg-info {
  display: inline-flex; align-items: center; justify-content: center;
  /* WCAG 2.5.5 AAA target-size minimum 44×44; we maken het 24×24 met een
     uitgebreid klikgebied via pseudo-element zodat de visuele button compact
     blijft maar de tap-target wel groot genoeg is. */
  position: relative;
  width: 24px; height: 24px;
  border: 1.5px solid currentColor; border-radius: 50%;
  background: transparent; color: inherit; cursor: pointer;
  font-size: 13px; font-weight: 700; line-height: 1; padding: 0;
  opacity: .8; transition: opacity .15s, background .15s, color .15s;
}
.lp-calc__pkg-info::after {
  /* Onzichtbaar 44×44 hit-area */
  content: ''; position: absolute; inset: -10px;
}
.lp-calc__pkg-info:hover { opacity: 1; }
.lp-calc__pkg-info:focus-visible {
  outline: 2px solid var(--bb-yellow, #f3c44d); outline-offset: 2px;
}
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-info { color: var(--bb-purple-deep, #0e3a38); }
.lp-calc__pkg-info-popup {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(100% + 10px);
  width: 280px; max-width: calc(100vw - 32px);
  background: #fff; color: var(--ink, #0e2a28);
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line, rgba(14,58,56,.14));
  box-shadow: 0 16px 32px -12px rgba(14, 58, 56, .35);
  font-family: var(--font-sans); font-size: 13px; line-height: 1.55;
  z-index: 50; text-align: left; font-weight: 400;
  /* Reset uppercase + letter-spacing erfgenis vanaf .lp-calc__pkg-name —
     tooltip-tekst moet in normaal lettertype getoond worden, niet in caps. */
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.lp-calc__pkg-info-popup::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line, rgba(14,58,56,.14));
  border-top: 1px solid var(--line, rgba(14,58,56,.14));
}

/* Uitleg-paragraaf onder de calc */
.lp-calc__intro-text {
  grid-column: 1 / -1;
  margin: 20px 0 0; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-sans); font-size: 14px; /* 13→14 voor AAA */
  color: rgba(255,255,255,.95); line-height: 1.7; /* .82→.95 + 1.65→1.7 */
}
.lp-calc__intro-text strong { color: #fff; font-weight: 600; }

/* "Hoe is dit berekend?"-uitklapper */
.lp-calc__details {
  grid-column: 1 / -1;
  margin-top: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 4px 18px;
}
.lp-calc__details > summary {
  cursor: pointer; list-style: none;
  padding: 14px 0;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.lp-calc__details > summary::-webkit-details-marker { display: none; }
.lp-calc__details > summary::after {
  content: '↓'; opacity: .55; transition: transform .2s;
}
.lp-calc__details[open] > summary::after { content: '↑'; }
.lp-calc__details-body {
  padding: 0 0 16px;
  font-family: var(--font-sans); font-size: 14px; /* 13→14 voor AAA leesbaarheid */
  color: rgba(255,255,255,.95); line-height: 1.7;
}
.lp-calc__details-body h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 16px; margin: 18px 0 4px;
  color: var(--bb-yellow, #f3c44d);
}
.lp-calc__details-body h4:first-child { margin-top: 4px; }
.lp-calc__details-body p { margin: 0 0 10px; }
/* Bron-links binnen de uitklapper duidelijk zichtbaar maken op de donkere bg —
   default a-color (donkergroen) was niet te lezen op het donker-teal vlak. */
.lp-calc__details-body a {
  color: var(--bb-yellow, #f3c44d) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.lp-calc__details-body a:hover { text-decoration-thickness: 2px; }
.lp-calc__details-body strong { color: #fff; }
.lp-calc__details-body em { color: rgba(255,255,255,.95); }
.lp-calc__details-foot {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; opacity: .7; font-style: italic;
}

/* Bronvermelding onderaan */
.lp-calc__sources {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  font-family: var(--font-sans); font-size: 12px; /* 11→12 voor 1.4.4 / 1.4.12 */
  color: rgba(255,255,255,.85); line-height: 1.65; /* .6 → .85 voor AAA */
}
.lp-calc__sources strong { color: #fff; font-weight: 600; }
.lp-calc__sources a {
  color: #fff; text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.5);
  text-underline-offset: 2px;
}
.lp-calc__sources a:hover { color: var(--bb-yellow, #f3c44d); text-decoration-color: currentColor; }

/* Mobiel: label + value stacken zodat lange labels niet in een te smalle kolom proppen */
@media (max-width: 600px) {
  .lp-calc__row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 0; }
  .lp-calc__row-label { font-size: 14px; }
  .lp-calc__row-value { font-size: 22px; align-self: flex-start; }
  .lp-calc__row--sub .lp-calc__row-label { font-size: 13px; }
  .lp-calc__row--sub .lp-calc__row-value { font-size: 18px; }
  .lp-calc__row--big { padding: 14px 0; }
  .lp-calc__row-value--big { font-size: 30px; }
  .lp-calc__row--investment .lp-calc__row-value-stack { align-items: flex-start; }
  .lp-calc__row--investment .lp-calc__row-value--big { font-size: 26px; }
  .lp-calc__row--win { padding: 14px 14px; }
  .lp-calc__row--win .lp-calc__row-value { font-size: 22px; }
  .lp-calc__row--note { padding: 8px 0; }
  .lp-calc__pkg-info-popup { width: calc(100vw - 64px); }
}
.lp-calc__note {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.55;
}
.lp-calc__note a { color: var(--bb-yellow, #f3c44d); text-decoration: underline; font-weight: 600; }
.lp-calc__disclaimer {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.55;
  font-style: italic;
}

/* Probleem - donkere teal sectie met gele eyebrow.
   Overlay opgevoerd naar donker-teal (was light-blue rgba(121,152,205,.92) → 2.1:1 voor sub-tekst, faalt WCAG AA 1.4.3).
   Nu rgba(14,58,56,.92) zoals .lp-roi → witte sub-tekst haalt ~14:1 → AAA. */
.lp-problem {
  padding: 48px 0;
  color: #fff;
  background:
    linear-gradient(rgba(14,58,56,.94), rgba(14,58,56,.94)),
    url('/assets/img/bck_top_3.jpg') center/cover no-repeat;
}
.lp-problem .section-title,
.lp-problem .section-sub,
.lp-problem .eyebrow,
.lp-problem__caption { text-shadow: 0 1px 3px rgba(0,0,0,.35); }
.lp-problem .section-title { color: #fff; }
.lp-problem .section-sub { color: rgba(255,255,255,.95); }
.lp-problem .eyebrow { color: var(--bb-yellow, #f3c44d); font-weight: 700; letter-spacing: .12em; }
/* Stats — 2 kolommen × 3 rijen. Compacte witte kaarten met cijfer boven, uitleg en bron eronder. */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0 24px;
}
.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 18px;
  background: #ffffff;
  border: 1px solid rgba(13,23,48,.08);
  border-radius: 14px;
  box-shadow: 0 6px 16px -10px rgba(13,23,48,.25);
}
.lp-stat__number {
  font-family: inherit;
  font-size: 20px;
  color: #0d1f4d;
  line-height: 1.3;
  margin: 0 0 4px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.lp-stat__body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lp-stat__label {
  color: #2f3a52 !important;  /* 10.6:1 op wit — AAA */
  line-height: 1.55;          /* 1.45 → 1.5+ voor AAA 1.4.8 */
  font-size: 14.5px;
  margin: 0;
  flex: 1;
}
.lp-stat__source {
  font-size: 12px;            /* 11.5px → 12px voor leesbaarheid */
  color: #2f3a52 !important;  /* was #5b6884 = 4.9:1; nu 10.6:1 — AAA 1.4.6 */
  line-height: 1.55;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(13,23,48,.08);
}
.lp-stat__source-prefix {
  color: #2f3a52 !important;  /* was inline #5b6884 = 4.9:1; nu 10.6:1 — AAA */
  font-weight: 600;
}
.lp-stat__source a {
  color: #1a3a7a !important;  /* 9.1:1 — AAA */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  word-break: break-word;
}
.lp-stat__source a:hover { color: #0d1f4d !important; }
@media (max-width: 700px) {
  .lp-stats { grid-template-columns: 1fr; }
}
.lp-problem__caption { margin-top: 24px; font-size: 17px; color: rgba(255,255,255,.92); }
.lp-problem__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-problem__head-text { flex: 1; min-width: 0; }
.lp-problem__head-cta {
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .lp-problem__head { gap: 16px; }
  .lp-problem__head-cta { width: 100%; text-align: center; justify-content: center; }
}

/* Oplossing - witte cards met blauwe iconen, teal headings */
.lp-solution { padding: 48px 0; background: #fff; }
.lp-solution__head { text-align: center; margin-bottom: 40px; }
.lp-solution__head .section-sub { max-width: 72ch; margin-left: auto; margin-right: auto; }
.lp-solution__head .btn { margin-top: 24px; }
.lp-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-pillar { padding: 32px; border: 1px solid var(--line, #e5e7eb); border-radius: 20px; background: #fff; transition: transform .2s, box-shadow .2s; }
.lp-pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(14,58,56,.18); }
.lp-pillar__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #7998CD;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.lp-pillar h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 10px; color: var(--bb-purple-deep, #0e3a38); }
.lp-pillar p { color: var(--ink-soft, #4a5b5a); margin: 0; line-height: 1.55; }
@media (max-width: 880px) { .lp-pillars { grid-template-columns: 1fr; } }

/* Hoe het werkt - cream achtergrond zoals andere /bieb-secties */
.lp-how { padding: 48px 0; background: var(--cream, #f7f3eb); }
.lp-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.lp-how-card { padding: 32px; background: #fff; border-radius: 20px; border: 1px solid var(--line, #e5e7eb); }
.lp-how-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bb-purple-deep, #0e3a38); color: var(--bb-yellow, #f3c44d);
  font-weight: 700; margin-bottom: 14px;
}
.lp-how-card h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; color: var(--bb-purple-deep, #0e3a38); }
.lp-how-card p { color: var(--ink-soft, #4a5b5a); margin: 0; line-height: 1.55; }
@media (max-width: 880px) { .lp-how-grid { grid-template-columns: 1fr; } }
.lp-how-cta { display: flex; justify-content: center; margin-top: 36px; }

/* Checklist - teal vinkjes */
.lp-checklist { padding: 48px 0; background: #fff; }
.lp-checks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.lp-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.lp-checks li svg { flex: 0 0 18px; margin-top: 4px; color: var(--bb-purple, #1f5d5b); }
@media (max-width: 700px) { .lp-checks { grid-template-columns: 1fr; } }

/* ROI - donkere teal sectie met gele cijfers en subtiele foto-achtergrond */
.lp-roi {
  padding: 48px 0;
  color: #fff;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(14,58,56,.92), rgba(14,58,56,.96)),
    url('/assets/img/bck_top_1.jpg') center/cover no-repeat fixed;
}
.lp-roi::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(243,196,77,.08), transparent 50%);
  pointer-events: none; z-index: -1;
}
.lp-roi > .container { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .lp-roi { background-attachment: scroll; }
}
.lp-roi .section-title { color: #fff; }
.lp-roi .section-sub { color: rgba(255,255,255,.92); }
.lp-roi .eyebrow { color: var(--bb-yellow, #f3c44d); }
.lp-roi__intro {
  color: #fff;
  font-size: 17px; line-height: 1.6;
  max-width: 780px;
}
.lp-roi__intro strong { color: var(--bb-yellow, #f3c44d); font-weight: 600; }
.lp-roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.lp-roi-card { padding: 32px; background: rgba(255,255,255,.06); border-radius: 18px; border: 1px solid rgba(255,255,255,.14); }
.lp-roi__big {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  color: var(--bb-yellow, #f3c44d);
  line-height: 1; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.lp-roi__label { color: rgba(255,255,255,.85); line-height: 1.5; font-size: 15px; }
.lp-roi__note { margin-top: 24px; color: rgba(255,255,255,.7); font-size: 14px; }
@media (max-width: 800px) { .lp-roi-grid { grid-template-columns: 1fr; } }

/* Logo-marquee - oneindig scrollend, witte achtergrond */
.lp-marquee {
  padding: 56px 0;
  background: #fff;
  overflow: hidden;
  border-top: 1px solid var(--line, #e5e7eb);
  border-bottom: 1px solid var(--line, #e5e7eb);
  position: relative;
}
.lp-marquee::before,
.lp-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; pointer-events: none; z-index: 2;
}
.lp-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.lp-marquee::after  { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.lp-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
  padding: 0 32px;
  animation: lp-marquee-scroll 30s linear infinite;
  will-change: transform;
}
.lp-marquee:hover .lp-marquee__track { animation-play-state: paused; }
/* WCAG 2.2.2 (A) — pauze-knop respecteert ook keyboard-users */
.lp-marquee[data-paused="true"] .lp-marquee__track { animation-play-state: paused; }
.lp-marquee__pause {
  position: absolute; bottom: 8px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bb-purple-deep, #0e3a38); color: #fff;
  border: 2px solid #fff; cursor: pointer;
  font-size: 14px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  opacity: .85; transition: opacity .15s;
}
.lp-marquee__pause:hover { opacity: 1; }
.lp-marquee__pause[aria-pressed="true"] { background: var(--bb-yellow, #f3c44d); color: var(--bb-purple-deep, #0e3a38); }
/* Bij reduced-motion-voorkeur sowieso geen scroll */
@media (prefers-reduced-motion: reduce) {
  .lp-marquee__track { animation: none !important; }
}
.lp-marquee__item {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  height: 64px;
}
.lp-marquee__item img {
  max-height: 56px; width: auto; max-width: 180px;
  filter: grayscale(70%); opacity: .85;
  transition: filter .2s, opacity .2s;
}
.lp-marquee__item:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes lp-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-marquee__track { animation-duration: 120s; }
}

/* Aanbod - prijsschaal in plaats van 3-card SaaS-grid */
.lp-prices { padding: 48px 0; background: var(--cream, #f7f3eb); }
.lp-prices__head { max-width: 720px; margin-bottom: 48px; }
.lp-prices__intro { color: var(--ink-soft, #4a5b5a); font-size: 17px; line-height: 1.55; margin: 12px 0 0; }

.lp-prices__scale {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 24px 60px -32px rgba(14,58,56,.18);
}
.lp-prices__step {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px;
  text-align: center;
  position: relative;
}
.lp-prices__step--mid::before {
  content: 'Vaakst gekozen';
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono, 'Space Grotesk', sans-serif);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bb-purple-deep, #0e3a38);
  background: var(--bb-yellow, #f3c44d);
  padding: 4px 12px; border-radius: 999px;
  white-space: nowrap;
}
.lp-prices__step-tag {
  font-family: var(--font-mono, 'Space Grotesk', sans-serif);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bb-purple, #1f5d5b);
  margin-bottom: 12px;
}
.lp-prices__step-amount {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--bb-purple-deep, #0e3a38);
  line-height: 1;
  display: inline-flex; align-items: baseline;
  font-variant-numeric: tabular-nums;
}
.lp-prices__currency {
  font-size: .55em; margin-right: 4px;
  color: var(--bb-purple, #1f5d5b);
}
.lp-prices__step-unit {
  font-size: 13px; color: var(--ink-soft, #6b7575);
  margin-top: 6px; letter-spacing: .02em;
}
.lp-prices__step-line {
  margin-top: 14px; font-size: 14px; line-height: 1.5;
  color: var(--ink-soft, #4a5b5a);
  max-width: 220px;
}
.lp-prices__connector {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--bb-purple, #1f5d5b) 35%, var(--bb-purple, #1f5d5b) 65%, transparent 100%);
}
@media (max-width: 880px) {
  .lp-prices__scale { grid-template-columns: 1fr; padding: 24px; }
  .lp-prices__connector { width: 2px; height: 24px; background: linear-gradient(180deg, transparent 0%, var(--bb-purple, #1f5d5b) 35%, var(--bb-purple, #1f5d5b) 65%, transparent 100%); margin: 0 auto; }
  .lp-prices__step { padding: 24px 16px; }
}

.lp-prices__included {
  margin-top: 48px;
  padding: 32px;
  background: var(--bb-purple-deep, #0e3a38);
  color: #fff;
  border-radius: 22px;
}
.lp-prices__included h3 {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 22px; margin: 0 0 18px; color: var(--bb-yellow, #f3c44d);
  font-weight: 400;
}
.lp-prices__included ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.lp-prices__included li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,.92);
}
.lp-prices__included li span { color: var(--bb-yellow, #f3c44d); font-weight: 700; flex-shrink: 0; }
@media (max-width: 700px) { .lp-prices__included ul { grid-template-columns: 1fr; } }

.lp-prices__han {
  margin: 36px auto 0;
  max-width: 640px;
  padding: 32px 36px;
  background: #fff;
  border: 1px dashed var(--bb-purple, #1f5d5b);
  border-radius: 22px;
  position: relative;
  text-align: center;
}
.lp-prices__han::before {
  content: '"';
  position: absolute; top: -24px; left: 24px;
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 96px; line-height: 1;
  color: var(--bb-yellow, #f3c44d);
}
.lp-prices__han p {
  margin: 0 0 16px;
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 20px; line-height: 1.5; /* WCAG 1.4.8 AAA */
  color: var(--bb-purple-deep, #0e3a38);
}
.lp-prices__han-sig {
  display: block; margin-bottom: 20px;
  font-family: var(--font-mono, 'Space Grotesk', sans-serif);
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bb-purple, #1f5d5b);
}

/* FAQ - teal +/- met open/dicht-animatie */
.lp-faq { padding: 48px 0; background: #fff; }
.lp-faq__item {
  border-bottom: 1px solid var(--line, #e5e7eb);
  padding: 0;
}
.lp-faq__item summary {
  padding: 22px 0;
  font-weight: 600; font-size: 17px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--bb-purple-deep, #0e3a38);
  transition: color .2s;
}
.lp-faq__item summary:hover { color: var(--bb-purple, #1f5d5b); }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: '';
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream, #f7f3eb);
  color: var(--bb-purple, #1f5d5b);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .25s ease, background-color .2s;
}
.lp-faq__item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--bb-yellow, #f3c44d);
}

/* Open/dicht-animatie via grid-row truc */
.lp-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.lp-faq__item[open] .lp-faq__body { grid-template-rows: 1fr; }
.lp-faq__body > div { overflow: hidden; }
.lp-faq__body .bard-content { padding: 16px 0 24px; }
.lp-faq__item p { margin: 0 0 14px; color: var(--ink-soft, #4a5b5a); line-height: 1.6; font-size: 15px; }
.lp-faq__item p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .lp-faq__body { transition: none; }
  .lp-faq__item[open] summary::after { transition: none; }
}

/* Contact - cream achtergrond, witte bio-card */
.lp-contact { padding: 48px 0; background: var(--cream, #f7f3eb); }
.lp-contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.lp-contact__list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.lp-contact__list li { display: flex; align-items: center; gap: 12px; }
.lp-contact__list-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff; color: #7998CD;
  border: 1px solid var(--line, #e5e7eb);
  flex-shrink: 0;
}
.lp-contact__list a { color: var(--bb-purple-deep, #0e3a38); font-weight: 500; }
.lp-contact__list a:hover { color: #7998CD; }
.lp-contact__cta { margin-top: 12px; }
.lp-contact__bio { padding: 32px; background: #fff; border-radius: 22px; box-shadow: 0 24px 60px -24px rgba(14,58,56,.25); text-align: center; }
.lp-contact__photo {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 18px;
  background: url('/assets/img/pages/han-contact.jpg') center/cover no-repeat, linear-gradient(135deg, var(--bb-purple, #1f5d5b) 0%, var(--bb-purple-deep, #0e3a38) 100%);
  border: 4px solid #fff;
  box-shadow: 0 8px 24px -8px rgba(14,58,56,.3);
}
.lp-contact__bio h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 10px; color: var(--bb-purple-deep, #0e3a38); }
.lp-contact__bio p { color: var(--ink-soft, #4a5b5a); margin: 0; line-height: 1.55; font-size: 15px; }
@media (max-width: 880px) { .lp-contact__grid { grid-template-columns: 1fr; } }

/* Landing footer - dark teal zoals site footer */
.landing-footer { background: var(--bb-purple-deep, #0e3a38); color: #fff; }
.landing-footer .copy { color: rgba(255,255,255,.7); }

/* ── Calculator: witte high-contrast kaart op donkere achtergrond ── */
.lp-roi .lp-calc {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 28px 64px -24px rgba(14,58,56,.5);
  padding: 36px;
  color: var(--bb-purple-deep, #0e3a38);
}
.lp-roi .lp-calc__input label,
.lp-roi .lp-calc__sublabel,
.lp-roi .lp-calc__packages legend { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__unit { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__currency { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__input-row input[type="number"] {
  background: #f6f8f8;
  border: 1.5px solid #d8dedd;
  color: var(--bb-purple-deep, #0e3a38);
}
.lp-roi .lp-calc__input-row input[type="number"]:focus {
  border-color: var(--bb-purple, #1f5d5b);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31,93,91,.12);
}
.lp-roi .lp-calc__input-row input[type="range"] { background: #e3e9e8; }
.lp-roi .lp-calc__input-row input[type="range"]::-webkit-slider-thumb { background: var(--bb-purple, #1f5d5b); border-color: #fff; }
.lp-roi .lp-calc__input-row input[type="range"]::-moz-range-thumb { background: var(--bb-purple, #1f5d5b); border-color: #fff; }
.lp-roi .lp-calc__pkg-card {
  /* Border is duidelijk zichtbaar (28% opaciteit) zodat alle 3 pakketten als
     'kaartjes' herkenbaar zijn — niet alleen de aangeklikte. */
  background: #fff;
  border: 2px solid rgba(14, 58, 56, .28);
  border-radius: var(--radius, 14px);
  box-shadow: 0 1px 2px rgba(14, 58, 56, .04), 0 8px 24px -16px rgba(14, 58, 56, .12);
  color: var(--bb-purple-deep, #0e3a38);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .15s ease;
}
.lp-roi .lp-calc__pkg:hover .lp-calc__pkg-card {
  background: #fff;
  border-color: var(--bb-purple-deep, #0e3a38);
  transform: translateY(-3px);
}
.lp-roi .lp-calc__pkg input:checked + .lp-calc__pkg-card {
  background: var(--bb-yellow, #f3c44d);
  border-color: var(--bb-purple-deep, #0e3a38);
  color: var(--bb-purple-deep, #0e3a38);
  box-shadow: 0 8px 20px -10px rgba(243,196,77,.55);
}
.lp-roi .lp-calc__pkg-name { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__pkg-price { color: var(--bb-purple, #1f5d5b); }
.lp-roi .lp-calc__pkg-unit { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__pkg-range { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__row { border-bottom-color: rgba(14,58,56,.12); }
.lp-roi .lp-calc__row-label { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__row-sub { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__row-value { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__row--big .lp-calc__row-value--big { color: #b91c1c; }
.lp-roi .lp-calc__row--investment .lp-calc__row-value--big { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__row-value-sub { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__row--note .lp-calc__row-value { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__row--win {
  background: rgba(243,196,77,.18);
  border: 1px solid rgba(243,196,77,.5);
}
.lp-roi .lp-calc__row--win .lp-calc__row-label { color: var(--bb-purple-deep, #0e3a38); font-weight: 600; }
.lp-roi .lp-calc__row--win .lp-calc__row-value { color: #0e3a38; font-weight: 700; }
.lp-roi .lp-calc__note { color: var(--ink-soft, #4a5b5a); border-top: 1px solid rgba(14,58,56,.1); padding-top: 16px; }
.lp-roi .lp-calc__note a { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__disclaimer { color: var(--ink-soft, #6b7575); border-top-color: rgba(14,58,56,.1); }

/* Light-variant overrides voor de nieuwe blokken (intro-text, details, sources, popover) */
.lp-roi .lp-calc__legend-hint { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__intro-text {
  border-top-color: rgba(14,58,56,.1);
  color: var(--ink-soft, #4a5b5a);
}
.lp-roi .lp-calc__intro-text strong { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__details {
  background: #f6f8f8;
  border-color: rgba(14,58,56,.12);
}
.lp-roi .lp-calc__details > summary { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__details-body { color: var(--ink-soft, #4a5b5a); }
.lp-roi .lp-calc__details-body h4 { color: var(--bb-purple, #1f5d5b); }
.lp-roi .lp-calc__details-body strong { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__details-body em { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__details-body a {
  color: var(--bb-purple-deep, #0e3a38) !important;
  text-decoration: underline;
  text-decoration-color: var(--bb-yellow, #f3c44d);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.lp-roi .lp-calc__details-body a:hover { color: var(--bb-purple, #1f5d5b) !important; }
.lp-roi .lp-calc__details-foot { border-top-color: rgba(14,58,56,.1); color: var(--ink-soft, #6b7575); }
.lp-roi .lp-calc__sources { color: var(--ink-soft, #6b7575); }
.lp-roi .lp-calc__sources strong { color: var(--bb-purple-deep, #0e3a38); }
.lp-roi .lp-calc__sources a {
  color: var(--bb-purple, #1f5d5b);
  text-decoration-color: rgba(31,93,91,.4);
}
.lp-roi .lp-calc__sources a:hover { color: var(--bb-purple-deep, #0e3a38); }

/* Footer-contact: icoon + tekst per item */
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { margin-bottom: 8px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .15s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact svg {
  flex: 0 0 18px;
  opacity: .8;
  transition: opacity .15s;
}
.footer-contact a:hover svg { opacity: 1; }

/* How-card icoon naast nummer */
.lp-how-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(112,144,192,.12);
  color: var(--bb-purple-deep, #0e3a38);
  margin: 8px 0 12px;
}

/* ─── Stappen-kaarten: foto bovenaan + nummer-overlay ─── */
.lp-how-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lp-how-card .num,
.lp-how-card__icon { display: none !important; }
.lp-how-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #7090c0 0%, #1f5d5b 100%);
}
.lp-how-card__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.lp-how-card__media-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
}
.lp-how-card__num {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bb-purple-deep, #0e3a38);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.lp-how-card__body { padding: 22px 24px 26px; }
.lp-how-card__body h3 { margin: 0 0 8px; font-size: 19px; }
.lp-how-card__body p { margin: 0; color: var(--ink-soft); line-height: 1.55; font-size: 15px; }

/* ─── Calculator: witte kaart op donker, strak met body-font (Inter) ─── */
.lp-calc {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 28px 64px -28px rgba(14,58,56,.55);
  padding: 36px;
  color: var(--bb-purple-deep, #0e3a38) !important;
}
.lp-calc * { font-family: 'Inter', system-ui, sans-serif !important; }
.lp-calc__input label,
.lp-calc__sublabel,
.lp-calc__packages legend {
  color: var(--bb-purple-deep, #0e3a38) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
}
.lp-calc__unit,
.lp-calc__currency { color: var(--ink-soft, #4a5b5a) !important; font-weight: 500; }
.lp-calc__input-row input[type="number"] {
  background: #f6f8f8 !important;
  color: var(--bb-purple-deep, #0e3a38) !important;
  border: 1.5px solid #d8dedd !important;
  font-weight: 700;
  border-radius: 10px;
}
.lp-calc__input-row input[type="number"]:focus {
  background: #fff !important;
  border-color: var(--bb-purple, #1f5d5b) !important;
  box-shadow: 0 0 0 4px rgba(31,93,91,.12);
}
.lp-calc__input-row input[type="range"] {
  background: linear-gradient(to right, var(--bb-purple, #1f5d5b) 0%, var(--bb-purple, #1f5d5b) var(--p, 5%), #e3e9e8 var(--p, 5%), #e3e9e8 100%) !important;
}
.lp-calc__input-row input[type="range"]::-webkit-slider-thumb {
  background: var(--bb-purple, #1f5d5b) !important;
  border-color: #fff !important;
}
.lp-calc__input-row input[type="range"]::-moz-range-thumb {
  background: var(--bb-purple, #1f5d5b) !important;
  border-color: #fff !important;
}
.lp-calc__pkg-card {
  background: #ffffff !important;
  /* Duidelijk zichtbare 2px rand om elk pakket — niet alleen het geselecteerde.
     28% groen-opaciteit komt netjes door op de witte calc-bg. */
  border: 2px solid rgba(14, 58, 56, .28) !important;
  color: var(--bb-purple-deep, #0e3a38) !important;
  box-shadow: 0 2px 8px -4px rgba(14,58,56,.15);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.lp-calc__pkg:hover .lp-calc__pkg-card {
  background: #ffffff !important;
  border-color: var(--bb-purple-deep, #0e3a38) !important;
  box-shadow: 0 6px 16px -6px rgba(14,58,56,.25) !important;
  transform: translateY(-1px);
}
.lp-calc__pkg input:checked + .lp-calc__pkg-card {
  background: #ffffff !important;
  border-color: var(--bb-purple-deep, #0e3a38) !important;
  color: var(--bb-purple-deep, #0e3a38) !important;
  box-shadow: 0 0 0 2px var(--bb-purple-deep, #0e3a38), 0 8px 20px -6px rgba(14,58,56,.3) !important;
  transform: translateY(-1px);
}
.lp-calc__pkg-name,
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-name {
  color: var(--bb-purple-deep, #0e3a38) !important;
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lp-calc__pkg-price,
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-price {
  color: var(--bb-purple, #1f5d5b) !important;
  font-weight: 600;
}
.lp-calc__pkg-range,
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-range {
  color: var(--ink-soft, #4a5b5a) !important;
}
.lp-calc__row {
  border-bottom-color: rgba(14,58,56,.12) !important;
}
.lp-calc__row-label {
  color: var(--ink-soft, #4a5b5a) !important;
  font-size: 14.5px;
}
.lp-calc__row-value {
  color: var(--bb-purple-deep, #0e3a38) !important;
  font-weight: 700;
  font-size: 22px;
}
.lp-calc__row--big .lp-calc__row-value--big {
  color: #b91c1c !important;
  font-size: clamp(28px, 4vw, 40px) !important;
}
.lp-calc__row--win {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(14,58,56,.12) !important;
  border-radius: 0;
  padding: 18px 0 0 !important;
  margin-top: auto !important;
}
.lp-calc__row--win .lp-calc__row-label {
  color: var(--bb-purple-deep, #0e3a38) !important;
  font-weight: 600;
}
.lp-calc__row--win .lp-calc__row-value {
  color: var(--bb-purple-deep, #0e3a38) !important;
  font-size: 26px !important;
  font-weight: 800;
}
.lp-calc__note {
  color: var(--ink-soft, #4a5b5a) !important;
  border-top: 1px solid rgba(14,58,56,.1);
  padding-top: 16px;
}
.lp-calc__note a { color: var(--bb-purple-deep, #0e3a38) !important; }
.lp-calc__disclaimer {
  color: var(--ink-3, #6b7575) !important;
  border-top-color: rgba(14,58,56,.1) !important;
}

/* Contact-CTA op landing erft styling van .site-footer__cta uit site.css.
   Lokale fine-tunes voor de bio-tekst onder de actions. */
.lp-contact-cta { background: var(--bg, #fbf7ee); padding: 48px 0; }
.lp-contact-cta__bio {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line, #e5e7eb);
}
.lp-contact-cta__bio h3 {
  margin: 0 0 8px;
  color: var(--bb-purple-deep, #0e3a38);
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: 20px;
  line-height: 1.2;
}
.lp-contact-cta__bio p {
  margin: 0;
  color: var(--ink-soft, #4a5b5a);
  line-height: 1.55;
  font-size: 15px;
}

/* ─── Hero achtergrond: één "Budgetbieb"-wordmark, beweegt subtiel met scroll ─── */
.lp-hero { position: relative; overflow: hidden; }
.lp-hero::after {
  content: 'Budgetbieb';
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, calc(-50% + var(--hero-scroll, 0px)));
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-weight: 900;
  font-size: clamp(220px, 38vw, 640px);
  line-height: 0.85;
  color: var(--bb-purple-deep, #0e3a38);
  opacity: .06;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: -0.04em;
  will-change: transform;
}
.lp-hero > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .lp-hero::after { transform: translate(-50%, -50%); }
}

/* Calc-grid: maak beide kolommen even hoog zodat win-row onderaan uitlijnt op pakket-cards */
.lp-calc { align-items: stretch !important; }
.lp-calc__results { display: flex !important; flex-direction: column !important; min-height: 100%; }

/* Pakket-name in Inter, normale capitalisatie, geen letterspacing-shouting */
.lp-calc__pkg-name,
.lp-calc__pkg input:checked + .lp-calc__pkg-card .lp-calc__pkg-name {
  font-family: 'Inter', system-ui, sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* Note → tekst boven, button eronder met ruimte ertussen */
.lp-calc__note {
  text-align: center;
  border-top: 0 !important;
  padding-top: 12px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-calc__note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bb-purple-deep, #0e3a38) !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .15s, transform .15s;
}
.lp-calc__note a:hover {
  background: var(--bb-purple, #1f5d5b) !important;
  transform: translateY(-1px);
}

/* ===========================================================
   Keuze-homepage — foto-slider split-design (/)
   =========================================================== */

/* Full-screen sectie */
.sp-page {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bb-purple-deep, #0e3a38);
  overflow: hidden;
}
@media (min-width: 769px) {
  .sp-page { min-height: 0; }
}

/* Vaste achtergrond foto */
.sp-slider {
  position: absolute; inset: 0;
  z-index: 0;
  background-image: url('/assets/img/bck_top_4.jpg');
  background-size: cover; background-position: center 30%;
}
.sp-slide { display: none; }

/* Donker overlay over de foto's */
.sp-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg,
      rgba(14, 58, 56, .78) 0%,
      rgba(14, 58, 56, .55) 55%,
      rgba(62, 93, 138, .45) 100%);
}

/* Content boven de overlay */
.sp-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding-top: 80px; padding-bottom: 60px;
  text-align: center;
}
@media (min-width: 769px) {
  .sp-content { padding-top: 60px; padding-bottom: 48px; }
}

/* Eyebrow label */
.sp-eyebrow {
  display: inline-block;
  font-family: var(--font-sans, system-ui); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bb-yellow, #f5cc1e); margin-bottom: 16px;
}

/* Hoofdtitel */
.sp-title {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05; color: #fff;
  margin: 0 0 20px; max-width: 22ch;
  font-weight: 400;
}
.sp-title strong { font-weight: 400; }
.sp-title em { font-style: normal; color: var(--bb-yellow, #f5cc1e); }

/* Subtitel */
.sp-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, .78);
  line-height: 1.6; max-width: 80ch; margin: 0 0 48px;
}
.sp-sub p { margin: 0; }
.sp-sub p + p { margin-top: 12px; }

/* Twee keuze-kaartjes */
.sp-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 820px;
  margin-left: auto; margin-right: auto; margin-bottom: 36px;
}
@media (max-width: 680px) {
  .sp-cards {
    display: flex;
    flex-direction: row;
    gap: 12px;
    max-width: 100%;
    margin-bottom: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .sp-cards::-webkit-scrollbar { display: none; }
  .sp-card {
    flex: 0 0 85vw;
    max-width: 320px;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  .sp-card__photo { height: 140px; }
  .sp-card__body { padding: 14px 16px; }
  .sp-card__eyebrow { font-size: 10px; }
  .sp-card__title { font-size: 15px; margin-bottom: 4px; }
  .sp-card__text { font-size: 13px; margin-bottom: 10px; }
  .sp-card__btn { font-size: 13px; padding: 7px 14px; }
  /* Swipe-hint puntjes */
  .sp-cards::after {
    content: '';
    flex: 0 0 1px;
  }
}

.sp-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}

/* Foto-blok bovenaan de kaart */
.sp-card__photo {
  height: 190px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.sp-card__photo--a { background-image: url('/assets/img/bck_top_3.jpg'); }
.sp-card__photo--b { background-image: url('/assets/img/bck_top_2.jpg'); }

/* Tekstgedeelte */
.sp-card__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.sp-card__eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bb-purple, #1f5d5b);
}
.sp-card__title {
  font-family: var(--font-display, 'Caprasimo', Georgia, serif);
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--bb-purple-deep, #0e3a38);
  line-height: 1.2; font-weight: 400;
}
.sp-card__text {
  font-size: 14px; color: var(--ink-soft, #4a5b5a);
  line-height: 1.55; margin: 0 0 16px;
  flex: 1;
}
.sp-card__btn {
  align-self: flex-start;
}
.sp-card--a .sp-card__btn:hover {
  background: #1f5d5b;
  border-color: #1f5d5b;
  color: #fff;
}
.sp-card--b .sp-card__btn {
  background: var(--bb-purple-deep, #0e3a38);
  color: #fff;
  border-color: var(--bb-purple-deep, #0e3a38);
}
.sp-card--b .sp-card__btn:hover {
  background: #0a2c2b;
  border-color: #0a2c2b;
}

/* Login-link */
.sp-login {
  font-size: 14px; color: rgba(255,255,255,.65); margin: 0;
}
.sp-login a {
  color: rgba(255,255,255,.90); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.sp-login a:hover { color: var(--bb-yellow, #f5cc1e); }

/* ============================================================
   Vertaal-widget (Google Translate)
   ============================================================ */
.lp-translate {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lp-translate__btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 5px 12px 5px 10px;
  font-size: 13px; font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.lp-translate__btn:hover,
.lp-translate__btn[aria-expanded="true"] {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
}
.lp-translate__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  min-width: 180px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 999;
}
.lp-translate__menu[hidden] { display: none; }
.lp-translate__menu li { margin: 0; }
.lp-translate__menu button {
  width: 100%; text-align: left;
  padding: 9px 16px;
  background: none; border: none;
  font-size: 14px; cursor: pointer;
  color: var(--ink, #1a2e2d);
  transition: background .1s;
}
.lp-translate__menu button:hover {
  background: var(--bb-cream, #faf7f0);
}

/* Verberg de Google Translate toolbar die bovenaan de pagina verschijnt */
.goog-te-banner-frame,
.skiptranslate > iframe { display: none !important; }
body { top: 0 !important; }

@media (max-width: 768px) {
  .lp-translate { order: -1; }
  .lp-translate__menu { right: auto; left: 0; }
  .lp-translate__btn span { display: none; }
}
