/* ============================================================
   KraamKlaar — Design system
   Teal primary · Peach accent · Off-white base
   ============================================================ */

:root {
  --bg: #F7FAFC;
  --surface: #FFFFFF;
  --primary: #2F9E8F;
  --primary-hover: #268577;
  --primary-press: #1f6e62;
  --accent: #FF8A65;
  --accent-strong: #E96A45;

  --soft-teal: #E8F6F3;
  --soft-teal-2: #D8EFE9;
  --soft-peach: #FFF0EA;
  --soft-peach-2: #FFE1D2;

  --text: #1F2933;
  --text-2: #3C4858;
  --text-muted: #667085;
  --text-subtle: #98A2B3;
  --border: #D9E2EC;
  --border-soft: #E8EEF4;
  --success: #12B76A;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(16,24,40,0.04);
  --shadow: 0 1px 2px rgba(16,24,40,0.05), 0 6px 16px rgba(16,24,40,0.04);
  --shadow-lg: 0 4px 12px rgba(16,24,40,0.05), 0 20px 40px rgba(16,24,40,0.06);

  --max: 1200px;
  --gutter: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: "Instrument Serif", "Source Serif 4", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin-top: 0; }
p { margin-top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.kk-header-wrap {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247, 250, 252, 0.95);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.kk-header-bar {
  background: var(--text);
  color: #fff;
  font-size: 12.5px;
  padding: 7px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.kk-header-bar a { color: #fff; opacity: 0.9; }
.kk-header-bar a:hover { opacity: 1; }
.kk-header-bar .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.kk-header-bar .pulse .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6FE0C8;
  box-shadow: 0 0 0 4px rgba(111,224,200,0.18);
}
.kk-header-bar .links { display: flex; gap: 22px; opacity: 0.8; }

.kk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 40px;
}
.kk-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.kk-brand .wordmark {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.005em;
}
.kk-brand .wordmark .dot { color: var(--primary); }
.kk-brand .mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.10);
}
.kk-brand .mark svg { width: 18px; height: 18px; }
.kk-brand .mark::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  right: -3px; top: -3px;
  border: 2px solid var(--bg);
}
.kk-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
}
.kk-nav a { text-decoration: none; }
.kk-nav a:hover { color: var(--primary-press); }
.kk-nav-cta { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.kk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14.5px; font-weight: 600;
  white-space: nowrap;
  transition: all 120ms ease;
  cursor: pointer;
  text-decoration: none;
}
.kk-btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 1px 2px rgba(31,110,98,0.18), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.kk-btn-primary:hover { background: var(--primary-hover); color: #fff; }
.kk-btn-secondary {
  background: var(--surface); color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.kk-btn-secondary:hover { border-color: var(--primary); color: var(--primary-press); }
.kk-btn-ghost { background: transparent; color: var(--text); }
.kk-btn-ghost:hover { background: var(--soft-teal); color: var(--primary-press); }
.kk-btn-sm { height: 36px; padding: 0 14px; font-size: 13.5px; }
.kk-btn-lg { height: 52px; padding: 0 26px; font-size: 16px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.kk-container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.kk-section { padding: 80px 0; }
.kk-section-sm { padding: 56px 0; }

.kk-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.kk-section-head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 640px;
}
.kk-section-head h2 em { color: var(--primary-press); font-style: italic; }
.kk-section-head p { color: var(--text-muted); font-size: 16px; max-width: 460px; margin: 8px 0 0; }
.kk-section-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-press); font-weight: 600; font-size: 14.5px;
  text-decoration: none; white-space: nowrap;
}

/* ============================================================
   EYEBROW
   ============================================================ */
.kk-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft-teal);
  color: var(--primary-press);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.kk-eyebrow .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; display: inline-block; }

/* ============================================================
   HERO V2
   ============================================================ */
.kk-hero2 {
  position: relative;
  padding: 56px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.kk-hero2::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 95% 8%, rgba(255,138,101,0.10), transparent 35%),
    radial-gradient(circle at 0% 95%, rgba(47,158,143,0.07), transparent 38%);
  pointer-events: none;
}
.kk-hero2 .kk-container { position: relative; }
.kk-hero2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
.kk-hero2 h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 16px 0 0;
  color: var(--text);
}
.kk-hero2 h1 em {
  font-style: italic;
  color: var(--primary-press);
  position: relative;
}
.kk-hero2 h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--soft-peach);
  z-index: -1;
  border-radius: 4px;
}
.kk-hero2 .lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 500px;
  margin: 20px 0 0;
}
.kk-hero2 .micro {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.kk-hero2 .micro span {
  display: inline-flex; align-items: center; gap: 7px;
}
.kk-hero2 .micro .ic { color: var(--primary); }
.kk-hero2 .ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ============================================================
   PLANNER WIDGET
   ============================================================ */
.kk-planner-wrap { position: relative; }
.kk-planner {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 16px 40px rgba(31,110,98,0.08);
}
.kk-planner-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  background: linear-gradient(180deg, var(--soft-teal) 0%, rgba(232,246,243,0) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.kk-planner-head .title {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.kk-planner-head .title .ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.kk-planner-head .title .ic svg { width: 14px; height: 14px; }
.kk-planner-head .week-pill {
  font-size: 12px; font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--text-2);
}
.kk-planner-due {
  padding: 12px 22px 0;
  font-size: 12.5px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between;
}
.kk-planner-due strong { color: var(--text); font-weight: 600; }

.kk-timeline { padding: 16px 22px 18px; }
.kk-timeline-track {
  position: relative; height: 32px; margin: 0 8px;
}
.kk-timeline-bar {
  position: absolute; left: 0; right: 0; top: 14px;
  height: 4px; background: var(--border-soft); border-radius: 999px;
}
.kk-timeline-fill {
  position: absolute; left: 0; top: 14px;
  height: 4px; background: var(--primary); border-radius: 999px;
}
.kk-timeline-dot {
  position: absolute; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  transform: translateX(-50%);
}
.kk-timeline-dot.done { background: var(--primary); border-color: var(--primary); }
.kk-timeline-dot.now {
  background: var(--surface); border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47,158,143,0.18);
}
.kk-timeline-dot.now::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--primary);
}
.kk-timeline-labels {
  display: flex; justify-content: space-between;
  margin: 6px 0 0; font-size: 11px; color: var(--text-muted); padding: 0 4px;
}
.kk-timeline-labels span { text-align: center; }
.kk-timeline-labels span.active { color: var(--primary-press); font-weight: 600; }

.kk-planner-tasks { padding: 4px 22px 16px; display: flex; flex-direction: column; }
.kk-planner-tasks h4 {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin: 0 0 10px;
}
.kk-task-row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--border-soft);
}
.kk-task-row:last-child { border-bottom: 0; }
.kk-task-check {
  width: 20px; height: 20px;
  border-radius: 6px; border: 1.5px solid var(--border);
  background: #fff; display: grid; place-items: center;
  flex-shrink: 0;
}
.kk-task-check.done { background: var(--primary); border-color: var(--primary); color: #fff; }
.kk-task-check svg { width: 11px; height: 11px; }
.kk-task-row.done .label { color: var(--text-muted); text-decoration: line-through; }
.kk-task-row.next .label { font-weight: 600; }
.kk-task-row .label { font-size: 14px; color: var(--text); flex: 1; min-width: 0; }
.kk-task-row .due {
  font-size: 11.5px; color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border-soft);
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.kk-task-row.next .due { background: var(--soft-peach); border-color: #FBDAC8; color: var(--accent-strong); }
.kk-planner-foot {
  padding: 12px 22px;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(232,246,243,0) 0%, var(--soft-teal) 100%);
  display: flex; align-items: center; justify-content: space-between;
}
.kk-planner-foot .full-plan {
  font-size: 13.5px; font-weight: 600; color: var(--primary-press);
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.kk-planner-foot .saved {
  font-size: 12px; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.kk-planner-tag {
  position: absolute;
  background: var(--text); color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow); z-index: 2;
}
.kk-planner-tag.t1 { top: -14px; left: 36px; }
.kk-planner-tag.t2 { bottom: 24px; right: -10px; transform: rotate(2deg); background: var(--accent); }

/* ============================================================
   HOW IT WORKS STEPS
   ============================================================ */
.kk-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.kk-step {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 26px;
}
.kk-step .num {
  display: flex; align-items: center; gap: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px; line-height: 1;
  color: var(--primary); letter-spacing: -0.03em;
  width: 100%;
}
.kk-step .num::after {
  content: ""; flex: 1; height: 1px; background: var(--border-soft);
}
.kk-step h3 {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.01em; margin: 18px 0 6px;
}
.kk-step p { color: var(--text-muted); font-size: 14.5px; margin: 0; line-height: 1.55; }
.kk-step .demo {
  margin-top: 16px; padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px; font-size: 13px;
}

/* ============================================================
   PHASE SECTION
   ============================================================ */
.kk-phase-section {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: 40px;
}
.kk-phase-tabs {
  display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap;
}
.kk-phase-tab {
  background: transparent; border: 1px solid var(--border-soft);
  padding: 12px 18px; border-radius: 14px;
  cursor: pointer; text-align: left;
  text-decoration: none; color: var(--text);
}
.kk-phase-tab .pwk { font-size: 11.5px; color: var(--text-muted); display: block; }
.kk-phase-tab .pttl { font-size: 14.5px; font-weight: 600; margin-top: 2px; display: block; }
.kk-phase-tab.active { background: var(--soft-teal); border-color: var(--primary); }
.kk-phase-tab.active .pwk { color: var(--primary-press); }
.kk-phase-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
}
.kk-phase-body h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 36px; margin: 14px 0 0;
  letter-spacing: -0.02em;
}
.kk-phase-body p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; margin: 10px 0 16px; }
.kk-phase-body ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.kk-phase-body ul li {
  display: flex; gap: 12px; font-size: 14.5px; color: var(--text); align-items: flex-start;
}
.kk-phase-body ul li .num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--soft-teal); color: var(--primary-press);
  font-size: 12px; font-weight: 600;
  display: grid; place-items: center; flex-shrink: 0;
}
.kk-phase-quicklist {
  background: var(--bg); border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 22px;
}
.kk-phase-quicklist .qh {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.kk-phase-quicklist .qrow {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border-soft);
}
.kk-phase-quicklist .qrow:last-of-type { border-bottom: 0; }
.kk-phase-quicklist .qrow .lab { flex: 1; font-size: 14px; color: var(--text); }
.kk-phase-quicklist .qrow .right { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CHECKLIST CARDS (signature)
   ============================================================ */
.kk-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.kk-clcard2 {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border 120ms, box-shadow 120ms, transform 120ms;
  text-decoration: none; color: var(--text);
}
.kk-clcard2:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-1px); }
.kk-clcard2 .head {
  padding: 18px 22px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.kk-clcard2 .head .badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--soft-teal); color: var(--primary-press);
  font-size: 11.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.kk-clcard2 .head .count {
  font-size: 12.5px; color: var(--text-muted);
  font-family: ui-monospace, monospace;
}
.kk-clcard2 .head .count strong { color: var(--primary-press); font-weight: 600; }
.kk-clcard2 .title {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1.15;
  padding: 0 22px; margin: 0 0 6px;
}
.kk-clcard2 .sub { padding: 0 22px; color: var(--text-muted); font-size: 14px; margin: 0 0 14px; line-height: 1.5; }
.kk-clcard2 .preview {
  background: var(--bg); border-top: 1px solid var(--border-soft); padding: 12px 22px 0;
}
.kk-clcard2 .preview-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; padding: 5px 0;
}
.kk-clcard2 .preview-row .chk {
  width: 16px; height: 16px; border-radius: 5px;
  border: 1.5px solid var(--border); background: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.kk-clcard2 .preview-row.done .chk {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.kk-clcard2 .preview-row.done .chk svg { width: 10px; height: 10px; }
.kk-clcard2 .preview-row.done { color: var(--text-muted); text-decoration: line-through; }
.kk-clcard2 .more { font-size: 12px; color: var(--text-muted); padding: 6px 0 12px; }
.kk-clcard2 .foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px; background: var(--bg); border-top: 1px solid var(--border-soft);
  margin-top: auto;
}
.kk-clcard2 .progress {
  flex: 1; height: 6px; background: var(--border-soft);
  border-radius: 999px; overflow: hidden; margin-right: 14px;
}
.kk-clcard2 .progress > div { height: 100%; background: var(--primary); border-radius: 999px; }
.kk-clcard2 .pct {
  font-size: 13px; font-weight: 600; color: var(--primary-press);
  font-family: ui-monospace, monospace;
}

/* ============================================================
   EDITORIAL ARTICLE CARDS
   ============================================================ */
.kk-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.kk-edcard {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border 120ms, box-shadow 120ms, transform 120ms;
  text-decoration: none; color: var(--text);
  height: 100%;
}
.kk-edcard:hover { border-color: #C1CDD9; box-shadow: var(--shadow); transform: translateY(-1px); }
.kk-edcard .topbar {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--text-muted); font-weight: 500;
}
.kk-edcard .topbar .cat-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0;
}
.kk-edcard .topbar .cat-dot.peach { background: var(--accent); }
.kk-edcard .topbar .cat-dot.sand { background: #D89D52; }
.kk-edcard .topbar .cat-name {
  font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px;
}
.kk-edcard .topbar .sep { flex: 1; height: 1px; background: var(--border-soft); }
.kk-edcard .topbar .read { white-space: nowrap; }
.kk-edcard h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 22px;
  line-height: 1.15; letter-spacing: -0.015em; margin: 4px 0 0;
}
.kk-edcard .intro {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0;
}
.kk-edcard .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.kk-edcard .chip {
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  background: var(--bg); color: var(--text-2); border: 1px solid var(--border-soft);
  display: inline-flex; align-items: center; gap: 5px;
}
.kk-edcard .chip.save { background: var(--soft-peach); border-color: #FBDAC8; color: var(--accent-strong); }
.kk-edcard .chip.list { background: var(--soft-teal); border-color: #C9E5DE; color: var(--primary-press); }
.kk-edcard .foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 12.5px; color: var(--text-muted);
}
.kk-edcard .foot .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); display: grid; place-items: center;
  color: var(--text); transition: background 120ms, color 120ms;
}
.kk-edcard:hover .foot .arrow { background: var(--primary); color: #fff; }

/* ============================================================
   TRUST / PULL-QUOTE
   ============================================================ */
.kk-pullquote {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px; align-items: center;
}
.kk-pullquote .q {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 32px;
  line-height: 1.2; letter-spacing: -0.015em; color: var(--text);
  margin: 14px 0 0;
}
.kk-pullquote .q::before { content: "\201C"; color: var(--primary); margin-right: 2px; }
.kk-pullquote .q::after { content: "\201D"; color: var(--primary); }
.kk-pullquote .qmeta { margin-top: 16px; font-size: 13.5px; color: var(--text-muted); }
.kk-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kk-num {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 20px;
}
.kk-num strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 36px; line-height: 1;
  letter-spacing: -0.025em; color: var(--primary-press);
}
.kk-num span { display: block; color: var(--text-muted); font-size: 13px; margin-top: 6px; }

/* ============================================================
   CTA STRIP (newsletter)
   ============================================================ */
.kk-cta-strip {
  background: linear-gradient(135deg, #1F6E62 0%, #2F9E8F 100%);
  color: #fff; border-radius: 28px; padding: 56px;
  position: relative; overflow: hidden;
}
.kk-cta-strip h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 40px;
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0; max-width: 540px;
}
.kk-cta-strip p { font-size: 16px; opacity: 0.85; margin: 12px 0 24px; max-width: 540px; }
.kk-signup {
  display: flex; gap: 8px; max-width: 480px;
  background: rgba(255,255,255,0.12); padding: 6px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.18);
}
.kk-signup input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  color: #fff; padding: 0 16px; height: 44px; font-size: 14.5px; outline: none;
}
.kk-signup input::placeholder { color: rgba(255,255,255,0.6); }
.kk-signup button {
  height: 44px; padding: 0 22px; border: 0;
  background: #fff; color: var(--primary-press);
  border-radius: 999px; font-weight: 600; font-size: 14.5px; cursor: pointer;
}

/* ============================================================
   LEAD SECTION (personal checklist)
   ============================================================ */
.kk-lead-section {
  background: var(--soft-teal);
  border-radius: 28px;
  padding: 48px;
}
.kk-lead-section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 40px;
  line-height: 1.1; letter-spacing: -0.02em; margin: 0;
}
.kk-lead-section p.sub { color: var(--text-2); font-size: 16px; margin: 12px 0 0; max-width: 520px; }
.kk-lead-form {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 28px; max-width: 520px;
}
.kk-lead-form .row { display: flex; gap: 12px; }
.kk-lead-input {
  flex: 1; height: 48px; padding: 0 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px;
  color: var(--text); outline: none;
  transition: border-color 120ms; width: 100%;
}
.kk-lead-input:focus { border-color: var(--primary); }
.kk-lead-input::placeholder { color: var(--text-muted); }
.kk-lead-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2); cursor: pointer;
}
.kk-lead-check input { margin-top: 3px; accent-color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.kk-footer2 {
  background: var(--text); color: #fff; padding: 64px 0 32px;
}
.kk-footer2 .brand-block .wordmark {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-style: italic; font-size: 22px; letter-spacing: -0.005em;
}
.kk-footer2 .brand-block .wordmark .dot { color: #6FE0C8; }
.kk-footer2 .lead {
  font-size: 16px; line-height: 1.55; opacity: 0.75;
  margin-top: 16px; max-width: 380px;
  font-family: "Instrument Serif", Georgia, serif;
}
.kk-footer2-cols {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px;
}
.kk-footer2-cols h4 {
  font-size: 12px; font-weight: 600; margin: 0 0 14px;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65);
}
.kk-footer2-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.kk-footer2-cols a { font-size: 14px; color: rgba(255,255,255,0.72); text-decoration: none; }
.kk-footer2-cols a:hover { color: #fff; }
.kk-footer2 .signup-mini {
  margin-top: 18px; display: flex; gap: 6px;
  background: rgba(255,255,255,0.1); padding: 4px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); max-width: 340px;
}
.kk-footer2 .signup-mini input {
  flex: 1; border: 0; background: transparent; color: #fff;
  padding: 0 14px; outline: none; height: 36px; font-size: 13.5px;
}
.kk-footer2 .signup-mini input::placeholder { color: rgba(255,255,255,0.45); }
.kk-footer2 .signup-mini button {
  height: 36px; padding: 0 16px; border: 0;
  background: var(--primary); color: #fff;
  border-radius: 999px; font-weight: 600; font-size: 13px; cursor: pointer;
}
.kk-footer2-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px; opacity: 0.55;
}
.kk-footer2-meta a { color: #fff; opacity: 0.9; margin-left: 16px; text-decoration: none; }

/* ============================================================
   ARTICLE / BLOG DETAIL
   ============================================================ */
.kk-breadcrumb {
  font-size: 13.5px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.kk-breadcrumb a { text-decoration: none; }
.kk-breadcrumb a:hover { color: var(--primary-press); }
.kk-article-head { max-width: 760px; margin: 0 auto; padding: 24px 0 28px; }
.kk-article-head .cat-pill {
  display: inline-block; background: var(--soft-teal); color: var(--primary-press);
  font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.kk-article-head h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 52px;
  line-height: 1.05; letter-spacing: -0.025em; margin: 16px 0 0;
}
.kk-article-head .intro {
  font-size: 18px; color: var(--text-2); line-height: 1.55; margin: 16px 0 0;
}
.kk-byline {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; font-size: 13.5px; color: var(--text-muted);
}
.kk-cover {
  max-width: 1040px; margin: 12px auto 0;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, var(--soft-teal), var(--soft-peach));
}
.kk-cover img { width: 100%; height: 100%; object-fit: cover; }
.kk-article-grid-2 {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center; gap: 56px; padding: 56px 0 80px;
}
.kk-toc { position: sticky; top: 28px; align-self: start; }
.kk-toc-h {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 14px;
}
.kk-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.kk-toc a {
  font-size: 14px; color: var(--text-2); line-height: 1.4;
  padding-left: 12px; border-left: 2px solid var(--border-soft); display: block; text-decoration: none;
}
.kk-toc a:hover { color: var(--primary-press); }
.kk-prose { font-size: 17px; line-height: 1.7; color: var(--text); }
.kk-prose h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 32px; letter-spacing: -0.02em;
  margin: 40px 0 14px; line-height: 1.15;
}
.kk-prose h3 { font-size: 20px; font-weight: 600; margin: 28px 0 10px; letter-spacing: -0.01em; }
.kk-prose p { margin: 0 0 18px; }
.kk-prose ul { margin: 0 0 22px; padding-left: 22px; }
.kk-prose li { margin-bottom: 8px; }
.kk-prose a { color: var(--primary-press); text-decoration: underline; text-underline-offset: 3px; }

.kk-callout {
  border-radius: var(--radius); padding: 18px 20px 18px 56px;
  margin: 22px 0; position: relative; font-size: 15.5px; line-height: 1.55;
}
.kk-callout .ic {
  position: absolute; left: 18px; top: 18px;
  width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
}
.kk-callout h4 { margin: 0 0 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.kk-callout.tip { background: var(--soft-teal); }
.kk-callout.tip h4 { color: var(--primary-press); }
.kk-callout.tip .ic { background: var(--primary); color: #fff; }
.kk-callout.save { background: var(--soft-peach); }
.kk-callout.save h4 { color: var(--accent-strong); }
.kk-callout.save .ic { background: var(--accent); color: #fff; }
.kk-callout.warn { background: #FFF4E5; }
.kk-callout.warn h4 { color: #B45309; }
.kk-callout.warn .ic { background: #F79009; color: #fff; }

.kk-affil-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 24px; margin: 28px 0;
  display: grid; grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px; align-items: center;
}
.kk-affil-card .product-img {
  width: 100px; height: 100px; border-radius: 14px;
  background: linear-gradient(135deg, var(--soft-teal), #fff);
  border: 1px solid var(--border-soft);
}
.kk-affil-card h4 { font-size: 17px; margin: 0; font-weight: 600; letter-spacing: -0.01em; }
.kk-affil-card p { font-size: 14px; color: var(--text-muted); margin: 6px 0 12px; line-height: 1.5; }
.kk-affil-note {
  font-size: 12.5px; color: var(--text-muted);
  background: var(--bg); border: 1px dashed var(--border);
  padding: 12px 14px; border-radius: 12px; line-height: 1.5; margin: 18px 0;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.kk-page-hero {
  background: linear-gradient(180deg, var(--soft-teal) 0%, var(--bg) 100%);
  padding: 56px 0 40px;
}
.kk-page-hero .kk-container > * { max-width: 720px; }
.kk-page-hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 52px;
  line-height: 1.05; letter-spacing: -0.025em; margin: 12px 0 0;
}
.kk-page-hero .sub { font-size: 17px; color: var(--text-2); margin: 14px 0 0; line-height: 1.55; }

/* ============================================================
   CHECKLIST PAGE
   ============================================================ */
.kk-checklist-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px; padding: 40px 0 80px; align-items: start;
}
.kk-cl-nav { position: sticky; top: 28px; display: flex; flex-direction: column; gap: 4px; }
.kk-cl-nav a {
  text-align: left; background: transparent; border: 0;
  padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: var(--text-2);
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; transition: background 120ms;
}
.kk-cl-nav a:hover { background: var(--bg); color: var(--text); }
.kk-cl-section { margin-bottom: 36px; }
.kk-cl-section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 4px;
}
.kk-cl-section p.intro { color: var(--text-muted); font-size: 15px; margin: 0 0 16px; }
.kk-cl-item {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 8px;
}
.kk-cl-item h3 { font-size: 15px; margin: 0; font-weight: 600; }
.kk-cl-item .why { font-size: 14px; color: var(--text-muted); margin: 6px 0 0; line-height: 1.5; }
.kk-cl-item .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.kk-cl-item .tag {
  font-size: 12px; padding: 3px 9px; border-radius: 999px;
  background: var(--bg); color: var(--text-muted);
}
.kk-cl-item .tag.save { background: var(--soft-peach); color: var(--accent-strong); }
.kk-cl-item .tag.must { background: var(--soft-teal); color: var(--primary-press); }

/* ============================================================
   CATEGORY & PRODUCT PAGES
   ============================================================ */
.kk-prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 40px; align-items: start;
}
.kk-info-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 28px;
}
.kk-info-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 14px; }
.kk-info-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.kk-info-card li { font-size: 14.5px; line-height: 1.5; color: var(--text-2); display: flex; gap: 10px; align-items: flex-start; }
.kk-info-card li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 8px;
}
.kk-tip-card {
  background: var(--soft-teal); border: 1px solid #C9E5DE;
  border-radius: var(--radius); padding: 18px; margin-top: 16px;
}
.kk-tip-card h4 { font-size: 14px; font-weight: 600; color: var(--primary-press); margin: 0 0 6px; }
.kk-tip-card p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.5; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.kk-preset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.kk-preset-card {
  background: var(--surface); border: 2px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 24px;
  text-decoration: none; display: block; color: var(--text);
  transition: border 120ms, box-shadow 120ms;
}
.kk-preset-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.kk-preset-card h3 { font-size: 17px; font-weight: 600; margin: 10px 0 6px; }
.kk-preset-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.kk-preset-card .icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--soft-teal); color: var(--primary);
  display: grid; place-items: center;
}
.kk-result-total {
  background: var(--primary); color: #fff;
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center; margin-bottom: 28px;
}
.kk-result-total .amount {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 64px; line-height: 1; letter-spacing: -0.04em;
}
.kk-result-total p { opacity: 0.85; margin: 8px 0 0; }
.kk-result-item {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 10px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.kk-result-item h3 { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.kk-result-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.kk-result-item .price { font-size: 18px; font-weight: 700; color: var(--primary-press); white-space: nowrap; }

/* ============================================================
   PERSONAL CHECKLIST (mijn-checklist)
   ============================================================ */
.kk-phase-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px;
}
.kk-phase-card.active { border-color: var(--primary); background: var(--soft-teal); }
.kk-phase-card h2 { font-size: 20px; font-weight: 600; margin: 0 0 14px; }
.kk-phase-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.kk-phase-card li { font-size: 15px; color: var(--text-2); padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.kk-phase-card li:last-child { border-bottom: 0; }

/* ============================================================
   NOTICES
   ============================================================ */
.kk-notice {
  padding: 14px 20px; border-radius: var(--radius); font-size: 14.5px; margin-bottom: 20px;
}
.kk-notice.success { background: #ECFDF3; color: #12B76A; border: 1px solid #A9EFC5; }
.kk-notice.error { background: #FEF3F2; color: #D92D20; border: 1px solid #FECDCA; }

/* ============================================================
   BACKWARD-COMPAT — classes used by existing templates
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--soft-teal) 0%, var(--bg) 100%);
  padding: 56px 40px 40px;
}
.page-hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 52px;
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 12px 0 0; max-width: 720px;
}
.page-hero .lead { font-size: 17px; color: var(--text-2); margin-top: 14px; max-width: 640px; }
.page-hero .price-range { color: var(--text-muted); font-size: 15px; margin-top: 8px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary-press); font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.lead { font-size: 17px; color: var(--text-2); line-height: 1.6; }

.section {
  padding: 56px 40px;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
}
.section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; font-size: 36px;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-heading { margin-bottom: 28px; }

.panel {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 28px;
}

.grid-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: start; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 120ms, transform 120ms;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.card h3 { font-size: 17px; font-weight: 600; margin: 0; }
.card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.card span { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.card a { color: var(--primary-press); font-size: 14px; font-weight: 600; margin-top: auto; text-decoration: none; }

.button {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 999px;
  border: none; font-size: 14.5px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: all 120ms;
}
.button.primary { background: var(--primary); color: #fff; }
.button.primary:hover { background: var(--primary-hover); color: #fff; }
.button.secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.button.secondary:hover { border-color: var(--primary); color: var(--primary-press); }

.price-range { color: var(--primary-press); font-weight: 700; font-size: 18px; }

.clean-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.clean-list li { font-size: 15px; color: var(--text-2); }
.clean-list.large li { font-size: 16px; }
.clean-list li::before { content: "→\00a0"; color: var(--primary); font-weight: 600; }

.timeline { display: flex; flex-direction: column; gap: 16px; }
.timeline-item {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 8px;
}
.timeline-item.phase-active { border-color: var(--primary); background: var(--soft-teal); }
.phase { font-size: 12.5px; font-weight: 600; color: var(--primary-press);
  text-transform: uppercase; letter-spacing: 0.06em; }
.priority { font-size: 12px; font-weight: 600; padding: 3px 8px; border-radius: 999px;
  background: var(--soft-peach); color: var(--accent-strong); margin-left: 8px; }
.priority.hoog { background: var(--soft-peach); color: var(--accent-strong); }
.priority.middel { background: #FFF9E5; color: #B45309; }
.priority.laag { background: var(--bg); color: var(--text-muted); }
.timeline-item h2 { font-size: 18px; font-weight: 600; margin: 0; }
.timeline-item p { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.checklist-items li::before { content: ""; }
.checklist-items li { font-size: 15px; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.form-row { display: flex; gap: 12px; }
input[type="email"],
input[type="date"],
input[type="text"] {
  height: 48px; padding: 0 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--text);
  outline: none; width: 100%;
}
input[type="email"]:focus,
input[type="date"]:focus,
input[type="text"]:focus { border-color: var(--primary); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); cursor: pointer; }
.form-checkbox input { margin-top: 3px; accent-color: var(--primary); }
.lead-form { display: flex; flex-direction: column; gap: 12px; max-width: 520px; }

.signup-notice { padding: 12px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin: 8px 0; }
.signup-success { background: #ECFDF3; color: #12B76A; border: 1px solid #A9EFC5; }
.signup-error { background: #FEF3F2; color: #D92D20; border: 1px solid #FECDCA; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .kk-header { padding: 14px 20px; }
  .kk-header-bar { padding: 7px 20px; font-size: 12px; }
  .kk-nav { gap: 18px; font-size: 14px; }
  .kk-hero2-grid { grid-template-columns: 1fr; gap: 40px; }
  .kk-hero2 h1 { font-size: 48px; }
  .kk-hero2 { padding: 40px 0 56px; }
  .kk-steps { grid-template-columns: 1fr; }
  .kk-phase-content { grid-template-columns: 1fr; }
  .kk-phase-tabs { flex-wrap: wrap; }
  .kk-phase-tab { flex: 1; min-width: 0; }
  .kk-checklist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kk-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kk-pullquote { grid-template-columns: 1fr; gap: 32px; }
  .kk-footer2-cols { grid-template-columns: 1fr 1fr; }
  .grid-two { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 20px 32px; }
  .page-hero h1 { font-size: 38px; }
  .section { padding: 40px 20px; }
  .kk-lead-section { padding: 32px 24px; border-radius: 20px; }
  .kk-cta-strip { padding: 40px; border-radius: 20px; }
  .kk-cta-strip h2 { font-size: 32px; }
  .kk-prose-grid { grid-template-columns: 1fr; }
  .kk-checklist-layout { grid-template-columns: 1fr; }
  .kk-cl-nav { flex-direction: row; flex-wrap: wrap; position: static; }
  .kk-article-grid-2 { grid-template-columns: 1fr; }
  .kk-preset-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .kk-header-bar .links { display: none; }
  .kk-header { padding: 12px 20px; }
  .kk-hero2 h1 { font-size: 36px; }
  .kk-hero2 .lead { font-size: 16px; }
  .kk-checklist-grid { grid-template-columns: 1fr; }
  .kk-article-grid { grid-template-columns: 1fr; }
  .kk-numbers { grid-template-columns: 1fr 1fr; }
  .kk-footer2-cols { grid-template-columns: 1fr; }
  .kk-cta-strip { padding: 28px 24px; border-radius: 16px; }
  .kk-cta-strip h2 { font-size: 26px; }
  .form-row { flex-direction: column; }
  .kk-lead-form .row { flex-direction: column; }
  .cards { grid-template-columns: 1fr; }
  .kk-article-head h1 { font-size: 36px; }
  .kk-section-head h2 { font-size: 32px; }
}

/* ============================================================
   Product page responsive overrides
   ============================================================ */
@media (max-width: 900px) {
  .pp-hero-grid { grid-template-columns: 1fr; }
  .pp-advice { grid-template-columns: 1fr 1fr; }
  .pp-compare { grid-template-columns: 1fr; }
  .pp-editorial { grid-template-columns: 1fr; }
  .pp-toc { display: none; }
  .pp-benefits { grid-template-columns: 1fr; }
  .pp-midcta-grid { grid-template-columns: 1fr; }
  .pp-footcta { grid-template-columns: 1fr; }
  .pp-footer-grid { grid-template-columns: 1fr 1fr; }
  .sd-hero-grid { grid-template-columns: 1fr; }
  .sd-page-body { grid-template-columns: 1fr; }
  .sd-sticky-col { display: none; }
  .sd-verdict-grid { grid-template-columns: 1fr 1fr; }
  .sd-proscons { grid-template-columns: 1fr; }
  .sd-why { grid-template-columns: 1fr; }
  .sd-partners { grid-template-columns: 1fr; }
  .sd-alts { grid-template-columns: 1fr; }
  .sd-related { grid-template-columns: 1fr; }
  .sd-finalcta { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pp-hero h1 { font-size: 42px; }
  .pp-sec-head { flex-direction: column; }
  .pp-advice { grid-template-columns: 1fr; }
  .pp-m-advice { grid-template-columns: 1fr; }
  .pp-topbar .links { display: none; }
  .sd-verdict-grid { grid-template-columns: 1fr; }
  .sd-specs .row { grid-template-columns: 1fr 1fr; }
}
/* ============================================================
   KraamKlaar — Product detail page (redesign)
   Conversion-focused product advice: hero with best-choices,
   sticky comparison bar, advice cards, comparison grid, FAQ.
   Built on existing tokens from site.css.
   ============================================================ */

/* ---------- Custom header for this page (per spec) ---------- */
.pp-header-wrap {
  position: sticky; top: 0; z-index: 30;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-soft);
}
.pp-topbar {
  background: var(--text);
  color: #fff;
  font-size: 12.5px;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pp-topbar .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.pp-topbar .pulse .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6FE0C8;
  box-shadow: 0 0 0 4px rgba(111, 224, 200, 0.18);
}
.pp-topbar .links { display: flex; gap: 22px; opacity: 0.88; }
.pp-topbar a { color: #fff; }

.pp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 40px;
}
.pp-header .nav {
  display: flex; align-items: center; gap: 32px;
  font-size: 14.5px; color: var(--text-2); font-weight: 500;
}
.pp-header .nav a { transition: color 120ms; }
.pp-header .nav a:hover { color: var(--primary-press); }
.pp-header .nav a.active { color: var(--primary-press); position: relative; }
.pp-header .nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -20px;
  height: 2px; background: var(--primary); border-radius: 2px;
}

/* ---------- Breadcrumb strip ---------- */
.pp-crumb {
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
  padding: 14px 0;
}
.pp-crumb-inner {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.pp-crumb-inner svg { width: 13px; height: 13px; opacity: 0.5; }
.pp-crumb-inner .current { color: var(--text); }

/* ---------- HERO ---------- */
.pp-hero {
  background: var(--bg);
  padding: 48px 0 36px;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%; width: 60%; height: 140%;
  background: radial-gradient(circle at 70% 50%, rgba(47,158,143,0.06), transparent 60%);
  pointer-events: none;
}
.pp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
  position: relative;
}

.pp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-press);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pp-eyebrow .dot {
  width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
}

.pp-hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  color: var(--text);
  max-width: 580px;
}
.pp-hero h1 em {
  font-style: italic;
  color: var(--primary-press);
}

.pp-hero .intro {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 520px;
  margin: 22px 0 0;
}

.pp-pricerange {
  display: inline-flex; align-items: baseline; gap: 12px;
  margin-top: 22px;
  padding: 10px 18px 11px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.pp-pricerange .lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.pp-pricerange .val {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1;
}

.pp-trustbadge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  background: var(--soft-teal);
  border: 1px solid #C9E5DE;
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-size: 13px;
  color: var(--primary-press);
  font-weight: 500;
}
.pp-trustbadge .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.pp-trustbadge .ic svg { width: 12px; height: 12px; }

.pp-hero-ctas {
  display: flex; align-items: center; gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.pp-hero .disc {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pp-hero .disc svg { width: 13px; height: 13px; opacity: 0.7; }

/* ---------- Best choices card (right of hero) ---------- */
.pp-bestcard {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 18px 44px rgba(31,110,98,0.08);
  overflow: hidden;
  position: relative;
}
.pp-bestcard-head {
  padding: 20px 22px 16px;
  background: linear-gradient(180deg, var(--soft-teal) 0%, rgba(232,246,243,0) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.pp-bestcard-head .row {
  display: flex; align-items: center; justify-content: space-between;
}
.pp-bestcard-head .title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 6px 0 0;
}
.pp-bestcard-head .badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
  background: var(--surface);
  border: 1px solid #C9E5DE;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pp-bestcard-head .badge svg { width: 11px; height: 11px; }
.pp-bestcard-head .sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.pp-bestrow {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-soft);
}
.pp-bestrow:last-child { border-bottom: 0; }
.pp-bestrow .thumb {
  width: 56px; height: 56px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(135deg, #E8F6F3 0 8px, #DCEFE9 8px 16px);
  border: 1px solid #C9E5DE;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.pp-bestrow.peach .thumb {
  background: repeating-linear-gradient(135deg, #FFF0EA 0 8px, #FFE1D2 8px 16px);
  border-color: #FBDAC8;
}
.pp-bestrow.blue .thumb {
  background: repeating-linear-gradient(135deg, #ECF1F9 0 8px, #DCE5F2 8px 16px);
  border-color: #C9D6E8;
}
.pp-bestrow .thumb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.65);
}
.pp-bestrow .body { flex: 1; min-width: 0; }
.pp-bestrow .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.pp-bestrow.peach .lbl { color: var(--accent-strong); }
.pp-bestrow.blue .lbl { color: #3B5A8C; }
.pp-bestrow .reason {
  font-size: 13.5px;
  color: var(--text-2);
  margin: 4px 0 4px;
  line-height: 1.45;
}
.pp-bestrow .partner {
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: "Geist Mono", monospace;
}
.pp-bestrow .cta {
  align-self: stretch;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  height: fit-content;
  align-self: center;
  transition: all 120ms;
}
.pp-bestrow .cta:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pp-bestrow .cta svg { width: 11px; height: 11px; }

.pp-bestcard-foot {
  padding: 12px 22px;
  background: var(--bg);
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border-soft);
}
.pp-bestcard-foot .l { display: inline-flex; align-items: center; gap: 6px; }
.pp-bestcard-foot svg { width: 12px; height: 12px; }

/* ---------- Sticky comparison bar ---------- */
.pp-stickybar-wrap {
  position: sticky; top: 92px; z-index: 15;
  margin-top: 28px;
}
.pp-stickybar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px 12px 22px;
}
.pp-stickybar .title {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.pp-stickybar .title .pin {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
}
.pp-stickybar .title .pin svg { width: 12px; height: 12px; }
.pp-stickybar .partners {
  display: flex; gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}
.pp-stickybar .partner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 120ms;
}
.pp-stickybar .partner-btn:hover {
  border-color: var(--primary);
  color: var(--primary-press);
  background: var(--soft-teal);
}
.pp-stickybar .partner-btn .logo {
  width: 16px; height: 16px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  background: var(--text);
  color: #fff;
  display: grid; place-items: center;
}
.pp-stickybar .partner-btn .logo.bol { background: #0F76C9; }
.pp-stickybar .partner-btn .logo.bp { background: #D74A4A; }
.pp-stickybar .partner-btn .logo.pn { background: #1F8761; }
.pp-stickybar .partner-btn svg { width: 11px; height: 11px; opacity: 0.6; }
.pp-stickybar .note {
  font-size: 11.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ---------- Short advice summary ---------- */
.pp-section { padding: 56px 0; }
.pp-section.tight { padding: 36px 0; }

.pp-sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px; gap: 24px; flex-wrap: wrap;
}
.pp-sec-head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.pp-sec-head h2 em { font-style: italic; color: var(--primary-press); }
.pp-sec-head .sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 6px 0 0;
}

.pp-advice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pp-advice-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.pp-advice-card .ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.pp-advice-card .ic svg { width: 16px; height: 16px; }
.pp-advice-card.peach .ic { background: var(--soft-peach); color: var(--accent-strong); }
.pp-advice-card.warn .ic { background: #FFF4E5; color: #B45309; }
.pp-advice-card h3 {
  font-size: 15.5px;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.pp-advice-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Comparison grid (early) ---------- */
.pp-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pp-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border 120ms, box-shadow 120ms, transform 120ms;
}
.pp-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pp-card.featured {
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 18px 40px rgba(47,158,143,0.10);
}

.pp-card-ribbon {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  background: var(--soft-teal);
  border-bottom: 1px solid #C9E5DE;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.pp-card-ribbon .star {
  display: inline-flex; align-items: center; gap: 6px;
}
.pp-card-ribbon .star svg { width: 12px; height: 12px; }
.pp-card.peach .pp-card-ribbon { background: var(--soft-peach); border-bottom-color: #FBDAC8; color: var(--accent-strong); }
.pp-card.blue .pp-card-ribbon { background: #ECF1F9; border-bottom-color: #C9D6E8; color: #3B5A8C; }

.pp-card-body {
  padding: 22px 22px 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pp-card-shot {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  background: repeating-linear-gradient(135deg, #E8F6F3 0 10px, #DCEFE9 10px 20px);
  border: 1px solid #C9E5DE;
  position: relative;
  display: grid; place-items: center;
}
.pp-card.peach .pp-card-shot { background: repeating-linear-gradient(135deg, #FFF0EA 0 10px, #FFE1D2 10px 20px); border-color: #FBDAC8; }
.pp-card.blue .pp-card-shot { background: repeating-linear-gradient(135deg, #ECF1F9 0 10px, #DCE5F2 10px 20px); border-color: #C9D6E8; }
.pp-card-shot .placeholder-label {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 999px;
}

.pp-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.pp-card .price {
  display: flex; align-items: baseline; gap: 8px;
}
.pp-card .price .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.pp-card .price .val {
  font-family: "Geist Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.pp-card .for {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  line-height: 1.45;
}
.pp-card .for strong {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 3px;
}

.pp-card .pros {
  display: flex; flex-direction: column; gap: 6px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.pp-card .pros li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.pp-card .pros li .chk {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.pp-card .attn {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px;
  background: #FFF4E5;
  border-radius: 10px;
  border: 1px solid #FBE2BC;
  font-size: 13px;
  color: #7A4B0A;
  line-height: 1.45;
}
.pp-card .attn svg { width: 14px; height: 14px; flex-shrink: 0; color: #B45309; margin-top: 1px; }

.pp-card-foot {
  padding: 16px 22px 18px;
  margin-top: auto;
  border-top: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 8px;
}
.pp-card-foot .cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  border: 0;
  box-shadow: 0 1px 2px rgba(31,110,98,0.18), inset 0 -2px 0 rgba(0,0,0,0.08);
  transition: background 120ms;
}
.pp-card-foot .cta:hover { background: var(--primary-hover); }
.pp-card-foot .cta .logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
}
.pp-card-foot .meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
}
.pp-card-foot .meta .aff {
  display: inline-flex; align-items: center; gap: 5px;
}
.pp-card-foot .meta svg { width: 11px; height: 11px; }

/* ---------- Editorial explanation ---------- */
.pp-editorial {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 720px);
  gap: 48px;
  align-items: start;
}
.pp-toc {
  position: sticky; top: 110px;
  align-self: start;
}
.pp-toc-h {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pp-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-toc a {
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.4;
  padding-left: 12px;
  border-left: 2px solid var(--border-soft);
  display: block;
}
.pp-toc a.active {
  color: var(--primary-press);
  border-left-color: var(--primary);
  font-weight: 600;
}

.pp-prose {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  max-width: 720px;
}
.pp-prose h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 36px 0 14px;
  scroll-margin-top: 120px;
}
.pp-prose h2:first-child { margin-top: 0; }
.pp-prose p { margin: 0 0 16px; }

/* Callouts */
.pp-callout {
  border-radius: 14px;
  padding: 18px 20px 18px 60px;
  margin: 22px 0;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
}
.pp-callout .ic {
  position: absolute; left: 18px; top: 18px;
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
}
.pp-callout .ic svg { width: 15px; height: 15px; }
.pp-callout h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.pp-callout p { margin: 0; }
.pp-callout.tip { background: var(--soft-teal); }
.pp-callout.tip h4 { color: var(--primary-press); }
.pp-callout.tip .ic { background: var(--primary); }
.pp-callout.save { background: var(--soft-peach); }
.pp-callout.save h4 { color: var(--accent-strong); }
.pp-callout.save .ic { background: var(--accent); }
.pp-callout.warn { background: #FFF4E5; }
.pp-callout.warn h4 { color: #B45309; }
.pp-callout.warn .ic { background: #F79009; }
.pp-callout.pick { background: var(--surface); border: 1px solid #C9E5DE; }
.pp-callout.pick h4 { color: var(--primary-press); }
.pp-callout.pick .ic { background: var(--primary); }

/* ---------- Benefits / attention points ---------- */
.pp-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pp-benefit {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 28px 30px;
}
.pp-benefit .head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.pp-benefit .head .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
}
.pp-benefit .head .ic svg { width: 18px; height: 18px; }
.pp-benefit.attn .head .ic { background: #FFF4E5; color: #B45309; }
.pp-benefit h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}
.pp-benefit ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-benefit li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.pp-benefit li:last-child { border-bottom: 0; }
.pp-benefit li .bullet {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pp-benefit li .bullet svg { width: 12px; height: 12px; }
.pp-benefit.attn li .bullet { background: #FFF4E5; color: #B45309; }

/* ---------- Mid-page CTA ---------- */
.pp-midcta {
  background: linear-gradient(135deg, #1F6E62 0%, #2F9E8F 100%);
  color: #fff;
  border-radius: 28px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.pp-midcta::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%; width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.pp-midcta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
}
.pp-midcta h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.pp-midcta p {
  font-size: 16px;
  opacity: 0.88;
  margin: 14px 0 0;
  max-width: 480px;
  line-height: 1.55;
}
.pp-midcta .disc {
  font-size: 12.5px;
  opacity: 0.7;
  margin-top: 14px;
}
.pp-midcta-buttons {
  display: flex; flex-direction: column; gap: 10px;
}
.pp-midcta-buttons .pb {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  transition: transform 120ms, background 120ms;
}
.pp-midcta-buttons .pb:hover {
  background: #fff;
  transform: translateY(-1px);
}
.pp-midcta-buttons .pb .logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.pp-midcta-buttons .pb .logo.bol { background: #0F76C9; }
.pp-midcta-buttons .pb .logo.bp { background: #D74A4A; }
.pp-midcta-buttons .pb .logo.pn { background: #1F8761; }
.pp-midcta-buttons .pb .arrow { margin-left: auto; opacity: 0.5; }
.pp-midcta-buttons .pb .arrow svg { width: 14px; height: 14px; }

/* ---------- FAQ ---------- */
.pp-faq {
  max-width: 820px;
  margin: 0 auto;
}
.pp-faq-row {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 10px;
}
.pp-faq-row .q {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.pp-faq-row .q .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--text-muted);
  flex-shrink: 0;
}
.pp-faq-row .q .ic svg { width: 14px; height: 14px; transition: transform 120ms; }
.pp-faq-row.open .ic { background: var(--primary); color: #fff; }
.pp-faq-row.open .ic svg { transform: rotate(45deg); }
.pp-faq-row .a {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pp-faq-row.open .a { display: block; }

/* ---------- Footer CTA (soft) ---------- */
.pp-footcta {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pp-footcta::before {
  content: "";
  position: absolute;
  bottom: -40%; right: -5%; width: 40%; height: 180%;
  background: radial-gradient(circle, rgba(255,138,101,0.10), transparent 60%);
  pointer-events: none;
}
.pp-footcta h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.pp-footcta h2 em { color: var(--primary-press); font-style: italic; }
.pp-footcta p {
  font-size: 15.5px;
  color: var(--text-2);
  margin: 10px 0 0;
  line-height: 1.55;
  max-width: 540px;
}
.pp-footcta .cta-wrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.pp-footcta .num {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.pp-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  margin-top: 56px;
}
.pp-footer h4 { color: #fff; font-size: 13px; font-weight: 600; margin: 0 0 14px; }
.pp-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-footer a { color: rgba(255,255,255,0.7); font-size: 13.5px; }
.pp-footer a:hover { color: #fff; }
.pp-footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.pp-footer .brand-block .lead {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 320px;
}
.pp-footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
}
.pp-footer-meta a { margin-left: 16px; }

/* ============================================================
   MOBILE — same content, 390px shell
   ============================================================ */
.pp-m {
  width: 100%;
  background: var(--bg);
  padding-bottom: 88px; /* room for sticky bottom CTA */
}
.pp-m-topbar {
  background: var(--text);
  color: #fff;
  font-size: 11.5px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-m-topbar .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6FE0C8;
  box-shadow: 0 0 0 4px rgba(111, 224, 200, 0.18);
}
.pp-m-header {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.pp-m-header .right { display: flex; gap: 8px; align-items: center; }
.pp-m-header .menu-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  display: grid; place-items: center;
  color: var(--text);
}
.pp-m-hero {
  padding: 24px 18px 20px;
  background: linear-gradient(180deg, var(--soft-teal) 0%, var(--bg) 70%);
}
.pp-m-hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
}
.pp-m-hero .intro {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 12px 0 0;
}
.pp-m-hero .pricerow {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px;
}
.pp-m-hero .price-pill {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 8px 14px;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.pp-m-hero .price-pill .val {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  color: var(--text);
}
.pp-m-hero .price-pill .lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
}
.pp-m-hero .trustbadge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  background: rgba(255,255,255,0.6);
  border: 1px solid #C9E5DE;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--primary-press);
}
.pp-m-hero .trustbadge .ic {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.pp-m-hero .trustbadge svg { width: 10px; height: 10px; }
.pp-m-hero .disc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 14px;
}
.pp-m-section { padding: 24px 18px; }
.pp-m-section.tinted { background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.pp-m-section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  line-height: 1.1;
}
.pp-m-section .sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.55;
}

.pp-m-best {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  margin-top: 18px;
  overflow: hidden;
}
.pp-m-best-head {
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--soft-teal) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-soft);
}
.pp-m-best-head .title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
}
.pp-m-best-head .badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.pp-m-best .row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
}
.pp-m-best .row:last-child { border-bottom: 0; }
.pp-m-best .row .thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #E8F6F3 0 6px, #DCEFE9 6px 12px);
  border: 1px solid #C9E5DE;
  flex-shrink: 0;
}
.pp-m-best .row.peach .thumb { background: repeating-linear-gradient(135deg, #FFF0EA 0 6px, #FFE1D2 6px 12px); border-color: #FBDAC8; }
.pp-m-best .row.blue .thumb { background: repeating-linear-gradient(135deg, #ECF1F9 0 6px, #DCE5F2 6px 12px); border-color: #C9D6E8; }
.pp-m-best .row .body { flex: 1; min-width: 0; }
.pp-m-best .row .lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.pp-m-best .row.peach .lbl { color: var(--accent-strong); }
.pp-m-best .row.blue .lbl { color: #3B5A8C; }
.pp-m-best .row .reason {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.4;
  margin: 2px 0 0;
}
.pp-m-best .row .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.pp-m-best .row .arrow svg { width: 12px; height: 12px; }

.pp-m-advice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pp-m-advice .card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.pp-m-advice .card .ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.pp-m-advice .card.peach .ic { background: var(--soft-peach); color: var(--accent-strong); }
.pp-m-advice .card.warn .ic { background: #FFF4E5; color: #B45309; }
.pp-m-advice .card .ic svg { width: 14px; height: 14px; }
.pp-m-advice .card h4 { font-size: 13px; font-weight: 600; margin: 0; }
.pp-m-advice .card p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.pp-m-compare .pp-card {
  margin-bottom: 14px;
}
.pp-m-compare .pp-card h3 { font-size: 22px; }
.pp-m-compare .pp-card-body { padding: 18px 18px 0; }
.pp-m-compare .pp-card-foot { padding: 14px 18px 16px; }
.pp-m-compare .pp-card-shot { height: 100px; }

.pp-m-prose {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
}
.pp-m-prose h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 22px 0 8px;
}
.pp-m-prose p { margin: 0 0 12px; }
.pp-m-prose .pp-callout { font-size: 13.5px; padding: 14px 14px 14px 50px; }
.pp-m-prose .pp-callout .ic { left: 12px; top: 12px; width: 26px; height: 26px; }

.pp-m-benefits .pp-benefit { padding: 20px 22px; margin-bottom: 10px; }
.pp-m-benefits .pp-benefit h3 { font-size: 22px; }
.pp-m-benefits .pp-benefit li { font-size: 13.5px; }

.pp-m-midcta {
  background: linear-gradient(135deg, #1F6E62, #2F9E8F);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  margin: 0 18px;
}
.pp-m-midcta h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: #fff;
}
.pp-m-midcta p { font-size: 13px; opacity: 0.85; margin: 0 0 14px; }
.pp-m-midcta .pb {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pp-m-midcta .pb .logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
}
.pp-m-midcta .pb .logo.bol { background: #0F76C9; }
.pp-m-midcta .pb .logo.bp { background: #D74A4A; }
.pp-m-midcta .pb .logo.pn { background: #1F8761; }
.pp-m-midcta .pb .arrow { margin-left: auto; opacity: 0.5; }
.pp-m-midcta .pb .arrow svg { width: 12px; height: 12px; }

.pp-m-faq .pp-faq-row { padding: 14px 16px; }
.pp-m-faq .pp-faq-row .q { font-size: 14.5px; }
.pp-m-faq .pp-faq-row .a { font-size: 13.5px; }

.pp-m-footcta {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px;
  margin: 0 18px;
}
.pp-m-footcta h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  line-height: 1.1;
}
.pp-m-footcta p { font-size: 13.5px; color: var(--text-muted); margin: 0 0 14px; line-height: 1.55; }

/* Sticky mobile bottom CTA */
.pp-m-stickybottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 14px;
  display: flex; gap: 8px; align-items: center;
  z-index: 30;
}
.pp-m-stickybottom .info {
  flex: 1;
  display: flex; flex-direction: column;
  font-size: 11px; color: var(--text-muted);
}
.pp-m-stickybottom .info strong {
  font-size: 13.5px; color: var(--text); font-weight: 600;
}
.pp-m-stickybottom .big-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary);
  color: #fff;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(31,110,98,0.24), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.pp-m-stickybottom .big-cta svg { width: 14px; height: 14px; }

/* ---------- General button reused ---------- */
.pp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 120ms;
  white-space: nowrap;
}
.pp-btn svg { width: 15px; height: 15px; }
.pp-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(31,110,98,0.18), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.pp-btn-primary:hover { background: var(--primary-hover); }
.pp-btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.pp-btn-secondary:hover { border-color: var(--primary); color: var(--primary-press); }
.pp-btn-ghost { background: transparent; color: var(--text); }
.pp-btn-pill {
  height: 38px; padding: 0 16px; font-size: 13.5px;
}
.pp-btn-cta-primary-lg {
  height: 50px; padding: 0 26px; font-size: 15.5px;
}
/* ============================================================
   KraamKlaar — Single product detail page
   Child page of the babyfoon comparison page.
   Reuses tokens from site.css; product-detail-specific layout.
   sd- prefix = "single detail"
   ============================================================ */

/* ---------- Hero ---------- */
.sd-hero {
  background: var(--bg);
  padding: 36px 0 32px;
  position: relative;
  overflow: hidden;
}
.sd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

/* --- Gallery (left) --- */
.sd-gallery {
  position: relative;
}
.sd-gallery .main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.9), rgba(255,255,255,0) 60%),
    repeating-linear-gradient(135deg, #E8F6F3 0 14px, #DCEFE9 14px 28px);
  border: 1px solid #C9E5DE;
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.sd-gallery .main .ph-label {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-soft);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 999px;
}
.sd-gallery .cat-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.sd-gallery .cat-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.sd-gallery .save-btn {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: grid; place-items: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.sd-gallery .save-btn svg { width: 16px; height: 16px; }

.sd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.sd-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #E8F6F3 0 8px, #DCEFE9 8px 16px);
  border: 1px solid #C9E5DE;
  cursor: pointer;
  position: relative;
}
.sd-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47,158,143,0.18); }
.sd-thumb.peach { background: repeating-linear-gradient(135deg, #FFF0EA 0 8px, #FFE1D2 8px 16px); border-color: #FBDAC8; }
.sd-thumb.blue { background: repeating-linear-gradient(135deg, #ECF1F9 0 8px, #DCE5F2 8px 16px); border-color: #C9D6E8; }
.sd-thumb.sand { background: repeating-linear-gradient(135deg, #FCEBD4 0 8px, #F4DDB7 8px 16px); border-color: #EBD1A4; }

/* --- Hero info (right) --- */
.sd-info { display: flex; flex-direction: column; gap: 14px; }
.sd-info .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-press);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.sd-info .eyebrow .dot {
  width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
}
.sd-info h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}
.sd-info .desc {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.sd-info .meta-row {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sd-info .pricerange {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 8px 16px 9px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.sd-info .pricerange .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.sd-info .pricerange .val {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1;
}
.sd-info .stars {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.sd-info .stars .row { display: inline-flex; color: #F4A52A; gap: 2px; }
.sd-info .stars .row svg { width: 14px; height: 14px; }
.sd-info .stars .num { font-weight: 600; color: var(--text); }
.sd-info .stars .ct { color: var(--text-muted); }

.sd-info .badge-best {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 4px;
  background: var(--soft-teal);
  border: 1px solid #C9E5DE;
  border-radius: 999px;
  padding: 7px 14px 7px 7px;
  font-size: 13px;
  color: var(--primary-press);
  font-weight: 500;
  align-self: flex-start;
}
.sd-info .badge-best .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.sd-info .badge-best .ic svg { width: 12px; height: 12px; }
.sd-info .badge-best strong { font-weight: 600; }

/* --- Verdict block (KraamKlaar oordeel) --- */
.sd-verdict {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 20px 22px;
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 14px;
}
.sd-verdict .head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.sd-verdict .head .lbl {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.sd-verdict .head .lbl .ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.sd-verdict .head .lbl .ic svg { width: 12px; height: 12px; }
.sd-verdict .head .score {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft-teal);
  border: 1px solid #C9E5DE;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-press);
}
.sd-verdict .head .score .num {
  font-family: "Geist Mono", monospace;
  font-weight: 700;
}
.sd-verdict .verdict-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.sd-verdict .pros {
  display: flex; flex-direction: column; gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
.sd-verdict .pros li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.sd-verdict .pros li .chk {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--soft-teal);
  color: var(--primary);
  border-radius: 6px;
  display: grid; place-items: center;
  margin-top: 1px;
}
.sd-verdict .pros li .chk svg { width: 11px; height: 11px; }
.sd-verdict .warn-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 14px;
  background: #FFF4E5;
  border: 1px solid #FBE2BC;
  border-radius: 10px;
  font-size: 13.5px;
  color: #7A4B0A;
  line-height: 1.45;
}
.sd-verdict .warn-row svg { width: 16px; height: 16px; flex-shrink: 0; color: #B45309; margin-top: 1px; }

/* --- Primary CTA block in hero --- */
.sd-hero-ctas {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 4px;
}
.sd-hero-ctas .primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
  border: 0;
  box-shadow: 0 2px 4px rgba(31,110,98,0.20), inset 0 -2px 0 rgba(0,0,0,0.10);
  transition: background 120ms;
}
.sd-hero-ctas .primary:hover { background: var(--primary-hover); }
.sd-hero-ctas .primary .logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.sd-hero-ctas .primary .logo.bol { background: #fff; color: #0F76C9; }
.sd-hero-ctas .primary .arrow { opacity: 0.7; }
.sd-hero-ctas .primary .arrow svg { width: 14px; height: 14px; }
.sd-hero-ctas .secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sd-hero-ctas .secondary-row a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: all 120ms;
}
.sd-hero-ctas .secondary-row a:hover {
  border-color: var(--primary);
  color: var(--primary-press);
  background: var(--soft-teal);
}
.sd-hero-ctas .secondary-row .logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
}
.sd-hero-ctas .secondary-row .logo.bp { background: #D74A4A; }
.sd-hero-ctas .secondary-row .logo.pn { background: #1F8761; }
.sd-hero-ctas .secondary-row .logo.cb { background: #2C8DCC; }
.sd-hero-ctas .secondary-row svg { width: 11px; height: 11px; opacity: 0.55; }
.sd-hero-ctas .disc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex; align-items: center; gap: 6px;
}
.sd-hero-ctas .disc svg { width: 13px; height: 13px; opacity: 0.7; }

/* ---------- Page body — 2-column with sticky buy box ---------- */
.sd-page-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  padding: 56px 0 80px;
  align-items: start;
}
.sd-content { min-width: 0; }
.sd-sticky-col { position: sticky; top: 96px; align-self: start; }

/* Sticky buy box */
.sd-buybox {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 16px 40px rgba(31,110,98,0.08);
}
.sd-buybox .head {
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--soft-teal) 0%, rgba(232,246,243,0) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.sd-buybox .head .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
  background: var(--surface);
  border: 1px solid #C9E5DE;
  padding: 4px 10px;
  border-radius: 999px;
}
.sd-buybox .head .badge svg { width: 11px; height: 11px; }
.sd-buybox .head h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 8px 0 4px;
  line-height: 1.15;
}
.sd-buybox .head .price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
}
.sd-buybox .head .price .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
}
.sd-buybox .head .price .val {
  font-family: "Geist Mono", monospace;
  font-size: 15px;
  font-weight: 600;
}
.sd-buybox .partner-list {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.sd-buybox .partner-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: all 120ms;
}
.sd-buybox .partner-btn.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(31,110,98,0.18), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.sd-buybox .partner-btn:not(.primary):hover {
  border-color: var(--primary);
  color: var(--primary-press);
  background: var(--soft-teal);
}
.sd-buybox .partner-btn .logo {
  width: 24px; height: 24px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sd-buybox .partner-btn.primary .logo {
  background: #fff;
  color: #0F76C9;
}
.sd-buybox .partner-btn .logo.bp { background: #D74A4A; }
.sd-buybox .partner-btn .logo.pn { background: #1F8761; }
.sd-buybox .partner-btn .logo.cb { background: #2C8DCC; }
.sd-buybox .partner-btn .meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}
.sd-buybox .partner-btn.primary .meta { color: rgba(255,255,255,0.75); }
.sd-buybox .partner-btn .arrow {
  margin-left: auto;
  opacity: 0.5;
  display: flex;
}
.sd-buybox .partner-btn .arrow svg { width: 12px; height: 12px; }
.sd-buybox .body {
  display: flex; flex-direction: column;
  flex: 1;
}
.sd-buybox .disc {
  padding: 8px 18px 14px;
  font-size: 11.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 6px;
}
.sd-buybox .disc svg { width: 12px; height: 12px; opacity: 0.7; }
.sd-buybox .jumps {
  padding: 14px 18px 16px;
}
.sd-buybox .jumps-h {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sd-buybox .jumps ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sd-buybox .jumps a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-2);
  transition: all 120ms;
}
.sd-buybox .jumps a:hover { background: var(--bg); color: var(--primary-press); }
.sd-buybox .jumps a svg { width: 12px; height: 12px; opacity: 0.5; }

/* ---------- Section structure ---------- */
.sd-section { padding-bottom: 48px; }
.sd-section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
  scroll-margin-top: 110px;
}
.sd-section h2 em { font-style: italic; color: var(--primary-press); }
.sd-section .sec-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 620px;
  line-height: 1.55;
}

/* Quick verdict 4-cards */
.sd-verdict-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sd-verdict-grid .card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.sd-verdict-grid .card .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.sd-verdict-grid .card.peach .ic { background: var(--soft-peach); color: var(--accent-strong); }
.sd-verdict-grid .card.warn .ic { background: #FFF4E5; color: #B45309; }
.sd-verdict-grid .card .ic svg { width: 14px; height: 14px; }
.sd-verdict-grid .card h4 { font-size: 14px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.sd-verdict-grid .card p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* Pros / cons cards */
.sd-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sd-pc {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 24px 26px;
}
.sd-pc .head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.sd-pc .head .ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
}
.sd-pc.con .head .ic { background: #FFF4E5; color: #B45309; }
.sd-pc .head .ic svg { width: 16px; height: 16px; }
.sd-pc h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0;
}
.sd-pc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sd-pc li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px;
  line-height: 1.45;
}
.sd-pc li:last-child { border-bottom: 0; }
.sd-pc .bullet {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sd-pc.con .bullet { background: #FFF4E5; color: #B45309; }
.sd-pc .bullet svg { width: 11px; height: 11px; }

/* Specifications table */
.sd-specs {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
}
.sd-specs .row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px;
  gap: 16px;
}
.sd-specs .row:last-child { border-bottom: 0; }
.sd-specs .row .k {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.sd-specs .row .v { color: var(--text); }
.sd-specs .row .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
}
.sd-specs .row .tag.yes { background: var(--soft-teal); color: var(--primary-press); border-color: #C9E5DE; }
.sd-specs .row .tag.no { background: #F8F0F0; color: #A03A2A; border-color: #EFD8D2; }
.sd-specs .row .tag svg { width: 11px; height: 11px; }

/* Why choose / Why not */
.sd-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sd-why .card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 26px 28px;
}
.sd-why .card .hd {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.sd-why .card .hd .ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
}
.sd-why .card.no .hd .ic { background: #FFF4E5; color: #B45309; }
.sd-why .card .hd .ic svg { width: 16px; height: 16px; }
.sd-why .card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
}
.sd-why .card p {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.6;
}
.sd-why .card .note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  display: flex; align-items: flex-start; gap: 10px;
}
.sd-why .card .note.tip { background: var(--soft-teal); color: var(--primary-press); }
.sd-why .card .note.warn { background: #FFF4E5; color: #7A4B0A; }
.sd-why .card .note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.sd-why .card .note strong { font-weight: 600; }

/* Partner buying options */
.sd-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sd-partner-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.sd-partner-card.primary {
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 12px 28px rgba(47,158,143,0.08);
}
.sd-partner-card .head {
  display: flex; align-items: center; gap: 12px;
}
.sd-partner-card .head .logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sd-partner-card .head .logo.bol { background: #0F76C9; }
.sd-partner-card .head .logo.bp { background: #D74A4A; }
.sd-partner-card .head .logo.pn { background: #1F8761; }
.sd-partner-card .head .logo.cb { background: #2C8DCC; }
.sd-partner-card .head .name { font-size: 16px; font-weight: 600; margin: 0; }
.sd-partner-card .head .aff {
  font-size: 11px;
  color: var(--text-muted);
  font-family: "Geist Mono", monospace;
  margin-top: 2px;
}
.sd-partner-card .head .tag {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
  background: var(--soft-teal);
  padding: 4px 10px;
  border-radius: 999px;
}
.sd-partner-card .note {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.sd-partner-card .price-line {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-2);
}
.sd-partner-card .price-line strong {
  font-family: "Geist Mono", monospace;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}
.sd-partner-card .cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  transition: all 120ms;
}
.sd-partner-card .cta:hover { border-color: var(--primary); color: var(--primary-press); background: var(--soft-teal); }
.sd-partner-card.primary .cta {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(31,110,98,0.18), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.sd-partner-card.primary .cta:hover { background: var(--primary-hover); }
.sd-partner-card .cta svg { width: 13px; height: 13px; }

/* Alternatives */
.sd-alts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sd-alt {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 120ms;
}
.sd-alt:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.sd-alt .shot {
  height: 80px;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #E8F6F3 0 8px, #DCEFE9 8px 16px);
  border: 1px solid #C9E5DE;
  display: grid; place-items: center;
}
.sd-alt.peach .shot { background: repeating-linear-gradient(135deg, #FFF0EA 0 8px, #FFE1D2 8px 16px); border-color: #FBDAC8; }
.sd-alt.blue .shot { background: repeating-linear-gradient(135deg, #ECF1F9 0 8px, #DCE5F2 8px 16px); border-color: #C9D6E8; }
.sd-alt.sand .shot { background: repeating-linear-gradient(135deg, #FCEBD4 0 8px, #F4DDB7 8px 16px); border-color: #EBD1A4; }
.sd-alt .shot .ph {
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sd-alt .lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.sd-alt.peach .lbl { color: var(--accent-strong); }
.sd-alt.blue .lbl { color: #3B5A8C; }
.sd-alt.sand .lbl { color: #8D6A2E; }
.sd-alt h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}
.sd-alt p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.sd-alt .row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.sd-alt .row .price {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.sd-alt .row .cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-press);
  display: inline-flex; align-items: center; gap: 4px;
}
.sd-alt .row .cta svg { width: 12px; height: 12px; }

/* Final CTA */
.sd-finalcta {
  background: linear-gradient(135deg, #1F6E62 0%, #2F9E8F 100%);
  color: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sd-finalcta::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%; width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.sd-finalcta h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
  position: relative;
}
.sd-finalcta p { font-size: 15px; opacity: 0.88; margin: 12px 0 0; line-height: 1.55; position: relative; }
.sd-finalcta .buttons {
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.sd-finalcta .pb {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 120ms, background 120ms;
}
.sd-finalcta .pb:hover { background: #fff; transform: translateY(-1px); }
.sd-finalcta .pb .logo {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--text);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.sd-finalcta .pb .logo.bol { background: #0F76C9; }
.sd-finalcta .pb .logo.bp { background: #D74A4A; }
.sd-finalcta .pb .arrow { margin-left: auto; opacity: 0.5; }
.sd-finalcta .pb .arrow svg { width: 13px; height: 13px; }
.sd-finalcta .ghost {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 120ms;
}
.sd-finalcta .ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.5); }

/* Related content */
.sd-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sd-rel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px;
  transition: all 120ms;
}
.sd-rel:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.sd-rel .topbar {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.sd-rel .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.sd-rel .topbar .dot.peach { background: var(--accent); }
.sd-rel h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.sd-rel .meta {
  font-size: 12.5px;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.sd-rel .meta svg { width: 12px; height: 12px; }

/* ============================================================
   MOBILE — sd-m prefix
   ============================================================ */
.sd-m {
  width: 100%;
  background: var(--bg);
  padding-bottom: 92px;
  position: relative;
  min-height: 100%;
}
.sd-m .crumb {
  background: var(--surface);
  padding: 12px 18px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 4px;
}
.sd-m .crumb .current { color: var(--text); }
.sd-m .crumb svg { width: 11px; height: 11px; opacity: 0.5; }

.sd-m-hero {
  padding: 18px 18px 20px;
}
.sd-m-hero .gallery {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: repeating-linear-gradient(135deg, #E8F6F3 0 12px, #DCEFE9 12px 24px);
  border: 1px solid #C9E5DE;
  display: grid; place-items: center;
  overflow: hidden;
}
.sd-m-hero .gallery .ph {
  background: rgba(255,255,255,0.85);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
}
.sd-m-hero .cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
}
.sd-m-hero .cat-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }

.sd-m-hero .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.sd-m-hero .thumbs .t {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, #E8F6F3 0 6px, #DCEFE9 6px 12px);
  border: 1px solid #C9E5DE;
}
.sd-m-hero .thumbs .t.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(47,158,143,0.18); }
.sd-m-hero .thumbs .t.peach { background: repeating-linear-gradient(135deg, #FFF0EA 0 6px, #FFE1D2 6px 12px); border-color: #FBDAC8; }
.sd-m-hero .thumbs .t.blue { background: repeating-linear-gradient(135deg, #ECF1F9 0 6px, #DCE5F2 6px 12px); border-color: #C9D6E8; }
.sd-m-hero .thumbs .t.sand { background: repeating-linear-gradient(135deg, #FCEBD4 0 6px, #F4DDB7 6px 12px); border-color: #EBD1A4; }

.sd-m-info { padding: 0 18px; }
.sd-m-info h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}
.sd-m-info .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-press);
}
.sd-m-info .eyebrow .dot { width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.sd-m-info .desc { font-size: 14.5px; color: var(--text-2); margin: 10px 0 0; line-height: 1.55; }
.sd-m-info .pr {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.sd-m-info .pricepill {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 7px 12px 8px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.sd-m-info .pricepill .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--text-muted); }
.sd-m-info .pricepill .val { font-family: "Instrument Serif", Georgia, serif; font-size: 19px; line-height: 1; }
.sd-m-info .stars { font-size: 12px; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; }
.sd-m-info .stars .row { display: inline-flex; color: #F4A52A; gap: 2px; }
.sd-m-info .stars .row svg { width: 12px; height: 12px; }
.sd-m-info .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft-teal);
  border: 1px solid #C9E5DE;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--primary-press);
  margin-top: 12px;
}
.sd-m-info .badge .ic {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.sd-m-info .badge svg { width: 10px; height: 10px; }

.sd-m-info .verdict {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px;
  margin-top: 14px;
}
.sd-m-info .verdict .head {
  display: flex; align-items: center; justify-content: space-between;
}
.sd-m-info .verdict .lbl {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-press);
  display: inline-flex; align-items: center; gap: 6px;
}
.sd-m-info .verdict .lbl .ic {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
}
.sd-m-info .verdict .lbl svg { width: 10px; height: 10px; }
.sd-m-info .verdict .score {
  font-size: 11px; font-weight: 600;
  color: var(--primary-press);
  background: var(--soft-teal);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #C9E5DE;
}
.sd-m-info .verdict h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 8px 0 10px;
}
.sd-m-info .verdict ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sd-m-info .verdict li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px;
}
.sd-m-info .verdict li .chk {
  width: 16px; height: 16px;
  border-radius: 5px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.sd-m-info .verdict li .chk svg { width: 9px; height: 9px; }
.sd-m-info .verdict .warn-line {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 11px;
  background: #FFF4E5;
  border: 1px solid #FBE2BC;
  border-radius: 9px;
  font-size: 12.5px;
  color: #7A4B0A;
  margin-top: 10px;
  line-height: 1.4;
}
.sd-m-info .verdict .warn-line svg { width: 14px; height: 14px; flex-shrink: 0; color: #B45309; margin-top: 1px; }

.sd-m-info .buy-stack {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 14px;
}
.sd-m-info .buy-stack .primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(31,110,98,0.20), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.sd-m-info .buy-stack .primary .logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #fff;
  color: #0F76C9;
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.sd-m-info .buy-stack .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.sd-m-info .buy-stack .row a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.sd-m-info .buy-stack .row .logo {
  width: 16px; height: 16px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
}
.sd-m-info .buy-stack .row .logo.bp { background: #D74A4A; }
.sd-m-info .buy-stack .row .logo.pn { background: #1F8761; }
.sd-m-info .disc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 8px;
  display: flex; align-items: center; gap: 6px;
}
.sd-m-info .disc svg { width: 12px; height: 12px; opacity: 0.7; }

.sd-m-section {
  padding: 24px 18px;
}
.sd-m-section.tinted { background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.sd-m-section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  line-height: 1.1;
}
.sd-m-section .sub { font-size: 14px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.55; }

.sd-m-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sd-m-verdict-grid .card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.sd-m-verdict-grid .card .ic {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--soft-teal);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.sd-m-verdict-grid .card.peach .ic { background: var(--soft-peach); color: var(--accent-strong); }
.sd-m-verdict-grid .card.warn .ic { background: #FFF4E5; color: #B45309; }
.sd-m-verdict-grid .card .ic svg { width: 12px; height: 12px; }
.sd-m-verdict-grid .card h4 { font-size: 13px; font-weight: 600; margin: 0; }
.sd-m-verdict-grid .card p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.sd-m-specs {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}
.sd-m-specs .row {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sd-m-specs .row:last-child { border-bottom: 0; }
.sd-m-specs .row .k {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted);
}
.sd-m-specs .row .v { font-size: 13.5px; color: var(--text); text-align: right; }
.sd-m-specs .row .tag {
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px;
  background: var(--soft-teal); color: var(--primary-press); border: 1px solid #C9E5DE;
}
.sd-m-specs .row .tag.no { background: #F8F0F0; color: #A03A2A; border-color: #EFD8D2; }

/* Sticky bottom CTA (mobile) */
.sd-m-stickybottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 14px;
  display: flex; gap: 10px; align-items: center;
  z-index: 30;
}
.sd-m-stickybottom .info {
  flex: 1;
  display: flex; flex-direction: column;
  font-size: 11px; color: var(--text-muted);
}
.sd-m-stickybottom .info strong { font-size: 13px; color: var(--text); font-weight: 600; }
.sd-m-stickybottom .big-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary);
  color: #fff;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(31,110,98,0.24), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.sd-m-stickybottom .big-cta svg { width: 14px; height: 14px; }
