/* ==========================================================================
   BOLTS Waterfilter Keuzehulp v5.2 — BOLTS huisstijl
   Drop-in vervanging voor mu-plugin/.../assets/keuzehulp.css
   Class-namen 1-op-1 identiek aan views/wizard.php en assets/keuzehulp.js
   Vereist BOLTS tokens (--navy, --blue, --ink, etc.) — zie bolts-tokens.css
   ========================================================================== */

/* ---------- Local fallbacks (als tokens nog niet geladen zijn) ---------- */
.bolts-kh {
  --kh-navy:        #0E1F5B;
  --kh-navy-deep:   #081240;
  --kh-navy-ink:    #05092A;
  --kh-blue:        #1FA2E0;
  --kh-blue-bright: #3CB8F0;
  --kh-blue-deep:   #1584BC;
  --kh-ink:         #0E1730;
  --kh-ink-soft:    #40506B;
  --kh-muted:       #7A869F;
  --kh-line:        #D9E0EB;
  --kh-surface:     #F6F8FC;
  --kh-surface-alt: #EEF2F8;
  --kh-white:       #FFFFFF;
  --kh-ok:          #1EA97C;
  --kh-warn:        #E8A33D;
  --kh-danger:      #E5484D;

  font-family: var(--font-body, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif);
  color: var(--kh-ink);
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(31,162,224,0.04), transparent 60%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   HIDDEN ATTRIBUTE — force display:none ondanks Divi/theme overrides
   ============================================================ */
.bolts-kh [hidden],
.bolts-kh__step[hidden],
.bolts-kh__suggestions[hidden],
.bolts-kh__map[hidden],
.bolts-kh__fallback[hidden],
.bolts-kh__hardheid-feedback[hidden],
.bolts-kh__inline-warning[hidden] {
  display: none !important;
}

/* ============================================================
   PROGRESS BAR — klikbare stap-knoppen met labels
   ============================================================ */
.bolts-kh__progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--kh-white);
  border: 1px solid var(--kh-line);
  border-radius: 14px;
}
.bolts-kh__progress-step {
  position: relative;
  background: transparent;
  border: 0;
  padding: 4px 0 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  color: inherit;
  transition: opacity .15s;
}
.bolts-kh__progress-step:disabled,
.bolts-kh__progress-step:not(.is-done):not(.is-active) {
  cursor: default;
}
.bolts-kh__progress-step:focus-visible {
  outline: 3px solid var(--kh-blue);
  outline-offset: 2px;
  border-radius: 8px;
}
.bolts-kh__progress-step.is-done:hover .bolts-kh__progress-label,
.bolts-kh__progress-step.is-done:hover .bolts-kh__progress-num {
  color: var(--kh-blue);
}
.bolts-kh__progress-step.is-done:hover .bolts-kh__progress-num {
  background: var(--kh-blue);
  color: var(--kh-white);
}

.bolts-kh__progress-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: var(--kh-muted);
  transition: color .15s;
}
.bolts-kh__progress-step.is-active .bolts-kh__progress-label,
.bolts-kh__progress-step.is-done .bolts-kh__progress-label {
  color: var(--kh-ink);
}

.bolts-kh__progress-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--kh-surface-alt);
  color: var(--kh-muted);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "tnum";
  transition: background .15s, color .15s;
}
.bolts-kh__progress-step.is-active .bolts-kh__progress-num {
  background: var(--kh-navy);
  color: var(--kh-white);
}
.bolts-kh__progress-step.is-done .bolts-kh__progress-num {
  background: var(--kh-blue);
  color: var(--kh-white);
}

.bolts-kh__progress-bar {
  display: block;
  position: relative;
  height: 4px;
  background: var(--kh-surface-alt);
  border-radius: 999px;
  overflow: hidden;
  transition: background 0.3s;
}
.bolts-kh__progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--kh-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.bolts-kh__progress-step.is-active .bolts-kh__progress-bar::after { transform: scaleX(0.4); background: var(--kh-navy); }
.bolts-kh__progress-step.is-done .bolts-kh__progress-bar::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .bolts-kh__progress { padding: 12px; gap: 5px; }
  /* Toon op smalle schermen alleen cijfer + balk */
  .bolts-kh__progress-label { display: none; }
  .bolts-kh__progress-step { gap: 6px; align-items: center; }
}
@media (max-width: 480px) {
  .bolts-kh__progress-num { width: 20px; height: 20px; font-size: 10px; }
}

/* ============================================================
   STEP CONTAINER
   ============================================================ */
.bolts-kh__step {
  background: var(--kh-white);
  border: 1px solid var(--kh-line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
  animation: kh-fade-in 0.35s ease-out;
}
@keyframes kh-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.bolts-kh__back {
  background: transparent;
  border: 0;
  color: var(--kh-ink-soft);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  margin: 0 0 22px -12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all .15s;
}
.bolts-kh__back:hover { background: var(--kh-surface); color: var(--kh-ink); }
.bolts-kh__back:focus-visible { outline: 3px solid var(--kh-blue); outline-offset: 2px; }

.bolts-kh__title {
  font-family: inherit;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--kh-ink);
  text-wrap: balance;
}

.bolts-kh__intro {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--kh-ink-soft);
  margin: 0 0 28px;
  max-width: 56ch;
}

/* ============================================================
   CHOICES (tile buttons) — Stap 0, 1, 3, 4
   ============================================================ */
.bolts-kh__choices {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

/* Stap 0 — big route tiles (3 wide) */
.bolts-kh__choices--big {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 760px) { .bolts-kh__choices--big { grid-template-columns: 1fr; } }

/* Stap 1 + 4 — medium tiles (2 wide) */
.bolts-kh__choices:not(.bolts-kh__choices--big):not(.bolts-kh__choices--multi) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 540px) { .bolts-kh__choices:not(.bolts-kh__choices--big):not(.bolts-kh__choices--multi) { grid-template-columns: 1fr; } }

/* Stap 3 — multi-select chips/tiles (3 wide) */
.bolts-kh__choices--multi {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 760px) { .bolts-kh__choices--multi { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .bolts-kh__choices--multi { grid-template-columns: 1fr; } }

.bolts-kh__choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  min-height: 68px;
  padding: 18px 22px;
  background: var(--kh-white);
  border: 1.5px solid var(--kh-line);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--kh-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.3;
  transition: border-color 0.15s, background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.bolts-kh__choice:hover {
  border-color: var(--kh-ink-soft);
  background: var(--kh-surface);
  transform: translateY(-1px);
}
.bolts-kh__choice:active { transform: scale(0.98); }
.bolts-kh__choice:focus-visible { outline: 3px solid var(--kh-blue); outline-offset: 2px; }

.bolts-kh__choice.is-selected,
.bolts-kh__choices--multi .bolts-kh__choice.is-selected {
  border-color: var(--kh-blue);
  background: rgba(31,162,224,0.05);
  box-shadow: 0 0 0 3px rgba(31,162,224,0.12);
}

/* Big route tiles (Stap 0) — vertical layout, taller */
.bolts-kh__choices--big .bolts-kh__choice {
  min-height: 200px;
  padding: 26px 24px;
  flex-direction: column;
  align-items: flex-start;
}

/* Multi-select tiles (Stap 3) — show check on right */
.bolts-kh__choices--multi .bolts-kh__choice {
  padding-right: 50px;
  flex-direction: row;
  align-items: center;
  min-height: 64px;
}
.bolts-kh__choices--multi .bolts-kh__choice::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--kh-line);
  background: var(--kh-white);
  transform: translateY(-50%);
  transition: all .15s;
}
.bolts-kh__choices--multi .bolts-kh__choice::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--kh-white);
  border-bottom: 2px solid var(--kh-white);
  transform: translateY(-90%) rotate(-45deg);
  opacity: 0;
  z-index: 1;
  transition: opacity .15s;
}
.bolts-kh__choices--multi .bolts-kh__choice.is-selected::after {
  background: var(--kh-blue);
  border-color: var(--kh-blue);
}
.bolts-kh__choices--multi .bolts-kh__choice.is-selected::before { opacity: 1; }

/* Soft "ik weet het niet" variant */
.bolts-kh__choice--soft {
  border-style: dashed;
  border-color: var(--kh-line);
  background: var(--kh-surface);
  color: var(--kh-ink-soft);
  font-weight: 600;
  font-style: normal;
}
.bolts-kh__choice--soft:hover {
  border-color: var(--kh-ink-soft);
  background: var(--kh-surface-alt);
  color: var(--kh-ink);
}

.bolts-kh__choice-title {
  display: block;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--kh-ink);
  line-height: 1.2;
}
.bolts-kh__choice-sub {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--kh-ink-soft);
  line-height: 1.45;
  letter-spacing: 0;
}
.bolts-kh__choice--soft .bolts-kh__choice-title { color: var(--kh-ink-soft); font-weight: 700; font-size: 15px; }

/* ============================================================
   STAP 2 — LOCATIE INPUT + AUTOCOMPLETE
   ============================================================ */
.bolts-kh__input-wrap {
  position: relative;
  z-index: 1100;
  margin-bottom: 16px;
}
.bolts-kh__input {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1.5px solid var(--kh-surface-alt);
  background: var(--kh-surface);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--kh-ink);
  transition: all .15s;
}
.bolts-kh__input::placeholder { color: var(--kh-muted); font-weight: 500; }
.bolts-kh__input:focus {
  outline: none;
  background: var(--kh-white);
  border-color: var(--kh-blue);
  box-shadow: 0 0 0 3px rgba(31,162,224,0.15);
}

.bolts-kh__suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 6px 0 0;
  padding: 6px;
  background: var(--kh-white);
  border: 1px solid var(--kh-line);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(5,9,42,0.12);
  z-index: 1100;
  max-height: 320px;
  overflow-y: auto;
  list-style: none;
}
.bolts-kh ul.bolts-kh__suggestions { padding: 6px; list-style: none; }
.bolts-kh ul.bolts-kh__suggestions li {
  display: block;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--kh-ink);
  font-weight: 500;
  list-style: none;
  margin: 0;
  border: 0;
  transition: background .12s;
}
.bolts-kh ul.bolts-kh__suggestions li::before,
.bolts-kh ul.bolts-kh__suggestions li::marker { content: none; display: none; }
.bolts-kh__suggestions li:hover,
.bolts-kh__suggestions li[aria-selected="true"] {
  background: var(--kh-surface);
  color: var(--kh-navy);
}

/* Hardheid feedback (na adres-pick) */
.bolts-kh__hardheid-feedback {
  margin: 18px 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(30,169,124,0.10);
  border-left: 4px solid var(--kh-ok);
  font-size: 14.5px;
  font-weight: 600;
  color: #0f6b4d;
  line-height: 1.5;
}
.bolts-kh__hardheid-feedback strong {
  font-weight: 800;
  color: #0a4e36;
}
.bolts-kh__hardheid-feedback.is-hard {
  background: rgba(232,163,61,0.12);
  border-color: var(--kh-warn);
  color: #7d5417;
}
.bolts-kh__hardheid-feedback.is-hard strong { color: #5a3c0d; }
.bolts-kh__hardheid-feedback.is-zeer-hard {
  background: rgba(229,72,77,0.10);
  border-color: var(--kh-danger);
  color: #962529;
}
.bolts-kh__hardheid-feedback.is-zeer-hard strong { color: #6e1a1e; }

/* Kaart */
.bolts-kh__map {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  background: var(--kh-surface-alt);
  border: 1px solid var(--kh-line);
  margin-bottom: 16px;
  aspect-ratio: 16 / 9;
  z-index: 0;
  overflow: hidden;
}
.bolts-kh .bolts-kh__map { z-index: 0; }

/* Fallback gemeente-dropdown */
.bolts-kh__fallback {
  padding: 18px 20px;
  background: rgba(232,163,61,0.08);
  border: 1px solid rgba(232,163,61,0.25);
  border-radius: 12px;
  margin-bottom: 16px;
}
.bolts-kh__fallback p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--kh-ink-soft);
  line-height: 1.5;
}
.bolts-kh__gemeente-select {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--kh-ink);
  background: var(--kh-white);
  border: 1.5px solid var(--kh-line);
  border-radius: 10px;
  cursor: pointer;
}
.bolts-kh__gemeente-select:focus {
  outline: none;
  border-color: var(--kh-blue);
  box-shadow: 0 0 0 3px rgba(31,162,224,0.15);
}

/* ============================================================
   STAP 3 — INLINE BRANCH-CORRECTION WARNING
   ============================================================ */
.bolts-kh__inline-warning {
  margin: 18px 0;
  padding: 16px 18px;
  background: rgba(232,163,61,0.10);
  border-left: 4px solid var(--kh-warn);
  border-radius: 10px;
}
.bolts-kh__inline-warning p {
  margin: 0;
  font-size: 13.5px;
  color: #7d5417;
  line-height: 1.5;
}
.bolts-kh__inline-warning p + p { margin-top: 8px; }

/* ============================================================
   STEP ACTIONS (footer met buttons)
   ============================================================ */
.bolts-kh__step-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--kh-line);
  flex-wrap: wrap;
}
.bolts-kh__btn {
  padding: 14px 22px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.1px;
  min-height: 48px;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bolts-kh__btn:active { transform: scale(0.98); }
.bolts-kh__btn:focus-visible { outline: 3px solid var(--kh-blue); outline-offset: 2px; }
.bolts-kh__btn:disabled {
  background: var(--kh-surface-alt) !important;
  color: var(--kh-muted) !important;
  cursor: not-allowed;
  transform: none;
  border-color: transparent !important;
}
.bolts-kh__btn--primary { background: var(--kh-navy); color: var(--kh-white); }
.bolts-kh__btn--primary:hover:not(:disabled) { background: var(--kh-navy-deep); transform: translateY(-1px); }
.bolts-kh__btn--secondary {
  background: transparent;
  color: var(--kh-ink-soft);
  border: 1.5px solid var(--kh-line);
}
.bolts-kh__btn--secondary:hover { border-color: var(--kh-ink-soft); color: var(--kh-ink); background: var(--kh-surface); }

/* ============================================================
   RESULT BLOCKS (Stap 5)
   ============================================================ */
.bolts-kh__result-block {
  padding: clamp(24px, 3vw, 36px);
  background: var(--kh-white);
  border: 1px solid var(--kh-line);
  border-radius: 20px;
  margin-bottom: 14px;
}
.bolts-kh__result-block h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--kh-ink);
  line-height: 1.2;
}

/* Block 1 — Uw situatie (lichte card met blauwe accent-strip) */
.bolts-kh__result-block--situatie {
  background: var(--kh-white);
  border-color: var(--kh-line);
  position: relative;
  overflow: hidden;
}
.bolts-kh__result-block--situatie::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kh-blue) 0%, var(--kh-blue-bright) 50%, var(--kh-blue) 100%);
}
.bolts-kh__result-block--situatie h3 { color: var(--kh-ink); }
.bolts-kh__situatie-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 540px) { .bolts-kh__situatie-content { grid-template-columns: 1fr; } }
.bolts-kh__situatie-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--kh-surface);
  border: 1px solid var(--kh-line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--kh-ink);
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.35;
}
.bolts-kh__situatie-fact strong {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--kh-muted);
  margin-bottom: 0;
}

/* Block 2 — Advies (witte sectie met productkaarten) */
.bolts-kh__result-block--advies { background: var(--kh-white); border-color: var(--kh-line); }

.bolts-kh__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.bolts-kh__product {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--kh-white);
  border: 1.5px solid var(--kh-line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  position: relative;
}
.bolts-kh__product:hover {
  border-color: var(--kh-blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(5,9,42,0.08);
}
.bolts-kh__product-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--kh-blue);
  color: var(--kh-white);
  margin-bottom: 12px;
  width: fit-content;
}
.bolts-kh__product-label.is-alternatief {
  background: rgba(31,162,224,0.12);
  color: var(--kh-blue-deep);
}
.bolts-kh__product-label.is-advies {
  background: rgba(232,163,61,0.18);
  color: #7d5417;
}
.bolts-kh__product img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-bottom: 12px;
  background: var(--kh-surface);
  border-radius: 10px;
  padding: 10px;
}
.bolts-kh__product-name {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--kh-ink);
  margin-bottom: 6px;
}
.bolts-kh__product-price {
  margin-top: auto;
  color: var(--kh-ink);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.4px;
  font-feature-settings: "tnum";
}

/* No-match / PFAS hard block */
.bolts-kh__no-match {
  padding: 28px;
  text-align: left;
  background: linear-gradient(135deg, rgba(229,72,77,0.05), rgba(232,163,61,0.05));
  border: 1px solid rgba(229,72,77,0.20);
  border-radius: 14px;
}
.bolts-kh__no-match p {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: var(--kh-ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}
.bolts-kh__no-match-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--kh-navy);
  color: var(--kh-white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all .15s;
}
.bolts-kh__no-match-cta:hover { background: var(--kh-blue); transform: translateY(-1px); }

/* Warnings binnen advies-blok */
.bolts-kh__warnings { margin-bottom: 18px; }
.bolts-kh__warnings p {
  padding: 14px 16px;
  background: rgba(232,163,61,0.10);
  border-left: 4px solid var(--kh-warn);
  border-radius: 10px;
  margin: 0 0 8px;
  font-size: 13.5px;
  color: #7d5417;
  line-height: 1.5;
}
.bolts-kh__warnings p:last-child { margin-bottom: 0; }

/* Block 3 — Waarom (lichte surface met linker accent) */
.bolts-kh__result-block--waarom {
  background: var(--kh-surface);
  border-color: var(--kh-line);
}
.bolts-kh__waarom-content {
  font-size: 14.5px;
  color: var(--kh-ink-soft);
  line-height: 1.6;
}
.bolts-kh__waarom-content p { margin: 0 0 10px; }
.bolts-kh__waarom-content p strong {
  display: block;
  font-size: 15px;
  color: var(--kh-ink);
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.bolts-kh__waarom-content ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.bolts-kh__waarom-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.bolts-kh__waarom-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kh-blue);
}

/* ============================================================
   DISCLAIMER + ERROR
   ============================================================ */
.bolts-kh__disclaimer {
  font-size: 12.5px;
  color: var(--kh-muted);
  margin-top: 16px;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--kh-line);
}

.bolts-kh__error {
  color: #962529;
  font-weight: 600;
  padding: 14px 18px;
  background: rgba(229,72,77,0.08);
  border-left: 4px solid var(--kh-danger);
  border-radius: 10px;
  font-size: 14px;
  margin: 0;
}
.bolts-kh__error a { color: var(--kh-danger); text-decoration: underline; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 540px) {
  .bolts-kh { padding: 16px; }
  .bolts-kh__step { padding: 22px 20px; border-radius: 16px; }
  .bolts-kh__title { font-size: 22px; letter-spacing: -0.8px; }
  .bolts-kh__choice { padding: 16px 18px; min-height: 60px; }
  .bolts-kh__choices--big .bolts-kh__choice { min-height: 140px; padding: 20px; }
  .bolts-kh__step-actions { flex-direction: column-reverse; }
  .bolts-kh__step-actions .bolts-kh__btn { width: 100%; }
  .bolts-kh__progress { padding: 10px 12px; gap: 4px; }
}
