/* =====================================================================
   Medisch Afvallen Vergelijker — designsysteem (premium, warm-medisch)
   Display: Fraunces (serif) · Body: Inter (sans)
   ===================================================================== */

:root {
  /* Kleur */
  --bg: #faf7f1;          /* warm crème */
  --bg-2: #f3ede2;        /* zand */
  --surface: #ffffff;
  --ink: #16302c;         /* diep teal-groen, tekst & koppen */
  --muted: #5d6c68;
  --teal: #0f7d86;        /* primair */
  --teal-dark: #0a5b62;
  --teal-soft: #e4f1f1;
  --green: #2f9e6f;       /* succes / checks */
  --green-soft: #e7f5ee;
  --gold: #c39a4d;        /* accent / trust */
  --gold-soft: #f6edda;
  --amber: #b7791f;
  --amber-soft: #fdf4e3;
  --rose: #cf6b5a;        /* nadelen */
  --line: #e9e2d4;        /* (overschreven hieronder) */
  --line: #e7e0d3;        /* warme rand */
  --line-soft: #f0ebe1;

  --radius: 18px;
  --radius-sm: 11px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 40, 36, 0.04), 0 2px 8px rgba(20, 40, 36, 0.05);
  --shadow: 0 2px 6px rgba(20, 40, 36, 0.05), 0 14px 38px rgba(20, 40, 36, 0.09);
  --maxw: 1200px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0 0 0.5em; color: var(--ink); line-height: 1.18; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.2rem; font-weight: 650; }
h4 { font-size: 1rem; font-weight: 650; }
p { margin: 0 0 1rem; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 640px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--surface); color: var(--teal-dark);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4em 0.95em; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.01em; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  background: var(--teal); color: #fff; padding: 0.78em 1.4em;
  border-radius: 999px; font-weight: 600; font-size: 0.97rem; font-family: var(--font);
  border: none; cursor: pointer; transition: background 0.15s, transform 0.06s, box-shadow 0.15s;
  box-shadow: 0 6px 16px rgba(15, 125, 134, 0.22);
}
.btn:hover { background: var(--teal-dark); text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent; color: var(--teal-dark);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn--ghost:hover { background: var(--teal-soft); border-color: var(--teal-soft); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.5em 0.95em; font-size: 0.88rem; box-shadow: none; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

/* ---------- Header ---------- */
.transparency {
  background: var(--ink); color: #d7e7e3; font-size: 0.82rem;
}
.transparency .wrap { padding: 9px 22px; display: flex; gap: 0.6em; align-items: center; justify-content: center; text-align: center; }
.transparency strong { color: #fff; }

.site-header { background: rgba(255,255,255,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6em; font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--ink); white-space: nowrap; }
.logo:hover { text-decoration: none; }
.logo .mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(140deg, var(--teal), var(--green)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm); }
.logo .mark svg { width: 21px; height: 21px; }
.logo .logo-sub { font-family: var(--font); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); display: block; margin-top: -2px; }

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.92rem; padding: 0.5em 0.7em; border-radius: 9px; white-space: nowrap; }
.nav a:hover { color: var(--ink); background: var(--bg-2); text-decoration: none; }
.nav a.active { color: var(--teal-dark); background: var(--teal-soft); }
.nav .btn, .nav a.btn { margin-left: 0.4rem; color: #fff; }
.nav a.btn:hover { color: #fff; background: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 9px; }
.nav-toggle:hover { background: var(--bg-2); }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--surface); border-bottom: 1px solid var(--line); padding: 12px 18px; gap: 2px; display: none; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 0.75em; }
  .nav .btn { margin: 0.4rem 0 0; }
}

/* ---------- Hero ---------- */
.hero { background: radial-gradient(120% 120% at 85% 0%, var(--bg-2) 0%, var(--bg) 55%); padding: 70px 0 60px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; } .hero-media { order: -1; } }
.hero .cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.hero-trust { position: absolute; left: -14px; bottom: -14px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 0.7rem 1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.6rem; }
.hero-trust .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.hero-trust b { display: block; font-size: 0.92rem; }
.hero-trust span { font-size: 0.76rem; color: var(--muted); }

/* hero stat strip */
.hero-stats { display: flex; gap: 1.8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-stats .stat .n { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--teal-dark); }
.hero-stats .stat .l { font-size: 0.82rem; color: var(--muted); }

/* ---------- Sections ---------- */
section.block { padding: 56px 0; }
section.block.tint { background: var(--bg-2); }
section.block.ink { background: var(--ink); color: #cfe0dc; }
section.block.ink h2, section.block.ink h3 { color: #fff; }
.section-head { max-width: 680px; margin-bottom: 2rem; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); margin: 0; }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.15s, transform 0.1s; }
.feature:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; margin-bottom: 1rem; }
.feature .ico svg { width: 23px; height: 23px; }
.feature h3 { margin-bottom: 0.3rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 700; margin-bottom: 0.8rem; font-family: var(--display); }
.step h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- Media split ---------- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
@media (max-width: 820px) { .media-split { grid-template-columns: 1fr; gap: 1.4rem; } }
.media-split img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-media { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; margin-bottom: 1.8rem; }
.rounded-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ---------- Klinieken layout ---------- */
.compare-layout { display: grid; grid-template-columns: 290px 1fr; gap: 1.8rem; align-items: start; padding: 34px 0 64px; }
@media (max-width: 920px) { .compare-layout { grid-template-columns: 1fr; } }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); position: sticky; top: 92px; }
@media (max-width: 920px) { .filters { position: static; } }
.filters h2 { font-size: 1.1rem; font-family: var(--font); font-weight: 700; margin-bottom: 0.1rem; }
.filter-group { border-top: 1px solid var(--line-soft); padding: 1rem 0 0.35rem; }
.filter-group:first-of-type { border-top: none; }
.filter-group .glabel { display: block; font-weight: 650; font-size: 0.9rem; margin-bottom: 0.6rem; }
.check { display: flex; align-items: center; gap: 0.55em; font-size: 0.9rem; color: #3a4a47; padding: 0.22em 0; cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--teal); cursor: pointer; }
.filter-actions { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.search { display: flex; align-items: center; gap: 0.5em; border: 1px solid var(--line); border-radius: 999px; padding: 0.5em 0.95em; margin-bottom: 1rem; background: var(--bg); }
.search input { border: none; outline: none; width: 100%; font-size: 0.92rem; background: none; color: var(--ink); }
.search svg { width: 17px; height: 17px; stroke: var(--muted); flex: none; }
select.sortby, .field select { border: 1px solid var(--line); border-radius: var(--radius-xs); padding: 0.5em 0.7em; font-size: 0.9rem; background: var(--surface); color: var(--ink); font-family: var(--font); }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.results-bar .count { font-weight: 650; }
.results-bar .count span { color: var(--teal-dark); }

/* ---------- Kliniekkaarten ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 1180px) { .cards { grid-template-columns: 1fr; } }
.kcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; transition: box-shadow 0.15s, transform 0.1s; }
.kcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ribbon { position: absolute; top: 14px; right: 14px; background: var(--gold-soft); color: var(--amber); border: 1px solid #ecd9ad; font-size: 0.72rem; font-weight: 700; padding: 0.28em 0.7em; border-radius: 999px; }
.kcard-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.5rem; padding-right: 4.5rem; }
.avatar { width: 48px; height: 48px; border-radius: 12px; flex: none; background: linear-gradient(140deg, var(--teal-soft), var(--gold-soft)); color: var(--teal-dark); display: grid; place-items: center; font-weight: 700; font-size: 1.05rem; }
.kcard h3 { margin: 0; font-size: 1.18rem; }
.tag { display: inline-block; font-size: 0.74rem; font-weight: 600; padding: 0.2em 0.62em; border-radius: 999px; margin-top: 0.25rem; }
.tag--online { background: var(--green-soft); color: #1f7a52; }
.tag--fysiek { background: #eef2f1; color: #475a56; }
.tag--combinatie { background: var(--teal-soft); color: var(--teal-dark); }

.kreview { display: flex; align-items: center; gap: 0.4em; font-size: 0.82rem; color: var(--muted); margin: 0.2rem 0 0.7rem; }
.kreview .stars { color: var(--gold); letter-spacing: 0.5px; }
.kreview b { color: var(--ink); }

/* Prijsmodel-badge */
.pmbadge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.24em 0.66em; border-radius: 999px; margin: 0.1rem 0 0.7rem; }
.pm-all-in { background: var(--green-soft); color: #1f7a52; }
.pm-gesplitst { background: var(--gold-soft); color: var(--amber); }
.pm-verzekerd { background: var(--teal-soft); color: var(--teal-dark); }
.detail-head .pmbadge { margin-left: 0.4rem; }

/* Per-medicijn prijs-chips op de kaart */
.kmedprices { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.85rem; font-size: 0.8rem; }
.kmedprices span { background: var(--bg); border: 1px solid var(--line); border-radius: 7px; padding: 0.2em 0.55em; color: var(--muted); }
.kmedprices span b { color: var(--ink); }
.kmedprices.muted { color: var(--muted); }

/* Prijs in medicatietabel (detail) */
.med-prijs { font-weight: 700; color: var(--teal-dark); white-space: nowrap; font-size: 0.95rem; }
.med-prijs small { font-weight: 500; color: var(--muted); }

.kmeta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.chip { font-size: 0.78rem; color: #41514d; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 0.24em 0.7em; display: inline-flex; align-items: center; gap: 0.35em; }
.chip svg { width: 13px; height: 13px; }

.trustbar { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.85rem; }
.trustmeter { flex: 1; height: 7px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.trustmeter > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--green)); }
.trustbar .tval { font-size: 0.78rem; font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.trustbar .tlabel { font-size: 0.72rem; color: var(--muted); }

.kvoordelen { list-style: none; padding: 0; margin: 0 0 1rem; }
.kvoordelen li { display: flex; gap: 0.5em; align-items: flex-start; font-size: 0.88rem; color: #3a4a47; margin-bottom: 0.32rem; }
.kvoordelen li svg { width: 15px; height: 15px; color: var(--green); flex: none; margin-top: 3px; }

.kprice { border-top: 1px solid var(--line-soft); padding-top: 0.95rem; margin-top: auto; }
.kprice .from { font-size: 0.8rem; color: var(--muted); }
.kprice .amount { font-family: var(--display); font-size: 1.65rem; font-weight: 600; color: var(--ink); }
.kprice .amount small { font-size: 0.85rem; font-weight: 500; color: var(--muted); font-family: var(--font); }
.kcard .card-cta { display: flex; gap: 0.5rem; margin-top: 0.9rem; }
.kcard .card-cta .btn { flex: 1; }
.kcompare { display: flex; align-items: center; gap: 0.45em; font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; cursor: pointer; }
.kcompare svg { width: 15px; height: 15px; flex: none; }
.kcompare input { width: 16px; height: 16px; accent-color: var(--teal); }
.compare-tray .ct-hint svg { width: 16px; height: 16px; vertical-align: -3px; }
.kcard .updated { font-size: 0.72rem; color: var(--muted); margin-top: 0.6rem; }

.empty { background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); padding: 2.6rem; text-align: center; color: var(--muted); grid-column: 1 / -1; }

/* ---------- Compare tray (vergelijkbalk) ---------- */
.compare-tray { position: fixed; left: 0; right: 0; bottom: 0; background: var(--ink); color: #fff; transform: translateY(120%); transition: transform 0.25s ease; z-index: 60; box-shadow: 0 -8px 30px rgba(0,0,0,0.2); }
.compare-tray.show { transform: translateY(0); }
.compare-tray .wrap { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 22px; flex-wrap: wrap; }
.compare-tray .ct-items { display: flex; gap: 0.5rem; flex: 1; flex-wrap: wrap; }
.compare-tray .ct-chip { background: rgba(255,255,255,0.12); border-radius: 999px; padding: 0.3em 0.5em 0.3em 0.85em; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.4em; }
.compare-tray .ct-chip button { background: none; border: none; color: #cfe0dc; cursor: pointer; font-size: 1rem; line-height: 1; }
.compare-tray .ct-hint { font-size: 0.85rem; color: #aebfbb; }

/* ---------- Vergelijktabel ---------- */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
table.compare { border-collapse: collapse; width: 100%; min-width: 640px; }
table.compare th, table.compare td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; font-size: 0.92rem; }
table.compare thead th { background: var(--bg-2); font-family: var(--display); font-size: 1.05rem; position: sticky; top: 0; }
table.compare tbody th { font-weight: 600; color: var(--muted); width: 200px; background: var(--bg); }
table.compare .yes { color: var(--green); font-weight: 600; }
table.compare .no { color: var(--muted); }
table.compare .yes, table.compare .no { display: inline-flex; align-items: center; gap: 0.35em; }
table.compare svg { width: 17px; height: 17px; flex: none; }
table.compare .best { background: var(--green-soft); }

/* ---------- Detailpagina ---------- */
.breadcrumb { font-size: 0.85rem; color: var(--muted); padding: 20px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb .sep { margin: 0 0.4em; }
.detail-head { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; padding: 16px 0 8px; }
.detail-head .avatar { width: 64px; height: 64px; border-radius: 14px; font-size: 1.5rem; }
.detail-head .updated { font-size: 0.82rem; color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: 1fr 330px; gap: 1.8rem; align-items: start; padding-bottom: 64px; }
@media (max-width: 920px) { .detail-grid { grid-template-columns: 1fr; } }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.6rem; margin-bottom: 1.2rem; box-shadow: var(--shadow-sm); }
.panel h2 { font-size: 1.3rem; }
.panel h3 { font-size: 1rem; margin-top: 1.2rem; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 0.6rem; }
@media (max-width: 620px) { .proscons { grid-template-columns: 1fr; } }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li { display: flex; gap: 0.5em; align-items: flex-start; font-size: 0.92rem; margin-bottom: 0.5rem; }
.proscons li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.pros li svg { color: var(--green); }
.cons li svg { color: var(--rose); }
.specs { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.specs th, .specs td { text-align: left; padding: 0.6em 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.specs th { font-weight: 600; color: var(--muted); width: 44%; }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: none; }

/* trust matrix */
.trustlist { list-style: none; padding: 0; margin: 0.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.2rem; }
@media (max-width: 560px) { .trustlist { grid-template-columns: 1fr; } }
.trustlist li { display: flex; gap: 0.55em; align-items: center; font-size: 0.9rem; }
.trustlist li svg { width: 17px; height: 17px; flex: none; }
.trustlist li.ok svg { color: var(--green); }
.trustlist li.no { color: var(--muted); }
.trustlist li.no svg { color: #c2bcae; }

.med-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); }
.med-row:last-child { border-bottom: none; }
.pill { font-size: 0.72rem; font-weight: 700; padding: 0.25em 0.6em; border-radius: 6px; background: var(--teal-soft); color: var(--teal-dark); flex: none; }
.med-row .mname { font-weight: 650; }
.med-row .mmeta { font-size: 0.84rem; color: var(--muted); }

.sidecard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); position: sticky; top: 92px; }
@media (max-width: 920px) { .sidecard { position: static; } }
.sidecard .price-big { font-family: var(--display); font-size: 2rem; font-weight: 600; }
.sidecard .price-big small { font-size: 0.9rem; font-weight: 500; color: var(--muted); font-family: var(--font); }

.related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 820px) { .related { grid-template-columns: repeat(2, 1fr); } }
.related a { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; text-align: center; color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.related a:hover { text-decoration: none; box-shadow: var(--shadow-sm); }
.related .avatar { width: 42px; height: 42px; border-radius: 11px; margin: 0 auto 0.5rem; font-size: 1rem; }

/* ---------- Notice / boxes ---------- */
.notice { background: var(--amber-soft); border: 1px solid #f1e0bf; border-radius: var(--radius-sm); padding: 0.95rem 1.15rem; font-size: 0.88rem; color: #6b5526; display: flex; gap: 0.7em; }
.notice svg { width: 18px; height: 18px; flex: none; color: var(--amber); margin-top: 2px; }
.notice.info { background: var(--teal-soft); border-color: #cfe6e6; color: #245357; }
.notice.info svg { color: var(--teal-dark); }

/* ---------- Medisch getoetst ---------- */
.reviewed-by { display: flex; align-items: center; gap: 0.9rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; box-shadow: var(--shadow-sm); }
.reviewed-by .rb-ava { width: 46px; height: 46px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.reviewed-by .rb-ava svg { width: 24px; height: 24px; }
.reviewed-by .rb-label { font-size: 0.78rem; color: var(--muted); }
.reviewed-by .rb-name { font-weight: 650; }
.reviewed-by .rb-meta { font-size: 0.8rem; color: var(--muted); }

/* ---------- Tools (BMI / kosten / wizard) ---------- */
.tool { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 650; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field input[type="number"], .field input[type="text"], .field select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-xs); padding: 0.65em 0.8em; font-size: 1rem; outline: none; font-family: var(--font); background: var(--bg); }
.field input:focus, .field select:focus { border-color: var(--teal); background: #fff; }
.bmi-result { margin-top: 0.5rem; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: var(--bg-2); font-size: 0.95rem; }
.bmi-result .val { font-family: var(--display); font-size: 2.1rem; font-weight: 600; }

/* kosten-resultaten */
.cost-list { display: flex; flex-direction: column; gap: 0.6rem; }
.cost-row { display: flex; align-items: center; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.85rem 1.1rem; box-shadow: var(--shadow-sm); }
.cost-row .avatar { width: 40px; height: 40px; font-size: 0.95rem; }
.cost-row .cn { font-weight: 650; flex: 1; }
.cost-row .cval { font-family: var(--display); font-size: 1.25rem; font-weight: 600; color: var(--teal-dark); white-space: nowrap; }
.cost-row .cper { font-size: 0.78rem; color: var(--muted); }

/* wizard */
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); max-width: 620px; margin: 0 auto; }
.wizard .progress { display: flex; gap: 0.4rem; margin-bottom: 1.6rem; }
.wizard .progress span { flex: 1; height: 6px; border-radius: 999px; background: var(--line-soft); }
.wizard .progress span.done { background: var(--teal); }
.wizard h2 { font-size: 1.5rem; }
.wopts { display: grid; gap: 0.7rem; margin: 1.2rem 0; }
.wopt { display: flex; align-items: center; gap: 0.8rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 0.95rem 1.1rem; cursor: pointer; font-weight: 550; transition: border-color 0.12s, background 0.12s; }
.wopt:hover { border-color: var(--teal); background: var(--teal-soft); }
.wopt.sel { border-color: var(--teal); background: var(--teal-soft); }
.wopt .wo-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-2); color: var(--teal-dark); display: grid; place-items: center; flex: none; }
.wopt .wo-ico svg { width: 20px; height: 20px; }
.wizard-actions { display: flex; justify-content: space-between; margin-top: 1.4rem; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.7rem; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.05rem 1.2rem; font-weight: 650; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-size: 1.4rem; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 1.2rem 1.15rem; color: #3a4a47; }

/* ---------- Kennis ---------- */
.article { max-width: 760px; }
.article h2 { margin-top: 2rem; }
.article ul { padding-left: 1.2rem; }
.article li { margin-bottom: 0.4rem; }
.toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin-bottom: 1.6rem; }
.toc ul { list-style: none; padding: 0; margin: 0.4rem 0 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.toc a { font-size: 0.9rem; }

/* ---------- Ervaringen (testimonials) ---------- */
.ervaringen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .ervaringen { grid-template-columns: 1fr; } }
.ervaring { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column; }
.ervaring .erv-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; margin-bottom: 0.6rem; }
.ervaring blockquote { margin: 0 0 1.1rem; font-size: 1rem; line-height: 1.6; color: #34433f; flex: 1; }
.ervaring figcaption { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; font-size: 0.92rem; }
.ervaring .erv-ava { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--teal-soft), var(--gold-soft)); color: var(--teal-dark); display: grid; place-items: center; font-weight: 700; flex: none; }
.ervaring figcaption small { display: block; font-weight: 400; color: var(--muted); font-size: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9cdc8; padding: 54px 0 30px; margin-top: auto; }
.site-footer a { color: #b9cdc8; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.85rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.site-footer .disc { font-size: 0.84rem; color: #87a39d; max-width: 420px; }
.site-footer .flogo { font-family: var(--display); font-size: 1.15rem; color: #fff; margin-bottom: 0.7rem; }
.footer-bottom { border-top: 1px solid #244c49; margin-top: 30px; padding-top: 20px; font-size: 0.82rem; color: #87a39d; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }

.page-layout { display: flex; flex-direction: column; min-height: 100vh; }
.page-hero { background: radial-gradient(120% 120% at 90% 0%, var(--bg-2) 0%, var(--bg) 60%); padding: 52px 0 40px; }
