/* ==========================================================================
   BolSync — landingspagina
   Vertaald uit "BolSync Landingspagina.dc.html" (Claude Design canvas).
   ========================================================================== */

:root {
  --ink:        #2E2E2E;
  --ink-black:  #000000;
  --ink-soft:   #5A5A5A;
  --muted:      #868686;
  --line:       #E6E6E6;
  --grey-100:   #F2F2F2;
  --grey-400:   #BABABA;
  --grey-700:   #4A4A4A;
  --grey-d8:    #D8D8D8;
  --yellow:     #FFE01B;
  --yellow-soft:#FFF8C8;
  --gold:       #B19802;
  --mint:       #09F8B2;
  --white:      #FFFFFF;

  --maxw: 1200px;
  --radius-card: 18px;
  --radius-pill: 999px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; }

h1, h2, h3 { letter-spacing: -.02em; }

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

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; }
.container--narrow { max-width: 880px; margin: 0 auto; }
.container--cta { max-width: 820px; margin: 0 auto; text-align: center; }

.section { padding: 90px 24px; background: var(--white); }
.section--grey   { background: var(--grey-100); }
.section--dark   { background: var(--ink); color: var(--white); }
.section--yellow { background: var(--yellow); }

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

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--onDark { color: var(--yellow); }

.h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 16px;
}
.h2--last { margin-bottom: 0; }

.sec-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; letter-spacing: normal; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: background-color .18s ease, color .18s ease;
}
.btn--sm { font-size: 15px; padding: 11px 22px; }
.btn--lg { font-size: 17px; padding: 16px 34px; }
.btn--xl { font-size: 17px; padding: 17px 38px; }

.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: var(--yellow-soft); color: var(--ink); }

.btn--grey { background: var(--grey-100); color: var(--ink); }
.btn--grey:hover { background: var(--line); color: var(--ink); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-black); color: var(--white); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--yellow-soft); color: var(--ink); }

/* ---------- checklists ---------- */
.tick { color: var(--gold); font-weight: 900; flex: none; }
.tick--mint { color: var(--mint); }

.checklist {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 15px;
  color: var(--ink);
}
.checklist li { display: flex; gap: 10px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand:hover { color: var(--ink); }
.brand-name { font-size: 24px; font-weight: 900; letter-spacing: -.02em; color: var(--ink); }
.brand-by { font-size: 11px; color: var(--muted); margin-top: 3px; }
.brand-by strong { color: var(--gold); font-weight: 700; }

.nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-left: auto;
  align-items: center;
}
.nav-link { font-size: 15px; color: var(--ink); }

/* Mobiele nav-toggle: alleen zichtbaar als JS aanstaat én het scherm smal is.
   Zonder JS blijft de nav gewoon staan (progressive enhancement). */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--grey-100);
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--white); padding: 72px 24px 88px; }

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 82% -8%, var(--yellow-soft) 0%, rgba(255, 248, 200, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grey-100);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 26px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: bsPulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}
.mark { background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%); }

.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 560px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.cta-row--center { justify-content: center; margin-bottom: 0; }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: var(--ink-soft);
}
.hero-checks li { display: flex; align-items: center; gap: 8px; }

/* ---------- dashboard mockup ---------- */
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(46, 46, 46, .12);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--grey-100);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--grey-400); }
.mock-bar-label { margin-left: 10px; font-size: 12px; color: var(--muted); }

.mock-body { display: grid; grid-template-columns: 160px 1fr; min-height: 330px; }

.mock-side {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.mock-side-brand { font-size: 15px; font-weight: 900; letter-spacing: -.02em; }
.mock-side-item { font-size: 13px; color: var(--muted); }
.mock-side-item--active {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow-soft);
  padding: 7px 10px;
  border-radius: 8px;
}

.mock-main { padding: 20px; display: flex; flex-direction: column; gap: 14px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { background: var(--grey-100); border-radius: 12px; padding: 14px; }
.stat-label { font-size: 12px; color: var(--muted); }
.stat-value { font-size: 26px; font-weight: 900; letter-spacing: -.02em; }

.live { background: var(--ink); border-radius: 12px; padding: 16px; color: var(--white); }
.live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.live-title { font-size: 13px; font-weight: 700; }
.live-state { font-size: 11px; color: var(--mint); }

.flow-track {
  position: relative;
  height: 4px;
  background: var(--grey-700);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.flow-bar {
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--mint);
  border-radius: var(--radius-pill);
  animation: bsFlow 2.6s linear infinite;
}

.live-foot {
  margin-top: 12px;
  font-size: 11px;
  color: var(--grey-400);
  display: flex;
  justify-content: space-between;
}

.log { display: flex; flex-direction: column; gap: 8px; }
.log-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}
.log-row:last-child { border-bottom: 0; padding-bottom: 0; }
.log-time { color: var(--gold); font-weight: 700; flex: none; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { background: var(--ink); color: var(--white); padding: 26px 24px; }
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-big-value { font-size: 26px; font-weight: 900; color: var(--yellow); }
.stat-big-label { font-size: 14px; color: var(--grey-400); }

/* ==========================================================================
   Wat synchroniseert — kaarten
   ========================================================================== */
.sync-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.sync-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.sync-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 18px 40px rgba(46, 46, 46, .08);
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.pill--yellow { background: var(--yellow); color: var(--ink); }
.pill--grey   { background: var(--grey-100); color: var(--ink); }

.flowbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grey-100);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
}
.flowbox-side { font-size: 13px; font-weight: 700; }
.flowbox-arrow {
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: var(--gold);
  font-weight: 900;
}

.card-text { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 18px; }

/* ==========================================================================
   Functies
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature { background: var(--white); border-radius: 16px; padding: 26px; }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 18px; }
.feature-icon--yellow { background: var(--yellow); }
.feature-icon--mint   { background: var(--mint); }
.feature-icon--ink    { background: var(--ink); }
.feature h3 { font-size: 18px; font-weight: 700; margin: 0 0 9px; letter-spacing: normal; }
.feature p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Stappen
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.step { border-top: 4px solid var(--yellow); padding-top: 22px; }
.step-num { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.step h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; letter-spacing: normal; }
.step p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Dashboard-sectie (donker)
   ========================================================================== */
.dash-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.dash-lead { font-size: 18px; line-height: 1.65; color: var(--grey-d8); margin: 0 0 26px; }
.dash-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}
.dash-list li { display: flex; gap: 12px; }

.dash-panel { background: var(--white); border-radius: var(--radius-card); padding: 22px; color: var(--ink); }
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.panel-title { font-size: 16px; font-weight: 700; }
.panel-toggle { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.toggle-pill { width: 34px; height: 18px; border-radius: var(--radius-pill); background: var(--mint); display: inline-block; }

.prod-list { display: flex; flex-direction: column; gap: 10px; }
.prod-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  background: var(--grey-100);
  border-radius: 10px;
  padding: 12px 14px;
}
.prod-name { font-size: 14px; font-weight: 700; }
.prod-ean { font-size: 12px; color: var(--muted); }
.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.tag--synced { color: var(--ink); background: var(--yellow); }
.tag--queued { color: var(--white); background: var(--muted); }
.panel-foot { margin-top: 16px; font-size: 12px; color: var(--muted); }

/* ==========================================================================
   Prijzen
   ========================================================================== */
.price-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border: 2px solid var(--yellow);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(46, 46, 46, .10);
}
.price-left {
  background: var(--yellow-soft);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-left h3 { font-size: 19px; font-weight: 700; margin: 0 0 20px; letter-spacing: normal; }
.price-amount { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-value {
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.price-per { font-size: 20px; font-weight: 700; color: var(--ink); }
.price-note { font-size: 15px; color: var(--ink-soft); margin-top: 12px; }
.price-note strong { color: var(--ink); }
.price-cta { margin-top: 28px; align-self: flex-start; }
.price-fine { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

.price-right { background: var(--white); padding: 44px 40px; }
.incl-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.incl-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
  font-size: 15px;
  color: var(--ink);
}
.incl-list li { display: flex; gap: 10px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item { background: var(--white); border-radius: 14px; padding: 20px 24px; }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plusbar { color: var(--gold); transition: transform .2s ease; flex: none; }
/* Vraag is een H3 voor SEO/outline, maar erft exact de summary-typografie. */
.faq-q { font: inherit; margin: 0; letter-spacing: normal; }
.faq-item[open] .plusbar { transform: rotate(90deg); }
.faq-a { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 14px 0 0 32px; }

/* ==========================================================================
   Slot-CTA
   ========================================================================== */
.cta-title {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}
.cta-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 auto 32px;
  max-width: 620px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--grey-400); padding: 60px 24px 32px; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.footer-brand-name { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.footer-by { font-size: 12px; margin-top: 4px; }
.footer-by strong { color: var(--yellow); font-weight: 700; }
.footer-by-link { color: inherit; }
.footer-by-link:hover strong { text-decoration: underline; }
.footer-about { font-size: 14px; line-height: 1.6; margin: 16px 0 0; max-width: 260px; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  border: 1px solid var(--grey-700);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}
.partner-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
/* Badge is een externe link; tekst blijft wit, alleen de rand reageert. */
a.partner-badge { transition: border-color .18s ease, background-color .18s ease; }
a.partner-badge:hover { color: var(--white); border-color: var(--mint); background: rgba(9,248,178,.08); }

.footer-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-links a { color: var(--grey-400); }
.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--grey-700);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
}

/* ==========================================================================
   Animaties
   ========================================================================== */
@keyframes bsFlow {
  0%   { transform: translateX(-120%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}
@keyframes bsPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .js .nav-toggle { display: block; }

  .js .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 24px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .js .nav[data-open="true"] { display: flex; }
  .js .nav .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .js .nav .btn { margin-top: 16px; text-align: center; }

  .site-header { position: sticky; }
  .header-inner { position: relative; gap: 16px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 20px; }
  .hero { padding: 48px 20px 64px; }
  .hero-grid { gap: 40px; }
  .stats { padding: 24px 20px; }
  .site-footer { padding: 48px 20px 28px; }

  .price-left, .price-right { padding: 32px 24px; }
  .faq-item { padding: 18px 20px; }
  .faq-item summary { font-size: 17px; gap: 12px; }
  .faq-a { margin-left: 0; }

  /* Mockup: zijbalk verbergen, hoofdpaneel volle breedte */
  .mock-body { grid-template-columns: 1fr; min-height: 0; }
  .mock-side { display: none; }

  .prod-row { grid-template-columns: 1fr auto; }
  .prod-ean { display: none; }

  .log-row { flex-wrap: wrap; }
}

@media (max-width: 380px) {
  .hero-lead { font-size: 18px; }
  .btn--lg, .btn--xl { padding: 14px 24px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .nav-toggle { position: static; }
  .hero-glow, .flow-bar { display: none; }
}

/* ==========================================================================
   Kennisbank
   ========================================================================== */
.kb-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.kb-card:hover {
  color: var(--ink);
  border-color: var(--yellow);
  box-shadow: 0 18px 40px rgba(46, 46, 46, .08);
}
.kb-card h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: normal; }
.kb-card p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.kb-more { font-size: 14px; font-weight: 700; color: var(--gold); margin-top: auto; padding-top: 8px; }

/* Kruimelpad */
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: var(--grey-400); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* Artikelkop */
.article-head { padding: 48px 24px 0; }
.article-head .inner { max-width: 760px; margin: 0 auto; }
.article-title {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}
.article-intro { font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* Artikeltekst */
/* 760px tekstkolom + 2x24px padding, zodat de tekst exact uitlijnt met .article-head .inner */
.prose { max-width: 808px; margin: 0 auto; padding: 40px 24px 72px; }
.prose h2 {
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.25;
  font-weight: 900;
  margin: 48px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; font-weight: 700; margin: 32px 0 10px; letter-spacing: normal; }
.prose p { font-size: 17px; line-height: 1.72; color: var(--ink-soft); margin: 0 0 18px; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { font-size: 17px; line-height: 1.72; color: var(--ink-soft); margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--gold); font-weight: 700; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--ink); }

/* Uitgelicht kader binnen een artikel */
.callout {
  background: var(--yellow-soft);
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 0 0 24px;
}
.callout p { margin: 0; color: var(--ink); }
.callout p + p { margin-top: 10px; }

/* Stappen in een artikel */
.prose ol.steps-list { counter-reset: s; list-style: none; padding-left: 0; }
.prose ol.steps-list > li {
  counter-increment: s;
  position: relative;
  padding-left: 46px;
  margin-bottom: 20px;
}
.prose ol.steps-list > li::before {
  content: counter(s);
  position: absolute;
  left: 0; top: -2px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  font-size: 14px;
  display: grid;
  place-items: center;
}

/* Vervolgnavigatie onder een artikel */
.article-next { border-top: 1px solid var(--line); padding-top: 32px; margin-top: 8px; }
.article-next h2 { font-size: 19px; margin: 0 0 16px; }
.article-next ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.article-next a { font-weight: 700; text-decoration: none; }

@media (max-width: 720px) {
  .article-head { padding: 32px 20px 0; }
  .prose { padding: 32px 20px 56px; }
  .prose p, .prose ul, .prose ol { font-size: 16px; }
}

/* Schermafbeeldingen binnen een artikel */
.prose figure { margin: 28px 0 32px; }
.prose figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.prose figcaption {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 10px;
}
