/* ============================================================
   verwarming.nl — v2 homepage
   StoryBrand framework. Photo-heavy. Full-width.
   Modern bold sans display (Geist 700/800), italic Instrument Serif
   reserved for one or two key brand moments only.
   ============================================================ */

:root {
  --primary: #0B3D2E;
  --primary-2: #134A3A;
  --primary-3: #0F5240;
  --accent: #D97706;
  --accent-2: #C26905;
  --terracotta: #B45309;
  --cream: #FAF7F1;
  --cream-2: #F4EFE3;
  --cream-3: #EDE7D7;
  --cream-warm: #F0E8D5;
  --surface: #FFFFFF;
  --ink: #111827;
  --ink-2: #1F2937;
  --smoke: #6B7280;
  --rule: #E5E7EB;
  --rule-2: #D9D3C4;
  --success: #16A34A;
  --info: #2563EB;
  --dark-bg: #0A1F18;
  --dark-2: #0D2A20;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 9999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ TYPOGRAPHY UTILITIES ============ */
.display {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 0;
}
.text-primary { color: var(--primary); font-style: normal; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .dash {
  width: 24px; height: 1px;
  background: var(--accent);
}
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 540px;
  margin: 22px 0 0;
}

/* ============ TOP BAR ============ */
.topbar {
  position: fixed;
  left: 0; right: 0; top: 0;
  height: 80px;
  z-index: 50;
  display: flex;
  align-items: center;
  transition: background .3s var(--ease), border-bottom-color .3s var(--ease);
  border-bottom: 1px solid transparent;
  /* Default: cream backdrop, blur — ensures wordmark blijft leesbaar
     ook boven donker-groene hero's (artikel-detail, tools, bedrijven) */
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
}
.topbar.is-scrolled {
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--rule-2);
}
.topbar-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  line-height: 1;
}
.logo .mark { width: 40px; height: 40px; display: block; flex-shrink: 0; }
.logo .wordmark {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.035em;
  color: var(--primary);
  line-height: 1;
}
.logo .wordmark .tld {
  font-weight: 500;
  color: var(--smoke);
  letter-spacing: -.025em;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: 56px;
  align-items: center;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.005em;
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.nav a .chev {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 5px;
  opacity: .55;
}
.nav a:hover { color: var(--primary); }

.top-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.ghost-link {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ghost-link::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.2px solid var(--ink-2);
  background:
    radial-gradient(circle at 50% 38%, var(--ink-2) 0 1.4px, transparent 1.6px),
    radial-gradient(circle at 50% 62%, var(--ink-2) 0 1.4px, transparent 1.6px);
  opacity: .7;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.005em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -8px rgba(217, 119, 6, .4);
}
.btn-primary.lg { padding: 17px 30px; font-size: 16px; font-weight: 500; }
.btn-primary.sm { padding: 10px 16px; font-size: 14px; }
.btn-primary .arr {
  display: inline-block;
  width: 14px; height: 1.4px;
  background: #fff;
  position: relative;
}
.btn-primary .arr::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1.4px solid #fff;
  border-right: 1.4px solid #fff;
  transform: rotate(45deg);
}
.btn-ghost-large {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 17px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--rule-2);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.btn-ghost-large:hover { color: var(--primary); border-color: var(--primary); }
.ghost-arr {
  display: inline-block;
  width: 12px; height: 1.5px;
  background: currentColor;
  position: relative;
}
.ghost-arr::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   ABSTRACT BACKGROUND GRAPHICS
   ============================================================ */
.hero-blob,
.hero-concentric,
.problem-blob,
.bg-dots,
.plan-arcs,
.categories-blob,
.categories-dots {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-blob {
  top: -200px; right: -180px;
  width: 720px; height: 720px;
  opacity: .55;
  mix-blend-mode: multiply;
}
.hero-concentric {
  bottom: -240px; left: -260px;
  width: 700px; height: 700px;
  opacity: .35;
}
.problem-blob {
  top: -160px; right: -180px;
  width: 620px; height: 620px;
}
.bg-dots {
  bottom: -80px; left: -120px;
  width: 480px; height: 480px;
  opacity: .5;
}
.plan-arcs {
  top: -120px; right: -120px;
  width: 1000px; height: 500px;
  opacity: .6;
}
.categories-blob {
  top: 80px; left: -260px;
  width: 700px; height: 700px;
  opacity: .35;
  mix-blend-mode: multiply;
}
.categories-dots {
  bottom: 120px; right: -100px;
  width: 460px; height: 460px;
  opacity: .4;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--cream);
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto;
  padding: 128px 56px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 580px;
  gap: 80px;
  align-items: start;
}
.corner-strip {
  position: absolute;
  right: 56px; top: 104px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.corner-strip .dotline {
  width: 60px; height: 1px; background: var(--rule-2);
}

.left { padding-top: 24px; }
.left .eyebrow {
  color: var(--accent);
  margin-bottom: 28px;
}

.claim {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 92px;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 0;
}
.claim .l2 {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-top: 4px;
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
}

.subclaim {
  margin: 32px 0 0;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 56px;
  border-top: 1px solid var(--rule-2);
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.hero-stats .stat-num {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -.02em;
}
.hero-stats .stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--smoke);
  letter-spacing: -.005em;
}
.hero-stats .stat-divider {
  width: 1px;
  height: 40px;
  background: var(--rule-2);
}

/* Hero photo + tag */
.right { position: relative; padding-top: 0; }
.hero-photo {
  position: relative;
  width: 100%;
  height: 660px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(11, 61, 46, .25);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 1.6s var(--ease-out);
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 46, 0) 60%, rgba(11, 61, 46, .35));
  pointer-events: none;
}
.photo-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.005em;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .2);
  z-index: 2;
}
.photo-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
}

/* Trust strip — marquee */
.trust-strip-wide {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  padding: 36px 0;
  margin-top: 24px;
  overflow: hidden;
}
.trust-strip-wide .trust-label {
  display: block;
  text-align: center;
  margin-bottom: 22px;
}
.trust-label {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
}
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 56px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 28px)); }
}
.trust-strip-wide:hover .marquee-track { animation-play-state: paused; }
.brand-logo {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.01em;
  opacity: .72;
  line-height: 1;
  white-space: nowrap;
  color: #7B6F58;
}
.brand-logo.sans { font-size: 19px; text-transform: lowercase; }
.brand-logo.caps {
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ============================================================
   PROBLEM (StoryBrand: confused customer)
   ============================================================ */
.problem {
  position: relative;
  background: var(--cream-3);
  padding: 200px 0 200px;
  overflow: hidden;
}
.problem-inner {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}
.problem-text { padding-top: 8px; }
.problem-text .display { font-size: 84px; margin-top: 24px; }
.problem-text .lead { font-size: 19px; max-width: 460px; margin-top: 28px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 24px 48px -32px rgba(11, 61, 46, .2);
}
.problem-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.problem-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.problem-card em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================================
   GUIDE
   ============================================================ */
.guide {
  background: var(--cream);
  padding: 0;
}
.guide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.guide-photo {
  position: relative;
  overflow: hidden;
}
.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 24, .1), rgba(11, 31, 24, .55));
  pointer-events: none;
}
.guide-photo-overlay {
  position: absolute;
  left: 56px; right: 56px; bottom: 56px;
  z-index: 2;
}
.overlay-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #F5E9D2;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.overlay-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
}
.overlay-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.overlay-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.overlay-stats strong {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
}
.overlay-stats > div > span {
  font-size: 13px;
  color: #E8E0D0;
}
.overlay-stats strong span {
  /* counter-span erft alles van strong */
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.guide-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 80px;
}
.guide-text .display { font-size: 64px; margin-top: 24px; }
.guide-text .lead { font-size: 18px; max-width: 480px; margin-top: 26px; }

.guide-pillars {
  margin-top: 56px;
  display: grid;
  gap: 28px;
}
.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-2);
}
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--accent);
  padding-top: 4px;
}
.pillar h4 {
  grid-column: 2;
  grid-row: 1;
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -.015em;
}
.pillar p {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ============================================================
   PLAN
   ============================================================ */
.plan {
  position: relative;
  background: var(--cream-2);
  padding: 200px 0 220px;
  overflow: hidden;
}
.plan-head {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto 96px;
  padding: 0 56px;
}
.plan-head .display { font-size: 84px; margin-top: 24px; max-width: 980px; }

.plan-steps {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.plan-step {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 1px 0 var(--rule);
}
.plan-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -32px rgba(11, 61, 46, .18);
}
.step-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.plan-step:hover .step-photo img { transform: scale(1.04); }
.step-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--surface);
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.step-content {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-content h3 {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.step-content p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.step-time {
  margin-top: 8px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.step-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ============================================================
   DECISION (Beslishulp tool)
   ============================================================ */
.decision {
  position: relative;
  padding: 200px 0 220px;
  background: var(--primary);
  overflow: hidden;
}
.decision-bg {
  position: absolute;
  inset: 0;
}
.decision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.decision-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 24, .85), rgba(11, 61, 46, .65));
}

.decision-card {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 64px 64px 56px;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .35);
}
.decision-card .eyebrow { color: var(--accent); }
.decision-card .display {
  font-size: 56px;
  margin-top: 16px;
  letter-spacing: -.025em;
}
.decision-card .lead {
  font-size: 17px;
  max-width: 540px;
  margin: 18px 0 40px;
}

.tool-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tool-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-label {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-label .step-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--accent);
  background: var(--cream-warm);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.radio-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease);
  font-size: 14.5px;
  color: var(--ink-2);
}
.radio:hover { border-color: var(--rule-2); background: var(--cream); }
.radio input {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--rule-2);
  border-radius: 50%;
  margin: 0;
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s var(--ease);
}
.radio input:checked { border-color: var(--accent); }
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.radio:has(input:checked) {
  border-color: var(--primary);
  background: var(--cream);
}
.input-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.input-row:focus-within { border-color: var(--accent); }
.number-input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font: inherit;
  font-size: 17px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
}
.unit {
  padding: 0 16px;
  display: flex;
  align-items: center;
  background: var(--cream);
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  color: var(--smoke);
  border-left: 1px solid var(--rule);
}
.hint {
  margin: 4px 0 0;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--smoke);
}
.tool-actions {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tool-disclaimer {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: .02em;
}

/* ----- Tool-more strip ----- */
.tool-more {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.tool-more-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tool-more-label {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--smoke);
}
.tool-more-all {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(217, 119, 6, .35);
  padding-bottom: 1px;
  transition: border-color .2s var(--ease);
}
.tool-more-all:hover { border-color: var(--accent); }
.tool-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tool-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.tool-chip:hover {
  border-color: var(--primary);
  background: var(--surface);
  transform: translateY(-1px);
}
.chip-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}
.tool-chip > span:not(.chip-arr) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.tool-chip strong {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.tool-chip em {
  font-style: normal;
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.3;
}
.chip-arr {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  color: var(--smoke);
  transition: color .2s var(--ease), transform .2s var(--ease);
  flex-shrink: 0;
}
.tool-chip:hover .chip-arr {
  color: var(--primary);
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .tool-chips { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tool-chips { grid-template-columns: 1fr; }
  .tool-more-head { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
  position: relative;
  background: var(--cream);
  padding: 200px 0 220px;
  overflow: hidden;
}
.categories-head {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto 80px;
  padding: 0 56px;
}
.categories-head .display { font-size: 84px; margin-top: 24px; max-width: 1000px; }

.cat-grid {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(360px, auto));
  gap: 16px;
}
.cat-large {
  grid-column: span 2;
  grid-row: span 1;
}
.cat-tile {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: transform .3s var(--ease);
  min-height: 360px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}
.cat-tile:hover { transform: translateY(-3px); }
.cat-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.cat-tile:hover img { transform: scale(1.04); }
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 24, .08) 30%, rgba(11, 31, 24, .82));
}
.cat-tile .cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255, 241, 200, .85);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cat-tile h3 {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: -.02em;
}
.cat-tile p {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .85);
  max-width: 380px;
}
.cat-arrow {
  position: absolute;
  right: 32px; bottom: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform .3s var(--ease);
}
.cat-tile:hover .cat-arrow { transform: translateX(4px); }

.cat-accent {
  background: var(--primary);
  color: #fff;
}
.cat-accent::after { display: none; }
.cat-accent .cat-content.text-only {
  position: relative;
  padding: 36px 32px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.cat-accent .cat-num { color: rgba(255, 241, 200, .7); }
.cat-stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.big-num {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.03em;
}
.big-num .euro { font-weight: 500; opacity: .7; margin-right: 4px; }
.big-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 241, 200, .8);
  margin-top: 6px;
}

/* ============================================================
   CASE STORY
   ============================================================ */
.case {
  background: var(--cream-3);
  padding: 0;
}
.case-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.case-photo {
  position: relative;
  overflow: hidden;
}
.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-content {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-content .display { font-size: 64px; margin-top: 24px; }
.case-content blockquote {
  margin: 36px 0;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--accent);
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  max-width: 520px;
}
.case-content blockquote cite {
  display: block;
  margin-top: 18px;
  font-family: "Geist", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--smoke);
  letter-spacing: -.005em;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 0 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}
.case-num {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -.025em;
}
.case-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.4;
}

/* ============================================================
   FOOTER — light theme
   ============================================================ */
.footer {
  background: var(--cream-3);
  color: var(--ink);
  position: relative;
}
.footer-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 56px;
}

/* --- 1. Editorial closer --- */
.footer-closer {
  padding: 140px 0 100px;
}
.footer-closer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}
.footer-claim {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 24px 0 0;
}
.footer-claim-sub {
  margin: 32px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 460px;
}

.footer-newsletter {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px 36px 36px;
}
.footer-eyebrow {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-newsletter h3 {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.footer-newsletter p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1 1 200px;
  min-width: 0;
  background: var(--cream);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  padding: 13px 18px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s var(--ease);
}
.newsletter-form input::placeholder { color: var(--smoke); }
.newsletter-form input:focus { border-color: var(--accent); }

/* --- 2. Link columns --- */
.footer-cols {
  padding: 64px 0 80px;
  border-top: 1px solid var(--rule-2);
}
.footer-cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.foot-col h4 {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin: 0 0 20px;
  font-weight: 500;
}
.foot-col a {
  display: block;
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 7px 0;
  letter-spacing: -.005em;
  transition: color .15s var(--ease), padding-left .2s var(--ease);
}
.foot-col a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* --- 3. Transparency — quiet paragraph --- */
.footer-transparency {
  padding: 0 0 64px;
}
.transparency-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  max-width: 920px;
}
.transparency-text strong {
  color: var(--ink);
  font-weight: 600;
}
.transparency-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(217, 119, 6, .35);
  padding-bottom: 1px;
  margin-left: 4px;
  transition: border-color .2s var(--ease);
}
.transparency-text a:hover { border-color: var(--accent); }

/* --- 4. Mega wordmark — Monocle masthead style --- */
.footer-mark {
  padding: 24px 0 0;
  border-top: 1px solid var(--rule-2);
  overflow: hidden;
}
.footer-mark .footer-inner {
  padding: 0;
  max-width: 100%;
}
.footer-wordmark {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 14.6vw, 240px);
  line-height: 0.88;
  letter-spacing: -.045em;
  color: var(--primary);
  padding: 12px 32px 32px;
  white-space: nowrap;
  user-select: none;
}
.footer-wordmark .tld {
  font-weight: 500;
  color: var(--smoke);
  letter-spacing: -.04em;
}

/* --- 5. Legal strip --- */
.footer-legal {
  border-top: 1px solid var(--rule-2);
  padding: 24px 0;
}
.footer-legal .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-copy {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: .02em;
}
.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-links a {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: .04em;
  text-transform: lowercase;
  text-decoration: none;
  transition: color .15s var(--ease);
}
.legal-links a:hover { color: var(--primary); }

/* ============ MOTION HELPERS ============ */
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(14px);
}
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.mask-reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.mask-reveal-word > span {
  display: inline-block;
  transform: translateY(0%);   /* default visible; GSAP overrides initial state via gsap.set() */
  will-change: transform;
}
/* Only hide initially if GSAP is running */
.gsap-ready .mask-reveal-word > span {
  transform: translateY(100%);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-card, .reveal-word {
    opacity: 1 !important;
    transform: none !important;
  }
  .clip-reveal { clip-path: none !important; }
  .mask-reveal-word > span { transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ============ HAMBURGER + MOBILE NAV ============ */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  margin-left: auto;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 1001;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.topbar { z-index: 1000; }
.hamburger span {
  display: block;
  width: 16px; height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE OVERLAY MENU ============ */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--cream);
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
  padding: 88px 24px 48px;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .32s ease, transform .32s ease, visibility 0s;
}
.mobile-nav-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav-section {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-2);
  padding-top: 16px;
}
.mobile-nav-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  font-family: "Instrument Serif", serif;
  letter-spacing: -.01em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a .mn-arr {
  font-family: "Geist", sans-serif;
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  transition: transform .2s ease;
}
.mobile-nav a:hover .mn-arr { transform: translateX(4px); }
.mobile-nav-primary {
  margin-top: 8px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--r-pill);
  border-bottom: none !important;
  text-align: center;
  justify-content: center !important;
  font-family: "Geist", sans-serif !important;
  font-size: 16px !important;
  padding: 18px 24px !important;
  text-transform: none;
  letter-spacing: -.005em;
}
.mobile-nav-primary:hover { background: #B86404; }
.mobile-nav-primary .arr {
  display: inline-block;
  width: 18px; height: 1.5px;
  background: #fff;
  position: relative;
  margin-left: 10px;
}
.mobile-nav-primary .arr::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}
body.menu-open { overflow: hidden; }

/* ============ RESPONSIVE — 1280px (compact laptop) ============ */
@media (max-width: 1280px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 500px; gap: 56px; padding: 96px 40px 56px; }
  .hero-photo { height: 580px; }
  .claim { font-size: 76px; }
  .topbar-inner { padding: 0 40px; }
  .problem-inner { padding: 0 40px; gap: 64px; }
  .plan-head, .plan-steps { padding: 0 40px; }
  .categories-head, .cat-grid { padding: 0 40px; }
  .guide-text { padding: 80px 56px; }
  .case-content { padding: 80px 56px; }
  .display { font-size: 56px; }
  .problem-text .display, .plan-head .display, .categories-head .display { font-size: 64px; }
  .col-text .section-title { font-size: 52px; }
  .case-content .display { font-size: 52px; }
}

/* ============ RESPONSIVE — 1024px (tablet landscape) ============ */
@media (max-width: 1024px) {
  .topbar-inner { padding: 0 24px; }
  .nav { display: none; }
  .top-right { display: none; }
  .hamburger { display: inline-flex; }
  .corner-strip { display: none; }

  .hero { padding-top: 60px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 420px; gap: 40px; padding: 64px 24px 48px; }
  .hero-photo { height: 520px; border-radius: 16px; }
  .claim { font-size: 64px; }
  .subclaim { font-size: 17px; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat-num { font-size: 24px; }

  .problem { padding: 140px 0; }
  .problem-inner { grid-template-columns: 1fr; gap: 56px; padding: 0 24px; }
  .problem-text .display { font-size: 56px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }

  .guide-split { grid-template-columns: 1fr 1fr; min-height: 0; }
  .guide-photo { min-height: 480px; }
  .guide-text { padding: 64px 32px; }
  .guide-text .display { font-size: 44px; }
  .overlay-stats { gap: 32px; }
  .overlay-stats strong { font-size: 36px; }

  .plan { padding: 140px 0 160px; }
  .plan-head, .plan-steps { padding: 0 24px; }
  .plan-head .display { font-size: 56px; }
  .plan-steps { grid-template-columns: 1fr 1fr; }
  .plan-steps article:last-child { grid-column: span 2; }
  .plan-steps article:last-child .step-photo { aspect-ratio: 16/7; }

  .decision { padding: 140px 0; }
  .decision-card { margin: 0 24px; padding: 48px 36px; }
  .decision-card .display { font-size: 40px; }
  .tool-form { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tool-form .tool-step:last-of-type { grid-column: span 2; }

  .categories { padding: 140px 0 160px; }
  .categories-head, .cat-grid { padding: 0 24px; }
  .categories-head .display { font-size: 56px; }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(300px, auto));
  }
  .cat-large { grid-column: span 2; }

  .case-split { grid-template-columns: 1fr; }
  .case-photo { min-height: 420px; }
  .case-content { padding: 64px 24px; }
  .case-content .display { font-size: 48px; }
  .case-stats { gap: 20px; }

  .footer-inner { padding: 0 24px; }
  .footer-closer { padding: 96px 0 72px; }
  .footer-closer-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-claim { font-size: 64px; }
  .footer-cols-grid { gap: 40px; }
}

/* ============ RESPONSIVE — 768px (tablet portrait) ============ */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 48px; }
  .right { padding: 0; }
  .hero-photo { height: 380px; width: 100%; }
  .claim { font-size: 56px; }
  .subclaim { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding-top: 24px; }
  .hero-stats .stat { flex: 1 1 calc(33% - 14px); min-width: 80px; }
  .hero-stats .stat-num { font-size: 22px; }
  .hero-stats .stat-divider { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost-large { width: 100%; justify-content: space-between; }

  .problem { padding: 96px 0; }
  .problem-text .display { font-size: 44px; }
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .problem-card { padding: 24px; }

  .guide-split { grid-template-columns: 1fr; }
  .guide-photo { min-height: 360px; }
  .guide-photo-overlay { left: 24px; right: 24px; bottom: 24px; }
  .overlay-stats { gap: 24px; flex-wrap: wrap; }
  .overlay-stats strong { font-size: 28px; }
  .overlay-stats > div > span { font-size: 12px; }
  .guide-text { padding: 56px 24px; }
  .guide-text .display { font-size: 40px; }
  .guide-text .lead { font-size: 16px; }

  .plan { padding: 96px 0 112px; }
  .plan-head .display { font-size: 44px; }
  .plan-steps { grid-template-columns: 1fr; gap: 20px; }
  .plan-steps article:last-child { grid-column: span 1; }
  .plan-steps article:last-child .step-photo { aspect-ratio: 4/3; }
  .step-content { padding: 24px 24px 28px; }
  .step-content h3 { font-size: 22px; }
  .step-content p { font-size: 15px; }

  .decision { padding: 96px 0 112px; }
  .decision-card { margin: 0 16px; padding: 36px 24px; border-radius: 16px; }
  .decision-card .display { font-size: 32px; }
  .decision-card .lead { font-size: 15px; margin-bottom: 28px; }
  .tool-form { grid-template-columns: 1fr; gap: 24px; }
  .tool-form .tool-step:last-of-type { grid-column: span 1; }
  .tool-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .tool-actions .btn-primary { width: 100%; justify-content: center; }

  .categories { padding: 96px 0 112px; }
  .categories-head .display { font-size: 44px; }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .cat-large { grid-column: span 1; }
  .cat-tile { min-height: 320px; }
  .cat-tile h3 { font-size: 26px; }

  .case-content { padding: 56px 24px; }
  .case-content .display { font-size: 40px; }
  .case-content blockquote { font-size: 18px; padding: 16px 0 16px 20px; }
  .case-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .case-num { font-size: 26px; }

  .footer-closer { padding: 72px 0 56px; }
  .footer-claim { font-size: 48px; }
  .footer-claim-sub { font-size: 16px; }
  .footer-newsletter { padding: 32px 24px 28px; }
  .footer-newsletter h3 { font-size: 22px; }
  .footer-cols { padding: 48px 0 64px; }
  .footer-cols-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-transparency { padding: 0 0 48px; }
  .transparency-text { font-size: 14px; }
  .footer-wordmark { font-size: clamp(48px, 14.6vw, 160px); padding: 8px 20px 24px; }
  .footer-legal .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .marquee-track { gap: 36px; animation-duration: 24s; }
  .marquee-group { gap: 36px; }
  .brand-logo { font-size: 17px; }
  .brand-logo.sans { font-size: 16px; }
  .brand-logo.caps { font-size: 13px; }
}

/* ============ RESPONSIVE — 480px (mobiel) ============ */
@media (max-width: 480px) {
  .logo .wordmark { font-size: 19px; }
  .logo .mark { width: 34px; height: 34px; }

  .hero-inner { padding: 48px 20px 40px; }
  .claim { font-size: 44px; }
  .subclaim { font-size: 15px; }
  .left .eyebrow { font-size: 10px; margin-bottom: 22px; }
  .hero-photo { height: 320px; border-radius: 14px; }
  .photo-tag { left: 16px; bottom: 16px; right: 16px; padding: 9px 14px; font-size: 12px; }
  .hero-stats .stat-num { font-size: 20px; }
  .hero-stats .stat-label { font-size: 12px; }

  .problem { padding: 72px 0; }
  .problem-text .display { font-size: 36px; }
  .problem-text .lead, .lead { font-size: 16px; }

  .guide-photo { min-height: 280px; }
  .overlay-stats strong { font-size: 24px; }
  .guide-text .display { font-size: 34px; }

  .plan-head .display, .categories-head .display { font-size: 36px; }

  .decision-card { padding: 28px 20px; }
  .decision-card .display { font-size: 28px; }

  .cat-tile { min-height: 280px; }
  .cat-tile .cat-content { padding: 28px 24px 24px; }
  .cat-tile h3 { font-size: 22px; }
  .cat-arrow { width: 36px; height: 36px; right: 24px; bottom: 24px; }
  .cat-accent .big-num { font-size: 40px; }

  .case-content .display { font-size: 32px; }
  .case-content blockquote { font-size: 16px; }
  .case-stats { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; }
  .case-num { font-size: 24px; }

  .footer-claim { font-size: 40px; }
  .footer-wordmark { font-size: clamp(40px, 14.6vw, 90px); padding: 4px 16px 20px; }

  .mobile-nav a { font-size: 16px; padding: 12px 4px; }
}

/* =====================================================================
   CATEGORY LANDING PAGES
   ===================================================================== */

/* ── Category Hero ─────────────────────────────────────────────────── */
.cat-hero {
  position: relative;
  padding: 140px 6vw 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 100%);
}
.cat-hero-inner { position: relative; max-width: 1480px; margin: 0 auto; z-index: 2; }
.breadcrumb {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6B7280; margin-bottom: 36px;
}
.breadcrumb a { color: #6B7280; text-decoration: none; }
.breadcrumb a:hover { color: #0B3D2E; }
.bc-sep { margin: 0 8px; color: #C7BFB1; }
.bc-current { color: #0B3D2E; font-weight: 600; }

.cat-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.cat-hero-left { position: relative; }
.cat-num-display {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.9;
  color: #D97706;
  opacity: 0.18;
  margin-bottom: -36px;
}
.cat-claim {
  font-size: clamp(56px, 8vw, 120px) !important;
  margin: 0 0 28px !important;
}
.cat-hero-stat {
  display: inline-flex;
  flex-direction: column;
  margin-top: 38px;
  padding: 22px 28px;
  background: #FFF7ED;
  border-left: 3px solid #D97706;
  border-radius: 4px;
}
.cat-stat-value {
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0B3D2E;
  line-height: 1.1;
}
.cat-stat-label {
  font-size: 13px;
  color: #6B7280;
  margin-top: 6px;
  max-width: 320px;
}
.cat-hero-right .hero-photo { aspect-ratio: 4/5; height: auto; }

/* ── Sub-topics grid ───────────────────────────────────────────────── */
.subtopics {
  padding: 110px 6vw 80px;
  background: #FFFFFF;
}
.subtopics-head { max-width: 1480px; margin: 0 auto 56px; }
.subtopics-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.subtopic {
  position: relative;
  padding: 38px 36px 34px;
  background: #FAFAF7;
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(.4,.0,.2,1), background 0.4s;
}
.subtopic:hover { transform: translateY(-3px); background: #FFF7ED; }
.subtopic-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  background: #FFFFFF;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.subtopic h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: #0B3D2E;
  margin: 0 0 14px;
}
.subtopic p {
  font-size: 15px;
  line-height: 1.65;
  color: #4B5563;
  margin: 0 0 22px;
}

/* ── Category tool teaser ──────────────────────────────────────────── */
.cat-tool {
  position: relative;
  padding: 100px 6vw;
  background: #FFFBF5;
  overflow: hidden;
}
.cat-tool-blob {
  position: absolute;
  top: -10%; right: -8%;
  width: 700px; opacity: 0.5;
  z-index: 1; pointer-events: none;
}
.cat-tool-inner {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto; text-align: center;
}
.cat-tool .lead {
  max-width: 640px; margin: 18px auto 36px;
  font-size: 18px; line-height: 1.6; color: #374151;
}

/* ── Article grid (cards) ──────────────────────────────────────────── */
.articles {
  padding: 110px 6vw;
  background: #FFFFFF;
}
.articles-head {
  max-width: 1480px; margin: 0 auto 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: end;
}
.articles-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  display: block;
  padding: 32px 30px 36px;
  background: #FAFAF7;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s, background 0.4s;
}
.article-card:hover { transform: translateY(-3px); background: #FFF7ED; }
.article-date {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  color: #D97706; margin-bottom: 14px;
}
.article-card h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #0B3D2E;
  margin: 0 0 12px;
}
.article-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0 0 22px;
}
.article-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0B3D2E;
  font-weight: 600;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq {
  padding: 110px 6vw;
  background: #FAFAF7;
}
.faq-head { max-width: 880px; margin: 0 auto 48px; text-align: center; }
.faq-head .eyebrow { justify-content: center; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #E5E5DF;
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  color: #0B3D2E;
  list-style: none;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: #D97706;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #4B5563;
  max-width: 760px;
}

/* ── Next category CTA ──────────────────────────────────────────────── */
.next-cat {
  background: #0B3D2E;
  padding: 0;
}
.next-cat-link {
  display: block;
  padding: 80px 6vw;
  text-decoration: none;
  color: #FFFFFF;
  max-width: 1480px;
  margin: 0 auto;
  transition: padding-left 0.5s cubic-bezier(.4,.0,.2,1);
}
.next-cat-link:hover { padding-left: calc(6vw + 24px); }
.next-cat-eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D97706;
  margin-bottom: 20px;
}
.next-cat-name {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 24px;
}
.next-cat-arr {
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-size: 0.7em;
  color: #D97706;
  transition: transform 0.5s cubic-bezier(.4,.0,.2,1);
}
.next-cat-link:hover .next-cat-arr { transform: translateX(12px); }
.next-cat-tagline {
  font-size: 18px;
  color: #C8D6CF;
  max-width: 600px;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .cat-hero { padding: 110px 5vw 70px; }
  .cat-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-hero-right .hero-photo { aspect-ratio: 16/10; }
  .subtopics-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cat-hero { padding: 90px 5vw 50px; }
  .subtopics, .articles, .faq, .cat-tool { padding-left: 5vw; padding-right: 5vw; }
  .subtopic { padding: 28px 24px; }
  .subtopic h3 { font-size: 22px; }
  .article-card { padding: 26px 22px; }
  .next-cat-link { padding: 60px 5vw; }
  .faq-item summary { font-size: 17px; }
}

/* =====================================================================
   SUB-TOPIC PAGES (pages/{cat}/{slug}.html)
   ===================================================================== */

/* ── Sub-topic hero ─────────────────────────────────────────────────── */
.sub-hero {
  position: relative;
  padding: 130px 6vw 60px;
  background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 100%);
  overflow: hidden;
}
.sub-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.sub-claim {
  font-size: clamp(48px, 6.5vw, 88px) !important;
  margin: 18px 0 8px !important;
  line-height: 1.0 !important;
}
.sub-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #D97706;
  margin: 0 0 28px;
}
.sub-hero-right .hero-photo { aspect-ratio: 4/5; }

/* Stats row */
.sub-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0B3D2E;
  border-radius: 8px;
  overflow: hidden;
}
.sub-stat {
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
  color: #FFFFFF;
}
.sub-stat:last-child { border-right: none; }
.sub-stat-value {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.sub-stat-label {
  font-size: 12px;
  color: #C8D6CF;
  line-height: 1.4;
}

/* ── Deep content sections ──────────────────────────────────────────── */
.sub-content { padding: 90px 6vw; background: #FFFFFF; }
.sub-content-inner { max-width: 780px; margin: 0 auto; }
.sub-section { margin-bottom: 56px; }
.sub-section:last-child { margin-bottom: 0; }
.sub-section h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  color: #0B3D2E;
  margin: 0 0 16px;
}
.sub-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #2A3B33;
  margin: 0;
}

/* ── Related tools strip ────────────────────────────────────────────── */
.sub-tools {
  padding: 90px 6vw;
  background: #FFFBF5;
  text-align: center;
}
.sub-tools-inner { max-width: 880px; margin: 0 auto; }
.sub-tools .eyebrow { justify-content: center; }
.tool-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.tool-chip-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #FFFFFF;
  border: 1px solid #E9DDC7;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0B3D2E;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.tool-chip-mini:hover {
  background: #FFF1D6;
  border-color: #D97706;
  transform: translateY(-2px);
}

/* ── Sibling sub-topics ─────────────────────────────────────────────── */
.siblings { padding: 90px 6vw; background: #FAFAF7; }
.siblings-head { max-width: 1280px; margin: 0 auto 36px; }
.siblings-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sibling-card {
  position: relative;
  display: block;
  padding: 28px 28px 36px;
  background: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s, background 0.4s;
}
.sibling-card:hover { transform: translateY(-3px); background: #FFF7ED; }
.sibling-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  margin-bottom: 14px;
}
.sibling-card h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #0B3D2E;
  margin: 0 0 8px;
}
.sibling-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
}
.sibling-arr {
  position: absolute;
  bottom: 22px; right: 26px;
  font-size: 22px;
  color: #D97706;
  transition: transform 0.3s;
}
.sibling-card:hover .sibling-arr { transform: translateX(6px); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .sub-hero { padding: 100px 5vw 50px; }
  .sub-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .sub-hero-right .hero-photo { aspect-ratio: 16/10; }
  .sub-stats-row { grid-template-columns: repeat(2, 1fr); }
  .sub-stat:nth-child(2) { border-right: none; }
  .sub-stat:nth-child(1), .sub-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .siblings-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sub-hero { padding: 80px 5vw 40px; }
  .sub-content, .sub-tools, .siblings { padding-left: 5vw; padding-right: 5vw; }
  .sub-section h2 { font-size: 24px; }
  .sub-section p { font-size: 15.5px; }
}

/* =====================================================================
   ARTICLE DETAIL (pages/nieuws/{year}/{id}-{slug}.html)
   ===================================================================== */
.article-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 5vw 80px;
}
.art-head { margin-bottom: 36px; }
.art-head .breadcrumb { margin-bottom: 32px; }
.art-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 16px;
}
.art-cat { color: #D97706; font-weight: 600; }
.art-sep { color: #C7BFB1; }
.art-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  color: #0B3D2E;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.art-lead-p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: #2A3B33;
  margin: 0;
}
.art-lead {
  max-width: 1080px;
  margin: 40px auto;
  padding: 0 5vw;
}
.art-lead img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.art-figure {
  margin: 32px 0;
  padding: 0;
}
.art-figure img { width: 100%; height: auto; border-radius: 6px; display: block; }
.art-body {
  font-size: 17.5px;
  line-height: 1.75;
  color: #2A3B33;
}
.art-body p { margin: 0 0 1.2em; }
.art-body h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  color: #0B3D2E;
  margin: 2.2em 0 0.7em;
}
.art-body h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #0B3D2E;
  margin: 1.8em 0 0.5em;
}
.art-body ul { margin: 0 0 1.4em 1.2em; padding: 0; }
.art-body li { margin: 0.4em 0; }
.art-body a { color: #D97706; text-decoration: underline; text-underline-offset: 3px; }
.art-body a:hover { color: #0B3D2E; }
.art-body strong { font-weight: 600; color: #0B3D2E; }
.art-foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #E5E5DF;
}
.art-source {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 28px;
}
.art-source a { color: #D97706; text-decoration: underline; }

@media (max-width: 640px) {
  .article-detail { padding: 90px 5vw 60px; }
  .art-body { font-size: 16.5px; line-height: 1.7; }
  .art-eyebrow { font-size: 11px; flex-wrap: wrap; }
}

/* =====================================================================
   BEDRIJVENGIDS (pages/bedrijvengids/)
   ===================================================================== */
.bedrijvengids {
  padding: 70px 6vw 100px;
  background: #FFFFFF;
}
.bg-inner { max-width: 1280px; margin: 0 auto; }
.bg-toolbar {
  position: sticky; top: 64px; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 0;
  margin: -20px 0 32px;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #E5E5DF;
}
.bg-search {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  padding: 12px 18px;
  border: 1px solid #E5E5DF;
  border-radius: 999px;
  background: #FAFAF7;
  color: #0B3D2E;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.bg-search:focus { border-color: #D97706; background: #FFF; }
.bg-letters {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: flex-end;
}
.bg-letters a {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  padding: 6px 9px;
  border-radius: 6px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.bg-letters a:hover { background: #FFF1D6; color: #D97706; }

.bg-letter-blocks { display: grid; gap: 56px; }
.bg-letter-block { scroll-margin-top: 140px; }
.bg-letter-h {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9;
  color: #D97706;
  margin: 0 0 20px;
  display: flex; align-items: baseline; gap: 14px;
}
.bg-letter-count {
  font-family: 'Geist Mono', monospace;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0.04em;
}
.bg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.bg-card {
  display: block;
  padding: 18px 22px;
  background: #FAFAF7;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, transform 0.3s;
}
.bg-card:hover { background: #FFF7ED; transform: translateY(-2px); }
.bg-card h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0B3D2E;
  margin: 0;
  line-height: 1.3;
}
.bg-card-meta {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: #6B7280;
  font-family: 'Geist Mono', monospace;
  word-break: break-all;
}
.bg-empty { padding: 80px 0; text-align: center; color: #6B7280; }

/* Company detail */
.company-detail {
  padding: 110px 5vw 80px;
  background: #FFFFFF;
}
.cd-inner { max-width: 780px; margin: 0 auto; }
.cd-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: #2A3B33;
  margin: 28px 0 48px;
}
.cd-body p { margin: 0 0 1em; }
.cd-section-h {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin: 0 0 16px;
  font-weight: 600;
}
.cd-contact, .cd-sectors { margin-bottom: 48px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.contact-item {
  display: flex; flex-direction: column;
  padding: 18px 22px;
  background: #FAFAF7;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.contact-item:hover { background: #FFF7ED; }
.contact-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 4px;
}
.contact-value {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  color: #0B3D2E;
  font-weight: 500;
  word-break: break-all;
}
.contact-empty {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}
.sector-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-chip {
  display: inline-block;
  padding: 6px 14px;
  background: #FFF1D6;
  color: #A04309;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
}
.cd-foot {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid #E5E5DF;
}

@media (max-width: 720px) {
  .bg-toolbar { grid-template-columns: 1fr; gap: 14px; }
  .bg-letters { justify-content: flex-start; }
}

/* =====================================================================
   TOOLS — overview + per-tool wizard layout
   ===================================================================== */

/* ── Tools index ────────────────────────────────────────────────────── */
.tools-grid-section {
  padding: 70px 6vw 110px;
  background: #FFFFFF;
}
.tools-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.tool-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 28px 32px;
  background: #FAFAF7;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.4s, transform 0.4s;
  min-height: 240px;
}
.tool-card:hover { background: #FFF7ED; transform: translateY(-3px); }
.tool-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.tool-card-cat {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  font-weight: 600;
}
.tool-card-dur {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: #6B7280;
}
.tool-card h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #0B3D2E;
  margin: 0 0 10px;
}
.tool-card-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: #D97706;
  margin: 0 0 14px;
}
.tool-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0 0 22px;
  flex: 1;
}
.tool-card-open {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0B3D2E;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.tool-card-popular {
  position: absolute; top: 16px; right: 16px;
  background: #D97706; color: white;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

/* ── Tool wizard page ───────────────────────────────────────────────── */
.tool-page {
  padding: 110px 5vw 80px;
  background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 380px);
  min-height: 70vh;
}
.tool-page-inner {
  max-width: 740px; margin: 0 auto;
}
.tool-page-head { margin-bottom: 44px; }
.tool-page-head .breadcrumb { margin-bottom: 28px; }
.tool-page-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #D97706;
  font-weight: 600; margin-bottom: 14px;
}
.tool-page h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: #0B3D2E;
  margin: 0 0 14px;
}
.tool-page-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #D97706;
  margin: 0 0 18px;
}
.tool-page-desc {
  font-size: 17px; line-height: 1.65; color: #4B5563;
  max-width: 620px; margin: 0;
}

/* Wizard progress + step */
.wizard {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 32px 28px;
  margin-top: 32px;
  box-shadow: 0 1px 0 rgba(11,61,46,0.04), 0 10px 30px rgba(11,61,46,0.05);
}
.wizard-progress {
  display: flex; gap: 8px; margin-bottom: 28px;
}
.wizard-pip {
  flex: 1; height: 4px; border-radius: 2px;
  background: #EAE5DA;
  transition: background 0.3s;
}
.wizard-pip.active { background: #D97706; }
.wizard-pip.done   { background: #0B3D2E; }
.wizard-step {
  display: none;
}
.wizard-step.active { display: block; animation: fadeUp 0.35s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard-q {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #6B7280;
  margin-bottom: 12px;
}
.wizard-step h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
  color: #0B3D2E;
  margin: 0 0 24px;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.option-card {
  padding: 18px 20px;
  background: #FAFAF7;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: 'Geist', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.option-card:hover { background: #FFF1D6; }
.option-card.selected { border-color: #D97706; background: #FFF1D6; }
.option-card-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0B3D2E;
  margin-bottom: 4px;
}
.option-card-hint {
  display: block;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

.wizard-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
}
.wizard-back {
  background: transparent; border: none;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #6B7280; cursor: pointer; padding: 8px 0;
}
.wizard-back:hover { color: #0B3D2E; }
.wizard-next {
  background: #D97706; color: white;
  border: none; padding: 12px 24px;
  font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500;
  border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.3s;
}
.wizard-next:hover { background: #A04309; }
.wizard-next:disabled {
  background: #EAE5DA; color: #9CA3AF; cursor: not-allowed;
}

/* Result card */
.wizard-result {
  display: none;
  animation: fadeUp 0.5s ease both;
}
.wizard-result.active { display: block; }
.result-headline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: #0B3D2E;
  margin: 0 0 8px;
}
.result-system {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: #D97706;
  margin: 0 0 20px;
}
.result-explanation {
  font-size: 16.5px; line-height: 1.7; color: #2A3B33;
  margin: 0 0 28px;
}
.result-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  background: #0B3D2E;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 28px;
}
.result-stat {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: white;
}
.result-stat:last-child { border-right: none; }
.result-stat-value {
  font-family: 'Geist', sans-serif; font-weight: 700;
  font-size: 22px; line-height: 1.1;
}
.result-stat-label {
  font-size: 12px; color: #C8D6CF; margin-top: 4px;
}
.result-next-steps {
  margin-top: 12px;
}
.result-next-steps h3 {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #6B7280;
  font-weight: 600; margin: 0 0 12px;
}
.result-next-steps ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.result-next-steps a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: #FAFAF7;
  border-radius: 8px;
  text-decoration: none;
  color: #0B3D2E;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.result-next-steps a:hover { background: #FFF1D6; transform: translateX(4px); }
.result-next-steps a::after {
  content: '→'; margin-left: auto; color: #D97706;
}
.wizard-reset {
  background: transparent; border: none;
  margin-top: 24px;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #6B7280; cursor: pointer;
}
.wizard-reset:hover { color: #D97706; }

.tool-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background: #FFFBF0;
  border-left: 3px solid #D97706;
  border-radius: 4px;
  font-size: 13.5px; line-height: 1.55;
  color: #4B5563;
}
.tool-disclaimer strong { color: #0B3D2E; }

@media (max-width: 640px) {
  .wizard { padding: 24px 22px 22px; }
  .option-grid { grid-template-columns: 1fr; }
  .tool-page { padding: 80px 5vw 60px; }
  .result-stats { grid-template-columns: 1fr 1fr; }
  .result-stat { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* Shared result panels for tool wizards (used by isde-calc, subsidiecheck, etc) */
.isde-result {
  background: #0B3D2E;
  color: white;
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 8px;
}

/* =====================================================================
   PAYWALL · CTA-blok onder elke tool + modal
   ===================================================================== */
.pw-cta {
  max-width: 740px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFF1D6 100%);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #F6CC74;
  position: relative;
  overflow: hidden;
}
.pw-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(217,119,6,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.pw-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pw-cta-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}
.pw-cta-h {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #0B3D2E;
  margin: 0 0 8px;
}
.pw-cta-p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
  max-width: 380px;
}
.pw-cta-right {
  text-align: right;
}
.pw-cta-price {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 32px;
  color: #D97706;
  line-height: 1;
  margin-bottom: 12px;
}
.pw-cta-btn {
  background: #0B3D2E;
  color: white;
  border: none;
  padding: 13px 22px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, background 0.3s;
}
.pw-cta-btn:hover { background: #D97706; transform: translateY(-1px); }
.pw-arr { font-size: 1.1em; line-height: 1; }

/* Modal */
.pw-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: pw-fade 0.25s ease;
}
@keyframes pw-fade { from { opacity: 0; } to { opacity: 1; } }
.pw-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 61, 46, 0.75);
  backdrop-filter: blur(4px);
}
.pw-modal-card {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 38px 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-height: 92vh;
  overflow-y: auto;
  animation: pw-slide 0.35s cubic-bezier(.4,.0,.2,1);
}
@keyframes pw-slide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pw-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: #6B7280;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  transition: color 0.2s;
}
.pw-modal-close:hover { color: #0B3D2E; }
.pw-modal-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  font-weight: 600;
  margin-bottom: 10px;
}
.pw-modal-card h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #0B3D2E;
  margin: 0 0 10px;
}
.pw-modal-sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0 0 22px;
}

.pw-form { display: flex; flex-direction: column; gap: 14px; }
.pw-label {
  display: flex;
  flex-direction: column;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 600;
  gap: 6px;
}
.pw-label input {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #0B3D2E;
  letter-spacing: normal;
  text-transform: none;
  padding: 12px 16px;
  border: 1px solid #E5E5DF;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.pw-label input:focus { border-color: #D97706; }
.pw-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.5;
  cursor: pointer;
}
.pw-check input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid #C7BFB1;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.pw-check input:checked { background: #D97706; border-color: #D97706; }
.pw-check input:checked::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: white; font-weight: 700; font-size: 12px; }
.pw-check a { color: #D97706; text-decoration: underline; }

.pw-summary {
  background: #FAFAF7;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 6px 0;
}
.pw-summary-row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  color: #4B5563;
}
.pw-summary-tot {
  border-top: 1px solid #E5E5DF;
  padding-top: 10px; margin-top: 6px;
  font-weight: 600;
  color: #0B3D2E;
  font-size: 17px;
}
.pw-summary-tot span:last-child { color: #D97706; }

.pw-submit {
  background: #D97706;
  color: white;
  border: none;
  padding: 14px 24px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.pw-submit:hover { background: #A04309; }
.pw-submit:disabled { background: #C7BFB1; cursor: not-allowed; }

.pw-trust {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}
.pw-trust strong { color: #0B3D2E; }

.pw-stub-banner {
  margin-top: 18px;
  padding: 14px 18px;
  background: #FFFBF0;
  border-left: 3px solid #D97706;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: #4B5563;
}
.pw-stub-banner strong { color: #0B3D2E; }

@media (max-width: 640px) {
  .pw-cta-inner { grid-template-columns: 1fr; gap: 18px; }
  .pw-cta-right { text-align: left; }
  .pw-modal-card { padding: 30px 24px 24px; }
}

/* =====================================================================
   BEDRIJVENGIDS · index, detail, sales-page
   ===================================================================== */

/* ── Filter bar ───────────────────────────────────────────────────── */
.bg-filter-section {
  padding: 30px 6vw 24px;
  background: #FFFFFF;
  border-bottom: 1px solid #EAE5DA;
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
}
.bg-filter-inner { max-width: 1280px; margin: 0 auto; }
.bg-filter-search {
  margin-bottom: 16px;
}
.bg-filter-search input {
  width: 100%;
  max-width: 480px;
  padding: 14px 18px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  border: 1px solid #E5E5DF;
  border-radius: 999px;
  outline: none;
  background: #FAFAF7;
  transition: border-color 0.2s, background 0.2s;
}
.bg-filter-search input:focus { border-color: #D97706; background: white; }

.bg-filter-sectors {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.bg-sector-chip {
  background: #FAFAF7;
  border: 1px solid #EAE5DA;
  padding: 8px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.bg-sector-chip:hover { background: #FFF1D6; border-color: #D97706; color: #0B3D2E; }
.bg-sector-chip.active { background: #0B3D2E; color: white; border-color: #0B3D2E; }
.bg-sector-chip.active .bg-chip-count { color: #C8D6CF; }
.bg-chip-count {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: #9CA3AF;
}

/* ── Letter jump ──────────────────────────────────────────────────── */
.bg-letters { padding: 16px 6vw; background: #FAFAF7; border-bottom: 1px solid #EAE5DA; }
.bg-letters-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 4px;
}
.bg-letter-jump {
  font-family: 'Geist Mono', monospace;
  font-size: 13px; font-weight: 600;
  color: #6B7280;
  width: 30px; height: 30px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.bg-letter-jump:hover { background: #FFF1D6; color: #0B3D2E; }

/* ── Company list ─────────────────────────────────────────────────── */
.bg-list-section { padding: 50px 6vw 100px; background: #FFFFFF; }
.bg-list-inner { max-width: 1280px; margin: 0 auto; }
.bg-letter-block { margin-bottom: 50px; }
.bg-letter-h {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: #D97706;
  margin: 0 0 24px;
  padding-left: 4px;
}
.bg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.bg-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 20px 22px 22px;
  background: #FAFAF7;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, transform 0.3s;
  min-height: 100px;
}
.bg-card:hover { background: #FFF7ED; transform: translateY(-2px); }
.bg-card-premium { background: linear-gradient(135deg, #FFF7ED 0%, #FFF1D6 100%); border: 1px solid #F6CC74; }
.bg-card-featured { background: linear-gradient(135deg, #FFF1D6 0%, #F6CC74 100%); border: 1px solid #D97706; }
.bg-tier-premium, .bg-tier-featured {
  position: absolute;
  top: 12px; right: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.bg-tier-premium { background: #D97706; color: white; }
.bg-tier-featured { background: #0B3D2E; color: #F6CC74; }
.bg-card-name {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.25;
  color: #0B3D2E;
  margin: 0 0 8px;
  text-transform: capitalize;
}
.bg-card-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; }
.bg-card-sector {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #D97706;
  font-weight: 600;
}
.bg-card-city { color: #6B7280; }

.bg-empty {
  text-align: center;
  padding: 60px 20px;
  font-style: italic;
  color: #6B7280;
}

/* ── Detail page ──────────────────────────────────────────────────── */
.company-detail {
  padding: 110px 6vw 80px;
  background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 380px);
}
.company-inner { max-width: 1100px; margin: 0 auto; }
.company-header { margin-top: 32px; margin-bottom: 36px; }
.company-tier-badge {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.company-tier-free { background: #FAFAF7; color: #6B7280; }
.company-tier-premium { background: #D97706; color: white; }
.company-tier-featured { background: #0B3D2E; color: #F6CC74; }
.company-name {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  color: #0B3D2E;
  margin: 0 0 16px;
  text-transform: capitalize;
}
.company-sectors-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.sector-chip {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D97706;
  background: #FFF7ED;
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}
.sector-chip:hover { background: #FFF1D6; }

.company-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.company-main {}
.company-body p { font-size: 16.5px; line-height: 1.75; color: #2A3B33; margin: 0 0 16px; }
.company-body h3 { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 22px; color: #0B3D2E; margin: 28px 0 10px; }
.company-body ul { margin: 0 0 16px 22px; }
.company-empty { color: #6B7280; font-style: italic; }

.company-sidebar { position: sticky; top: 100px; }
.company-sidebar-h {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 600;
  margin: 0 0 14px;
}
.company-contact-block, .company-address-block {
  background: #FAFAF7;
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 16px;
}
.company-contact-list { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
  display: flex; flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #EAE5DA;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { opacity: 0.7; }
.contact-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
}
.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: #0B3D2E;
  margin-top: 2px;
}
.contact-arr { color: #D97706; }
.contact-empty { color: #6B7280; font-style: italic; font-size: 14px; }

.company-address-block address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: #2A3B33;
}

/* ── Premium claim CTA ────────────────────────────────────────────── */
.company-claim { padding: 60px 6vw; background: #FFFFFF; }
.claim-card {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFF1D6 100%);
  border-radius: 14px;
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid #F6CC74;
}
.claim-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}
.claim-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  color: #0B3D2E;
  margin: 0 0 12px;
}
.claim-text { font-size: 15.5px; line-height: 1.6; color: #4B5563; margin: 0; max-width: 480px; }
.claim-card-cta { text-align: right; }
.claim-trust {
  font-size: 12px;
  color: #6B7280;
  margin: 10px 0 0;
}

/* ── Related companies ────────────────────────────────────────────── */
.company-related { padding: 60px 6vw 90px; background: #FAFAF7; }
.company-h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #0B3D2E;
  margin: 0 0 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.related-card {
  display: block;
  padding: 18px 20px;
  background: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s;
}
.related-card:hover { background: #FFF7ED; transform: translateY(-2px); }
.related-card h4 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0B3D2E;
  margin: 0 0 4px;
  text-transform: capitalize;
}
.related-city { font-size: 12px; color: #6B7280; }

/* ── Sales-page: voor bedrijven ───────────────────────────────────── */
.sales-section { padding: 90px 6vw; background: #FFFFFF; }
.sales-section-alt { background: #FFFBF5; }
.sales-inner { max-width: 1100px; margin: 0 auto; }
.sales-section .display { margin-bottom: 48px; }

.tier-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.tier-col {
  padding: 36px 32px;
  background: #FAFAF7;
  border-radius: 12px;
  position: relative;
}
.tier-premium {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFF1D6 100%);
  border: 2px solid #D97706;
}
.tier-recommended {
  position: absolute;
  top: -14px; right: 24px;
  background: #D97706;
  color: white;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier-col h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #0B3D2E;
  margin: 0 0 12px;
}
.tier-price { margin-bottom: 22px; }
.tier-amount {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 44px;
  color: #D97706;
  line-height: 1;
}
.tier-period { font-size: 14px; color: #6B7280; }
.tier-features { list-style: none; padding: 0; margin: 0 0 28px; }
.tier-features li {
  padding: 8px 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #2A3B33;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  padding-left: 24px;
}
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: #D97706; font-weight: 700; }
.tier-features li.tier-na::before { content: '·'; color: #C7BFB1; }
.tier-features li.tier-na { color: #9CA3AF; }
.tier-features li strong { color: #0B3D2E; }

.sales-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.sales-stat {
  background: #FFFFFF;
  padding: 28px 28px;
  border-radius: 12px;
  border-left: 3px solid #D97706;
}
.sales-stat-value {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #0B3D2E;
  line-height: 1;
  margin-bottom: 8px;
}
.sales-stat-label { font-size: 14px; color: #4B5563; line-height: 1.5; }

.sales-cta-inner { text-align: center; }
.sales-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  background: #FAFAF7;
  border-radius: 14px;
  padding: 36px 38px 32px;
}
.sales-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.sales-form label {
  display: flex; flex-direction: column;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 600;
}
.sales-form label span { margin-bottom: 6px; }
.sales-form-full { margin-bottom: 14px; }
.sales-form input, .sales-form textarea {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #0B3D2E;
  letter-spacing: normal;
  text-transform: none;
  padding: 12px 16px;
  border: 1px solid #E5E5DF;
  border-radius: 8px;
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.sales-form input:focus, .sales-form textarea:focus { border-color: #D97706; }
.sales-form textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.sales-form button {
  width: 100%;
  margin-top: 8px;
}
.sales-form-trust {
  text-align: center;
  font-size: 12px;
  color: #6B7280;
  margin-top: 16px;
}

.sales-faq { max-width: 760px; margin: 0 auto; }

@media (max-width: 800px) {
  .company-grid { grid-template-columns: 1fr; gap: 32px; }
  .company-sidebar { position: static; }
  .claim-card { grid-template-columns: 1fr; gap: 24px; }
  .claim-card-cta { text-align: left; }
  .tier-compare { grid-template-columns: 1fr; }
  .sales-form-row { grid-template-columns: 1fr; }
  .bg-letter-h { font-size: 40px; }
}

/* =====================================================================
   COMPANY · Premium-tier render-blokken
   ===================================================================== */
.company-premium-section { padding: 50px 6vw; background: #FFFFFF; }
.company-premium-section:nth-child(even) { background: #FFFBF5; }
.company-premium-intro .company-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}
.premium-logo {
  max-width: 180px;
  max-height: 120px;
  object-fit: contain;
  background: white;
  border: 1px solid #EAE5DA;
  border-radius: 8px;
  padding: 12px;
}
.premium-intro-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #2A3B33;
  margin: 0 0 16px;
}

.premium-services-grid {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.premium-services-grid li {
  background: #FAFAF7;
  border-left: 3px solid #D97706;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #0B3D2E;
  border-radius: 4px;
}

.premium-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.premium-photos-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  background: #EAE5DA;
}

.premium-video {
  margin-top: 16px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.premium-video iframe {
  width: 100%; height: 100%;
  border: none;
}

.premium-info-block {
  background: #FAFAF7;
  border-radius: 8px;
  padding: 6px 24px;
  margin-top: 16px;
}
.premium-info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #EAE5DA;
  font-size: 15px;
  gap: 16px;
}
.premium-info-row:last-child { border-bottom: none; }
.premium-info-row span:first-child {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  align-self: center;
  font-weight: 600;
}
.premium-info-row span:last-child { color: #2A3B33; line-height: 1.55; }

.premium-certs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 12px;
}
.cert-badge {
  background: #FFF7ED;
  border: 1px solid #F6CC74;
  color: #A04309;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.premium-socials {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 8px;
}
.premium-socials a {
  font-size: 14px;
  font-weight: 500;
  color: #0B3D2E;
  text-decoration: none;
  padding: 8px 14px;
  background: #FAFAF7;
  border-radius: 6px;
  transition: background 0.2s;
}
.premium-socials a:hover { background: #FFF1D6; color: #D97706; }

.premium-contacts {
  list-style: none;
  padding: 0; margin: 16px 0 0;
}
.premium-contacts li {
  padding: 12px 18px;
  background: #FAFAF7;
  border-left: 3px solid #0B3D2E;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: #2A3B33;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .company-premium-intro .company-inner { grid-template-columns: 1fr; gap: 20px; }
  .premium-info-row { grid-template-columns: 1fr; gap: 4px; }
  .premium-info-row span:first-child { font-size: 10px; }
}

/* =====================================================================
   CATEGORY LANDING · visuele upgrade
   ===================================================================== */

/* ── Visual stats infographic (3-up, na hero) ───────────────────────── */
.visual-stats-section {
  padding: 60px 6vw 30px;
  background: #FFFFFF;
}
.visual-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.visual-stats-inner::before,
.visual-stats-inner::after {
  content: '';
  position: absolute;
  top: 50%; left: 33.33%;
  width: 1px; height: 60%;
  background: #EAE5DA;
  transform: translateY(-50%);
}
.visual-stats-inner::after { left: 66.66%; }
.visual-stat {
  text-align: center;
  padding: 24px 28px;
}
.visual-stat-icon {
  margin-bottom: 18px;
  display: inline-flex;
  width: 64px; height: 64px;
  background: #FFF7ED;
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.visual-stat-value {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1;
  color: #0B3D2E;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.visual-stat-label {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4B5563;
  max-width: 260px;
  margin: 0 auto;
}

/* ── Sub-topic cards met SVG-icon ────────────────────────────────────── */
.subtopic-icon {
  margin-bottom: 16px;
  display: inline-flex;
  width: 64px; height: 64px;
  background: #FFFFFF;
  border: 1px solid #EAE5DA;
  border-radius: 12px;
  align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.subtopic:hover .subtopic-icon {
  background: #FFF7ED;
  border-color: #D97706;
  transform: scale(1.05);
}

/* ── Comparison block (visuele tabel met progress-bars) ──────────────── */
.comparison-section {
  padding: 100px 6vw;
  background: #FFFBF5;
}
.comparison-inner { max-width: 1280px; margin: 0 auto; }
.comparison-inner .display { margin-bottom: 48px; }

.cmp-table {
  background: white;
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.cmp-row {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #F4F1EA;
  align-items: center;
}
.cmp-row:last-child { border-bottom: none; }

.cmp-header {
  border-bottom: 2px solid #0B3D2E;
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.cmp-dim {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 600;
  text-align: left;
}

.cmp-name {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0B3D2E;
}
.cmp-name-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.cmp-cell {
  display: flex; flex-direction: column;
  gap: 6px;
}
.cmp-bar {
  height: 8px;
  background: #FAFAF7;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.cmp-bar-fill {
  display: block;
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}
.cmp-label {
  font-size: 12.5px;
  color: #4B5563;
  font-weight: 500;
}

/* ── Photo strip ─────────────────────────────────────────────────────── */
.photo-strip {
  padding: 50px 6vw 80px;
  background: #FFFFFF;
}
.photo-strip-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-strip-item {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }
.photo-strip-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(11,61,46,0.92) 0%, rgba(11,61,46,0) 100%);
  color: white;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 980px) {
  .visual-stats-inner { grid-template-columns: 1fr; gap: 16px; }
  .visual-stats-inner::before, .visual-stats-inner::after { display: none; }
  .visual-stat { padding: 16px 8px; border-bottom: 1px solid #EAE5DA; }
  .visual-stat:last-child { border: none; }
  .cmp-row { grid-template-columns: 1fr; gap: 10px; }
  .cmp-header { display: none; }
  .cmp-cell::before {
    content: attr(data-dim);
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9CA3AF;
  }
  .photo-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── Article-card met thumbnail ─────────────────────────────────────── */
.article-card.has-thumb {
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.article-thumb {
  aspect-ratio: 16/9;
  background: #EAE5DA;
  overflow: hidden;
}
.article-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card.has-thumb:hover .article-thumb img { transform: scale(1.06); }
.article-card.has-thumb .article-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.article-card.has-thumb .article-body h3 { margin-top: 4px; }
.article-card.has-thumb .article-body p { flex: 1; }

/* =====================================================================
   SUB-TOPIC PAGE · visuele upgrade
   ===================================================================== */

/* Stat-card met icon */
.sub-stat { position: relative; padding-left: 40px !important; }
.sub-stat-icon {
  position: absolute;
  left: 0; top: 2px;
  width: 30px; height: 30px;
  background: #FFF7ED;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
}

/* Section header met icon */
.sub-section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.sub-section-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  background: #FFF7ED;
  border-radius: 10px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sub-section-head h2 {
  margin: 0;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #0B3D2E;
}

/* Section variants */
.sub-section-how, .sub-section-for-whom, .sub-section-cost, .sub-section-pitfall {
  background: white;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

/* "Hoe werkt het" → step-flow */
.how-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.how-step {
  position: relative;
  background: #FAFAF7;
  border-radius: 8px;
  padding: 20px 22px;
  border-left: 3px solid #D97706;
}
.how-step-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: #D97706;
  margin-bottom: 10px;
}
.how-step-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: #2A3B33;
}

/* "Voor wie" → checklist */
.for-whom-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.for-whom-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: #FAFAF7;
  border-radius: 8px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #2A3B33;
}
.for-whom-list .check-mark {
  display: inline-flex;
  width: 26px; height: 26px;
  background: #DCFCE7;
  border-radius: 50%;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #0B3D2E;
  margin-top: 1px;
}

/* "Wat kost het" → cost callout */
.sub-section-cost { background: #FFFBF5; border-left: 3px solid #D97706; }
.sub-section-cost p {
  font-size: 16px; line-height: 1.75;
  color: #2A3B33;
  margin: 0;
}
.cost-accent {
  background: #FFF1D6;
  color: #A04309;
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

/* "Valkuilen" → alert-cards */
.sub-section-pitfall { background: #FFFBF0; border-left: 3px solid #A04309; }
.pitfall-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.pitfall-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: white;
  border-radius: 6px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #2A3B33;
}
.pitfall-num {
  display: inline-flex;
  width: 30px; height: 30px;
  background: #FFF1D6;
  border-radius: 50%;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
}

/* Default sectie body */
.sub-section-default p, .sub-section-time p {
  font-size: 16px; line-height: 1.75;
  color: #2A3B33;
}

@media (max-width: 720px) {
  .how-flow { grid-template-columns: 1fr; }
  .sub-section-how, .sub-section-for-whom, .sub-section-cost, .sub-section-pitfall {
    padding: 20px 22px;
  }
  .sub-section-head h2 { font-size: 20px; }
  .sub-section-icon { width: 40px; height: 40px; }
}

/* =====================================================================
   ARTICLE DETAIL · editorial redesign
   ===================================================================== */

.article-detail-v2 { background: white; }

/* ── Wide hero met optional background-image + dark overlay ─────── */
.art2-hero {
  position: relative;
  min-height: 520px;
  padding: 100px 6vw 80px;
  background-color: #0B3D2E;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: white;
  overflow: hidden;
}
.art2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,61,46,0.7) 0%, rgba(11,61,46,0.85) 100%);
  pointer-events: none;
}
.art2-hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}
.art2-bc {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.art2-bc a { color: rgba(255,255,255,0.7); }
.art2-bc .bc-sep { color: rgba(255,255,255,0.4); }
.art2-bc .bc-current { color: white; }

.art2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #F6CC74;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(217,119,6,0.15);
  border-radius: 999px;
  border: 1px solid rgba(217,119,6,0.3);
}
.art2-cat { font-weight: 700; color: #F6CC74; }
.art2-dot { color: rgba(255,255,255,0.5); }
.art2-read { color: rgba(255,255,255,0.85); }

.art2-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  color: white;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  max-width: 880px;
}
.art2-lead {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 720px;
}

/* ── 3-column layout: rail · body · context ─────────────────────── */
.art2-layout {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 6vw 80px;
}
.art2-rail, .art2-context { position: relative; }
.art2-rail-sticky, .art2-context-sticky {
  position: sticky;
  top: 100px;
}
.art2-meta-block { margin-bottom: 22px; }
.art2-meta-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 600;
  margin-bottom: 4px;
}
.art2-meta-value {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: #0B3D2E;
  font-weight: 500;
}
.art2-share { margin-top: 28px; padding-top: 22px; border-top: 1px solid #EAE5DA; }
.art2-share-row { display: flex; gap: 6px; margin-top: 8px; }
.art2-share-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #FAFAF7;
  color: #0B3D2E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.art2-share-btn:hover { background: #FFF1D6; border-color: #D97706; }
.art2-copy { font-family: inherit; }

/* ── Article body ───────────────────────────────────────────────── */
.art2-body {
  max-width: 720px;
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2A3B33;
}
.art2-body p { margin: 0 0 22px; }
.art2-body h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.25;
  color: #0B3D2E;
  margin: 50px 0 16px;
  padding-top: 12px;
  position: relative;
}
.art2-body h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 3px;
  background: #D97706;
  border-radius: 2px;
}
.art2-body h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #0B3D2E;
  margin: 36px 0 12px;
}
.art2-body ul, .art2-body ol { margin: 0 0 22px 22px; }
.art2-body ul li, .art2-body ol li { margin-bottom: 8px; }
.art2-body a { color: #D97706; text-decoration: underline; text-underline-offset: 3px; }
.art2-body a:hover { text-decoration-thickness: 2px; }
.art2-body strong { color: #0B3D2E; font-weight: 600; }

/* Drop-cap eerste letter */
.art-dropcap {
  float: left;
  font-family: 'Instrument Serif', serif;
  font-size: 76px;
  line-height: 0.85;
  color: #D97706;
  padding: 8px 12px 0 0;
  margin-top: 4px;
  font-weight: 400;
}

/* Pull-quote */
.art-pullquote {
  margin: 40px -40px;
  padding: 36px 44px;
  background: #FFF7ED;
  border-left: 4px solid #D97706;
  border-radius: 4px;
  position: relative;
}
.art-pullquote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 30px;
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  color: #D97706;
  line-height: 1;
}
.art-pq-text {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 24px !important;
  line-height: 1.4 !important;
  color: #0B3D2E !important;
  margin: 0 !important;
  padding-left: 24px;
}

/* Image-block in body */
.art-img-block {
  margin: 36px -40px;
}
.art-img-block img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── CTA-card in right rail ─────────────────────────────────────── */
.art2-cta-card {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFF1D6 100%);
  border: 1px solid #F6CC74;
  border-radius: 12px;
  padding: 28px 26px;
}
.art2-cta-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  font-weight: 700;
  margin-bottom: 10px;
}
.art2-cta-title {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0B3D2E;
  margin: 0 0 10px;
  text-transform: capitalize;
}
.art2-cta-text {
  font-size: 14px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0 0 18px;
}
.art2-cta-btn {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: #D97706;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.2s;
}
.art2-cta-btn:hover { background: #A04309; }
.art2-cta-btn .arr { transition: transform 0.2s; }
.art2-cta-btn:hover .arr { transform: translateX(3px); }

/* ── Footer source ──────────────────────────────────────────────── */
.art2-foot {
  background: #FAFAF7;
  padding: 28px 6vw 36px;
  border-top: 1px solid #EAE5DA;
}
.art2-foot-inner {
  max-width: 1080px; margin: 0 auto;
}
.art2-source {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
}
.art2-source a { color: #D97706; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .art2-layout { grid-template-columns: 1fr; gap: 32px; }
  .art2-rail, .art2-context { position: static; }
  .art2-rail-sticky, .art2-context-sticky { position: static; }
  .art2-rail { display: flex; flex-wrap: wrap; gap: 20px 32px; padding-bottom: 20px; border-bottom: 1px solid #EAE5DA; }
  .art2-meta-block { margin-bottom: 0; }
  .art2-share { margin-top: 0; padding-top: 0; border: none; }
  .art-pullquote, .art-img-block { margin-left: 0; margin-right: 0; }
}
@media (max-width: 720px) {
  .art2-hero { padding: 70px 5vw 50px; min-height: 380px; }
  .art2-title { font-size: clamp(28px, 7vw, 40px); }
  .art2-lead { font-size: 17px; }
  .art2-layout { padding: 40px 5vw 60px; }
  .art2-body { font-size: 17px; }
  .art-dropcap { font-size: 60px; }
}

/* =====================================================================
   COMPANY DETAIL v2 · editorial hero + quick-action strip
   ===================================================================== */

.company-detail-v2 { background: white; }

/* ── Wide hero ────────────────────────────────────────────────────── */
.co-hero {
  position: relative;
  min-height: 360px;
  padding: 100px 6vw 60px;
  background-color: #0B3D2E;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}
.co-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,46,0.75) 0%, rgba(11,61,46,0.92) 100%);
  pointer-events: none;
}
.co-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
}
.co-hero-bc {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.co-hero-bc a { color: rgba(255,255,255,0.7); }
.co-hero-bc .bc-sep { color: rgba(255,255,255,0.4); }
.co-hero-bc .bc-current { color: white; }

.co-hero-tier {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.co-hero-tier.company-tier-free {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}
.co-hero-tier.company-tier-premium { background: #D97706; color: white; }
.co-hero-tier.company-tier-featured { background: #F6CC74; color: #0B3D2E; }

.co-hero-name {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.05;
  color: white;
  margin: 0 0 18px;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}

.co-hero-sectors {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.co-hero-chip {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
  color: #F6CC74;
  background: rgba(217,119,6,0.15);
  border: 1px solid rgba(217,119,6,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.co-hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 8px;
}
.co-hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.co-hero-meta-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #D97706;
}

/* ── Quick-action strip ───────────────────────────────────────────── */
.co-actions-strip {
  background: white;
  border-bottom: 1px solid #EAE5DA;
  position: sticky; top: 60px; z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.96);
}
.co-actions-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.co-action {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #FAFAF7;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.co-action:hover {
  background: #FFF7ED;
  border-color: #F6CC74;
  transform: translateY(-1px);
}
.co-action-primary { background: #0B3D2E; color: white; }
.co-action-primary .co-action-label { color: rgba(255,255,255,0.7); }
.co-action-primary .co-action-value { color: white; }
.co-action-primary:hover { background: #14573F; border-color: #F6CC74; }
.co-action-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #FFF7ED;
  border-radius: 50%;
  font-size: 18px;
  color: #D97706;
  flex-shrink: 0;
}
.co-action-primary .co-action-icon { background: rgba(255,255,255,0.12); color: #F6CC74; }
.co-action-label {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 1px;
}
.co-action-value {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #0B3D2E;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 200px;
}

/* ── Body & sidebar ───────────────────────────────────────────────── */
.company-detail .company-grid { padding-top: 30px; }
.co-body-h {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #0B3D2E;
  margin: 0 0 18px;
  padding-top: 12px;
  position: relative;
  text-transform: capitalize;
}
.co-body-h::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 3px;
  background: #D97706;
  border-radius: 2px;
}

.company-sectors-block { background: #FAFAF7; border-radius: 8px; padding: 22px 24px; }
.company-sectors-side {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.company-sectors-side .sector-chip { font-size: 11px; }

/* ── Hide the OLD .company-header (was inside the section) ───────── */
.company-detail-v2 .company-header { display: none; }

@media (max-width: 720px) {
  .co-hero { padding: 70px 5vw 40px; min-height: 280px; }
  .co-hero-name { font-size: clamp(28px, 8vw, 38px); }
  .co-actions-inner { grid-template-columns: 1fr; }
  .co-action-value { max-width: none; }
  .co-actions-strip { position: static; }
}

/* =====================================================================
   TOOLS-INDEX v2 · editorial hero + featured + per-category grids
   ===================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────── */
.tools-hero {
  position: relative;
  padding: 100px 6vw 70px;
  background: #0B3D2E;
  color: white;
  overflow: hidden;
}
.tools-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(217,119,6,0.20) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(246,204,116,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.tools-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
}
.tools-hero-bc {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.tools-hero-bc a { color: rgba(255,255,255,0.7); }
.tools-hero-bc .bc-sep { color: rgba(255,255,255,0.4); }
.tools-hero-bc .bc-current { color: white; }
.tools-hero-eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #F6CC74;
  background: rgba(217,119,6,0.15);
  border: 1px solid rgba(217,119,6,0.3);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 30px;
}
.tools-hero-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: white;
}
.tools-hero-title .ts-em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #F6CC74;
}
.tools-hero-lead {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0;
}

/* ── Promises strip (4 trust-pills) ───────────────────────────────── */
.tools-promises {
  padding: 30px 6vw;
  background: white;
  border-bottom: 1px solid #EAE5DA;
}
.tools-promises-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.tools-promise {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 0;
}
.tools-promise-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: #FFF7ED;
  border-radius: 50%;
  flex-shrink: 0;
}
.tools-promise-h {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0B3D2E;
  margin-bottom: 2px;
}
.tools-promise-p {
  font-size: 13px;
  color: #6B7280;
}

/* ── Featured tool (big hero card) ────────────────────────────────── */
.tools-featured {
  padding: 80px 6vw;
  background: #FFFBF5;
}
.tools-featured-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tools-featured-text .lead {
  font-size: 17px;
  line-height: 1.65;
  color: #2A3B33;
  margin: 18px 0;
}
.tools-featured-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin: 22px 0 28px;
}
.tools-featured-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  color: #6B7280;
}
.tools-featured-meta-item .meta-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #D97706;
}
.tools-featured-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.tools-featured-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tools-featured-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: rgba(11,61,46,0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  color: white;
}
.tools-featured-icon-bg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: #D97706;
  border-radius: 10px;
}
.tools-featured-badge-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #F6CC74;
}
.tools-featured-badge-value {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* ── Tools grouped by category ────────────────────────────────────── */
.tools-grouped {
  padding: 90px 6vw 100px;
  background: white;
}
.tools-grouped-inner { max-width: 1280px; margin: 0 auto; }
.tools-cat-block { margin-bottom: 60px; }
.tools-cat-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #0B3D2E;
}
.tools-cat-h {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #0B3D2E;
  margin: 0;
}
.tools-cat-count {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6B7280;
}
.tools-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.tool-card-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: #FAFAF7;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s;
}
.tool-card-v2:hover {
  background: #FFF7ED;
  transform: translateY(-2px);
}
.tool-card-v2-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: white;
  border: 1px solid #EAE5DA;
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.tool-card-v2:hover .tool-card-v2-icon { border-color: #D97706; background: #FFF1D6; }
.tool-card-v2-body { min-width: 0; }
.tool-card-v2 h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #0B3D2E;
  margin: 0 0 4px;
}
.tool-card-v2-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  color: #D97706;
  margin: 0 0 8px;
}
.tool-card-v2-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #4B5563;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tool-card-v2-foot {
  display: flex; justify-content: space-between; align-items: center;
}
.tool-card-v2-dur {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6B7280;
}
.tool-card-v2-arr {
  font-size: 18px;
  color: #D97706;
  transition: transform 0.2s;
}
.tool-card-v2:hover .tool-card-v2-arr { transform: translateX(4px); }

@media (max-width: 880px) {
  .tools-featured-inner { grid-template-columns: 1fr; gap: 32px; }
  .tools-cat-grid { grid-template-columns: 1fr; }
  .tools-hero-title { font-size: clamp(40px, 12vw, 64px); }
}

/* ============ NEWS-INDEX ============ */
.news-hero { padding: 120px 24px 56px; background: var(--cream); border-bottom: 1px solid var(--rule-2); }
.news-hero-inner { max-width: 1140px; margin: 0 auto; }
.news-hero .display { font-size: clamp(40px, 7vw, 72px); line-height: 1.04; margin: 16px 0 20px; }
.news-hero .lead { font-size: 19px; color: var(--ink-muted); max-width: 720px; margin-bottom: 32px; }
.news-search-row { margin-bottom: 20px; }
.news-search-row input {
  width: 100%; max-width: 520px;
  padding: 16px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--rule-2); background: #fff;
  font-family: inherit; font-size: 16px; color: var(--ink);
}
.news-search-row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,119,6,.12); }
.news-cat-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.news-cat-chip {
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--rule-2); background: transparent;
  font-family: inherit; font-size: 14px; font-weight: 500; color: var(--ink);
  cursor: pointer; transition: all .2s ease;
}
.news-cat-chip:hover { border-color: var(--ink); }
.news-cat-chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.news-list-section { padding: 64px 24px 96px; }
.news-list-inner { max-width: 1140px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.news-year-block { }
.news-year-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--ink); }
.news-year-h { font-family: "Instrument Serif", serif; font-size: 48px; color: var(--ink); margin: 0; letter-spacing: -.02em; }
.news-year-count { font-family: "Geist Mono", monospace; font-size: 12px; color: var(--ink-muted); letter-spacing: .12em; text-transform: uppercase; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.news-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px; background: #fff; border: 1px solid var(--rule-2); border-radius: 14px;
  text-decoration: none; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -16px rgba(11,61,46,.18); border-color: var(--ink); }
.news-card-date { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.news-card h3 { font-size: 18px; font-weight: 600; line-height: 1.28; margin: 4px 0 8px; }
.news-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.5; margin: 0; flex: 1; }
.news-card-arr { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-top: 12px; }

/* ============ CREDITS PAGE ============ */
.credits-section { padding: 48px 24px 96px; }
.credits-inner { max-width: 880px; margin: 0 auto; }
.credits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.credit-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: center;
  padding: 16px; border-bottom: 1px solid var(--rule);
}
.credit-thumb { width: 120px; height: 80px; border-radius: 8px; overflow: hidden; background: var(--rule); }
.credit-thumb img { width: 100%; height: 100%; object-fit: cover; }
.credit-meta { display: flex; flex-direction: column; gap: 4px; }
.credit-photographer { font-size: 16px; font-weight: 500; color: var(--ink); }
.credit-photographer a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.credit-photographer a:hover { color: var(--accent); }
.credit-source { font-size: 13px; color: var(--ink-muted); }
.credit-source a { color: var(--ink-muted); text-decoration: underline; text-underline-offset: 2px; }
.credit-file { font-family: "Geist Mono", monospace; font-size: 11px; }
.credits-foot { margin-top: 32px; font-size: 14px; color: var(--ink-muted); }

@media (max-width: 640px) {
  .credit-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .credit-thumb { width: 80px; height: 60px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-year-h { font-size: 36px; }
}

/* ============ NAV: NIEUWS PROMINENT ============ */
.nav .nav-nieuws {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
}
.nav-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(217,119,6,.6);
  animation: nav-pulse 2.4s ease-out infinite;
}
@keyframes nav-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,119,6,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(217,119,6,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,119,6,0); }
}
.foot-nieuws-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  font-weight: 600 !important;
  color: var(--ink) !important;
}
.foot-nieuws-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Mobile nav — featured Nieuws block */
.mobile-nav-feature {
  display: block !important;
  position: relative;
  background: var(--ink) !important;
  color: var(--cream) !important;
  border-radius: 18px;
  padding: 28px 28px 28px 28px !important;
  border-bottom: none !important;
  overflow: hidden;
  text-decoration: none;
}
.mobile-nav-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 110% -10%, rgba(217,119,6,.35) 0%, transparent 55%);
  pointer-events: none;
}
.mn-feat-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.mn-feat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: nav-pulse 2.4s ease-out infinite;
}
.mn-feat-title {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.mn-feat-sub {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  color: rgba(250,247,241,.7);
}
.mn-feat-arr {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
}

/* ============ HOMEPAGE — NEWS MASONRY ============ */
.home-news {
  padding: 96px 24px 112px;
  background: var(--cream);
  position: relative;
}
.home-news-inner { max-width: 1240px; margin: 0 auto; }
.home-news-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
.home-news-head .display {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  margin: 16px 0 0;
}
.home-news-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  border-radius: var(--r-pill);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s ease;
}
.home-news-cta:hover { background: #0a3326; }
.home-news-cta .arr {
  display: inline-block;
  width: 16px; height: 1.5px;
  background: var(--cream);
  position: relative;
}
.home-news-cta .arr::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1.5px solid var(--cream);
  border-right: 1.5px solid var(--cream);
  transform: rotate(45deg);
}

.news-masonry {
  column-count: 4;
  column-gap: 16px;
}
.news-tile {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule-2);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(11,61,46,.25);
}
.news-tile-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.news-tile-cat { color: var(--accent); }
.news-tile-date { color: var(--ink-muted); }
.news-tile-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.12;
  margin: 6px 0 4px;
  color: var(--ink);
}
.news-tile-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
}
/* Tile size variants — driven by data-size */
.news-tile[data-size="L"] .news-tile-title { font-size: 32px; }
.news-tile[data-size="M"] .news-tile-title { font-size: 24px; }
.news-tile[data-size="S"] .news-tile-title { font-size: 19px; }
.news-tile[data-size="XS"] .news-tile-title { font-size: 17px; }

/* Color/theme variants for playfulness */
.news-tile[data-theme="ink"] { background: var(--ink); border-color: var(--ink); }
.news-tile[data-theme="ink"] .news-tile-title { color: var(--cream); }
.news-tile[data-theme="ink"] .news-tile-desc { color: rgba(250,247,241,.7); }
.news-tile[data-theme="ink"] .news-tile-date { color: rgba(250,247,241,.5); }
.news-tile[data-theme="amber"] { background: #FBE7C8; border-color: #F2D199; }
.news-tile[data-theme="amber"] .news-tile-cat { color: #8C4A05; }
.news-tile[data-theme="serif-quote"] {
  background: var(--cream);
  border-color: var(--rule-2);
}
.news-tile[data-theme="serif-quote"] .news-tile-title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.news-tile-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--rule);
  overflow: hidden;
}
.news-tile-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-tile:hover .news-tile-thumb img { transform: scale(1.04); }

@media (max-width: 1100px) { .news-masonry { column-count: 3; } }
@media (max-width: 800px)  { .news-masonry { column-count: 2; } .home-news-head { grid-template-columns: 1fr; } }
@media (max-width: 520px)  { .news-masonry { column-count: 1; } .home-news { padding: 64px 20px 72px; } }

/* ============ BG-INDEX — provincie + sector filter (gestapeld) ============ */
.bg-filter-section { background: var(--cream); border-bottom: 1px solid var(--rule-2); padding: 32px 24px; position: sticky; top: 56px; z-index: 50; }
.bg-filter-inner { max-width: 1240px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.bg-filter-group { display: flex; flex-direction: column; gap: 10px; }
.bg-filter-label {
  font-family: "Geist Mono", monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted);
}
.bg-filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bg-prov-chip, .bg-sector-chip {
  padding: 8px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--rule-2); background: #fff;
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.bg-prov-chip:hover, .bg-sector-chip:hover { border-color: var(--ink); }
.bg-prov-chip.active, .bg-sector-chip.active {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.bg-prov-chip.active .bg-chip-count, .bg-sector-chip.active .bg-chip-count {
  color: rgba(250,247,241,.6);
}
.bg-chip-count {
  font-family: "Geist Mono", monospace; font-size: 11px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============ BG-INDEX — AIRBNB-STIJL split (list + map) ============ */
.bg-toggle-section {
  background: var(--cream);
  border-bottom: 1px solid var(--rule-2);
  padding: 14px 24px;
}
.bg-toggle-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.bg-results-count {
  font-family: "Geist Mono", monospace;
  font-size: 13px; letter-spacing: .02em;
  color: var(--ink);
}
.bg-results-count span { font-weight: 600; color: var(--accent); }
.bg-view-toggle {
  display: inline-flex; padding: 3px;
  background: var(--rule); border-radius: var(--r-pill);
}
.bg-view-btn {
  padding: 8px 16px; border: none; background: transparent;
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: var(--ink-muted); cursor: pointer; border-radius: var(--r-pill);
  transition: all .15s ease;
}
.bg-view-btn:hover { color: var(--ink); }
.bg-view-btn.active {
  background: var(--ink); color: var(--cream);
}

.bg-split-section {
  background: var(--cream);
  padding: 0;
}
.bg-split-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0;
  min-height: calc(100vh - 220px);
}
.bg-list-pane {
  padding: 24px 24px 64px;
  overflow-y: auto;
  max-height: calc(100vh - 110px);
  position: sticky; top: 110px;
}
.bg-list-pane .bg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.bg-map-pane {
  position: sticky; top: 110px;
  height: calc(100vh - 110px);
  background: #DCE3D9;  /* matches OSM-ish */
}
.bg-map {
  width: 100%; height: calc(100% - 36px);
}
.bg-map-attribution-note {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-size: 11px; font-family: "Geist Mono", monospace;
  color: var(--ink-muted); background: var(--cream);
  padding: 8px 12px;
  border-top: 1px solid var(--rule);
}
/* View modes */
.bg-split-section[data-view="list"] .bg-map-pane { display: none; }
.bg-split-section[data-view="list"] .bg-split-inner { grid-template-columns: 1fr; }
.bg-split-section[data-view="list"] .bg-list-pane {
  position: static; max-height: none;
}
.bg-split-section[data-view="list"] .bg-list-pane .bg-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.bg-split-section[data-view="map"] .bg-list-pane { display: none; }
.bg-split-section[data-view="map"] .bg-split-inner { grid-template-columns: 1fr; }

/* Card hover-active state */
.bg-card.is-marker-active {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Leaflet popup styling override */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  font-family: inherit !important;
}
.leaflet-popup-content {
  margin: 14px 18px !important;
  font-family: inherit !important;
}
.bg-popup h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  font-family: "Instrument Serif", serif;
  letter-spacing: -.01em;
}
.bg-popup-sector {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.bg-popup-city {
  font-size: 13px; color: var(--ink-muted); margin-bottom: 10px;
}
.bg-popup-tier {
  display: inline-block;
  padding: 2px 8px;
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 4px; margin-bottom: 6px;
}
.bg-popup-premium { background: rgba(11,61,46,.1); color: var(--ink); }
.bg-popup-featured { background: var(--accent); color: #fff; }
.bg-popup-link {
  display: inline-block; margin-top: 6px;
  padding: 8px 14px;
  background: var(--ink); color: var(--cream) !important;
  text-decoration: none !important;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  transition: background .15s ease;
}
.bg-popup-link:hover { background: var(--accent); }

/* ============ Mobile / responsive ============ */
@media (max-width: 900px) {
  .bg-split-inner { grid-template-columns: 1fr; min-height: auto; }
  .bg-list-pane { position: static; max-height: none; padding: 16px; }
  .bg-list-pane .bg-grid { grid-template-columns: 1fr; }
  .bg-map-pane { position: static; height: 60vh; }
  .bg-toggle-section { position: sticky; top: 56px; z-index: 49; }
  /* On mobile: split view shows list ABOVE map (stacked) */
  .bg-split-section[data-view="split"] .bg-map-pane { height: 50vh; }
}

/* ============ DETAIL — bedrijfslocatie mini-kaart ============ */
.detail-map-section {
  margin: 32px 0 0;
}
.detail-map-section h3 {
  font-family: "Instrument Serif", serif;
  font-size: 24px; font-weight: 400;
  letter-spacing: -.01em; margin: 0 0 12px;
}
.detail-map-wrap {
  position: relative;
  width: 100%; height: 360px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule-2);
}
.detail-map {
  width: 100%; height: 100%;
}
.detail-map-actions {
  display: flex; gap: 12px;
  margin-top: 12px;
  font-size: 13px;
}
.detail-map-actions a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.detail-map-actions a:hover { color: var(--accent); }

/* ============================================================
   NEWS-INDEX v2 — Editorial magazine-stijl (NOS/AD/Architectenweb)
   ============================================================ */
.news2-hero {
  background: var(--cream);
  padding: 80px 24px 56px;
  border-bottom: 1px solid var(--rule-2);
}
.news2-hero-inner { max-width: 1320px; margin: 0 auto; }
.news2-hero-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: stretch;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news2-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -30px rgba(11,61,46,.25);
}
.news2-hero-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--rule);
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}
.news2-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.news2-hero-card:hover .news2-hero-image img { transform: scale(1.03); }
.news2-hero-text {
  padding: 48px 56px 48px 16px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px;
}
.news2-hero-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.news2-cat-badge {
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.news2-dot { color: var(--ink-muted); }
.news2-date { color: var(--ink-muted); }
.news2-hero-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 6px 0 8px;
}
.news2-hero-lead {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-muted); margin: 0;
}
.news2-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-top: 12px;
}
.arr-line {
  display: inline-block; width: 30px; height: 1.5px;
  background: var(--accent); position: relative;
  transition: width .3s ease;
}
.arr-line::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
.news2-hero-card:hover .arr-line { width: 50px; }

/* ── RECENT GRID ────────────────────────────────────────────── */
.news2-recent { background: var(--cream); padding: 80px 24px 64px; }
.news2-recent-inner { max-width: 1320px; margin: 0 auto; }
.news2-section-head { margin-bottom: 40px; }
.news2-section-h {
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05; letter-spacing: -.02em;
  margin: 16px 0 0;
}
.news2-grid {
  display: grid; gap: 32px 24px;
}
.news2-grid-3 { grid-template-columns: repeat(3, 1fr); }
.news2-card {
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 0;
  transition: transform .2s ease;
}
.news2-card:hover { transform: translateY(-3px); }
.news2-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--rule);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.news2-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news2-card:hover .news2-card-image img { transform: scale(1.04); }
.news2-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11, 61, 46, .92);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
.news2-card-body { display: flex; flex-direction: column; gap: 6px; }
.news2-card-date {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted);
}
.news2-card-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -.01em;
  margin: 4px 0 4px;
}
.news2-card-lead {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-muted); margin: 0;
}

/* ── CATEGORIE-STRIPS ───────────────────────────────────────── */
.news2-strip {
  padding: 56px 24px;
  border-top: 1px solid var(--rule-2);
}
.news2-strip:nth-of-type(odd) { background: #fff; }
.news2-strip:nth-of-type(even) { background: var(--cream); }
.news2-strip-inner { max-width: 1320px; margin: 0 auto; }
.news2-strip-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.news2-strip-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.news2-strip-h {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}
.news2-strip-all {
  font-family: "Geist Mono", monospace;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.news2-strip-all:hover { color: var(--accent); }
.news2-strip-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.news2-strip-card {
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .2s ease;
}
.news2-strip-card:hover { transform: translateY(-2px); }
.news2-strip-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--rule);
}
.news2-strip-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.news2-strip-card:hover .news2-strip-image img { transform: scale(1.04); }
.news2-strip-body { display: flex; flex-direction: column; gap: 4px; }
.news2-strip-date {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted);
}
.news2-strip-card h4 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 17px; line-height: 1.2;
  letter-spacing: -.005em;
  margin: 2px 0 4px;
}
.news2-strip-card.is-feat .news2-strip-image { aspect-ratio: 16/10; }
.news2-strip-card.is-feat h4 { font-size: 26px; }
.news2-strip-card.is-feat p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-muted); margin: 4px 0 0;
}

/* ── ARCHIEF ────────────────────────────────────────────────── */
.news2-archief {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 24px 120px;
  border-top: 1px solid var(--rule-2);
}
.news2-archief-inner { max-width: 1140px; margin: 0 auto; }
.news2-archief-head { margin-bottom: 40px; }
.news2-archief-head .eyebrow { color: var(--accent); }
.news2-archief-head .eyebrow .dash { background: var(--accent); }
.news2-archief-head .news2-section-h { color: var(--cream); }
.news2-archief-head .news2-section-h em { color: var(--accent); }
.news2-archief-sub {
  font-size: 16px; color: rgba(250,247,241,.7);
  max-width: 640px; margin: 16px 0 0; line-height: 1.6;
}
.news2-archief-filter { margin-bottom: 32px; }
.news2-archief-filter input[type="search"] {
  width: 100%; max-width: 520px;
  padding: 16px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-family: inherit; font-size: 16px;
  margin-bottom: 16px;
}
.news2-archief-filter input::placeholder { color: rgba(250,247,241,.45); }
.news2-archief-filter input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,119,6,.2);
}
.archief-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.archief-chip {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .15s ease;
}
.archief-chip:hover { border-color: rgba(255,255,255,.5); }
.archief-chip.is-active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.archief-chip.is-active .news2-chip-count { color: rgba(255,255,255,.7); }
.news2-chip-count {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: rgba(250,247,241,.5);
}
.news2-archief-list {
  display: flex; flex-direction: column; gap: 40px;
}
.archief-year {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}
.archief-year-h {
  font-family: "Instrument Serif", serif;
  font-size: 40px; font-weight: 400;
  color: var(--cream);
  letter-spacing: -.02em;
  margin: 0 0 16px;
  display: flex; align-items: baseline; gap: 14px;
}
.archief-year-count {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,247,241,.4);
  font-weight: 400;
}
.archief-rows {
  display: flex; flex-direction: column;
}
.archief-row {
  display: grid;
  grid-template-columns: 110px 130px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: var(--cream);
  transition: padding-left .2s ease, background .2s ease;
}
.archief-row:hover {
  background: rgba(255,255,255,.04);
  padding-left: 12px;
  padding-right: 12px;
}
.archief-row-date {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .1em;
  color: rgba(250,247,241,.5);
}
.archief-row-cat {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.archief-row-title {
  font-size: 16px; line-height: 1.35;
  color: var(--cream);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -.005em;
}
.archief-row-arr {
  color: var(--accent);
  font-size: 16px;
  text-align: right;
  opacity: 0; transition: opacity .2s ease;
}
.archief-row:hover .archief-row-arr { opacity: 1; }
.archief-empty {
  margin-top: 24px;
  font-size: 15px; color: rgba(250,247,241,.6);
  text-align: center; padding: 32px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .news2-hero-card { grid-template-columns: 1fr; }
  .news2-hero-image { aspect-ratio: 16/9; border-radius: 16px 16px 0 0; }
  .news2-hero-text { padding: 32px 32px 40px; }
  .news2-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .news2-strip-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .news2-hero { padding: 48px 16px 32px; }
  .news2-hero-text { padding: 24px; }
  .news2-recent, .news2-strip { padding: 48px 16px; }
  .news2-grid-3 { grid-template-columns: 1fr; }
  .news2-strip-head { grid-template-columns: 1fr; gap: 8px; }
  .news2-strip-grid { grid-template-columns: 1fr; }
  .news2-archief { padding: 64px 16px 80px; }
  .archief-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .archief-row-cat { font-size: 10px; }
  .archief-row-arr { display: none; }
  .archief-year-h { font-size: 30px; }
}

/* ============================================================
   PAYWALL V2 — Step modal met deep-form + sample-preview
   ============================================================ */
.pw-cta-bullets {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pw-cta-bullets li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pw-cta-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.pw-cta-accent { color: var(--accent); font-style: italic; }
.pw-cta-price-sub {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: -4px; margin-bottom: 12px;
}
.pw-cta-trust {
  margin-top: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: .06em;
  text-align: center;
}

/* Wide modal voor step-flow */
.pw-modal-wide {
  max-width: 720px !important;
}
.pw-steps-indicator {
  display: flex; gap: 0;
  margin: -16px -16px 24px;
  padding: 14px 28px;
  background: var(--cream);
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--rule);
}
.pw-step {
  flex: 1;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
}
.pw-step.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.pw-step.is-done {
  color: var(--accent);
}
.pw-step.is-done::before { content: '✓ '; }

/* Deep-form fields */
.pw-deep-form { display: flex; flex-direction: column; gap: 14px; }
.pw-deep-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pw-deep-field {
  display: flex; flex-direction: column; gap: 4px;
}
.pw-deep-field:nth-child(1) { grid-column: 1 / -1; }  /* postcode full-width */
.pw-deep-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.pw-req {
  color: var(--accent);
  font-weight: 700;
}
.pw-deep-field input,
.pw-deep-field select {
  padding: 10px 14px;
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}
.pw-deep-field input:focus,
.pw-deep-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,119,6,.12);
}
.pw-deep-field .pw-error,
.pw-deep-field.pw-error input,
.pw-deep-field.pw-error select {
  border-color: #DC2626;
}
.pw-deep-help {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
  margin-top: 2px;
}
.pw-checkbox-list {
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 14px;
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  background: #fff;
}
.pw-checkbox-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.pw-checkbox-list.pw-error {
  border-color: #DC2626;
}

.pw-back {
  background: transparent;
  border: none;
  padding: 8px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink-muted);
  cursor: pointer;
  margin-top: 8px;
  text-decoration: underline;
}

/* Sample PDF preview */
.pw-sample-preview {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.pw-sample-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.pw-sample-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pw-sample-page {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  aspect-ratio: 0.71;  /* A4 */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pw-sample-fake-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  filter: blur(1.5px);
}
.pw-sf-h {
  height: 12px; width: 70%;
  background: var(--ink);
  border-radius: 2px;
}
.pw-sf-l {
  height: 4px; width: 100%;
  background: var(--rule);
  border-radius: 1px;
}
.pw-sf-l.short { width: 75%; }
.pw-sf-chart {
  margin-top: 6px;
  height: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 30%, var(--rule) 30%, var(--rule) 100%);
  border-radius: 4px;
  opacity: .5;
}
.pw-sf-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px;
  margin-top: 4px;
}
.pw-sf-grid > div {
  aspect-ratio: 1.2;
  background: var(--rule);
  border-radius: 3px;
}
.pw-sf-rows {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 4px;
}
.pw-sf-rows > div {
  height: 14px;
  background: var(--rule);
  border-radius: 2px;
}
.pw-sample-page-label {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 6px 4px 7px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

@media (max-width: 700px) {
  .pw-deep-fields { grid-template-columns: 1fr; }
  .pw-deep-field:nth-child(1) { grid-column: auto; }
  .pw-sample-pages { grid-template-columns: 1fr 1fr; }
  .pw-sample-pages .pw-sample-page:nth-child(3) { display: none; }
}

/* ============ COMPANY DETAIL — REVIEWS BLOCK (Premium-only) ============ */
.reviews-section {
  margin: 40px 0 0;
}
.reviews-head { margin-bottom: 20px; }
.reviews-head h3 {
  font-family: "Instrument Serif", serif;
  font-size: 28px; font-weight: 400;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.reviews-source {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 8px;
}
.reviews-summary {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.reviews-stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews-score {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.reviews-count {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  color: var(--ink-muted);
}
.reviews-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--rule-2);
  border-radius: 12px;
}
.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
  font-style: italic;
}
.review-meta {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-muted);
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============ DEEP-FORM WIZARD ============ */
.df-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: df-fadein .25s ease;
}
@keyframes df-fadein { from { opacity: 0; } to { opacity: 1; } }
.df-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 61, 46, .58);
  backdrop-filter: blur(6px);
}
.df-card {
  position: relative;
  width: 100%; max-width: 580px;
  max-height: 92vh;
  background: var(--cream);
  border-radius: 22px;
  padding: 36px 40px 32px;
  box-shadow: 0 40px 80px -30px rgba(11,61,46,.55);
  overflow-y: auto;
  display: flex; flex-direction: column;
  animation: df-pop .35s cubic-bezier(.22,1,.36,1);
}
@keyframes df-pop { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.df-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 22px; line-height: 1; color: var(--ink-muted);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.df-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.df-progress {
  height: 3px; background: rgba(11,61,46,.1);
  border-radius: 2px; overflow: hidden;
  margin-bottom: 20px;
}
.df-progress-bar {
  height: 100%; background: var(--accent);
  border-radius: 2px;
  transition: width .35s cubic-bezier(.22,1,.36,1);
}

.df-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
  gap: 14px;
}
.df-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.df-stepnum {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .1em;
  color: var(--ink-muted);
}

.df-body {
  flex: 1;
}

.df-intro {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 22px;
  line-height: 1.55;
}

.df-step { display: flex; flex-direction: column; gap: 18px; }
.df-question {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
}
.df-hint {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.5;
  margin-top: -8px;
}

.df-input {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit; font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.df-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,119,6,.15);
}
.df-input-large {
  padding: 18px 22px; font-size: 18px;
}

.df-input-label {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.df-field-contact { display: flex; flex-direction: column; gap: 14px; }

.df-radios { display: flex; flex-direction: column; gap: 8px; }
.df-radio {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: all .15s ease;
}
.df-radio:hover { border-color: var(--ink); background: #FCFBF7; }
.df-radio.is-active {
  border-color: var(--accent);
  background: rgba(217,119,6,.06);
  color: var(--ink);
  box-shadow: 0 0 0 2px rgba(217,119,6,.12);
}
.df-radio-dot, .df-multi-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--rule-2);
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.df-radio.is-active .df-radio-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px #fff;
}
.df-multi-dot { border-radius: 4px; }
.df-radio.is-active .df-multi-dot {
  border-color: var(--accent);
  background: var(--accent);
}
.df-radio.is-active .df-multi-dot::after {
  content: '✓';
  position: absolute; inset: 0;
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.df-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .25);
  border-radius: 10px;
  color: #B91C1C;
  font-size: 13px;
}

.df-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  gap: 12px;
}
.df-btn-back, .df-btn-next {
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .15s ease;
}
.df-btn-back {
  background: transparent;
  border: 1px solid var(--rule-2);
  color: var(--ink);
}
.df-btn-back:hover { border-color: var(--ink); }
.df-btn-next {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  padding: 14px 28px;
}
.df-btn-next:hover { background: #B86404; border-color: #B86404; }

@media (max-width: 540px) {
  .df-modal { padding: 0; }
  .df-card {
    max-height: 100vh;
    border-radius: 0;
    padding: 28px 22px 24px;
  }
  .df-question { font-size: 22px; }
  .df-actions { flex-direction: row; }
  .df-btn-next { flex: 1; }
}

/* ============ FOOTER POWERED-BY ============ */
.footer-poweredby {
  padding: 18px 0 28px;
  border-top: 1px solid var(--rule);
}
.footer-poweredby .footer-inner {
  display: flex;
  justify-content: center;
}
.poweredby-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .2s ease;
}
.poweredby-link:hover { color: var(--accent); }
.poweredby-label { opacity: .7; }
.poweredby-brand {
  font-family: "Instrument Serif", serif;
  font-size: 16px;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
}
.poweredby-link:hover .poweredby-brand { color: var(--accent); }

/* Inline 'powered by Sircle Agency' link in legal-copy */
.legal-poweredby {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.legal-poweredby:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============ CATEGORY HERO ICON (replaces big number) ============ */
.cat-hero-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 16px;
  margin-bottom: 20px;
}
.cat-hero-icon svg {
  display: block;
}
/* Hide old big-number element on any cached page */
.cat-num-display { display: none !important; }

/* ============ LEAD FORM (op categorie-pagina's) ============ */
.lead-form-section {
  background: var(--ink);
  color: var(--cream);
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(217,119,6,.18) 0%, transparent 70%);
  pointer-events: none;
}
.lead-form-inner { max-width: 1140px; margin: 0 auto; position: relative; }
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lead-form-text .eyebrow { color: var(--accent); }
.lead-form-text .eyebrow .dash { background: var(--accent); }
.lead-form-h {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 16px 0 18px;
  color: var(--cream);
}
.lead-form-h em { font-style: italic; color: var(--accent); }
.lead-form-lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250,247,241,.78);
  margin: 0 0 24px;
}
.lead-form-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.lead-form-list li {
  font-size: 14px;
  color: rgba(250,247,241,.78);
  padding-left: 24px;
  position: relative;
}
.lead-form-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Form */
.lead-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.lead-form-step { display: flex; flex-direction: column; gap: 6px; }
.lead-input-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.lead-form input, .lead-form select {
  font-family: inherit; font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,119,6,.15);
}
.lead-form-disclaimer {
  font-size: 11px;
  color: var(--ink-muted);
  font-style: italic;
  margin: 4px 0 0;
}
.lead-form-submit {
  margin-top: 8px;
  padding: 16px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: inherit; font-size: 16px; font-weight: 500;
  cursor: pointer;
  transition: background .15s ease;
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
}
.lead-form-submit:hover { background: #B86404; }
.lead-form-submit .arr {
  display: inline-block; width: 18px; height: 1.5px;
  background: #fff; position: relative;
}
.lead-form-submit .arr::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}
.lead-form-trust {
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
}
.lead-form-trust a { color: var(--ink-muted); text-decoration: underline; }
.lead-form-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.3);
  color: #B91C1C;
  font-size: 13px;
  border-radius: 8px;
}

/* Success-state */
.lead-success { color: var(--cream); }
.lead-success .lead-form-h em { color: var(--accent); }
.lead-success-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 14px;
  counter-reset: success-step;
}
.lead-success-list li {
  position: relative;
  padding: 14px 18px 14px 60px;
  background: rgba(250,247,241,.06);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  font-size: 14px;
  color: rgba(250,247,241,.85);
  counter-increment: success-step;
}
.lead-success-list li::before {
  content: counter(success-step);
  position: absolute;
  left: 18px; top: 14px;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  font-weight: 600;
}
.lead-success-list strong { color: var(--cream); }

@media (max-width: 900px) {
  .lead-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-form { padding: 24px; }
  .lead-form-section { padding: 56px 16px; }
}

/* ============ CORNERSTONE — magazine long-form ============ */
.cornerstone { background: var(--cream); }
.cs-hero {
  padding: 64px 24px 32px;
  border-bottom: 1px solid var(--rule-2);
}
.cs-hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
}
.cs-hero-text { padding-right: 12px; }
.cs-hero-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.cs-hero-eyebrow .dash { width: 28px; height: 1.5px; background: var(--accent); }
.cs-hero-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.cs-hero-title em { font-style: italic; color: var(--accent); }
.cs-hero-subtitle {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 24px;
  max-width: 540px;
}
.cs-hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--ink-muted);
}
.cs-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.cs-meta-icon { color: var(--accent); }
.cs-hero-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}
.cs-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.cs-hero-credit {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(11,61,46,.7);
  color: rgba(250,247,241,.85);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ── BODY CONTENT ── */
.cs-content {
  max-width: 760px;
  margin: 56px auto 80px;
  padding: 0 24px;
}
.cs-intro {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}
.cs-lead {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -.005em;
  margin: 0 0 18px;
}
.cs-lead:last-child { margin-bottom: 0; }
.cs-section { margin-bottom: 48px; }
.cs-h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 20px;
}
.cs-h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin: 24px 0 12px;
}
.cs-h3 em { font-style: italic; color: var(--accent); }
.cs-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.cs-body p { margin: 0 0 16px; }
.cs-body p:last-child { margin-bottom: 0; }
.cs-body strong { color: var(--ink); font-weight: 600; }
.cs-body em { font-style: italic; color: var(--ink); }

.cs-list {
  margin: 12px 0 16px;
  padding-left: 0;
  list-style: none;
}
.cs-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.cs-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 1.5px;
  background: var(--accent);
}
ol.cs-list { counter-reset: cs-item; }
ol.cs-list li::before {
  content: counter(cs-item);
  counter-increment: cs-item;
  background: transparent;
  width: auto; height: auto;
  top: 6px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .05em;
}
ol.cs-list li { padding-left: 32px; }

/* ── KEY STATS ── */
.cs-keystats {
  margin: 32px 0 40px;
  padding: 32px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--rule-2);
}
.cs-keystats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cs-stat-value {
  font-family: "Instrument Serif", serif;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.cs-stat-label {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 500;
}
.cs-stat-source {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: .06em;
}

/* ── TABLES ── */
.cs-table-wrap {
  margin: 16px 0 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule-2);
}
.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.cs-table thead { background: var(--ink); }
.cs-table th {
  text-align: left;
  padding: 14px 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.cs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  line-height: 1.4;
  vertical-align: top;
}
.cs-table tbody tr:last-child td { border-bottom: none; }
.cs-table tbody tr:nth-child(even) { background: var(--cream); }

/* ── CALLOUT ── */
.cs-callout {
  margin: 24px 0;
  padding: 20px 24px;
  background: rgba(217, 119, 6, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
}
.cs-callout h4 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 8px;
}
.cs-callout p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ── FAQ ── */
.cs-faq { margin: 48px 0; }
.cs-faq-list { display: flex; flex-direction: column; gap: 8px; }
.cs-faq-item {
  background: #fff;
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  overflow: hidden;
}
.cs-faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-family: "Instrument Serif", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.cs-faq-item summary::-webkit-details-marker { display: none; }
.cs-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  font-family: "Geist", sans-serif;
  font-weight: 300;
  transition: transform .25s ease;
}
.cs-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.cs-faq-answer {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── RELATED TOOLS ── */
.cs-related-tools {
  margin: 48px 0;
  padding: 32px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
}
.cs-related-tools .eyebrow { color: var(--accent); }
.cs-related-tools .eyebrow .dash { background: var(--accent); }
.cs-related-tools .cs-h3 { color: var(--cream); margin-top: 8px; }
.cs-tool-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.cs-tool-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(250,247,241,.08);
  border: 1px solid rgba(250,247,241,.18);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-size: 14px;
  text-decoration: none;
  transition: all .15s ease;
}
.cs-tool-chip:hover { background: var(--accent); border-color: var(--accent); }
.cs-tool-chip .arr { color: var(--accent); }
.cs-tool-chip:hover .arr { color: #fff; }

/* ── SOURCES ── */
.cs-sources {
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule-2);
}
.cs-sources-h {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.cs-sources-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.cs-sources-list li {
  font-size: 13px;
  color: var(--ink-muted);
}
.cs-sources-list a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cs-sources-list a:hover { color: var(--accent); }

/* ── CASUSSEN INDEX ── */
.cas-hero {
  padding: 88px 24px 56px;
  background: var(--cream);
  border-bottom: 1px solid var(--rule-2);
}
.cas-hero-inner { max-width: 880px; margin: 0 auto; }
.cas-hero-inner .cs-hero-title { font-size: clamp(48px, 7vw, 88px); margin-top: 16px; }
.cas-list-section { padding: 72px 24px; }
.cas-list-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.cas-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule-2);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cas-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(11,61,46,.25);
}
.cas-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cas-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.cas-card:hover .cas-card-image img { transform: scale(1.04); }
.cas-card-text {
  padding: 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center;
}
.cas-card-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 4px 0 8px;
}
.cas-card-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.cas-card-meta {
  display: flex; gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: .08em;
}
.cas-card-cta {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cs-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .cs-hero-image { aspect-ratio: 16/9; }
  .cs-keystats-grid { grid-template-columns: 1fr; gap: 24px; }
  .cs-stat-value { font-size: 36px; }
  .cas-card { grid-template-columns: 1fr; }
  .cas-card-image { aspect-ratio: 16/9; }
  .cs-h2 { font-size: 28px; }
}
@media (max-width: 640px) {
  .cs-hero { padding: 48px 16px 24px; }
  .cs-content { padding: 0 16px; }
  .cs-keystats { padding: 24px 20px; }
  .cs-table { font-size: 12.5px; }
  .cs-table th, .cs-table td { padding: 10px 12px; }
}

/* ============ PARTNER-CTA (affiliate, transparant gelabeld) ============ */
.partner-cta {
  margin: 32px auto;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--rule-2);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  overflow: hidden;
}
.partner-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
}
.partner-disclosure {
  display: inline-block;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.partner-cta-h {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.partner-cta-h em {
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
}
.partner-cta-arrow {
  color: var(--accent);
  font-weight: 300;
  opacity: .6;
}
.partner-cta-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
  max-width: 460px;
}
.partner-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--r-pill);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.partner-cta-btn:hover { background: #B86404; transform: translateX(2px); }
.partner-cta-btn .arr { color: #fff; font-weight: 300; }
.partner-cta-disclosure-full {
  padding: 12px 26px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-muted);
}
.partner-cta-disclosure-full a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.partner-cta-compact {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--cream);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  font-size: 13px;
}
.partner-cta-compact .partner-disclosure { margin-bottom: 0; }
.partner-cta-compact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.partner-cta-compact a:hover { text-decoration: underline; }
.partner-cta-compact .arr { font-weight: 300; }

@media (max-width: 700px) {
  .partner-cta-inner { grid-template-columns: 1fr; }
  .partner-cta-btn { justify-content: center; }
}

/* ============ Category partner-section wrapper ============ */
.cat-partner-section {
  padding: 24px 24px 8px;
  background: var(--cream);
}
.cat-partner-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.cat-partner-inner .partner-cta {
  margin: 0 auto;
  max-width: 100%;
}

/* ============ CORNERSTONES STRIP (categorie-landings) ============ */
.cornerstones-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
}
.cornerstones-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.cornerstones-head .lead {
  margin-top: 16px;
  color: rgba(11, 61, 46, 0.7);
}
.cornerstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cornerstone-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 8px;
  background: #FAF7F1;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cornerstone-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 61, 46, 0.08);
  border-color: #D97706;
}
.cornerstone-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D97706;
  margin-bottom: 16px;
}
.cornerstone-title {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #0B3D2E;
  margin: 0 0 12px;
}
.cornerstone-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11, 61, 46, 0.7);
  margin: 0 0 20px;
  flex-grow: 1;
}
.cornerstone-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(11, 61, 46, 0.55);
  border-top: 1px solid rgba(11, 61, 46, 0.08);
  padding-top: 16px;
}
@media (max-width: 768px) {
  .cornerstones-strip {
    padding: 64px 20px;
  }
  .cornerstone-card {
    padding: 24px 20px;
  }
  .cornerstone-title {
    font-size: 20px;
  }
}

/* ============ BRANDED-CONTENT SLOTS ============ */
.branded-strip {
  position: sticky;
  top: 64px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  background: #FEF3C7;
  border-bottom: 1px solid #D97706;
  font-size: 13px;
  font-family: 'Geist', sans-serif;
}
.branded-strip-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: #D97706;
  color: #fff;
  border-radius: 3px;
}
.branded-strip-partner {
  font-weight: 500;
  color: #92400E;
}
.branded-strip-link {
  margin-left: auto;
  color: #92400E;
  text-decoration: underline;
  font-size: 12px;
}
.cs-eyebrow-paid {
  color: #92400E !important;
}
.cs-eyebrow-paid::before {
  content: '◆ ';
  color: #D97706;
}
.branded-cta {
  margin: 64px auto;
  max-width: 720px;
  padding: 48px 40px;
  background: #FAF7F1;
  border: 2px solid #D97706;
  border-radius: 8px;
  text-align: center;
}
.branded-cta-headline {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: #0B3D2E;
  margin: 0 0 12px;
}
.branded-cta-sub {
  color: rgba(11, 61, 46, 0.7);
  margin: 0 0 24px;
}
.branded-cta-disclaimer {
  margin-top: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(11, 61, 46, 0.5);
}
.branded-disclosure {
  max-width: 720px;
  margin: 64px auto;
  padding: 32px;
  background: rgba(217, 119, 6, 0.04);
  border-left: 3px solid #D97706;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11, 61, 46, 0.85);
}
.branded-disclosure h3 {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  margin: 0 0 16px;
}
.branded-disclosure p {
  margin: 0 0 12px;
}

/* ============ CORNERSTONE CHANGELOG ============ */
.cs-changelog {
  max-width: 720px;
  margin: 48px auto 32px;
  padding: 32px;
  background: rgba(217, 119, 6, 0.04);
  border-left: 3px solid #D97706;
  border-radius: 4px;
}
.cs-changelog .cs-h2 {
  font-size: 18px;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  margin: 0 0 8px;
}
.cs-changelog-intro {
  font-size: 13px;
  color: rgba(11, 61, 46, 0.7);
  margin: 0 0 20px;
  line-height: 1.5;
}
.cs-changelog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-changelog-item {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
  font-size: 14px;
}
.cs-changelog-item:first-child {
  border-top: none;
}
.cs-changelog-date {
  flex-shrink: 0;
  width: 110px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(11, 61, 46, 0.6);
  padding-top: 1px;
}
.cs-changelog-text {
  color: rgba(11, 61, 46, 0.85);
  line-height: 1.5;
}

/* ============ A/B TEST: leadform-order ============ */
/* Variant B = situatie-vraag eerst (step 3) i.p.v. postcode (step 1) */
.ab-leadform-order-B .lead-form { display: flex; flex-direction: column; }
.ab-leadform-order-B .lead-form-step[data-step="1"] { order: 3; }
.ab-leadform-order-B .lead-form-step[data-step="2"] { order: 4; }
.ab-leadform-order-B .lead-form-step[data-step="3"] { order: 1; }
.ab-leadform-order-B .lead-form-step[data-step="4"] { order: 2; }
.ab-leadform-order-B .lead-form-step[data-step="5"] { order: 5; }
.ab-leadform-order-B .lead-form-step[data-step="6"] { order: 6; }


/* ============ AUTO-LINKED GLOSSARY ============ */
.auto-gloss { color: inherit; border-bottom: 1px dotted rgba(217, 119, 6, 0.55); text-decoration: none; transition: border-color 0.15s; }
.auto-gloss:hover { border-bottom-color: #D97706; }

/* ============ COMPANY CORNERSTONE CROSS-LINKS ============ */
.company-cornerstones { padding: 48px 0; background: rgba(217,119,6,0.04); border-top: 1px solid rgba(11,61,46,0.08); }
.company-cornerstones .company-h2 { margin: 0 0 8px; }
.company-cornerstones-intro { color: rgba(11,61,46,0.7); font-size: 14px; margin: 0 0 20px; }
.company-cornerstones-list { list-style: none; padding: 0; margin: 0; }
.company-cornerstones-list li { margin: 0; padding: 12px 0; border-bottom: 1px solid rgba(11,61,46,0.08); }
.company-cornerstones-list a { color: #0B3D2E; text-decoration: none; font-weight: 500; }
.company-cornerstones-list a:hover { color: #D97706; }

/* ============ TOPBAR "MEER" DROPDOWN ============ */
.nav-more { position: relative; display: inline-flex; }
.nav-more-trigger {
  background: none; border: 0; padding: 8px 12px;
  font: inherit; color: inherit;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-more-arr { font-size: 10px; transition: transform 0.2s; }
.nav-more.is-open .nav-more-arr { transform: rotate(180deg); }
.nav-more-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(11,61,46,0.1);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(11,61,46,0.12);
  padding: 8px;
  display: none;
  z-index: 100;
}
.nav-more.is-open .nav-more-panel { display: block; }
.nav-more-panel a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px;
  text-decoration: none;
  color: #0B3D2E;
  border-radius: 4px;
  transition: background 0.15s;
}
.nav-more-panel a:hover { background: #FAF7F1; }
.nav-more-panel a strong { font-weight: 600; font-size: 14px; }
.nav-more-panel a span { font-size: 12px; color: rgba(11,61,46,0.6); }
@media (max-width: 900px) { .nav-more { display: none; } }

/* ============ NEWSLETTER SUCCESS + ERROR ============ */
.newsletter-success {
  padding: 20px;
  background: rgba(22, 163, 74, 0.08);
  border-left: 3px solid #16A34A;
  border-radius: 4px;
}
.newsletter-success-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #15803D;
  font-weight: 600;
}
.newsletter-success p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(11,61,46,0.85);
  line-height: 1.5;
}
.newsletter-error {
  margin-top: 8px;
  font-size: 12px;
  color: #B91C1C;
  font-family: 'Geist Mono', monospace;
}

/* ============ CORNERSTONE TABLE-OF-CONTENTS ============ */
.cs-toc {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 24px 32px;
  background: #FAF7F1;
  border: 1px solid rgba(11,61,46,0.1);
  border-radius: 6px;
}
.cs-toc-summary {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-toc-summary::-webkit-details-marker { display: none; }
.cs-toc-summary::after { content: '−'; font-size: 18px; color: #D97706; }
.cs-toc:not([open]) .cs-toc-summary::after { content: '+'; }
.cs-toc-list {
  margin: 16px 0 0;
  padding-left: 24px;
  list-style: decimal;
}
.cs-toc-list li {
  margin: 6px 0;
  font-size: 14px;
}
.cs-toc-list a {
  color: #0B3D2E;
  text-decoration: none;
  border-bottom: 1px dotted rgba(11,61,46,0.3);
}
.cs-toc-list a:hover { color: #D97706; border-bottom-color: #D97706; }

@media (min-width: 1280px) {
  .cs-toc {
    position: sticky;
    top: 96px;
    float: right;
    width: 260px;
    margin-right: -300px;
    margin-bottom: 0;
  }
}

/* ============ CORNERSTONE SHARE BUTTONS ============ */
.cs-share {
  max-width: 720px;
  margin: 32px auto;
  padding: 20px 24px;
  background: #FAF7F1;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cs-share-label {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(11,61,46,0.7);
  flex: 1;
  min-width: 160px;
}
.cs-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(11,61,46,0.15);
  border-radius: 4px;
  font: inherit;
  font-size: 13px;
  color: #0B3D2E;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.cs-share-btn:hover { border-color: #D97706; background: #fff; }
.cs-share-btn svg { color: #92400E; }

/* ============ SEARCH OVERLAY ============ */
.search-trigger {
  background: none;
  border: 1px solid rgba(11,61,46,0.15);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0B3D2E;
  margin-right: 8px;
}
.search-trigger:hover { border-color: #D97706; color: #D97706; }
.search-overlay { position: fixed; inset: 0; z-index: 1000; display: none; }
.search-overlay.is-open { display: block; }
.search-overlay-bg { position: absolute; inset: 0; background: rgba(11,61,46,0.5); backdrop-filter: blur(4px); }
.search-panel {
  position: relative;
  max-width: 720px;
  margin: 64px auto 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(11,61,46,0.3);
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
}
.search-input-wrap { display: flex; align-items: center; gap: 12px; }
.search-input {
  flex: 1;
  padding: 14px 16px;
  border: 0;
  border-bottom: 2px solid rgba(11,61,46,0.15);
  font-size: 18px;
  font: inherit;
  font-size: 20px;
  outline: none;
}
.search-input:focus { border-bottom-color: #D97706; }
.search-close {
  background: #FAF7F1;
  border: 0;
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  cursor: pointer;
}
.search-hint { font-family: 'Geist Mono', monospace; font-size: 11px; color: rgba(11,61,46,0.5); margin: 8px 0 16px; }
.search-empty { color: rgba(11,61,46,0.6); padding: 24px 0; }
.search-results { display: flex; flex-direction: column; gap: 4px; }
.search-result {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  position: relative;
}
.search-result:hover { background: #FAF7F1; }
.search-result-type {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #D97706;
  display: block;
  margin-bottom: 4px;
}
.search-result-title { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 18px; margin: 0 0 4px; color: #0B3D2E; }
.search-result-desc { font-size: 13px; color: rgba(11,61,46,0.7); margin: 0 0 4px; line-height: 1.4; }
.search-result-cat { font-family: 'Geist Mono', monospace; font-size: 10px; color: rgba(11,61,46,0.5); }

/* ============ HERO POSTCODE QUICK-START ============ */
.hero-postcode {
  margin: 24px 0 16px;
  max-width: 360px;
}
.hero-postcode-label {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  margin-bottom: 8px;
}
.hero-postcode-row {
  display: flex;
  gap: 8px;
}
.hero-postcode input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(11,61,46,0.2);
  border-radius: 4px;
  font: inherit;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-postcode input:focus { border-color: #D97706; outline: none; }
.hero-postcode-err { display: block; margin-top: 6px; font-size: 12px; color: #B91C1C; font-family: 'Geist Mono', monospace; min-height: 16px; }

/* ============ COOKIE BAR ============ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #0B3D2E;
  color: #fff;
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform .3s;
}
.cookie-bar.is-dismissed { transform: translateY(100%); }
.cookie-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-bar-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  min-width: 280px;
}
.cookie-bar-text a { color: #F6CC74; }
.cookie-bar-ok {
  background: #D97706;
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.cookie-bar-ok:hover { background: #B45309; }

/* ============ TOPBAR POLISH ============ */
.topbar .nav { gap: 18px; }
.topbar .nav a { font-size: 14px; padding: 6px 4px; position: relative; }
.topbar .nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 4px; right: 4px; bottom: -4px; height: 2px; background: #D97706; border-radius: 1px;
}
.nav-more-trigger { font-size: 14px; }
@media (max-width: 1200px) {
  .topbar .nav { gap: 12px; }
  .topbar .nav a { font-size: 13px; }
}
@media (max-width: 1024px) {
  .topbar .nav a:not(.nav-nieuws):nth-child(n+5) { display: none; }
  .nav-more-trigger { display: inline-flex !important; }
}

/* ============ SEARCH OVERLAY POLISH ============ */
.search-result:focus, .search-result.is-active { background: #FAF7F1; outline: 2px solid #D97706; outline-offset: -2px; }
@media (max-width: 600px) {
  .search-panel { margin: 16px; padding: 16px; max-height: calc(100vh - 32px); }
  .search-input { font-size: 17px; padding: 12px 12px; }
  .nf-suggest { grid-template-columns: 1fr; }
  .nf-wrap { padding: 32px 16px; }
  .nf-top .num { font-size: 96px; }
  .nf-search { padding: 20px; }
  .nf-search form { flex-direction: column; }
}

/* ============ TOOL-TO-LEAD CHAIN BANNER ============ */
.tool-to-lead-banner {
  max-width: 720px;
  margin: 32px auto;
  padding: 32px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FAF7F1 100%);
  border: 2px solid #D97706;
  border-radius: 8px;
  transform: scale(1);
  transition: opacity .3s, transform .3s;
}
.tool-to-lead-banner.is-dismissed { opacity: 0; transform: scale(0.96); }
.t2l-eyebrow { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #15803D; display: block; margin-bottom: 8px; }
.t2l-title { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 28px; color: #0B3D2E; margin: 0 0 8px; }
.t2l-sub { color: rgba(11,61,46,0.75); margin: 0 0 24px; line-height: 1.5; }
.t2l-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ BEDRIJVENGIDS LOAD-MORE ============ */
.bg-load-more-wrap { text-align: center; padding: 32px 0; }
.bg-load-more-wrap .btn-ghost-large { display: inline-flex; }

/* ============ CS-TABLE VISUAL UPGRADE ============ */
.cs-table td:nth-child(2):not(:last-child) {
  font-family: 'Geist Mono', monospace;
  font-weight: 600;
  color: #92400E;
}
.cs-table thead th {
  background: rgba(11, 61, 46, 0.04);
  border-bottom: 2px solid #0B3D2E;
}
.cs-table tbody tr:hover {
  background: rgba(217, 119, 6, 0.04);
}
.cs-table td {
  border-bottom: 1px solid rgba(11, 61, 46, 0.06);
  vertical-align: top;
}

/* ============ FEATURED SNIPPET HIGHLIGHTING ============ */
.cs-lead-first {
  font-size: 1.1em;
  line-height: 1.6;
  color: #0B3D2E;
  font-weight: 450;
  padding: 16px 0 16px 20px;
  border-left: 3px solid #D97706;
  margin-bottom: 24px;
  background: linear-gradient(to right, rgba(217,119,6,0.04), transparent);
}

/* ============ PRINT-STYLES (browser PDF-export) ============ */
@media print {
  body { font-family: serif; color: #000; background: #fff; font-size: 11pt; line-height: 1.5; }
  .topbar, .footer, .cs-share, .cs-toc, .lead-form-section, .cookie-bar,
  .search-overlay, .branded-strip, .partner-cta, .nf-suggest, .nf-search,
  .related-grid, .news-card, .cs-related-tools, .breadcrumb { display: none !important; }
  .cs-article { padding: 0; max-width: 100%; }
  .cs-h1 { font-size: 24pt; color: #000; }
  .cs-h2 { font-size: 16pt; color: #000; margin-top: 16pt; page-break-after: avoid; }
  .cs-section { page-break-inside: avoid; }
  .cs-callout { background: #f5f5f5; border-color: #888; padding: 10pt; }
  .cs-table { font-size: 9pt; }
  .cs-changelog, .cs-sources { font-size: 9pt; }
  a { color: #000; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; }
  img { max-width: 100% !important; page-break-inside: avoid; }
}
