/* ================================================================
   TEKENPUNT.NL — DESIGN SYSTEM v2
   Drie pagina-types, één huisstijl, drie verschillende layout-DNA's
   ================================================================ */

/* ============ TOKENS ============ */
:root {
  --c-ink: #0a1a4d;
  --c-ink-strong: #050d33;
  --c-blue: #1a3a8e;
  --c-blue-light: #2d4ea0;
  --c-blue-tint: #eff3ff;
  --c-yellow: #fbbf24;
  --c-yellow-deep: #d97706;
  --c-yellow-tint: #fef3c7;
  --c-paper: #fafbfd;
  --c-paper-warm: #f5f3eb;
  --c-white: #ffffff;
  --c-text: #1f2937;
  --c-text-soft: #4b5563;
  --c-text-mute: #6b7280;
  --c-line: #e5e7eb;
  --c-line-soft: #f1f5f9;
  --c-ok: #15803d;
  --c-warn: #92400e;
  --c-danger: #991b1b;
  --c-ok-bg: #dcfce7;
  --c-warn-bg: #fef3c7;
  --c-danger-bg: #fee2e2;
  --c-wa: #25D366;

  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --grid-step: 40px;
  --container: 1280px;
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  font-family: var(--f-sans);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga", "ss01";
  background: var(--c-paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.2s var(--ease-out); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.mono { font-family: var(--f-mono) !important; letter-spacing: 0.02em; }
h1, h2, h3, h4 { font-family: var(--f-sans); color: var(--c-ink); margin: 0; }
h1, h2 { letter-spacing: -0.03em; font-weight: 800; }
h3 { letter-spacing: -0.015em; font-weight: 700; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }

/* ================================================================
   STICKY TOP NAV — alle pagina's
   ================================================================ */
/* Zwevend menu: transparante sticky-baan, de pill zit op .tp-nav-inner */
.tp-nav {
  position: sticky; top: 12px; z-index: 100;
  margin-top: 12px;
  display: flex; align-items: center;
  padding: 0 clamp(12px, 3vw, 28px);
  pointer-events: none;
}
.tp-nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 9px 12px 9px 20px;
  display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  box-shadow: 0 14px 34px -18px rgba(10,26,77,.30), 0 2px 8px -4px rgba(10,26,77,.10);
  pointer-events: auto;
  transition: box-shadow .25s var(--ease-out), background .25s var(--ease-out);
}
.tp-nav.scrolled .tp-nav-inner {
  box-shadow: 0 18px 46px -18px rgba(10,26,77,.42), 0 3px 10px -4px rgba(10,26,77,.14);
  background: rgba(255,255,255,.93);
}
.tp-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
  color: var(--c-ink); white-space: nowrap;
}
.tp-logo-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--c-ink); color: var(--c-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
}
.tp-menu {
  display: flex; gap: 2px; margin-left: auto; align-items: center;
}
.tp-menu > a, .tp-dd-trigger {
  padding: 8px 13px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500; color: var(--c-text-soft);
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px;
}
.tp-menu > a:hover, .tp-dd-trigger:hover { background: var(--c-paper); color: var(--c-ink); }
.tp-menu > a.active, .tp-dd-trigger.active { color: var(--c-ink); font-weight: 600; }

/* DROPDOWN */
.tp-has-dd { position: relative; display: flex; align-items: center; }
.tp-dd-trigger svg { width: 10px; height: 10px; transition: transform .2s var(--ease-out); }
.tp-has-dd:hover .tp-dd-trigger svg, .tp-has-dd:focus-within .tp-dd-trigger svg { transform: rotate(180deg); }
.tp-dd-panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 244px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  box-shadow: 0 24px 60px -24px rgba(10,26,77,.28); padding: 8px;
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 101;
}
.tp-has-dd:hover .tp-dd-panel, .tp-has-dd:focus-within .tp-dd-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.tp-dd-panel a { padding: 10px 12px; border-radius: var(--r-sm); font-size: 14px; color: var(--c-text-soft); white-space: nowrap; }
.tp-dd-panel a:hover { background: var(--c-blue-tint); color: var(--c-blue); }
.tp-dd-sep { height: 1px; background: var(--c-line); margin: 6px; }
.tp-dd-all { color: var(--c-blue); font-weight: 600; }
/* 2-koloms mega-menu (Verbouwingen heeft veel types) */
.tp-dd-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px 8px; }
.tp-dd-cols a { white-space: nowrap; }

.tp-nav-cta { display: flex; gap: 8px; align-items: center; margin-left: 16px; }
.tp-nav-cta .tel {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-sm);
  color: var(--c-ink); font-weight: 600; font-size: 14px;
}
.tp-nav-cta .tel:hover { background: var(--c-paper); }
.tp-nav-cta .offerte {
  padding: 9px 16px; background: var(--c-yellow); color: var(--c-ink);
  border-radius: var(--r-sm); font-weight: 700; font-size: 14px; white-space: nowrap;
}
.tp-nav-cta .offerte:hover { background: #fcc23d; transform: translateY(-1px); }

/* HAMBURGER + MOBIEL PANEEL */
.tp-menu-toggle { display: none; padding: 8px; background: none; border: none; cursor: pointer; color: var(--c-ink); }
.tp-menu-toggle svg { width: 26px; height: 26px; }
.tp-menu-toggle .ic-close { display: none; }
.tp-nav.is-open .tp-menu-toggle .ic-open { display: none; }
.tp-nav.is-open .tp-menu-toggle .ic-close { display: block; }
.tp-menu-cta { display: none; }

@media (max-width: 1000px) {
  /* backdrop-filter maakt de nav een containing block voor position:fixed kinderen
     waardoor het mobiele paneel in de 64px nav geklemd zou worden. Uit op mobiel. */
  .tp-nav-inner { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .tp-nav-cta .tel { display: none; }
  .tp-menu-toggle { display: flex; order: 3; }
  .tp-nav-cta { margin-left: auto; order: 2; }
  .tp-menu {
    position: fixed; inset: calc(var(--nav-h) + 20px) 0 0 auto; width: min(360px, 86vw);
    margin: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 18px 36px; overflow-y: auto;
    transform: translateX(100%); transition: transform .32s var(--ease-out);
    box-shadow: -24px 0 60px -24px rgba(10,26,77,.35); z-index: 99;
  }
  .tp-nav.is-open .tp-menu { transform: translateX(0); }
  .tp-menu > a, .tp-dd-trigger { width: 100%; justify-content: space-between; padding: 15px 8px; font-size: 16px; border-bottom: 1px solid var(--c-line-soft); border-radius: 0; }
  .tp-has-dd { display: block; }
  .tp-dd-trigger { font-weight: 700; color: var(--c-ink); }
  .tp-dd-trigger svg { display: none; }
  .tp-dd-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 12px 14px; min-width: 0; }
  .tp-dd-panel a { padding: 11px 8px; }
  .tp-dd-cols { grid-template-columns: 1fr; }
  .tp-dd-sep { display: none; }
  .tp-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  .tp-menu-cta .tel { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border: 1px solid var(--c-line); border-radius: var(--r-sm); font-weight: 600; color: var(--c-ink); }
  .tp-menu-cta .offerte { text-align: center; padding: 14px; background: var(--c-yellow); color: var(--c-ink); border-radius: var(--r-sm); font-weight: 700; }
  .tp-nav.is-open::after { content: ''; position: fixed; inset: calc(var(--nav-h) + 20px) 0 0 0; background: rgba(5,13,51,.42); z-index: 98; pointer-events: auto; }
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.tp-crumb {
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line-soft);
  padding: 14px clamp(24px, 5vw, 80px);
}
.tp-crumb-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--c-text-mute);
}
.tp-crumb-inner a:hover { color: var(--c-blue); }
.tp-crumb-inner .sep { opacity: 0.5; }
.tp-crumb-inner .current { color: var(--c-ink); font-weight: 600; }

/* ================================================================
   BUTTONS — consistent CTA hiërarchie
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-md);
  font-weight: 700; font-size: 15px; line-height: 1;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.btn-lg { padding: 17px 30px; font-size: 15.5px; }
.btn-sm { padding: 13px 20px; font-size: 13.5px; }
.btn-primary { background: var(--c-yellow); color: var(--c-ink); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 12px 30px -10px rgba(251,191,36,.55); }
.btn-primary:hover { background: #fcc23d; transform: translateY(-2px); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 16px 36px -10px rgba(251,191,36,.7); }
.btn-ink { background: var(--c-ink); color: var(--c-white); }
.btn-ink:hover { background: var(--c-ink-strong); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn-outline:hover { background: var(--c-ink); color: var(--c-white); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--c-white); border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.42); }
.btn-wa { background: var(--c-wa); color: #fff; }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }
.btn-link { color: var(--c-blue); font-weight: 700; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 0; }
.btn-link:hover { color: var(--c-yellow-deep); }
.arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow, a:hover .arrow { transform: translateX(4px); }

/* ================================================================
   SECTION CHROME
   ================================================================ */
.sect { padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 80px); position: relative; }
.sect-paper { background: var(--c-paper); }
.sect-white { background: #fff; }
.sect-ink { background: var(--c-ink); color: var(--c-white); position: relative; overflow: hidden; }
.sect-ink h2, .sect-ink h3 { color: var(--c-white); }
.sect-ink::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(251,191,36,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,.04) 1px, transparent 1px);
  background-size: var(--grid-step) var(--grid-step);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.sect-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-blue); font-family: var(--f-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow .nr { color: var(--c-yellow-deep); font-weight: 700; }
.sect-ink .eyebrow { color: var(--c-yellow); }
.sect-ink .eyebrow .nr { color: var(--c-yellow); }
h2.section-h { font-size: clamp(2em, 4vw, 3em); line-height: 1.05; margin: 0 0 18px; max-width: 24ch; }
h2.section-h .accent { color: var(--c-blue); position: relative; display: inline-block; }
h2.section-h .accent::before { content: ''; position: absolute; left: -2%; right: -2%; bottom: 0.05em; height: 0.35em; background: var(--c-yellow); opacity: 0.22; z-index: -1; }
.sect-ink h2.section-h .accent { color: var(--c-yellow); }
.sect-ink h2.section-h .accent::before { display: none; }
.lead { font-size: 17px; line-height: 1.7; color: var(--c-text-soft); max-width: 60ch; margin: 0 0 8px; }
.sect-ink .lead { color: rgba(255,255,255,.72); }

/* ================================================================
   PAGE-TYPE 1: HOMEPAGE — Editorial brand showcase DNA
   ================================================================ */

/* SPLIT HERO — foto rechts, tekst links */
.hp-hero {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 100px);
  background: var(--c-paper);
  position: relative; overflow: hidden;
}
.hp-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(26,58,142,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,142,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 30%, transparent 90%);
  pointer-events: none;
}
.hp-hero-grid {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.hp-hero-text h1 {
  font-size: clamp(2.4em, 5.5vw, 4.4em);
  line-height: 1; margin: 16px 0 24px;
}
.hp-hero-text h1 .accent { color: var(--c-blue); position: relative; display: inline-block; }
.hp-hero-text h1 .accent::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.12em; background: var(--c-yellow); opacity: 0.5; }
.hp-hero-text .lead { font-size: clamp(16.5px, 1.6vw, 19px); margin-bottom: 36px; }
.hp-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hp-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px dashed var(--c-line);
  font-size: 13.5px; color: var(--c-text-mute);
}
.hp-hero-meta strong { color: var(--c-ink); font-weight: 700; }
.hp-hero-meta .star { color: var(--c-yellow-deep); }

/* Hero visual = foto met blueprint overlay + floating fact card */
.hp-hero-visual { position: relative; }
.hp-hero-photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/5; background: var(--c-ink);
  box-shadow: 0 40px 80px -32px rgba(10,26,77,.4), 0 12px 24px -8px rgba(10,26,77,.15);
}
.hp-hero-photo .photo-fallback {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #312e81 100%);
  display: flex; align-items: center; justify-content: center;
}
.hp-hero-photo .photo-fallback::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hp-hero-photo svg.building {
  position: relative; z-index: 1; width: 75%; height: 80%;
  color: var(--c-yellow); opacity: 0.75;
}
.hp-hero-tech {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,.6); letter-spacing: 0.1em;
  background: rgba(0,0,0,.3); backdrop-filter: blur(4px);
  padding: 6px 10px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.1); z-index: 2;
}
.hp-hero-fact {
  position: absolute; bottom: -28px; left: -28px;
  background: #fff; padding: 18px 22px;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px -20px rgba(10,26,77,.3);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--c-line-soft);
  z-index: 3;
}
.hp-hero-fact-num {
  font-size: 2.4em; font-weight: 800; color: var(--c-yellow-deep);
  line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.hp-hero-fact-text { font-size: 12.5px; color: var(--c-text-mute); line-height: 1.4; max-width: 14ch; }
.hp-hero-fact-text strong { display: block; color: var(--c-ink); font-size: 13.5px; }

@media (max-width: 900px) {
  .hp-hero-grid { grid-template-columns: 1fr; }
  .hp-hero-visual { max-width: 480px; margin: 0 auto; }
  .hp-hero-fact { left: 12px; bottom: -20px; }
}

/* TRUST STRIP — keurmerken + reviews onder hero */
.hp-trust {
  background: #fff;
  padding: 24px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.hp-trust-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.hp-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--c-text-soft); font-weight: 500;
}
.hp-trust-item strong { color: var(--c-ink); font-weight: 700; font-size: 14px; }
.hp-trust-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--c-blue-tint); color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
}
.hp-trust-icon svg { width: 16px; height: 16px; }

/* 3 PILLARS — 3 hoofddiensten als grote cards */
.hp-pillars { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); }
.hp-pillars-head {
  max-width: var(--container); margin: 0 auto 48px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: end;
}
.hp-pillars-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.hp-pillar {
  position: relative; padding: 28px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s var(--ease-out);
}
.hp-pillar:hover { transform: translateY(-4px); border-color: var(--c-blue); box-shadow: 0 30px 60px -25px rgba(26,58,142,.25); }
.hp-pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.hp-pillar:hover::before { transform: scaleX(1); }
.hp-pillar-num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-yellow-deep); font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.hp-pillar-preview {
  height: 180px; border-radius: var(--r-md);
  background: var(--c-paper); border: 1px dashed var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue); margin-bottom: 22px;
  overflow: hidden; position: relative;
}
.hp-pillar-preview::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,58,142,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,142,.03) 1px, transparent 1px);
  background-size: 12px 12px;
}
.hp-pillar-preview svg { position: relative; z-index: 1; width: 85%; height: 85%; opacity: 0.7; }
.hp-pillar h3 { font-size: 1.5em; margin-bottom: 10px; }
.hp-pillar p { font-size: 14.5px; line-height: 1.65; color: var(--c-text-mute); margin: 0 0 18px; flex-grow: 1; }
.hp-pillar-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px dashed var(--c-line-soft);
}
.hp-pillar-price { font-family: var(--f-mono); font-size: 12px; color: var(--c-text-mute); }
.hp-pillar-price strong { color: var(--c-ink); font-size: 15px; }

/* WERKWIJZE — horizontale flow met grote SVG icons */
.hp-werk { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); background: var(--c-paper); }
.hp-werk-grid {
  max-width: var(--container); margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative;
}
.hp-werk-grid::before {
  content: ''; position: absolute; top: 60px; left: 12.5%; right: 12.5%; height: 2px;
  background-image: linear-gradient(90deg, var(--c-yellow) 0, var(--c-yellow) 6px, transparent 6px, transparent 14px);
  background-size: 14px 2px; opacity: 0.4; z-index: 0;
}
.hp-werk-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 12px;
}
.hp-werk-icon {
  width: 120px; height: 120px; border-radius: 50%;
  background: #fff; border: 2px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue); margin-bottom: 22px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.hp-werk-step:hover .hp-werk-icon { border-color: var(--c-blue); transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(26,58,142,.25); }
.hp-werk-icon svg { width: 56px; height: 56px; }
.hp-werk-icon-num {
  position: absolute; top: -8px; right: -4px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-yellow); color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 800; font-size: 13px;
}
.hp-werk-step .when { font-family: var(--f-mono); font-size: 10.5px; color: var(--c-yellow-deep); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; }
.hp-werk-step h3 { font-size: 1.15em; margin-bottom: 8px; }
.hp-werk-step p { font-size: 13.5px; line-height: 1.55; color: var(--c-text-mute); margin: 0; }

/* 20+ VERBOUWINGSTYPEN MEGA — dichte grid */
.hp-types { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); background: #fff; }
.hp-types-head { max-width: var(--container); margin: 0 auto 40px; }
.hp-types-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.hp-type {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 18px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  color: inherit; min-height: 130px;
  transition: all 0.25s var(--ease-out);
}
.hp-type:hover { border-color: var(--c-blue); transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(26,58,142,.25); background: var(--c-paper); }
.hp-type.featured { grid-column: span 2; background: var(--c-ink); color: var(--c-white); border-color: transparent; }
.hp-type.featured::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 16px 16px; pointer-events: none;
}
.hp-type.featured > * { position: relative; z-index: 1; }
.hp-type-num { font-family: var(--f-mono); font-size: 10px; color: var(--c-text-mute); font-weight: 600; letter-spacing: 0.08em; }
.hp-type.featured .hp-type-num { color: var(--c-yellow); }
.hp-type-icon { width: 32px; height: 32px; color: var(--c-blue); }
.hp-type.featured .hp-type-icon { color: var(--c-yellow); }
.hp-type-icon svg { width: 100%; height: 100%; }
.hp-type-name { font-weight: 700; color: var(--c-ink); font-size: 14.5px; line-height: 1.3; margin-top: auto; }
.hp-type.featured .hp-type-name { color: var(--c-white); font-size: 16px; }
.hp-type-meta { font-family: var(--f-mono); font-size: 10.5px; color: var(--c-text-mute); }
.hp-type.featured .hp-type-meta { color: rgba(255,255,255,.55); }
.hp-type-arrow { position: absolute; top: 16px; right: 16px; color: var(--c-blue); opacity: 0; transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out); }
.hp-type:hover .hp-type-arrow { opacity: 1; transform: translateX(2px); }
.hp-type.featured .hp-type-arrow { color: var(--c-yellow); opacity: 0.6; }

/* PORTFOLIO MASONRY — mixed-size grid */
.hp-portfolio { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); background: var(--c-paper); }
.hp-portfolio-head { max-width: var(--container); margin: 0 auto 44px; display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; }
.hp-portfolio-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 14px;
}
.hp-case {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  background: var(--c-ink);
  transition: transform 0.35s var(--ease-out);
}
.hp-case:hover { transform: translateY(-3px); }
.hp-case.lg { grid-column: span 2; grid-row: span 2; }
.hp-case.md { grid-column: span 2; }
.hp-case.tall { grid-row: span 2; }
.hp-case-visual {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a3a8e 0%, #0a1a4d 100%);
}
.hp-case-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(251,191,36,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.hp-case-visual svg { position: relative; z-index: 1; width: 65%; height: 65%; color: var(--c-yellow); opacity: 0.55; transition: transform 0.5s var(--ease-out), opacity 0.3s var(--ease-out); }
.hp-case:hover .hp-case-visual svg { transform: scale(1.05); opacity: 0.75; }
.hp-case-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.3); backdrop-filter: blur(8px);
  padding: 5px 10px; border-radius: 4px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-yellow); letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,.15);
  z-index: 2;
}
.hp-case-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  padding: 30px 18px 18px;
  z-index: 2;
}
.hp-case-info h3 { color: #fff; font-size: 1.05em; margin: 0 0 4px; }
.hp-case-info p { color: rgba(255,255,255,.65); font-size: 12.5px; margin: 0; }
.hp-portfolio-foot { max-width: var(--container); margin: 32px auto 0; text-align: center; }

/* LOCATIES — Amsterdam mini-map + chips */
.hp-locaties { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); background: #fff; }
.hp-locaties-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.hp-map { position: relative; aspect-ratio: 5/4; background: var(--c-paper); border-radius: var(--r-lg); padding: 32px; }
.hp-map svg { width: 100%; height: 100%; }
.hp-map svg .area { fill: var(--c-line); stroke: var(--c-text-mute); stroke-width: 1; transition: all 0.25s var(--ease-out); cursor: pointer; }
.hp-map svg .area:hover { fill: var(--c-yellow); stroke: var(--c-yellow-deep); }
.hp-map svg .area.zuid { fill: var(--c-blue); stroke: var(--c-ink); }
.hp-map svg text { font-family: var(--f-mono); font-size: 8px; fill: var(--c-text-mute); pointer-events: none; }
.hp-map svg .area.zuid + text { fill: var(--c-white); font-weight: bold; }
.hp-loc-list h3 { font-size: 1.4em; margin-bottom: 16px; }
.hp-loc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--c-paper); border: 1px solid var(--c-line);
  font-size: 13px; color: var(--c-text-soft);
  transition: all 0.2s var(--ease-out);
}
.hp-chip:hover { background: var(--c-blue-tint); border-color: var(--c-blue); color: var(--c-blue); }
.hp-chip.featured { background: var(--c-ink); color: var(--c-yellow); border-color: var(--c-ink); }
.hp-chip .ct { font-family: var(--f-mono); font-size: 10.5px; opacity: 0.7; }

/* TESTIMONIALS — 4 echte cards met avatar */
.hp-testi { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); background: var(--c-paper); }
.hp-testi-head { max-width: var(--container); margin: 0 auto 44px; display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; }
.hp-google {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-md);
}
.hp-google-stars { color: var(--c-yellow-deep); font-size: 18px; letter-spacing: 2px; }
.hp-google strong { color: var(--c-ink); font-size: 18px; font-weight: 800; }
.hp-google span { font-size: 13px; color: var(--c-text-mute); }
.hp-testi-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.hp-testi-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-lg);
  position: relative;
}
.hp-testi-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 84px; color: var(--c-yellow); opacity: 0.18;
  font-family: Georgia, serif; line-height: 1;
}
.hp-testi-head-row { display: flex; gap: 14px; align-items: center; }
.hp-testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-ink));
  color: var(--c-yellow); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.hp-testi-id strong { display: block; color: var(--c-ink); font-size: 15px; font-weight: 700; }
.hp-testi-id .where { font-size: 12.5px; color: var(--c-text-mute); }
.hp-testi-stars { color: var(--c-yellow-deep); font-size: 14px; letter-spacing: 1px; margin-left: auto; }
.hp-testi-card p { color: var(--c-text); font-size: 15px; line-height: 1.7; margin: 0; font-style: italic; position: relative; z-index: 1; }
.hp-testi-tag {
  display: inline-flex; align-self: flex-start;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
  background: var(--c-blue-tint); color: var(--c-blue);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* WHY US VERGELIJKINGSTABEL */
.hp-why { padding: clamp(70px, 9vw, 110px) clamp(24px, 5vw, 80px); background: #fff; }
.hp-why-head { max-width: var(--container); margin: 0 auto 40px; text-align: center; }
.hp-why-head h2 { margin-left: auto; margin-right: auto; }
.hp-why-head .lead { margin-left: auto; margin-right: auto; }
.hp-why-table {
  max-width: 1080px; margin: 0 auto;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,26,77,.15);
}
.hp-why-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--c-line-soft);
  align-items: stretch;
}
.hp-why-row:last-child { border-bottom: none; }
.hp-why-row.head { background: var(--c-ink); color: #fff; }
.hp-why-row.head > div { padding: 22px; font-weight: 700; font-size: 14px; }
.hp-why-row.head .vs1 { background: var(--c-blue); color: var(--c-yellow); text-align: center; font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; }
.hp-why-row.head .vs2 { text-align: center; font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; color: rgba(255,255,255,.65); }
.hp-why-row > div { padding: 20px 22px; font-size: 14.5px; }
.hp-why-row .feature { color: var(--c-text-soft); }
.hp-why-row .v1 { text-align: center; background: rgba(26,58,142,.02); border-left: 1px solid var(--c-line-soft); border-right: 1px solid var(--c-line-soft); color: var(--c-ink); font-weight: 600; }
.hp-why-row .v2 { text-align: center; color: var(--c-text-mute); }
.hp-why-row .v1 .check { color: var(--c-ok); font-weight: 800; margin-right: 4px; }
.hp-why-row .v2 .cross { color: var(--c-danger); font-weight: 800; margin-right: 4px; }

/* CTA met kantoor info */
.hp-cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--c-ink) 0%, #1e2d6b 60%, var(--c-blue) 100%);
  color: #fff;
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 80px);
}
.hp-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(251,191,36,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,.06) 1px, transparent 1px);
  background-size: var(--grid-step) var(--grid-step);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, #000 30%, transparent 90%);
}
.hp-cta-grid {
  position: relative; z-index: 2; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.hp-cta-text h2 { color: #fff; font-size: clamp(2em, 4vw, 3em); line-height: 1.05; margin: 0 0 18px; }
.hp-cta-text h2 .accent { color: var(--c-yellow); }
.hp-cta-text p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7; margin: 0 0 30px; max-width: 50ch; }
.hp-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hp-office {
  padding: 30px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(8px);
}
.hp-office h3 { color: var(--c-yellow); font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; margin: 0 0 18px; text-transform: uppercase; }
.hp-office-row {
  display: flex; gap: 14px; align-items: start;
  padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.1);
}
.hp-office-row:last-child { border-bottom: none; }
.hp-office-row svg { width: 18px; height: 18px; color: var(--c-yellow); flex-shrink: 0; margin-top: 2px; }
.hp-office-row .label { font-family: var(--f-mono); font-size: 10.5px; color: rgba(255,255,255,.5); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.hp-office-row .val { color: #fff; font-size: 14.5px; font-weight: 500; }

/* ================================================================
   FOOTER — alle pagina's
   ================================================================ */
.tp-foot {
  background: #050d33; color: rgba(255,255,255,.7);
  padding: 60px clamp(24px, 5vw, 80px) 30px;
}
.tp-foot-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 2fr 1fr 1.4fr; gap: 40px;
}
.tp-foot-brand { color: #fff; }
.tp-foot-brand .tp-logo { color: #fff; }
.tp-foot-brand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin: 16px 0; max-width: 32ch; }
.tp-foot h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--f-mono); }
.tp-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tp-foot ul a { color: rgba(255,255,255,.55); font-size: 14px; }
.tp-foot ul a:hover { color: var(--c-yellow); }
/* Lange Verbouwingen-lijst in 2 kolommen */
.tp-foot ul.tp-foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 18px; }
/* Uitgelichte projecten-blok in de footer */
.tp-foot-projects { max-width: var(--container); margin: 36px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.tp-foot-projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px 24px; }
.tp-foot-projects-grid a { color: rgba(255,255,255,.55); font-size: 13.5px; }
.tp-foot-projects-grid a:hover { color: var(--c-yellow); }
.tp-foot-projects-all { color: var(--c-yellow); font-weight: 600; font-family: var(--f-mono); font-size: 12.5px; }
@media (max-width: 1000px) { .tp-foot-projects-grid, .tp-foot ul.tp-foot-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tp-foot-projects-grid { grid-template-columns: 1fr; } }
/* Sticky CTA-blok in de zijkolom (verbouwing side-nav + dienst sticky-sample) */
.tp-side-cta { position: relative; z-index: 3; margin-top: 22px; background: var(--c-ink); border-radius: 14px; padding: 20px; box-shadow: 0 16px 34px -20px rgba(10,26,77,.45); }
.tp-side-cta strong { display: block; color: #fff; font-size: 15px; margin-bottom: 6px; }
.tp-side-cta p { margin: 0 0 14px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.75); }
.tp-side-cta .btn-side { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 11px 14px; background: var(--c-yellow); color: var(--c-ink); border-radius: var(--r-sm); font-weight: 700; font-size: 13.5px; }
.tp-side-cta .btn-side:hover { background: #fcc23d; }
@media (max-width: 900px) { .tp-side-cta { display: none; } }
.tp-foot-base {
  max-width: var(--container); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,.45); font-family: var(--f-mono);
}
.tp-foot-region { font-family: var(--f-mono); font-size: 12px; color: var(--c-yellow); margin-top: 4px; letter-spacing: .04em; }
.tp-foot-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.45; }
.tp-foot-contact-row svg { width: 16px; height: 16px; flex: none; margin-top: 2px; stroke: var(--c-yellow); }
.tp-foot-contact-row a { color: rgba(255,255,255,.78); }
.tp-foot-contact-row a:hover { color: var(--c-yellow); }
.tp-foot-contact .offerte { display: inline-block; margin-top: 4px; padding: 11px 18px; background: var(--c-yellow); color: var(--c-ink); border-radius: var(--r-sm); font-weight: 700; font-size: 14px; }
.tp-foot-contact .offerte:hover { background: #fcc23d; }
@media (max-width: 900px) {
  .tp-foot-grid { grid-template-columns: 1fr 1fr; }
  .tp-foot-brand, .tp-foot-contact { grid-column: 1 / -1; }
  .tp-foot ul.tp-foot-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .tp-foot-grid { grid-template-columns: 1fr; } }

/* ================================================================
   PAGE-TYPE 2: VERBOUWINGSPAGINA — Technical deep-dive DNA
   ================================================================ */

/* CINEMATIC HERO — donker, groot blueprint cross-section */
.vb-hero {
  position: relative; overflow: hidden;
  background: var(--c-ink); color: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px) clamp(80px, 10vw, 130px);
}
.vb-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: var(--grid-step) var(--grid-step);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 70% 50%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 90% 80% at 70% 50%, #000 30%, transparent 90%);
}
.vb-hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0.18;
}
.vb-hero-bg svg { width: 100%; height: 90%; color: var(--c-yellow); }
.vb-hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; }
.vb-hero-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.vb-hero h1 {
  color: #fff !important;
  font-size: clamp(2.4em, 6vw, 4.6em);
  line-height: 0.98; margin: 0 0 24px; max-width: 16ch; font-weight: 800;
}
.vb-hero h1 .accent { color: var(--c-yellow); }
.vb-hero .lead { color: rgba(255,255,255,.78); font-size: 18px; max-width: 56ch; margin: 0 0 36px; }
.vb-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* QUICK FACTS BAR — onder hero, floating */
.vb-quickfacts {
  position: relative; z-index: 5;
  max-width: var(--container); margin: -50px auto 0;
  padding: 0 clamp(16px, 3vw, 24px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.vb-fact {
  background: #fff; padding: 22px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 40px -20px rgba(10,26,77,.2);
  display: flex; flex-direction: column; gap: 6px;
}
.vb-fact .num { font-size: 2.4em; font-weight: 800; color: var(--c-ink); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.vb-fact .num .unit { color: var(--c-yellow-deep); font-size: 0.55em; font-weight: 700; margin-left: 3px; }
.vb-fact .label { font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.vb-fact .desc { font-size: 13px; color: var(--c-text-soft); line-height: 1.4; }

/* SIDE NAV — sticky in-page anchors */
.vb-content-wrap {
  display: grid; grid-template-columns: 220px 1fr; gap: 60px;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
}
.vb-side {
  position: sticky; top: calc(var(--nav-h) + 24px);
  align-self: start; max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
}
.vb-side .label {
  display: block; font-family: var(--f-mono); font-size: 10.5px;
  color: var(--c-yellow-deep); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px; padding: 0 12px;
}
.vb-side ol { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.vb-side ol a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 13.5px; color: var(--c-text-soft); font-weight: 500;
  border-left: 2px solid transparent;
}
.vb-side ol a::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--f-mono); font-size: 10px; color: var(--c-text-mute); font-weight: 700;
}
.vb-side ol a:hover { background: var(--c-paper); color: var(--c-ink); border-left-color: var(--c-yellow); }
.vb-side ol a.active { background: var(--c-blue-tint); color: var(--c-blue); font-weight: 600; border-left-color: var(--c-blue); }

.vb-content > section { padding: 0 0 80px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.vb-content > section h2 { font-size: clamp(1.8em, 3.5vw, 2.6em); line-height: 1.1; margin: 0 0 18px; }
.vb-content > section h2 .accent { color: var(--c-blue); }

/* ANATOMY DIAGRAM — groot annotated SVG met callouts */
.vb-anatomy {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  margin-top: 30px; align-items: start;
}
.vb-anatomy-svg {
  background: var(--c-paper); border: 1px dashed var(--c-blue);
  border-radius: var(--r-lg); padding: 30px;
  position: relative; aspect-ratio: 4/3;
}
.vb-anatomy-svg svg { width: 100%; height: 100%; color: var(--c-blue); }
.vb-anatomy-label {
  position: absolute; background: var(--c-yellow); color: var(--c-ink);
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 12px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(251,191,36,.4);
  cursor: help;
}
.vb-anatomy-list { list-style: none; padding: 0; margin: 0; }
.vb-anatomy-list li {
  display: grid; grid-template-columns: 32px 1fr; gap: 14px;
  padding: 16px 0; border-bottom: 1px dashed var(--c-line);
}
.vb-anatomy-list li:last-child { border-bottom: none; }
.vb-anatomy-list .nr {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-ink); color: var(--c-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 800; font-size: 12px;
}
.vb-anatomy-list strong { display: block; color: var(--c-ink); font-size: 15px; margin-bottom: 2px; }
.vb-anatomy-list p { margin: 0; color: var(--c-text-mute); font-size: 13.5px; line-height: 1.55; }

/* DECISION TREE — CSS only Q&A */
.vb-tree {
  background: var(--c-paper); border-radius: var(--r-xl);
  padding: 36px; margin-top: 24px;
  border: 1px solid var(--c-line);
}
.vb-tree-step {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 22px;
  margin-bottom: 14px;
}
.vb-tree-step .q {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 14px;
}
.vb-tree-step .q-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-yellow); color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.vb-tree-step .q-text { font-weight: 700; color: var(--c-ink); font-size: 15.5px; }
.vb-tree-step .opts { display: flex; flex-wrap: wrap; gap: 8px; }
.vb-tree-step .opts label {
  padding: 10px 16px; background: var(--c-paper);
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  font-size: 13.5px; color: var(--c-text-soft); cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.vb-tree-step .opts input { display: none; }
.vb-tree-step .opts label:hover { background: var(--c-blue-tint); border-color: var(--c-blue); color: var(--c-blue); }
.vb-tree-step .opts input:checked + label { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.vb-tree-result {
  background: linear-gradient(135deg, var(--c-yellow), #f0a519);
  color: var(--c-ink); padding: 22px;
  border-radius: var(--r-md);
  margin-top: 18px;
}
.vb-tree-result strong { display: block; font-size: 18px; margin-bottom: 8px; }
.vb-tree-result p { margin: 0; font-size: 14.5px; line-height: 1.55; }

/* COST CALCULATOR */
.vb-calc {
  background: var(--c-ink); color: #fff;
  border-radius: var(--r-xl); padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  position: relative; overflow: hidden;
  margin-top: 24px;
}
.vb-calc::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 90%);
}
.vb-calc-form { position: relative; z-index: 1; }
.vb-calc-form h3 { color: var(--c-yellow); font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 24px; text-transform: uppercase; }
.vb-calc-field { margin-bottom: 22px; }
.vb-calc-field label { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.vb-calc-field .val { color: var(--c-yellow); font-family: var(--f-mono); font-weight: 700; margin-left: 8px; }
.vb-calc-field input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; outline: none;
}
.vb-calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  background: var(--c-yellow); border-radius: 50%; cursor: pointer;
  border: 2px solid var(--c-ink); box-shadow: 0 2px 8px rgba(251,191,36,.5);
}
.vb-calc-field select {
  width: 100%; padding: 12px 14px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-sm);
  color: #fff; font-family: var(--f-sans); font-size: 14px; outline: none;
}
.vb-calc-field select option { background: var(--c-ink); color: #fff; }
.vb-calc-result { position: relative; z-index: 1; }
.vb-calc-result h3 { color: var(--c-yellow); font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 24px; text-transform: uppercase; }
.vb-calc-rows { list-style: none; padding: 0; margin: 0; }
.vb-calc-rows li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.1); font-size: 14px; }
.vb-calc-rows li span { color: rgba(255,255,255,.65); }
.vb-calc-rows li strong { color: #fff; font-family: var(--f-mono); font-weight: 700; }
.vb-calc-total { margin-top: 20px; padding-top: 20px; border-top: 2px solid var(--c-yellow); display: flex; justify-content: space-between; align-items: baseline; }
.vb-calc-total .label { font-size: 14px; color: rgba(255,255,255,.7); }
.vb-calc-total .total { font-size: 2em; font-weight: 800; color: var(--c-yellow); font-family: var(--f-mono); letter-spacing: -0.02em; }
.vb-calc-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.5); font-style: italic; }
.vb-calc-extra { margin-top: 18px; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,.18); }
.vb-calc-extra-lbl { display: block; font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 9px; }
.vb-calc-extra-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: rgba(255,255,255,.72); }
.vb-calc-extra-row strong { color: rgba(255,255,255,.85); font-family: var(--f-mono); font-weight: 700; }
.vb-calc-opts { display: grid; gap: 12px; margin-top: 4px; }
.vb-calc-opt { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 13.5px; color: rgba(255,255,255,.82); }
.vb-calc-opt input { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; flex: none; margin: 0; border: 1.5px solid rgba(255,255,255,.3); border-radius: 5px; background: rgba(255,255,255,.05); position: relative; transition: all .15s; cursor: pointer; }
.vb-calc-opt input:checked { background: var(--c-yellow); border-color: var(--c-yellow); }
.vb-calc-opt input:checked::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--c-ink); font-size: 13px; font-weight: 800; }
.vb-calc-opt .opt-price { margin-left: auto; font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,.5); white-space: nowrap; }

/* 3 VARIANTEN — groot side-by-side */
.vb-variants {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 30px;
}
.vb-variant {
  display: flex; flex-direction: column; gap: 16px;
  padding: 26px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.vb-variant:hover { border-color: var(--c-blue); transform: translateY(-3px); box-shadow: 0 24px 50px -22px rgba(26,58,142,.25); }
.vb-variant.featured { background: var(--c-ink); color: #fff; border: none; }
.vb-variant.featured::before {
  content: 'POPULAIR'; position: absolute; top: 14px; right: 14px;
  font-family: var(--f-mono); font-size: 9px; font-weight: 700;
  background: var(--c-yellow); color: var(--c-ink);
  padding: 4px 8px; border-radius: 4px; letter-spacing: 0.08em;
}
.vb-variant-illu {
  height: 140px; background: var(--c-paper); border: 1px dashed var(--c-line);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
}
.vb-variant.featured .vb-variant-illu { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.15); color: var(--c-yellow); }
.vb-variant-illu svg { width: 88%; height: 88%; opacity: 0.75; }
.vb-variant h3 { color: var(--c-ink); font-size: 1.4em; margin: 0; }
.vb-variant.featured h3 { color: #fff; }
.vb-variant p { color: var(--c-text-mute); font-size: 14.5px; line-height: 1.55; margin: 0; flex-grow: 1; }
.vb-variant.featured p { color: rgba(255,255,255,.72); }
.vb-variant-specs { list-style: none; padding: 12px 0; margin: 0; border-top: 1px dashed var(--c-line-soft); border-bottom: 1px dashed var(--c-line-soft); }
.vb-variant.featured .vb-variant-specs { border-color: rgba(255,255,255,.15); }
.vb-variant-specs li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13.5px; }
.vb-variant-specs li span { color: var(--c-text-mute); }
.vb-variant.featured .vb-variant-specs li span { color: rgba(255,255,255,.55); }
.vb-variant-specs li strong { color: var(--c-ink); }
.vb-variant.featured .vb-variant-specs li strong { color: #fff; }
.vb-variant-price { display: flex; justify-content: space-between; align-items: baseline; }
.vb-variant-price .from { font-size: 12px; color: var(--c-text-mute); }
.vb-variant.featured .vb-variant-price .from { color: rgba(255,255,255,.55); }
.vb-variant-price .price { font-size: 1.7em; font-weight: 800; color: var(--c-blue); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.vb-variant.featured .vb-variant-price .price { color: var(--c-yellow); }

/* COMPARISON TOGGLE — dakkapel vs dakopbouw vs nokverhoging */
.vb-compare-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: var(--c-paper); border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 4px; max-width: 480px;
  margin: 30px auto 24px;
}
.vb-compare-tabs label {
  padding: 12px 18px; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--c-text-soft);
  cursor: pointer; border-radius: var(--r-sm);
  transition: all 0.2s var(--ease-out);
}
.vb-compare-tabs input { display: none; }
.vb-compare-tabs input:checked + label { background: var(--c-ink); color: var(--c-yellow); }
.vb-compare-panes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.vb-compare-card {
  padding: 24px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-lg);
}
.vb-compare-card h3 { color: var(--c-ink); font-size: 1.2em; margin-bottom: 12px; }
.vb-compare-card .illu { height: 100px; margin-bottom: 12px; color: var(--c-blue); display: flex; align-items: center; justify-content: center; background: var(--c-paper); border-radius: var(--r-sm); }
.vb-compare-card .illu svg { width: 80%; height: 80%; opacity: 0.7; }
.vb-compare-card ul { list-style: none; padding: 0; margin: 0; }
.vb-compare-card li { font-size: 13.5px; padding: 4px 0; color: var(--c-text-soft); display: flex; gap: 8px; }
.vb-compare-card li::before { content: '·'; color: var(--c-blue); font-weight: 700; font-size: 1.4em; line-height: 0; }

/* PER STADSDEEL TABLE */
.vb-stad {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); overflow: hidden;
  margin-top: 24px;
}
.vb-stad-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  align-items: center; gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 14px;
  transition: background 0.2s var(--ease-out);
}
.vb-stad-row:last-child { border-bottom: none; }
.vb-stad-row:hover:not(.head) { background: var(--c-paper); }
.vb-stad-row.head { background: var(--c-ink); color: #fff; font-family: var(--f-mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.vb-stad-row .buurt { font-weight: 700; color: var(--c-ink); }
.vb-stad-row.head .buurt { color: #fff; }
.vb-stad-row .val { color: var(--c-text-soft); font-family: var(--f-mono); }
.vb-stad-row.head .val { color: rgba(255,255,255,.65); }
.vb-stad-pill { display: inline-flex; padding: 4px 10px; border-radius: 4px; font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.vb-stad-pill.ok { background: var(--c-ok-bg); color: var(--c-ok); }
.vb-stad-pill.warn { background: var(--c-warn-bg); color: var(--c-warn); }
.vb-stad-pill.danger { background: var(--c-danger-bg); color: var(--c-danger); }

/* CASE STUDY DEEP DIVE */
.vb-case-deep {
  background: var(--c-paper); border-radius: var(--r-xl);
  padding: 36px; margin-top: 24px;
  border: 1px solid var(--c-line);
}
.vb-case-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; gap: 20px; flex-wrap: wrap; }
.vb-case-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-ink); color: var(--c-yellow);
  padding: 7px 14px; border-radius: var(--r-sm);
  font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
}
.vb-case-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.vb-case-stat { font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute); }
.vb-case-stat strong { display: block; color: var(--c-ink); font-size: 22px; font-weight: 800; font-family: var(--f-sans); letter-spacing: -0.02em; }
.vb-case-gallery { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: 180px; gap: 10px; margin-bottom: 24px; }
.vb-case-img {
  background: var(--c-ink); border-radius: var(--r-md);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.vb-case-img:first-child { grid-row: span 2; }
.vb-case-img::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(251,191,36,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.vb-case-img svg { position: relative; z-index: 1; width: 60%; height: 60%; color: var(--c-yellow); opacity: 0.5; }
.vb-case-img .stage {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-yellow); letter-spacing: 0.08em;
  background: rgba(0,0,0,.3); padding: 4px 8px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.15);
}
.vb-case-story p { margin-bottom: 14px; font-size: 15px; line-height: 1.7; color: var(--c-text); }

/* SUBSIDIES — 3 cards info */
.vb-info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px;
}
.vb-info-card {
  padding: 24px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 12px;
}
.vb-info-card svg { width: 36px; height: 36px; color: var(--c-blue); }
.vb-info-card h3 { color: var(--c-ink); font-size: 1.15em; margin: 0; }
.vb-info-card p { color: var(--c-text-mute); font-size: 14px; line-height: 1.6; margin: 0; }
.vb-info-card .source { font-family: var(--f-mono); font-size: 11px; color: var(--c-yellow-deep); margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--c-line-soft); }

/* RELATED — gerelateerde verbouwingen */
.vb-related {
  background: #fff;
  padding: clamp(50px, 7vw, 90px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--c-line);
}
.vb-related-head { max-width: var(--container); margin: 0 auto 28px; }
.vb-related-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.vb-related-card {
  display: flex; gap: 14px; align-items: center;
  padding: 18px; background: var(--c-paper);
  border: 1px solid var(--c-line-soft); border-radius: var(--r-md);
  color: inherit;
  transition: all 0.25s var(--ease-out);
}
.vb-related-card:hover { background: #fff; border-color: var(--c-blue); transform: translateX(2px); }
.vb-related-card svg { width: 32px; height: 32px; color: var(--c-blue); flex-shrink: 0; }
.vb-related-card strong { display: block; color: var(--c-ink); font-size: 14.5px; }
.vb-related-card span { font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute); }
.vb-related-card .arr { margin-left: auto; color: var(--c-blue); }

/* ================================================================
   PAGE-TYPE 3: DIENSTENPAGINA — Sample-driven service DNA
   ================================================================ */

/* SPLIT HERO — links tekst, rechts grote sample tekening */
.sv-hero {
  background: linear-gradient(135deg, var(--c-paper) 0%, #fff 100%);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 100px);
  position: relative; overflow: hidden;
}
.sv-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(26,58,142,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,142,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.sv-hero-grid {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 70px); align-items: center;
}
.sv-hero-text h1 {
  font-size: clamp(2.4em, 5vw, 4em);
  line-height: 1; margin: 16px 0 22px;
}
.sv-hero-text h1 .accent {
  background: linear-gradient(135deg, var(--c-blue), var(--c-yellow-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sv-hero-text .lead { font-size: 18px; margin-bottom: 32px; max-width: 50ch; }
.sv-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.sv-hero-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sv-hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--c-text-soft); }
.sv-hero-bullets li svg { width: 18px; height: 18px; color: var(--c-ok); flex-shrink: 0; }

/* Sample tekening visual */
.sv-hero-sample {
  position: relative;
  background: #fff; border-radius: var(--r-xl);
  padding: 22px; aspect-ratio: 5/4;
  border: 1px solid var(--c-line);
  box-shadow: 0 40px 80px -32px rgba(10,26,77,.3);
  display: flex; flex-direction: column;
}
.sv-hero-sample-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px dashed var(--c-line);
  margin-bottom: 14px;
  font-family: var(--f-mono); font-size: 10px; color: var(--c-text-mute); letter-spacing: 0.08em;
}
.sv-hero-sample-head .file { color: var(--c-ink); font-weight: 700; }
.sv-hero-sample-svg {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; color: var(--c-blue);
  background:
    linear-gradient(rgba(26,58,142,.04) 1px, transparent 1px) 0 0/20px 20px,
    linear-gradient(90deg, rgba(26,58,142,.04) 1px, transparent 1px) 0 0/20px 20px;
}
.sv-hero-sample-svg svg { width: 90%; height: 90%; }
.sv-hero-sample-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; margin-top: 14px;
  border-top: 1px dashed var(--c-line);
  font-family: var(--f-mono); font-size: 10px; color: var(--c-text-mute);
}
.sv-hero-zoom {
  position: absolute; top: -16px; right: -16px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-yellow); color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  box-shadow: 0 12px 24px -8px rgba(251,191,36,.55);
  letter-spacing: 0.05em; line-height: 1.1; text-align: center;
}

@media (max-width: 900px) {
  .sv-hero-grid { grid-template-columns: 1fr; }
}

/* TRUST KEURMERKEN */
.sv-trust {
  background: #fff; border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 20px clamp(24px, 5vw, 80px);
}
.sv-trust-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.sv-trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-text-mute); letter-spacing: 0.06em; text-transform: uppercase;
}
.sv-trust-badge strong { color: var(--c-ink); font-weight: 700; font-size: 13.5px; font-family: var(--f-sans); letter-spacing: 0; text-transform: none; }
.sv-trust-badge svg { width: 18px; height: 18px; color: var(--c-blue); }

/* ANATOMY WALKTHROUGH — sticky tekening links, scrollende content rechts */
.sv-anatomy {
  background: var(--c-paper); padding: clamp(70px, 9vw, 120px) clamp(24px, 5vw, 80px);
}
.sv-anatomy-head { max-width: var(--container); margin: 0 auto 44px; }
.sv-anatomy-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: start;
}
.sv-anatomy-sticky {
  position: sticky; top: calc(var(--nav-h) + 32px);
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: 32px;
  aspect-ratio: 4/3;
}
.sv-anatomy-sticky-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px dashed var(--c-line);
  margin-bottom: 16px;
  font-family: var(--f-mono); font-size: 10.5px; color: var(--c-text-mute); letter-spacing: 0.08em;
}
.sv-anatomy-sticky-svg {
  position: relative; height: calc(100% - 80px); color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
}
.sv-anatomy-sticky-svg svg { width: 100%; height: 100%; }
.sv-anatomy-callout {
  position: absolute; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-yellow); color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 800; font-size: 13px;
  box-shadow: 0 4px 12px rgba(251,191,36,.4);
}
.sv-anatomy-items > article {
  padding: 32px 0; border-bottom: 1px dashed var(--c-line);
}
.sv-anatomy-items > article:last-child { border-bottom: none; }
.sv-anatomy-items .nr {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; color: var(--c-yellow-deep);
  font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 10px; text-transform: uppercase;
}
.sv-anatomy-items .nr::before {
  content: attr(data-n); width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-yellow); color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 800; font-size: 13px;
}
.sv-anatomy-items h3 { font-size: 1.45em; color: var(--c-ink); margin: 0 0 10px; }
.sv-anatomy-items p { font-size: 15.5px; line-height: 1.7; color: var(--c-text-soft); margin: 0 0 12px; }
.sv-anatomy-items ul { padding: 0; margin: 0 0 14px; list-style: none; }
.sv-anatomy-items ul li { display: flex; gap: 10px; padding: 5px 0; font-size: 14px; color: var(--c-text-soft); }
.sv-anatomy-items ul li::before { content: '✓'; color: var(--c-ok); font-weight: 800; flex-shrink: 0; }
.sv-anatomy-items .scale { display: inline-block; font-family: var(--f-mono); font-size: 11px; color: var(--c-blue); background: var(--c-blue-tint); padding: 4px 10px; border-radius: 4px; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .sv-anatomy-grid { grid-template-columns: 1fr; }
  .sv-anatomy-sticky { position: relative; top: 0; aspect-ratio: 4/3; max-width: 540px; margin: 0 auto; }
}

/* 3 PAKKETTEN — pricing */
.sv-pricing-head { max-width: var(--container); margin: 0 auto 40px; text-align: center; }
.sv-pricing-head h2 { margin: 0 auto 14px; max-width: 22ch; }
.sv-pricing-head .lead { margin: 0 auto; }
.sv-pricing-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 14px;
  align-items: stretch;
}
.sv-tier {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease-out);
}
.sv-tier:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -22px rgba(26,58,142,.18); }
.sv-tier.featured { background: var(--c-ink); color: #fff; border: none; position: relative; transform: scale(1.02); }
.sv-tier.featured:hover { transform: scale(1.02) translateY(-3px); }
.sv-tier.featured::before {
  content: 'MEEST GEKOZEN'; position: absolute; top: 16px; right: 16px;
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 700;
  background: var(--c-yellow); color: var(--c-ink);
  padding: 5px 9px; border-radius: 4px; letter-spacing: 0.08em;
}
.sv-tier-name { font-family: var(--f-mono); font-size: 11px; color: var(--c-yellow-deep); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.sv-tier.featured .sv-tier-name { color: var(--c-yellow); }
.sv-tier h3 { color: var(--c-ink); font-size: 1.6em; margin: 0 0 12px; }
.sv-tier.featured h3 { color: #fff; }
.sv-tier .price-block { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.sv-tier .price-currency { color: var(--c-text-mute); font-size: 16px; font-weight: 700; }
.sv-tier.featured .price-currency { color: rgba(255,255,255,.55); }
.sv-tier .price { font-size: 3em; font-weight: 800; color: var(--c-ink); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.sv-tier.featured .price { color: var(--c-yellow); }
.sv-tier .price-meta { font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute); margin-bottom: 24px; }
.sv-tier.featured .price-meta { color: rgba(255,255,255,.5); }
.sv-tier ul { list-style: none; padding: 0; margin: 0 0 26px; }
.sv-tier ul li { display: flex; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--c-text-soft); align-items: flex-start; border-bottom: 1px dotted var(--c-line-soft); }
.sv-tier.featured ul li { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.08); }
.sv-tier ul li::before { content: '✓'; color: var(--c-ok); font-weight: 800; flex-shrink: 0; }
.sv-tier.featured ul li::before { color: var(--c-yellow); }
.sv-tier ul li.x { color: var(--c-text-mute); text-decoration: line-through; }
.sv-tier ul li.x::before { content: '×'; color: var(--c-text-mute); text-decoration: none; }
.sv-tier-cta { margin-top: auto; display: flex; justify-content: center; }
.sv-tier-cta .btn { width: 100%; justify-content: center; }

/* SAMPLE DOWNLOAD CTA */
.sv-sample-cta {
  background: linear-gradient(135deg, var(--c-yellow-tint), #fde68a);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  align-items: center;
}
.sv-sample-cta h3 { color: var(--c-ink); font-size: 1.8em; margin: 0 0 12px; }
.sv-sample-cta p { color: var(--c-text); font-size: 15.5px; line-height: 1.6; margin: 0 0 18px; max-width: 50ch; }
.sv-sample-cta-thumb {
  background: #fff; padding: 16px;
  border-radius: var(--r-md); aspect-ratio: 4/3;
  box-shadow: 0 20px 40px -16px rgba(146,64,14,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
}
.sv-sample-cta-thumb svg { width: 90%; height: 90%; opacity: 0.7; }

/* VOOR WELK TYPE */
.sv-types-grid {
  max-width: var(--container); margin: 30px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.sv-type-mini {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  color: inherit;
  transition: all 0.2s var(--ease-out);
}
.sv-type-mini:hover { border-color: var(--c-blue); background: var(--c-paper); }
.sv-type-mini svg { width: 24px; height: 24px; color: var(--c-blue); flex-shrink: 0; }
.sv-type-mini strong { display: block; color: var(--c-ink); font-size: 14px; }
.sv-type-mini span { font-family: var(--f-mono); font-size: 11px; color: var(--c-yellow-deep); }

/* WIJ VS GOEDKOOP */
.sv-vs { max-width: 1080px; margin: 30px auto 0; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 24px 60px -28px rgba(10,26,77,.18); }
.sv-vs-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  border-bottom: 1px solid var(--c-line-soft);
}
.sv-vs-row:last-child { border-bottom: none; }
.sv-vs-row.head { background: linear-gradient(180deg, var(--c-ink), #1e2d6b); color: #fff; }
.sv-vs-row.head > div { padding: 22px; font-weight: 700; font-size: 14px; }
.sv-vs-row.head .you { background: var(--c-blue); color: var(--c-yellow); text-align: center; }
.sv-vs-row.head .them { text-align: center; color: rgba(255,255,255,.65); font-family: var(--f-mono); font-size: 13px; }
.sv-vs-row > div { padding: 18px 22px; font-size: 14.5px; }
.sv-vs-row .feature { color: var(--c-text-soft); }
.sv-vs-row .you { text-align: center; background: rgba(26,58,142,.02); border-left: 1px solid var(--c-line-soft); border-right: 1px solid var(--c-line-soft); color: var(--c-ink); font-weight: 600; }
.sv-vs-row .them { text-align: center; color: var(--c-text-mute); font-size: 13.5px; }
.sv-vs-row .you .v { color: var(--c-ok); font-weight: 800; margin-right: 4px; }
.sv-vs-row .them .x { color: var(--c-danger); font-weight: 800; margin-right: 4px; }

/* PROCESS 5 dagen */
.sv-proc { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 30px; position: relative; }
.sv-proc::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background-image: linear-gradient(90deg, var(--c-yellow) 0, var(--c-yellow) 6px, transparent 6px, transparent 14px);
  background-size: 14px 2px; opacity: 0.4;
}
.sv-proc-step {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 18px 16px; text-align: center; position: relative; z-index: 1;
}
.sv-proc-day {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-ink); color: var(--c-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 800; font-size: 11px;
  margin: -40px auto 12px;
  border: 4px solid var(--c-paper);
  line-height: 1;
}
.sv-proc-step h4 { color: var(--c-ink); font-size: 14.5px; margin-bottom: 6px; }
.sv-proc-step p { color: var(--c-text-mute); font-size: 12.5px; line-height: 1.45; margin: 0; }

/* ================================================================
   FAQ — gedeeld
   ================================================================ */
.faq-grid { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 30px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; transition: all 0.2s var(--ease-out); }
.faq-item[open] { border-color: var(--c-blue); box-shadow: 0 6px 20px -8px rgba(26,58,142,.15); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; padding-right: 56px; position: relative; color: var(--c-ink); font-weight: 600; font-size: 15.5px; display: flex; gap: 14px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; color: var(--c-yellow-deep); padding: 4px 9px; background: var(--c-yellow-tint); border-radius: 4px; flex-shrink: 0; }
.faq-item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--c-blue); font-size: 22px; font-weight: 600; line-height: 1; transition: transform 0.25s var(--ease-out); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item div { padding: 0 24px 22px 70px; }
.faq-item div p { margin: 0; color: var(--c-text-soft); font-size: 14.5px; line-height: 1.7; }

/* ================================================================
   MOCKUP NAV — alleen voor preview
   ================================================================ */
.mockup-nav {
  position: fixed; bottom: 16px; right: 16px; z-index: 999;
  background: var(--c-ink); color: #fff;
  padding: 8px; border-radius: var(--r-md);
  box-shadow: 0 20px 40px -16px rgba(10,26,77,.5);
  display: flex; gap: 4px;
  font-family: var(--f-mono); font-size: 11px;
}
.mockup-nav a { display: inline-block; padding: 6px 12px; color: rgba(255,255,255,.7); border-radius: 4px; transition: all 0.2s var(--ease-out); }
.mockup-nav a:hover { color: var(--c-yellow); background: rgba(255,255,255,.05); }
.mockup-nav a.current { background: var(--c-yellow); color: var(--c-ink); font-weight: 700; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hp-pillars-grid, .vb-variants, .vb-info, .sv-pricing-grid { grid-template-columns: 1fr; }
  .vb-compare-panes { grid-template-columns: 1fr; }
  .hp-pillars-head, .hp-portfolio-head, .hp-testi-head { display: block; }
  .hp-werk-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hp-werk-grid::before { display: none; }
  .hp-types-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-type.featured { grid-column: span 3; }
  .hp-portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .hp-case.lg, .hp-case.md { grid-column: span 2; }
  .hp-locaties-grid { grid-template-columns: 1fr; }
  .hp-testi-grid { grid-template-columns: 1fr; }
  .hp-cta-grid { grid-template-columns: 1fr; }
  .vb-content-wrap { grid-template-columns: 1fr; }
  .vb-side { display: none; }
  .vb-anatomy { grid-template-columns: 1fr; }
  .vb-quickfacts { grid-template-columns: 1fr 1fr; }
  .vb-calc { grid-template-columns: 1fr; }
  .vb-stad-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .vb-stad-row > div:nth-child(n+4) { display: none; }
  .vb-case-gallery { grid-template-columns: 1fr 1fr; }
  .vb-case-img:first-child { grid-row: span 1; grid-column: span 2; }
  .sv-sample-cta { grid-template-columns: 1fr; }
  .sv-vs-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .sv-vs-row > div { padding: 14px 16px; font-size: 13px; }
  .sv-types-grid { grid-template-columns: 1fr 1fr; }
  .sv-proc { grid-template-columns: 1fr 1fr; }
  .sv-proc::before { display: none; }
  .vb-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hp-hero-text h1 { font-size: 2.4em; }
  .hp-types-grid { grid-template-columns: 1fr 1fr; }
  .hp-type.featured { grid-column: span 2; }
  .hp-portfolio-grid { grid-template-columns: 1fr; }
  .hp-case.lg, .hp-case.md, .hp-case.tall { grid-column: span 1; grid-row: span 1; }
  .hp-werk-grid { grid-template-columns: 1fr; }
  .vb-quickfacts { grid-template-columns: 1fr; }
  .vb-stad-row { grid-template-columns: 1fr 1fr; }
  .vb-stad-row > div:nth-child(n+3) { display: none; }
  .sv-types-grid, .sv-proc { grid-template-columns: 1fr; }
  .vb-related-grid { grid-template-columns: 1fr; }
}

/* tp-lang toggle */
.tp-lang{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:34px;padding:0 10px;border:1.5px solid var(--c-line);border-radius:8px;font-family:var(--f-mono,monospace);font-size:.78rem;font-weight:700;color:var(--c-blue);text-decoration:none;letter-spacing:.04em;transition:all .15s;margin-right:6px}
.tp-lang:hover{background:var(--c-blue);color:#fff;border-color:var(--c-blue)}
@media(max-width:980px){.tp-menu-cta .tp-lang{margin-bottom:10px}}

/* tp-blueprint-merged */
/* ================================================================
   TEKENPUNT — BLUEPRINT-VERRIJKING voor witte secties
   Subtiele architect-details: grid, linialen, dimensie-lijnen,
   kompas, plan-nummers, corner-markers. Laadt NA tp-style.css.
   ================================================================ */

/* ---- 1. Subtiele blueprint-grid op lichte secties ---- */
.hp-pillars, .hp-werk, .hp-types, .hp-portfolio, .hp-locaties, .hp-testi, .hp-why,
.sv-anatomy, .vb-related, .vb-content-wrap,
.sect-white, .sect-paper {
  position: relative;
}
.hp-pillars::after, .hp-werk::after, .hp-types::after, .hp-portfolio::after,
.hp-locaties::after, .hp-testi::after, .hp-why::after,
.sv-anatomy::after, .vb-related::after, .vb-content-wrap::after,
.sect-white::after, .sect-paper::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,58,142,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,142,.028) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 18%, transparent 78%);
          mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 18%, transparent 78%);
}
/* content boven de grid */
.hp-pillars > *, .hp-werk > *, .hp-types > *, .hp-portfolio > *,
.hp-locaties > *, .hp-testi > *, .hp-why > *,
.sv-anatomy > *, .vb-related > *, .vb-content-wrap > *,
.sect-white > *, .sect-paper > * { position: relative; z-index: 1; }
/* Sticky zijbalk niet platslaan: de > * regel hierboven zou .vb-side op
   position:relative zetten (gelijke specificiteit, blueprint laadt later).
   Twee classes wint en geeft de sticky-scroll terug. */
.vb-content-wrap > .vb-side { position: sticky; }

/* ---- 2. Drijvende architect-decoraties (subtiel) ---- */
.bp-deco { position: relative; }
.bp-deco::before {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  background-repeat: no-repeat; background-size: contain; opacity: .34;
}

/* Liniaal (SCALE 1:100) — rechtsboven */
.bp-ruler::before {
  top: 40px; right: 5%; width: 184px; height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 184 24' fill='none' stroke='%231a3a8e' stroke-width='1'><line x1='2' y1='8' x2='182' y2='8'/><line x1='12' y1='4' x2='12' y2='12'/><line x1='32' y1='4' x2='32' y2='12'/><line x1='52' y1='4' x2='52' y2='12'/><line x1='72' y1='2' x2='72' y2='14'/><line x1='92' y1='4' x2='92' y2='12'/><line x1='112' y1='4' x2='112' y2='12'/><line x1='132' y1='4' x2='132' y2='12'/><line x1='152' y1='2' x2='152' y2='14'/><line x1='172' y1='4' x2='172' y2='12'/><text x='92' y='22' fill='%231a3a8e' font-family='monospace' font-size='8' text-anchor='middle'>SCALE 1:100</text></svg>");
}
/* Kompas — rechtsboven */
.bp-compass::before {
  top: 48px; right: 4%; width: 58px; height: 58px; opacity: .3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none' stroke='%231a3a8e' stroke-width='1'><circle cx='30' cy='30' r='22'/><line x1='30' y1='8' x2='30' y2='52'/><line x1='8' y1='30' x2='52' y2='30'/><polygon points='30,12 26,20 30,17 34,20' fill='%231a3a8e'/><text x='30' y='7' text-anchor='middle' fill='%231a3a8e' font-family='monospace' font-size='6' font-weight='bold'>N</text></svg>");
}
/* Dimensie-lijn (mm) — linksboven */
.bp-dim::before {
  top: 56px; left: 5%; width: 200px; height: 16px; opacity: .3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16' fill='none' stroke='%231a3a8e' stroke-width='1'><line x1='5' y1='8' x2='195' y2='8' stroke-dasharray='3 3'/><polygon points='5,8 12,4 12,12' fill='%231a3a8e'/><polygon points='195,8 188,4 188,12' fill='%231a3a8e'/><text x='100' y='6' fill='%231a3a8e' font-family='monospace' font-size='8' text-anchor='middle'>2840 mm</text></svg>");
}
/* Gebouw-façade lijntekening — rechtsonder, heel licht */
.bp-facade::before {
  bottom: 50px; right: -40px; width: 260px; height: 90px; opacity: .12;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 80' fill='none' stroke='%231a3a8e' stroke-width='1'><rect x='10' y='15' width='80' height='55'/><polygon points='10,15 50,5 90,15'/><rect x='25' y='30' width='12' height='15'/><rect x='45' y='30' width='15' height='15'/><rect x='65' y='30' width='12' height='15'/><rect x='25' y='50' width='12' height='18'/><rect x='65' y='50' width='12' height='18'/><circle cx='120' cy='40' r='3'/><line x1='120' y1='40' x2='200' y2='40' stroke-dasharray='2 2'/><text x='160' y='35' fill='%231a3a8e' font-family='monospace' font-size='7' text-anchor='middle'>FACADE A-A</text></svg>");
}

/* Plan-nummer label drijvend (rechtsonder) */
.bp-plannum { position: relative; }
.bp-plannum::after {
  content: attr(data-plan); position: absolute; bottom: 44px; right: 5%;
  font-family: var(--f-mono); font-size: 10px; color: rgba(26,58,142,.32);
  padding: 7px 13px; border: 1px dashed rgba(26,58,142,.28);
  letter-spacing: .1em; pointer-events: none; z-index: 0;
  background: rgba(255,255,255,.45); backdrop-filter: blur(2px);
}

/* ---- 3. Corner-markers (gele L) op section-headers ---- */
.bp-corners { position: relative; }
.bp-corners::before, .bp-corners::after {
  content: ''; position: absolute; width: 22px; height: 22px;
  pointer-events: none; opacity: .55; z-index: 1;
}
.bp-corners::before {
  top: 8px; left: -14px;
  border-top: 1.5px solid var(--c-yellow); border-left: 1.5px solid var(--c-yellow);
}
.bp-corners::after {
  top: 8px; right: -14px;
  border-top: 1.5px solid var(--c-yellow); border-right: 1.5px solid var(--c-yellow);
}

/* ---- 4. Dashed cutline onder een section-eyebrow ---- */
.bp-cutrule { position: relative; padding-bottom: 16px; }
.bp-cutrule::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 64px; height: 1px;
  background-image: linear-gradient(90deg, var(--c-yellow) 0, var(--c-yellow) 7px, transparent 7px, transparent 15px);
  background-size: 15px 1px; opacity: .5;
}

/* Op kleine schermen decoraties dempen om druk te vermijden */
@media (max-width: 760px) {
  .bp-ruler::before, .bp-compass::before, .bp-dim::before, .bp-facade::before, .bp-plannum::after { display: none; }
  .bp-corners::before, .bp-corners::after { display: none; }
}

/* tp-no-hscroll */
html{overflow-x:clip}
body{overflow-x:clip}


/* tp-legal-cookiebar */
.tp-foot-legal{max-width:var(--container,1120px);margin:0 auto;padding:16px 24px 0;display:flex;flex-wrap:wrap;gap:8px 22px;font-size:.82rem}
.tp-foot-legal a{color:rgba(255,255,255,.6);text-decoration:none}
.tp-foot-legal a:hover{color:#fff;text-decoration:underline}
.tp-cookiebar{position:fixed;left:0;right:0;bottom:0;z-index:200;background:var(--c-ink,#0a1a4d);color:#fff;box-shadow:0 -8px 30px -16px rgba(0,0,0,.5)}
.tp-cookiebar-in{max-width:var(--container,1120px);margin:0 auto;padding:16px 24px;display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:space-between}
.tp-cookiebar p{margin:0;font-size:.85rem;line-height:1.5;max-width:760px;color:rgba(255,255,255,.92)}
.tp-cookiebar a{color:var(--c-yellow,#fbbf24)}
.tp-cookiebar-btns{display:flex;gap:10px;flex-shrink:0}
.tp-cookiebar-btns button{font:inherit;font-size:.85rem;font-weight:700;padding:10px 16px;border-radius:8px;cursor:pointer;border:1.5px solid rgba(255,255,255,.4);background:transparent;color:#fff}
.tp-cookiebar-btns .tp-ck-all{background:var(--c-yellow,#fbbf24);color:var(--c-ink,#0a1a4d);border-color:var(--c-yellow,#fbbf24)}
@media(max-width:640px){.tp-cookiebar-in{flex-direction:column;align-items:flex-start;gap:12px}.tp-cookiebar-btns{width:100%}.tp-cookiebar-btns button{flex:1}}
