@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');
/* ============================================
   PARETO AT WORK — Redesign v3
   Circle8-inspired: fresh, white, rounded, human
   Deep navy ink + warm amber accent + Manrope display
   ============================================ */

:root {
  --black: #0a1626;
  --white: #ffffff;
  --off-white: #F4F7FB;
  --grey-100: #EEF2F7;
  --grey-200: #E2E8F1;
  --grey-300: #C6D0DE;
  --grey-500: #74819A;
  --grey-600: #50607A;
  --grey-700: #36455F;
  --grey-800: #1E2E48;
  --grey-900: #13263F;
  --navy: #0E1F36;
  --accent: #E0312A;
  --accent-light: #F24A3E;
  --accent-dark: #BC241E;
  --accent-subtle: rgba(224, 49, 42, 0.07);
  --accent-border: rgba(224, 49, 42, 0.28);
  --accent-wash: #FFF1F0;
  --bg-tint: #E7F1EA;
  --bg-tint-deep: #D2E4D8;
  --mint: #E7F1EA;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --nav-h: 80px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(16,38,63,0.05), 0 2px 6px rgba(16,38,63,0.06);
  --shadow-md: 0 4px 10px rgba(16,38,63,0.06), 0 12px 28px rgba(16,38,63,0.08);
  --shadow-lg: 0 10px 24px rgba(16,38,63,0.08), 0 26px 60px rgba(16,38,63,0.10);
  --shadow-xl: 0 16px 36px rgba(16,38,63,0.10), 0 40px 80px rgba(16,38,63,0.12);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Language --- */
.en { display: none !important; }
body.lang-en .nl { display: none !important; }
body.lang-en .en { display: revert !important; }

/* --- Typography — Uber-bold --- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { font-size: clamp(1rem, 1.1vw, 1.1rem); }

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-dark .label { color: var(--accent-light); }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(80px, 12vw, 140px) 0; }

.section-dark { background: var(--grey-900); color: var(--white); }
.section-light { background: var(--white); color: var(--grey-900); }
.section-grey { background: var(--off-white); color: var(--grey-900); }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 9px; }
.nav-logo::before {
  content: '';
  width: 24px; height: 24px;
  background: url('../assets/logo-mark-white.svg') center / contain no-repeat;
  flex-shrink: 0;
}
.footer-brand .nav-logo { font-size: 1.05rem; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--grey-300);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  background: none;
  border: 1px solid var(--grey-700);
  color: var(--grey-300);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  letter-spacing: 0.05em;
}
.lang-switch:hover { border-color: var(--white); color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer; border: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}
.btn-primary:hover { background: var(--grey-100); transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--grey-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-outline-dark { background: transparent; color: var(--grey-900); border: 1.5px solid var(--grey-300); }
.btn-outline-dark:hover { border-color: var(--grey-900); background: var(--grey-900); color: var(--white); transform: translateY(-1px); }

.btn-ghost { background: none; color: var(--grey-900); padding: 8px 0; border-radius: 0; font-weight: 600; border-bottom: 2px solid var(--accent); }
.btn-ghost:hover { color: var(--accent); }

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero h1 { margin-bottom: 28px; }
.hero p { font-size: clamp(1.05rem, 1.5vw, 1.15rem); color: var(--grey-300); margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(20%);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--black) 0%, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.2) 70%);
}

/* --- Image Section --- */
.img-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.img-section-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 6vw, 80px);
}
.img-section-content h2 { margin-bottom: 20px; }
.img-section-content p { color: var(--grey-600); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; }
.section-dark .img-section-content p { color: var(--grey-300); }
.img-section-visual {
  overflow: hidden;
  min-height: 400px;
}
.img-section-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-dark {
  background: var(--grey-900);
  border-color: rgba(255,255,255,0.06);
  color: var(--white);
}
.card-dark:hover { background: var(--grey-800); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.card-dark p { color: var(--grey-300); }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--grey-500); font-size: 0.95rem; line-height: 1.65; }
.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 32px; height: 32px; }

/* --- Niklas Contact Strip --- */
.niklas-strip {
  background: var(--black);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
.niklas-strip a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.niklas-strip a:hover { color: var(--accent-light); }
.niklas-strip span { margin: 0 16px; color: var(--grey-500); }

/* --- Highlight / Feature Block --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
}
.feature-block-content {
  padding: clamp(32px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
}
.feature-block-content h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.feature-block-content p { color: var(--grey-600); line-height: 1.75; }
.feature-block-image { min-height: 320px; overflow: hidden; }
.feature-block-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  padding: 60px 0;
}
.stat { text-align: center; }
.stat-number { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.85rem; color: var(--grey-500); margin-top: 8px; font-weight: 500; }
.section-dark .stat-label { color: var(--grey-300); }

/* --- Quote --- */
.quote-block { max-width: 700px; margin: 0 auto; text-align: center; }
.quote-block blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.quote-author { font-weight: 700; font-size: 0.95rem; }
.quote-role { color: var(--grey-500); font-size: 0.85rem; }
.section-dark .quote-role { color: var(--grey-300); }

/* --- CTA Section --- */
.cta-section,
.cta-banner {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
}
.cta-section h2, .cta-banner h2 { margin-bottom: 20px; }
.cta-section p, .cta-banner p { color: var(--grey-300); margin-bottom: 44px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions,
.cta-banner .hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- Niklas Personal CTA --- */
.niklas-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}
.niklas-cta:hover { box-shadow: var(--shadow-md); }
.niklas-cta-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--grey-200);
  background: var(--grey-200);
}
.niklas-cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.niklas-cta-text h4 { margin-bottom: 4px; font-size: 1rem; }
.niklas-cta-text p { color: var(--grey-500); font-size: 0.875rem; margin-bottom: 16px; line-height: 1.65; }
.niklas-cta-links { display: flex; gap: 24px; font-size: 0.85rem; font-weight: 600; }
.niklas-cta-links a {
  color: var(--grey-900);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--accent);
  transition: all var(--transition);
}
.niklas-cta-links a:hover { color: var(--accent); }

/* dark variant */
.niklas-cta-dark {
  background: var(--grey-900);
  color: var(--white);
  border-color: rgba(255,255,255,0.06);
}
.niklas-cta-dark p { color: var(--grey-300); }
.niklas-cta-dark .niklas-cta-links a { color: var(--white); }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-number {
  font-size: 5rem; font-weight: 800;
  line-height: 1; letter-spacing: -0.04em;
  color: var(--accent-border);
  margin-bottom: 16px;
}
.section-dark .step-number { color: rgba(224, 49, 42, 0.13); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--grey-500); font-size: 0.95rem; line-height: 1.65; }
.section-dark .step p { color: var(--grey-300); }

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--grey-300);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand { max-width: 320px; }
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; color: var(--grey-500); }
.footer h4 {
  color: var(--grey-300);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links a {
  display: block;
  font-size: 0.875rem;
  padding: 6px 0;
  transition: color var(--transition);
  color: var(--grey-500);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--grey-600);
}

/* --- Page Header --- */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}
.page-header p { margin-top: 16px; max-width: 520px; }
.page-header.centered { text-align: center; }
.page-header.centered p { margin-left: auto; margin-right: auto; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--white);
  color: var(--grey-900);
  transition: border-color var(--transition);
}
.form-input:focus { outline: none; border-color: var(--accent); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* --- Blog Cards --- */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card-img {
  height: 220px;
  background: var(--grey-900);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img svg { width: 48px; height: 48px; color: var(--grey-500); }
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.75rem; color: var(--grey-500); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.blog-card h3 a:hover { opacity: 0.6; }
.blog-card p { color: var(--grey-500); font-size: 0.9rem; }

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Case Study Cards --- */
.case-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 36px;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.case-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.case-card-sector { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-500); margin-bottom: 12px; }
.case-card h3 { margin-bottom: 16px; }
.case-card blockquote {
  font-style: italic; color: var(--grey-600); font-size: 0.95rem;
  margin-bottom: 24px; padding-left: 16px; border-left: 3px solid var(--accent);
  flex: 1; line-height: 1.65;
}
.case-card-result { display: flex; gap: 24px; padding-top: 24px; border-top: 1px solid var(--grey-200); }
.case-card-stat { text-align: center; }
.case-card-stat strong { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.case-card-stat span { font-size: 0.75rem; color: var(--grey-500); }

/* --- Case Detail --- */
.case-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.case-detail-content h3 { margin-top: 40px; margin-bottom: 16px; }
.case-detail-content p { margin-bottom: 16px; line-height: 1.8; color: var(--grey-600); }
.case-detail-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.metric-card {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 12px;
  text-align: center;
}
.metric-card strong { display: block; font-size: 2rem; font-weight: 800; }
.metric-card span { font-size: 0.85rem; color: var(--grey-500); }

/* --- Blog Post --- */
.post-header { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 40px; text-align: center; }
.post-meta { display: flex; justify-content: center; gap: 24px; margin-top: 16px; font-size: 0.9rem; color: var(--grey-300); }
.post-content { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }
.post-content p { margin-bottom: 20px; line-height: 1.85; font-size: 1.05rem; }
.post-content h2 { margin-top: 48px; margin-bottom: 20px; font-size: 1.6rem; }
.post-content h3 { margin-top: 36px; margin-bottom: 16px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; list-style: disc; line-height: 1.7; }
.post-content blockquote { border-left: 3px solid var(--accent); padding: 16px 24px; margin: 32px 0; background: var(--off-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }

/* --- Voordelen --- */
.voordeel-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 24px;
  background: var(--off-white);
}
.voordeel-block:nth-child(even) { direction: rtl; }
.voordeel-block:nth-child(even) > * { direction: ltr; }
.voordeel-text { padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.voordeel-text h3 { font-size: 1.5rem; margin-bottom: 16px; }
.voordeel-text p { color: var(--grey-600); line-height: 1.75; margin-bottom: 16px; }
.voordeel-visual { overflow: hidden; min-height: 320px; }
.voordeel-visual img { width: 100%; height: 100%; object-fit: cover; }
.voordeel-list { margin-top: 12px; }
.voordeel-list li { padding: 6px 0 6px 24px; position: relative; font-size: 0.95rem; color: var(--grey-600); }
.voordeel-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--grey-200); padding: 24px 0; }
.section-dark .faq-item { border-color: var(--grey-800); }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.05rem; gap: 16px; }
.faq-question::after { content: '+'; font-size: 1.5rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-top: 16px; color: var(--grey-600); line-height: 1.7; }
.section-dark .faq-answer p { color: var(--grey-300); }

/* --- Timeline --- */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline::before { display: none; }
.timeline-item { padding-left: 0; padding-bottom: 48px; display: grid; grid-template-columns: 60px 1fr; gap: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--white);
}
.section-dark .timeline-dot { background: var(--white); color: var(--black); }
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { color: var(--grey-500); line-height: 1.7; }
.section-dark .timeline-item p { color: var(--grey-300); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { margin-bottom: 2px; }
.contact-info-item p { font-size: 0.9rem; color: var(--grey-500); }
.contact-info-item a { color: var(--grey-900); font-weight: 600; }
.contact-info-item a:hover { text-decoration: underline; }

/* --- Ecosystem Visual --- */
.eco-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.06); }
.eco-item { padding: 40px; background: var(--grey-900); transition: background var(--transition); }
.eco-item:hover { background: var(--grey-800); }
.eco-item h4 { color: var(--white); margin-bottom: 8px; }
.eco-item p { color: var(--grey-300); font-size: 0.875rem; line-height: 1.7; }

/* --- Scope Table (sector pages) --- */
.scope-table-wrapper { margin-top: 48px; }
.scope-table-wrapper h3 { margin-bottom: 24px; }
.scope-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.9rem;
}
.scope-table thead { background: var(--black); color: var(--white); }
.scope-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.scope-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-700);
  line-height: 1.5;
}
.scope-table tbody tr:last-child td { border-bottom: none; }
.scope-table tbody tr:nth-child(even) { background: var(--off-white); }
.scope-table tbody tr:hover { background: var(--accent-subtle); }
.scope-table .scope-check { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.scope-table-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--grey-500);
  font-style: italic;
}

/* --- Mobile Nav --- */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); }

/* --- Responsive — Tablet --- */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .img-section, .voordeel-block, .feature-block { grid-template-columns: 1fr; }
  .voordeel-block:nth-child(even) { direction: ltr; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .case-detail-grid { grid-template-columns: 1fr; }
  .case-detail-sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 32px; }
}

/* --- Responsive — Mobile --- */
@media (max-width: 768px) {
  /* --- Nav mobile --- */
  .navbar { height: 60px; }
  :root { --nav-h: 60px; }
  .nav-logo { font-size: 1rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-800);
    width: 100%;
    font-size: 1rem;
    color: var(--white);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .lang-switch { padding: 5px 10px; font-size: 0.7rem; }

  /* --- Global spacing reduction --- */
  section { padding: clamp(48px, 8vw, 80px) 0; }
  .container { padding: 0 16px; }
  .container-narrow { padding: 0 16px; }

  /* --- Typography tighter on mobile --- */
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  p { word-break: break-word; overflow-wrap: break-word; hyphens: auto; }

  /* --- Hero --- */
  .hero { min-height: auto; padding-top: calc(60px + 40px); padding-bottom: 48px; }
  .hero p { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions, .cta-actions, .cta-banner .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn, .cta-actions .btn, .cta-banner .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 24px; }

  /* --- Page header --- */
  .page-header { padding-top: calc(60px + 48px); padding-bottom: 48px; }
  body[class*="track-"] .page-header { padding-top: calc(60px + 40px + 48px); }

  /* --- Grids --- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }

  /* --- Cards --- */
  .card { padding: 24px; }
  .card-dark { padding: 24px; }

  /* --- img-section --- */
  .img-section-visual { min-height: 240px; }
  .img-section-content { padding: 32px 16px; }

  /* --- Feature block --- */
  .feature-block-content { padding: 24px 16px; }
  .feature-block-image { min-height: 200px; }

  /* --- Niklas strip --- */
  .niklas-strip { padding: 16px 12px; font-size: 0.8rem; line-height: 1.6; }
  .niklas-strip span { display: block; margin: 4px 0; }
  .niklas-strip a { display: inline-block; }

  /* --- Niklas CTA --- */
  .niklas-cta { flex-direction: column; text-align: center; padding: 28px 20px; gap: 20px; }
  .niklas-cta-photo { width: 64px; height: 64px; }
  .niklas-cta-links { justify-content: center; flex-direction: column; gap: 8px; font-size: 0.85rem; }

  /* --- Stats --- */
  .stats-row { gap: 20px; padding: 32px 0; }
  .stat-number { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .stat-label { font-size: 0.75rem; }

  /* --- Eco grid --- */
  .eco-grid { grid-template-columns: 1fr; gap: 1px; }
  .eco-item { padding: 28px 20px; }

  /* --- Voordelen --- */
  .voordeel-text { padding: 24px 16px; }
  .voordeel-visual { min-height: 200px; }
  .voordeel-text h3 { font-size: 1.25rem; }

  /* --- Steps --- */
  .step-number { font-size: 3.5rem; margin-bottom: 8px; }

  /* --- Blog cards --- */
  .blog-card-img { height: 180px; }
  .blog-card-body { padding: 20px; }
  .blog-card-meta { gap: 10px; }

  /* --- Case cards --- */
  .case-card { padding: 24px; }
  .case-card-result { flex-wrap: wrap; gap: 16px; }

  /* --- Case detail --- */
  .case-detail-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .metric-card { padding: 16px; }
  .metric-card strong { font-size: 1.5rem; }

  /* --- Blog post --- */
  .post-header { padding-top: calc(60px + 48px); padding-bottom: 28px; }
  .post-meta { flex-direction: column; gap: 8px; }
  .post-content { padding: 32px 16px 48px; }
  .post-content p { font-size: 1rem; }
  .post-content h2 { font-size: 1.3rem; margin-top: 32px; }

  /* --- Timeline --- */
  .timeline-item { grid-template-columns: 40px 1fr; gap: 12px; }
  .timeline-dot { width: 40px; height: 40px; font-size: 0.8rem; }

  /* --- Contact --- */
  .contact-info-item { gap: 12px; }

  /* --- Forms --- */
  .form-input { padding: 14px; font-size: 1rem; }

  /* --- CTA section --- */
  .cta-section, .cta-banner { padding: clamp(48px, 8vw, 80px) 0; }
  .cta-section p, .cta-banner p { font-size: 0.95rem; }

  /* --- Footer --- */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* --- Filter pills --- */
  .filter-pills { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; gap: 6px; }
  .filter-pill { flex-shrink: 0; padding: 6px 14px; font-size: 0.75rem; }

  /* --- Track / Sector --- */
  .track-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .track-card { padding: 16px 10px; }
  .track-card h4 { font-size: 0.85rem; }
  .track-card p { font-size: 0.7rem; }
  .track-card-icon { width: 32px; height: 32px; margin-bottom: 8px; }
  .sector-strip { font-size: 0.75rem; padding: 8px 12px; gap: 8px; }
  .track-badge { font-size: 0.6rem; padding: 2px 8px; margin-left: 4px; }
  body[class*="track-"] .hero { padding-top: calc(60px + 36px); }

  /* --- Sector highlight --- */
  .sector-highlight { padding: 20px 16px; }

  /* --- Scope table (sector pages) --- */
  .scope-table { font-size: 0.85rem; }
  .scope-table th, .scope-table td { padding: 10px 12px; }

  /* --- Quote --- */
  .quote-block blockquote { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  /* --- Section headers --- */
  .section-header { margin-bottom: 32px; }

  /* --- Over ons team photos --- */
  .grid-3.mt-48 { margin-top: 32px; }
  .grid-3.mt-48 > div [style*="width:140px"] {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 16px !important;
  }

  /* --- Over ons 80/20 block --- */
  [style*="font-size:5rem"] { font-size: 3rem !important; }
  [style*="padding:48px"] { padding: 24px 16px !important; }

  /* --- Grid gap overrides for inline styles --- */
  .grid-2[style*="gap:64px"] { gap: 32px !important; }
  .grid-2[style*="gap:80px"] { gap: 32px !important; }
  .grid-2[style*="gap:32px"] { gap: 16px !important; }

  /* --- Contact page overrides --- */
  [style*="font-size:1.5rem"] { font-size: 1.1rem !important; }
  #contact-form[style*="padding:40px"] { padding: 24px 16px !important; }
  [style*="padding:32px;background:var(--off-white)"] { padding: 20px 16px !important; }

  /* --- img-section content inline padding override --- */
  .img-section-content[style*="padding-left"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* --- Inline section padding overrides --- */
  section[style*="padding:clamp(60px"] { padding: 48px 0 !important; }
  section[style*="padding:clamp(40px"] { padding: 32px 0 !important; }

  /* --- Greenfield gap override --- */
  .grid-2[style*="gap:48px"] { gap: 24px !important; }

  /* --- Case studies card image overrides --- */
  [style*="margin:-36px -36px 24px -36px"] {
    margin: -24px -24px 16px -24px !important;
    height: 160px !important;
  }
  [style*="margin-bottom:48px"] { margin-bottom: 24px !important; }

  /* --- Scope table responsive --- */
  .scope-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .scope-table { min-width: 500px; }
}

/* --- Responsive — Extra small (< 400px) --- */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 12px 20px; font-size: 0.85rem; }
  .btn-sm { padding: 8px 16px; font-size: 0.75rem; }
  .track-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .track-card { padding: 12px 8px; }
  .track-card h4 { font-size: 0.8rem; }
  .track-card-icon { width: 28px; height: 28px; }
  .stats-row { flex-direction: column; align-items: center; gap: 16px; }
  .stat { width: 100%; }
  .case-detail-sidebar { grid-template-columns: 1fr; }
  .niklas-strip { font-size: 0.75rem; }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--grey-500); max-width: 560px; line-height: 1.7; font-size: 0.95rem; }
.section-dark .section-header p { color: var(--grey-300); }

/* ============================================
   HERO STATS BAR
   ============================================ */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 32px 24px;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
}
.hero-stat-number {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-align: center;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-700);
  flex-shrink: 0;
}

/* ============================================
   TRUST BAR (Partner Logos)
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 24px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.trust-bar-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-bar-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-500);
  white-space: nowrap;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-logo {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.01em;
  padding: 8px 20px;
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  background: var(--off-white);
  transition: all var(--transition);
}
.trust-logo:hover {
  border-color: var(--grey-300);
  box-shadow: var(--shadow-sm);
}
.trust-logo-muted {
  color: var(--grey-500);
  font-weight: 600;
  background: transparent;
  border-color: var(--grey-200);
}
.trust-bar-sep {
  width: 1px;
  height: 32px;
  background: var(--grey-200);
}

/* ============================================
   PAIN CARDS ("Herken je dit?")
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.pain-card:hover { transform: translateY(-3px); }
.pain-card:hover::before { opacity: 1; }
.pain-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(224, 49, 42, 0.13);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.pain-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.pain-card p {
  color: var(--grey-300);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ============================================
   SECTOR RICH CARDS (Four Disciplines)
   ============================================ */
.sector-rich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 32px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.sector-rich:hover { box-shadow: var(--shadow-lg); }
.sector-rich-reversed { direction: rtl; }
.sector-rich-reversed > * { direction: ltr; }

.sector-rich-content {
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sector-rich-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid var(--accent-border);
}
.sector-rich-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  margin-bottom: 14px;
  line-height: 1.2;
}
.sector-rich-content p {
  color: var(--grey-600);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.sector-rich-list {
  margin-bottom: 24px;
  padding: 0;
}
.sector-rich-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.85rem;
  color: var(--grey-700);
  line-height: 1.55;
  list-style: none;
}
.sector-rich-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.sector-rich-proof {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 24px;
}
.sector-proof-stat {
  text-align: center;
  flex: 1;
}
.sector-proof-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--grey-900);
}
.sector-proof-stat span {
  font-size: 0.65rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.sector-rich-visual {
  overflow: hidden;
  min-height: 400px;
}
.sector-rich-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PROOF BAR (Results Section)
   ============================================ */
.proof-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--grey-200);
  transition: background var(--transition);
}
.proof-stat:hover { background: var(--off-white); }
.proof-stat:last-child { border-right: none; }
.proof-stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--grey-900);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   QUOTE BLOCK (Social Proof)
   ============================================ */
.quote-block {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.4;
}
.quote-block blockquote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--grey-900);
  margin: 0;
  font-style: italic;
  letter-spacing: -0.01em;
}
.quote-author {
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 24px;
  color: var(--grey-900);
}
.quote-role {
  font-size: 0.75rem;
  color: var(--grey-500);
  margin-top: 4px;
}

/* ============================================
   REASON CARDS (Waarom Aansluiten)
   ============================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.reason-card {
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.reason-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.reason-card:hover {
  background: var(--grey-800);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.reason-card:hover::after { opacity: 1; }
.reason-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--accent-light);
}
.reason-icon svg { width: 100%; height: 100%; }
.reason-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.reason-card p {
  color: var(--grey-300);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* --- Mobile: Hero Stats --- */
@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 16px;
  }
  .hero-stat {
    width: 50%;
    padding: 10px 8px;
  }
  .hero-stat-number { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.6rem; }
  .hero-stat-divider { display: none; }
  .hero { padding-bottom: 100px; }
}

/* --- Mobile: Trust Bar --- */
@media (max-width: 768px) {
  .trust-bar-inner {
    flex-direction: column;
    gap: 12px;
  }
  .trust-bar-group { gap: 10px; }
  .trust-bar-logos { gap: 16px; }
  .trust-logo { font-size: 0.85rem; }
  .trust-bar-sep { width: 80px; height: 1px; }
}

/* --- Mobile: Pain Cards --- */
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .pain-card { padding: 28px 20px; }
  .pain-number { font-size: 2.5rem; }
}

/* --- Tablet: Sector Rich Cards --- */
@media (max-width: 1024px) {
  .sector-rich { grid-template-columns: 1fr; }
  .sector-rich-reversed { direction: ltr; }
  .sector-rich-visual { min-height: 280px; }
}
/* --- Mobile: Sector Rich Cards --- */
@media (max-width: 768px) {
  .sector-rich-content { padding: 24px 16px; }
  .sector-rich-visual { min-height: 220px; }
  .sector-rich-proof { gap: 12px; }
  .sector-proof-stat strong { font-size: 1.1rem; }
}

/* --- Mobile: Proof Bar --- */
@media (max-width: 768px) {
  .proof-bar { flex-direction: column; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--grey-200); padding: 24px 16px; }
  .proof-stat:last-child { border-bottom: none; }
}

/* --- Mobile: Reason Cards --- */
@media (max-width: 768px) {
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card { padding: 28px 20px; }
}

/* ============================================
   TRACK / AUDIENCE ROUTING SYSTEM
   ============================================ */

/* --- Sector Strip (visible when track active) --- */
.sector-strip {
  display: none;
  background: var(--accent);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
.sector-strip.visible { display: flex; justify-content: center; align-items: center; gap: 16px; }
.sector-strip a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.sector-strip a:hover { opacity: 0.8; }
.sector-strip-close {
  background: none; border: none; color: var(--white); cursor: pointer;
  font-size: 1.1rem; padding: 0 4px; opacity: 0.7; font-family: var(--font);
}
.sector-strip-close:hover { opacity: 1; }
body[class*="track-"] .hero { padding-top: calc(var(--nav-h) + 40px); }
body[class*="track-"] .page-header { padding-top: calc(var(--nav-h) + 40px + 80px); }

/* --- Sector-Specific Hero Content --- */
.hero-sector { display: none; }
body.track-it .hero-sector[data-sector="it"] { display: block; }
body.track-finance .hero-sector[data-sector="finance"] { display: block; }
body.track-office .hero-sector[data-sector="office"] { display: block; }
body.track-broker .hero-sector[data-sector="broker"] { display: block; }
body[class*="track-"] .hero-default { display: none; }

/* --- Sector Highlight Card --- */
.sector-highlight {
  display: none;
  background: var(--accent-subtle);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
}
body.track-it .sector-highlight[data-sector="it"],
body.track-finance .sector-highlight[data-sector="finance"],
body.track-office .sector-highlight[data-sector="office"],
body.track-broker .sector-highlight[data-sector="broker"] {
  display: block;
}
.sector-highlight h3 { color: var(--accent); margin-bottom: 8px; }
.sector-highlight p { color: var(--grey-600); }
.sector-highlight .btn { margin-top: 16px; }

/* --- Audience Selector --- */
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.track-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 28px 20px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--grey-900);
  background: var(--white);
}
.track-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px var(--accent-border); }
.track-card.active { border-color: var(--accent); background: var(--accent-subtle); }
.track-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.track-card p { font-size: 0.8rem; color: var(--grey-500); margin: 0; }
.track-card-plus {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
  text-align: left;
  width: 100%;
}
.track-card-plus li {
  font-size: 0.75rem;
  color: var(--grey-600);
  padding: 2px 0 2px 16px;
  position: relative;
  list-style: none;
}
.track-card-plus li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.track-card-icon {
  width: 40px; height: 40px;
  margin-bottom: 12px;
  color: var(--accent);
}
.track-card-icon svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .track-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .track-card { padding: 20px 12px; }
}
@media (max-width: 480px) {
  .track-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Filter Pills --- */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  padding: 8px 20px;
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--grey-600);
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* --- Track Badge in Nav --- */
.track-badge {
  display: none;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 8px;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.track-badge.visible { display: inline-flex; }
.track-badge-close { font-size: 0.8rem; opacity: 0.7; }
.track-badge-close:hover { opacity: 1; }

/* --- Track Visibility --- */
[data-track] { transition: opacity 0.2s ease; }
body[class*="track-"] [data-track] { display: none !important; }
body[class*="track-"] [data-track="all"] { display: revert !important; }
body.track-it [data-track~="it"] { display: revert !important; }
body.track-finance [data-track~="finance"] { display: revert !important; }
body.track-office [data-track~="office"] { display: revert !important; }
body.track-broker [data-track~="broker"] { display: revert !important; }

/* ============================================
   WAARDEPEILING WIZARD
   ============================================ */

/* --- Progress Bar --- */
.wiz-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.wiz-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px; right: 40px;
  height: 2px;
  background: var(--grey-200);
}
.wiz-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.wiz-progress-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--grey-400);
  transition: all var(--transition);
}
.wiz-progress-step.active .wiz-progress-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.wiz-progress-step.completed .wiz-progress-dot {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.wiz-progress-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-400);
  text-align: center;
  max-width: 80px;
}
.wiz-progress-step.active .wiz-progress-label { color: var(--grey-900); }
.wiz-progress-step.completed .wiz-progress-label { color: var(--grey-600); }

/* --- Wizard Steps --- */
.wiz-step { display: none; }
.wiz-step.active { display: block; animation: wizFadeIn 0.3s ease; }
@keyframes wizFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.wiz-step h2 { margin-bottom: 8px; }
.wiz-step .wiz-subtitle { color: var(--grey-500); margin-bottom: 32px; }

.wiz-form { max-width: 560px; margin: 0 auto; }

.wiz-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 16px;
}
.wiz-actions .btn { min-width: 140px; justify-content: center; }

/* --- Helper Text --- */
.form-helper {
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: 4px;
}

/* --- Input Prefix (euro sign) --- */
.form-input-wrap {
  position: relative;
}
.form-input-wrap .form-input {
  padding-left: 32px;
}
.form-input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--grey-400);
  pointer-events: none;
  font-weight: 600;
}
.form-input-suffix {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--grey-400);
  pointer-events: none;
}
.form-input-wrap .form-input.has-suffix {
  padding-right: 40px;
}

/* --- Validation Error --- */
.form-input.error { border-color: #dc2626; }
.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }

/* --- Result Cards --- */
.wiz-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.wiz-result-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border: 2px solid var(--grey-200);
}
.wiz-result-card.highlight {
  border-color: var(--accent);
  background: var(--accent-subtle);
}
.wiz-result-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  margin-bottom: 8px;
}
.wiz-result-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--grey-900);
}
.wiz-result-card.highlight .wiz-result-value { color: var(--accent); }

/* --- Multiple Explanation --- */
.wiz-multiple-info {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.wiz-multiple-info h4 { margin-bottom: 12px; }

.wiz-adjustments {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wiz-adjustments li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.9rem;
}
.wiz-adjustments li:last-child { border-bottom: none; }
.wiz-adj-positive { color: #16a34a; font-weight: 700; }
.wiz-adj-negative { color: #dc2626; font-weight: 700; }
.wiz-adj-neutral { color: var(--grey-400); font-weight: 600; }

.wiz-multiple-result {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid var(--black);
  font-weight: 800;
  font-size: 1rem;
}

/* --- Email Gate --- */
.wiz-gate {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-top: 48px;
  text-align: center;
}
.wiz-gate h3 { margin-bottom: 8px; color: var(--white); }
.wiz-gate > p { color: var(--grey-300); margin-bottom: 32px; }
.wiz-gate-form { max-width: 400px; margin: 0 auto; }
.wiz-gate-form .form-group { margin-bottom: 12px; text-align: left; }
.wiz-gate-form .form-input {
  background: var(--grey-800);
  border-color: var(--grey-700);
  color: var(--white);
}
.wiz-gate-form .form-input::placeholder { color: var(--grey-500); }
.wiz-gate-form .form-input:focus { border-color: var(--accent); }
.wiz-gate-form .btn { width: 100%; justify-content: center; margin-top: 16px; }
.wiz-gate-form .form-group label { color: var(--grey-300); }

/* --- Equity Bridge Table --- */
.wiz-bridge-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.wiz-bridge-table th,
.wiz-bridge-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.9rem;
}
.wiz-bridge-table th { font-weight: 700; background: var(--off-white); }
.wiz-bridge-table td:nth-child(2),
.wiz-bridge-table td:nth-child(3),
.wiz-bridge-table td:nth-child(4),
.wiz-bridge-table th:nth-child(2),
.wiz-bridge-table th:nth-child(3),
.wiz-bridge-table th:nth-child(4) { text-align: right; font-variant-numeric: tabular-nums; }
.wiz-bridge-table tr.total { font-weight: 800; }
.wiz-bridge-table tr.total td { padding-top: 16px; font-size: 1.05rem; border-top: 2px solid var(--black); border-bottom: none; }

/* --- Benchmark --- */
.wiz-benchmark {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}

/* --- Disclaimer --- */
.wiz-disclaimer {
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  line-height: 1.6;
}

/* --- Negative EBITDA Warning --- */
.wiz-warning {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.wiz-warning h3 { color: #dc2626; margin-bottom: 8px; }
.wiz-warning p { color: var(--grey-600); margin-bottom: 24px; }

/* --- Mobile Wizard --- */
@media (max-width: 768px) {
  .wiz-progress-label { display: none; }
  .wiz-progress-dot { width: 32px; height: 32px; font-size: 0.75rem; }
  .wiz-progress::before { top: 16px; left: 24px; right: 24px; }
  .wiz-result-grid { grid-template-columns: 1fr; gap: 12px; }
  .wiz-result-card { padding: 20px 16px; }
  .wiz-gate { padding: 32px 20px; }
  .wiz-bridge-table { font-size: 0.8rem; }
  .wiz-bridge-table th, .wiz-bridge-table td { padding: 8px 10px; }
  .wiz-actions { flex-direction: column; }
  .wiz-actions .btn { width: 100%; }
}

/* ============================================
   DOORROL BLOCK (Waardepeiling — cash nu + tweede exit)
   ============================================ */
.doorrol-block {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--off-white);
}
.doorrol-intro h3 { font-size: 1.3rem; }
.doorrol-intro p { color: var(--grey-600); line-height: 1.75; font-size: 0.95rem; margin-top: 8px; }
.doorrol-caption { font-size: 0.85rem; color: var(--grey-600); margin: 28px 0 10px; }

.doorrol-bar {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.doorrol-bar-seg {
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: var(--white);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.doorrol-bar-seg.cash { background: var(--grey-900); }
.doorrol-bar-seg.roll { background: var(--accent); }

.doorrol-legend { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 16px; }
.doorrol-legend-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--grey-600); }
.doorrol-legend-item strong { display: block; color: var(--grey-900); font-size: 1.05rem; }
.doorrol-legend-item .dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; margin-top: 4px; }
.doorrol-legend-item .dot.cash { background: var(--grey-900); }
.doorrol-legend-item .dot.roll { background: var(--accent); }

.doorrol-exit {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--grey-300);
}
.doorrol-total {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 18px; padding: 18px 22px;
  background: var(--grey-900); border-radius: var(--radius-sm);
}
.doorrol-total-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-300); margin-bottom: 4px; }
.doorrol-total-value { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }

@media (max-width: 768px) {
  .doorrol-block { padding: 22px 16px; }
  .doorrol-total { gap: 20px; padding: 16px; }
  .doorrol-total-value { font-size: 1.15rem; }
}

/* Doorrol-bar: derde segment (vendor loan) */
.doorrol-bar-seg.vendor { background: var(--grey-500); }
.doorrol-legend-item .dot.vendor { background: var(--grey-500); }

/* ============================================
   PROFMATCH INTERVIEW (case-studies)
   ============================================ */
.interview {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
}
.interview-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 10px 0 16px;
  max-width: 760px;
}
.interview-qa {
  margin-top: 36px;
  display: grid;
  gap: 28px;
}
.interview-item { border-left: 2px solid var(--accent); padding-left: 20px; }
.interview-q { font-weight: 700; color: var(--grey-900); margin-bottom: 6px; font-size: 1rem; }
.interview-a { color: var(--grey-600); line-height: 1.8; font-size: 0.95rem; }
.interview-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--grey-200);
}
.interview-stats > div { display: flex; flex-direction: column; }
.interview-stats strong { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.interview-stats span { font-size: 0.78rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-top: 2px; }
@media (max-width: 768px) {
  .interview-stats { gap: 20px; }
  .interview-stats strong { font-size: 1.3rem; }
}

/* ============================================
   ONLY.NL-GEÏNSPIREERDE MINIMALISTISCHE PASS
   ============================================ */

/* Ruime, maar niet eindeloze secties (circle8: luchtig & doelgericht) */
section { padding: clamp(72px, 8vw, 116px) 0; }
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }

/* Plattere, rustigere cards (minder shadow-dichtheid) */
.card { box-shadow: none; }
.card:hover { box-shadow: var(--shadow-md); }

/* ---- HERO: tekst-only, licht, ruim ---- */
.hero-minimal {
  min-height: 90vh;
  background: var(--white);
  color: var(--grey-900);
  display: flex;
  align-items: center;
  overflow: visible;
  padding: calc(var(--nav-h) + clamp(48px,9vw,110px)) 0 clamp(48px,9vw,100px);
}
.hero-minimal .hero-content { max-width: 960px; }
.hero-minimal .label { color: var(--accent); }
.hero-minimal h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--grey-900);
  margin-bottom: 30px;
}
.hero-minimal .hero-lead { max-width: 660px; }
.hero-minimal .hero-lead p { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--grey-600); line-height: 1.75; margin-bottom: 0; }
.hero-minimal .hero-actions { margin-top: 40px; gap: 16px; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: clamp(20px,4vw,52px);
  margin-top: 56px; padding-top: 30px;
  border-top: 1px solid var(--grey-200);
  list-style: none;
}
.hero-proof li { font-size: 0.85rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.hero-proof strong { display: block; font-size: clamp(1.5rem,2.6vw,2.1rem); font-weight: 800; color: var(--grey-900); letter-spacing: -0.02em; text-transform: none; }

/* ---- WAARDEPEILING PROMINENT ---- */
.value-hero { background: var(--grey-900); color: var(--white); }
.value-hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px,6vw,80px); align-items: center;
}
.value-hero .label { color: var(--accent-light); }
.value-hero-text h2 { font-size: clamp(2rem,4.2vw,3.4rem); color: #fff; margin: 12px 0 18px; line-height: 1.05; }
.value-hero-text > p { color: var(--grey-300); font-size: 1.05rem; line-height: 1.75; max-width: 520px; }
.value-hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.value-hero-link { color: #fff; font-weight: 600; border-bottom: 2px solid var(--accent); padding-bottom: 3px; transition: color var(--transition); }
.value-hero-link:hover { color: var(--accent-light); }
.value-hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px;
}
.value-hero-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-300); margin-bottom: 16px; }
.value-hero-row strong { font-size: 1.9rem; color: #fff; font-weight: 800; letter-spacing: -0.02em; }
.value-hero-bar { display: flex; height: 44px; border-radius: 8px; overflow: hidden; }
.value-hero-bar span { display: block; height: 100%; }
.vhb-cash { background: #ffffff; }
.vhb-vendor { background: var(--grey-500); }
.vhb-roll { background: var(--accent); }
.value-hero-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; font-size: 0.78rem; color: var(--grey-300); }
.value-hero-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 5px; vertical-align: middle; }
.value-hero-legend i.d-cash { background: #fff; }
.value-hero-legend i.d-vendor { background: var(--grey-500); }
.value-hero-legend i.d-roll { background: var(--accent); }
.value-hero-note { font-size: 0.74rem; color: var(--grey-500); margin-top: 16px; }
@media (max-width: 880px) {
  .value-hero-inner { grid-template-columns: 1fr; }
  .value-hero-card { order: 2; }
}

/* ============================================
   FUSIETRAJECT — premium tijdlijn (tijdens + erna)
   ============================================ */
.journey {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(56px, 9vw, 110px);
}
.journey:last-of-type { margin-bottom: 0; }
.journey-aside { position: sticky; top: 110px; }
.journey-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--grey-500); border: 1px solid var(--grey-300);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 18px;
}
.journey-tag.accent { color: var(--accent); border-color: var(--accent-border); background: var(--accent-subtle); }
.journey-aside h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 12px; letter-spacing: -0.02em; }
.journey-aside p { color: var(--grey-500); font-size: 0.95rem; line-height: 1.7; }

.journey-steps { list-style: none; position: relative; padding: 0; margin: 0; }
.journey-steps::before {
  content: ''; position: absolute; left: 26px; top: 16px; bottom: 16px;
  width: 2px; background: var(--grey-200);
}
.journey--after .journey-steps::before { background: var(--accent-border); }
.journey-step {
  display: grid; grid-template-columns: 54px 1fr; gap: 24px;
  padding-bottom: clamp(30px, 4vw, 48px); position: relative;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-dot {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--grey-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.journey-dot.accent { background: var(--accent); }
.journey-dot.accent::after { content: ''; width: 14px; height: 14px; border-radius: 50%; background: #fff; }
.journey-time {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 5px;
}
.journey-body { padding-top: 3px; }
.journey-body h4 { font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.journey-body p { color: var(--grey-600); font-size: 0.95rem; line-height: 1.75; max-width: 580px; }

@media (max-width: 860px) {
  .journey { grid-template-columns: 1fr; gap: 24px; }
  .journey-aside { position: static; }
}
@media (max-width: 540px) {
  .journey-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .journey-dot { width: 44px; height: 44px; font-size: 0.95rem; }
  .journey-steps::before { left: 21px; }
}

/* ============================================
   SUB-PAGINA HEADERS — ruimer & premium (consistent met de hero)
   ============================================ */
.page-header { padding-top: calc(var(--nav-h) + clamp(56px,9vw,112px)); padding-bottom: clamp(52px,8vw,96px); }
.page-header h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); letter-spacing: -0.035em; line-height: 1.04; }
.page-header .label { margin-bottom: 18px; }
.page-header p { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.7; }

/* Iets rustiger sector-rich kaarten (meer lucht, in lijn met only.nl) */
.sector-rich { margin-bottom: clamp(24px, 4vw, 40px); }

/* ============================================
   WAARDEPEILING — uitleg "Zo werkt het"
   ============================================ */
.explain { list-style: none; padding: 0; margin: clamp(40px,6vw,64px) auto 0; max-width: 760px; }
.explain li {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--grey-200); align-items: start;
}
.explain li:last-child { border-bottom: none; }
.explain-n {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grey-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.explain-accent .explain-n { background: var(--accent); }
.explain li h4 { font-size: 1.15rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.explain li p { color: var(--grey-600); line-height: 1.75; font-size: 0.95rem; }
.explain-cta { text-align: center; margin-top: clamp(32px,5vw,48px); font-weight: 600; color: var(--grey-900); font-size: 1.05rem; }
@media (max-width: 540px) {
  .explain li { grid-template-columns: 40px 1fr; gap: 16px; padding: 20px 0; }
  .explain-n { width: 40px; height: 40px; font-size: 1rem; }
}

/* ============================================
   CIRCLE8 FRESH REFRESH (v3) — overschrijft eerdere regels
   Floating witte pill-nav · navy+amber · Manrope · ronde kaarten · foto-hero
   ============================================ */

/* ---- Display-typografie: Manrope, vriendelijk & krachtig ---- */
h1, h2, h3, h4,
.nav-logo, .btn,
.hero-proof strong, .value-hero-row strong, .proof-stat strong,
.interview-stats strong, .doorrol-total-value, .sector-proof-stat strong,
.value-hero-card strong, .hero-figure-badge strong {
  font-family: var(--font-display);
}
h1, h2, h3 { letter-spacing: -0.025em; }
body { color: var(--grey-900); }

/* ---- Floating witte pill-navbar (circle8) ---- */
.navbar {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom: none;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
}
.nav-inner {
  width: 100%;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  box-shadow: 0 6px 26px rgba(16,38,63,0.09);
  height: 60px;
  padding: 0 14px 0 26px;
}
.hero-minimal h1 { font-size: clamp(2.6rem, 4.6vw, 4.1rem); line-height: 1.05; margin-bottom: 26px; }
.nav-logo { color: var(--grey-900); }
.nav-logo::before { background-image: url('../assets/logo-mark.svg'); }
.nav-links a { color: var(--grey-600); font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--grey-900); }
.lang-switch { border-color: var(--grey-300); color: var(--grey-600); }
.lang-switch:hover { border-color: var(--grey-900); color: var(--grey-900); background: transparent; }
.nav-toggle span { background: var(--grey-900); }
.footer .nav-logo::before { background-image: url('../assets/logo-mark-white.svg'); }

/* ---- Buttons: levendige amber pill als primaire actie ---- */
.btn { border-radius: 100px; font-weight: 700; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(224,49,42,0.30); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(224,49,42,0.34); }
.btn-dark { background: var(--grey-900); color: #fff; }
.btn-dark:hover { background: var(--navy); color: #fff; }
.hero-minimal .btn-primary { background: var(--accent); color:#fff; box-shadow: 0 4px 14px rgba(224,49,42,0.30); }
.hero-minimal .btn-primary:hover { background: var(--accent-dark); color:#fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(224,49,42,0.34); }
.section-dark .btn-primary, .value-hero .btn-primary, .cta-section .btn-primary { background: var(--accent); color:#fff; }

/* ---- Kaarten: ronder, zachte navy-schaduw, frisse rand ---- */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-dark { background: var(--navy); border-color: rgba(255,255,255,0.10); }

/* labels */
.label { color: var(--accent); letter-spacing: 0.12em; font-weight: 700; }

/* ---- HERO: tweekoloms, foto + zachte sunburst ---- */
.hero-minimal { position: relative; background: var(--white); overflow: hidden; min-height: clamp(600px, 78vh, 840px); display: flex; align-items: center; }
.hero-minimal::before {
  content: ''; position: absolute; z-index: 0;
  right: -6%; top: 50%; transform: translateY(-50%);
  width: 58vw; height: 58vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle at center, rgba(224,49,42,0.13), rgba(224,49,42,0.04) 42%, transparent 66%);
  pointer-events: none;
}
.hero-minimal .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.94fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.hero-minimal .hero-content { max-width: 620px; }
.hero-minimal h1 { color: var(--grey-900); }
.hero-figure { position: relative; }
.hero-figure-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--grey-100);
}
.hero-figure-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure-badge {
  position: absolute; left: -20px; bottom: 30px;
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px; max-width: 230px; z-index: 2;
}
.hero-figure-badge strong { font-size: 1.5rem; display: block; color: var(--grey-900); letter-spacing: -0.02em; line-height: 1.1; }
.hero-figure-badge span { font-size: 0.82rem; color: var(--grey-600); display: block; margin-top: 2px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { display: none; }
  .hero-minimal { min-height: 0; }
  .hero-minimal .hero-content { max-width: 680px; }
}

/* ---- Frisse sectie-achtergronden ---- */
.section-grey { background: var(--off-white); }
.trust-bar { background: var(--white); border-bottom: 1px solid var(--grey-200); }

/* ---- Mobiel menu: leesbaar op de transparante nav ---- */
@media (max-width: 900px) {
  .nav-links {
    background: #fff;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  .nav-links a { color: var(--grey-800); }
}

/* ---- Mobiel: kop-typografie + knoppen nooit laten clippen ---- */
@media (max-width: 600px) {
  .hero-minimal h1 { font-size: clamp(1.95rem, 8vw, 2.7rem); line-height: 1.1; }
  h2 { font-size: clamp(1.7rem, 6.6vw, 2.3rem); }
  .value-hero-text h2 { font-size: clamp(1.7rem, 6.8vw, 2.3rem); }
  .interview-head h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-minimal .hero-lead p { font-size: 1.05rem; }
  /* knoppen: vol-breed gestapeld i.p.v. overlopen */
  .btn { white-space: normal; text-align: center; }
  .hero-actions, .value-hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .value-hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---- Testimonial verkopende partij ---- */
.testi {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(28px, 5vw, 56px); align-items: center;
  max-width: 960px; margin: 0 auto;
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.testi-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow-sm); background: var(--grey-100); }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; }
.testi-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); background: var(--accent-subtle); border: 1px solid var(--accent-border); border-radius: 100px; padding: 5px 14px; margin-bottom: 18px; }
.testi-body blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.42; color: var(--grey-900); letter-spacing: -0.01em; margin-bottom: 22px; }
.testi-author strong { display: block; font-size: 1.05rem; color: var(--grey-900); }
.testi-author span { font-size: 0.85rem; color: var(--grey-500); }
.testi-author .testi-link { display: inline-block; margin-top: 12px; font-size: 0.9rem; font-weight: 700; color: var(--accent); border-bottom: 2px solid var(--accent-border); padding-bottom: 2px; }
.testi-author .testi-link:hover { color: var(--accent-dark); border-color: var(--accent); }

/* Foto van de oprichters binnen het interview — robuuste 2-koloms kop */
.interview-head--photo { display: grid; grid-template-columns: 1fr 290px; gap: clamp(28px, 4vw, 48px); align-items: center; }
.interview-head--photo .interview-head-text { min-width: 0; }
.interview-head--photo h2 { max-width: none; }
.interview-photo { width: 100%; margin: 0; }
.interview-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.interview-photo span { display: block; margin-top: 8px; font-size: 0.8rem; color: var(--grey-500); text-align: center; }
@media (max-width: 760px) { .interview-head--photo { grid-template-columns: 1fr; } .interview-photo { max-width: 300px; margin: 8px auto 0; } }

/* Kantoorgalerij (echte werkplek) */
.office-gallery .label { text-align: center; }
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.office-grid img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block; }
.office-cap { text-align: center; font-size: 0.85rem; color: var(--grey-500); margin-top: 14px; }
@media (max-width: 700px) { .office-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .office-grid { grid-template-columns: 1fr; } }

/* Oprichter-feature (Over ons) */
.founder-feature {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: center; max-width: 880px; margin: clamp(32px,5vw,52px) auto 0;
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: clamp(24px,4vw,40px); box-shadow: var(--shadow-md);
}
.founder-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-sm); background: var(--grey-100); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-bio h3 { font-size: 1.4rem; margin-bottom: 2px; }
.founder-role { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.founder-bio p.founder-text { color: var(--grey-600); line-height: 1.8; font-size: 0.95rem; }
.founder-links { display: flex; gap: 24px; margin-top: 18px; font-size: 0.9rem; font-weight: 600; }
.founder-links a { color: var(--grey-900); border-bottom: 2px solid var(--accent-border); padding-bottom: 2px; }
.founder-links a:hover { color: var(--accent); }
@media (max-width: 640px) { .founder-feature { grid-template-columns: 1fr; text-align: center; } .founder-photo { max-width: 240px; margin: 0 auto; } .founder-links { justify-content: center; } }

/* "Wie zijn wij" intro met foto (homepage) */
.whoweare-intro {
  display: grid; grid-template-columns: 340px 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; margin-bottom: clamp(40px, 6vw, 64px);
}
.whoweare-photo { position: relative; }
.whoweare-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.whoweare-photo span {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,0.94); border-radius: 100px;
  padding: 7px 16px; font-size: 0.8rem; font-weight: 700; color: var(--grey-900);
  box-shadow: var(--shadow-sm);
}
.whoweare-text .label { margin-bottom: 14px; }
.whoweare-text h2 { margin-bottom: 18px; }
.whoweare-text p { color: var(--grey-600); line-height: 1.8; }
@media (max-width: 760px) { .whoweare-intro { grid-template-columns: 1fr; } .whoweare-photo { max-width: 300px; } }

/* ============================================
   DISTINCTIEVE, PROFESSIONELE ACCENTEN
   ============================================ */

/* 1. Hero: subtiele sunburst-stralen + zachte gloed (circle8-signatuur) */
.hero-minimal::before {
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(224,49,42,0.05) 0deg 4deg, transparent 4deg 13deg),
    radial-gradient(circle at center, rgba(224,49,42,0.10), transparent 58%);
  -webkit-mask: radial-gradient(circle at center, #000 6%, transparent 62%);
  mask: radial-gradient(circle at center, #000 6%, transparent 62%);
  border-radius: 50%;
}

/* 2. Merk-ticker (marquee) */
.marquee { overflow: hidden; background: var(--grey-900); padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.marquee-track { display: flex; align-items: center; gap: 34px; width: max-content; animation: marquee-scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; white-space: nowrap; }
.marquee-track .m-dot { color: var(--accent); font-size: 1.1rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 3. Count-up: voorkom layout-shift (reserveer breedte) */
.count { font-variant-numeric: tabular-nums; }

/* 4. Hover-zoom op grote beelden */
.sector-rich-visual, .feature-block-image { overflow: hidden; border-radius: var(--radius); }
.sector-rich-visual img, .feature-block-image img, .testi-photo img, .founder-photo img, .hero-figure-img img { transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1); }
.sector-rich:hover .sector-rich-visual img,
.feature-block:hover .feature-block-image img,
.testi:hover .testi-photo img,
.founder-feature:hover .founder-photo img,
.hero-figure:hover .hero-figure-img img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .sector-rich-visual img, .feature-block-image img, .testi-photo img, .founder-photo img, .hero-figure-img img { transition: none; }
}

/* ============================================
   CIRCLE8-SIGNATUUR — bold merk, ronde foto + boog, lichte tonen
   ============================================ */

/* Ronde founder-foto met stoere 80/20-boog (het logo, groot terug) */
.hero-orb { position: relative; width: 100%; max-width: 450px; margin: 0 0 0 auto; aspect-ratio: 1; }
.hero-orb-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; z-index: 2; }
.hero-orb-ring circle { fill: none; stroke-width: 10; }
.hero-orb-ring .ring-base { stroke: var(--grey-900); }
.hero-orb-ring .ring-accent { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 115.6 462.4; }
.hero-orb-photo { position: absolute; inset: 8.5%; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-tint); z-index: 1; }
.hero-orb-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; transition: transform 0.7s cubic-bezier(0.2,0.6,0.2,1); }
.hero-figure:hover .hero-orb-photo img { transform: scale(1.05); }
.hero-figure { position: relative; }
.hero-figure .hero-figure-badge { left: -4px; bottom: 5%; }

/* Groot merk-watermerk (donut) als achtergrond-accent */
.brandmark-bg { position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; aspect-ratio: 1; border-style: solid; }
.hero-minimal .brandmark-bg { width: 48vw; max-width: 660px; right: -13%; bottom: -26%; border-width: clamp(26px,3.4vw,52px); border-color: rgba(19,38,63,0.06); }
.cta-section { position: relative; overflow: hidden; }
.cta-section .brandmark-bg { width: 34vw; max-width: 460px; left: -8%; top: -30%; border-width: clamp(20px,2.6vw,40px); border-color: rgba(255,255,255,0.05); }

/* Lichte footer (circle8-stijl) */
.footer { background: var(--bg-tint); color: var(--grey-700); border-top: 1px solid var(--bg-tint-deep); }
.footer .nav-logo { color: var(--grey-900); }
.footer .nav-logo::before { background-image: url('../assets/logo-mark.svg'); }
.footer-brand p { color: var(--grey-600); }
.footer h4 { color: var(--grey-900); }
.footer-links a { color: var(--grey-600); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--bg-tint-deep); color: var(--grey-500); }

/* Meer lichte tonen: zachte tint-sectie + frissere off-white */
.section-tint { background: var(--bg-tint); color: var(--grey-900); }
.section-grey { background: var(--bg-tint); }

@media (max-width: 900px) {
  .hero-minimal .brandmark-bg { display: none; }
}

/* ============================================
   LOGO-MOTIEF SITEWIDE + EXTRA INTERACTIE
   ============================================ */

/* Pagina-headers (dark) + CTA-banners: sunburst + grote ring (logo terug) */
.page-header, .cta-banner { position: relative; overflow: hidden; }
.page-header > .container, .cta-banner > .container { position: relative; z-index: 2; }
.page-header::before {
  content: ''; position: absolute; z-index: 0; right: -7%; top: 50%; transform: translateY(-50%);
  width: 48vw; height: 48vw; max-width: 620px; max-height: 620px;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.045) 0deg 4deg, transparent 4deg 13deg),
    radial-gradient(circle at center, rgba(224,49,42,0.20), transparent 58%);
  -webkit-mask: radial-gradient(circle at center, #000 6%, transparent 62%);
  mask: radial-gradient(circle at center, #000 6%, transparent 62%);
  border-radius: 50%; pointer-events: none;
}
.page-header::after, .cta-banner::after {
  content: ''; position: absolute; z-index: 0; left: -8%; bottom: -46%;
  width: 30vw; height: 30vw; max-width: 400px; max-height: 400px;
  border: clamp(18px,2.4vw,36px) solid rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none;
}

/* Sector/exit/greenfield hero's (foto rechts): subtiele ring links achter de tekst */
.hero:not(.hero-minimal) { position: relative; overflow: hidden; }
.hero:not(.hero-minimal) > .container { position: relative; z-index: 2; }
.hero:not(.hero-minimal) .hero-image { z-index: 1; }
.hero:not(.hero-minimal)::before {
  content: ''; position: absolute; z-index: 0; left: -9%; top: -28%;
  width: 32vw; height: 32vw; max-width: 420px; max-height: 420px;
  border: clamp(16px,2.2vw,34px) solid rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none;
}

@media (max-width: 760px) {
  .page-header::after, .cta-banner::after, .hero:not(.hero-minimal)::before { display: none; }
  .page-header::before { opacity: 0.55; }
}

/* Interactie: hero-orb ring tekent zich in bij laden */
.hero-orb-ring .ring-accent { stroke-dashoffset: 578; animation: draw-arc 1.3s cubic-bezier(0.4,0,0.2,1) 0.35s forwards; }
@keyframes draw-arc { to { stroke-dashoffset: 0; } }

/* Interactie: nav krijgt schaduw bij scrollen */
.navbar.scrolled .nav-inner { box-shadow: 0 10px 34px rgba(16,38,63,0.16); border-color: var(--grey-300); }

@media (prefers-reduced-motion: reduce) {
  .hero-orb-ring .ring-accent { animation: none; stroke-dashoffset: 0; }
}

/* Klantenverhalen — testimonial-kaarten met echte foto */
.kv-card { display: flex; flex-direction: column; }
.kv-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow-sm); border: 2px solid var(--accent-border); }
.kv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.kv-card blockquote { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.55; color: var(--grey-900); flex: 1; margin-bottom: 18px; }
.kv-author strong { display: block; font-size: 0.95rem; color: var(--grey-900); }
.kv-author span { display: block; font-size: 0.82rem; color: var(--grey-500); }
.kv-cta { transition: transform var(--transition), box-shadow var(--transition); }
.kv-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Gesprek-foto (Niklas in gesprek) */
.gesprek-foto { max-width: 920px; margin: 0 auto clamp(40px,6vw,64px); }
.gesprek-foto img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.gesprek-foto figcaption { text-align: center; font-size: 0.9rem; color: var(--grey-500); margin-top: 14px; }

/* ============================================
   TWEEDE EXIT — bold band (swirl-achtergrond)
   ============================================ */
.exit-band {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(100deg, rgba(10,22,38,0.94) 0%, rgba(10,22,38,0.82) 55%, rgba(10,22,38,0.66) 100%),
    url('../assets/photos/swirl-red.jpg') center / cover no-repeat;
}
.exit-band .label { color: var(--accent-light); }
.exit-band h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.04; margin: 12px 0 18px; }
.exit-band-lead { color: rgba(255,255,255,0.82); max-width: 640px; line-height: 1.8; }
.exit-compare { display: grid; grid-template-columns: 1fr 64px 1.15fr; gap: 18px; align-items: stretch; margin: clamp(30px,4vw,44px) 0; max-width: 880px; }
.exit-step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 26px 28px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.exit-step > span { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.exit-step strong { display: block; font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.45rem); letter-spacing: -0.01em; margin-bottom: 8px; color: #fff; }
.exit-step p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.78); }
.exit-step.accent { background: rgba(224,49,42,0.16); border-color: rgba(242,74,62,0.45); box-shadow: 0 12px 40px rgba(224,49,42,0.25); }
.exit-step.accent > span { color: var(--accent-light); }
.exit-arrow { display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: var(--accent-light); font-weight: 800; }
.exit-band .hero-actions { margin-top: 6px; }
@media (max-width: 760px) {
  .exit-compare { grid-template-columns: 1fr; }
  .exit-arrow { transform: rotate(90deg); padding: 2px 0; }
}

/* Hero: risk-reversal microregel */
.hero-assure { margin-top: 18px; font-size: 0.82rem; color: var(--grey-500); font-weight: 600; letter-spacing: 0.01em; }

/* Slot-CTA: value-stack checklist */
.cta-stack { list-style: none; margin: 18px auto 8px; padding: 0; max-width: 480px; text-align: left; display: grid; gap: 10px; }
.cta-stack li { position: relative; padding-left: 30px; color: var(--grey-300); font-size: 0.98rem; line-height: 1.55; }
.cta-stack li::before { content: '\2713'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cta-section .cta-actions, .cta-section .hero-actions { margin-top: 26px; }

/* Exit 2 — totaalstrip bovenaan het resultaat (rekenmodule) */
.exit2-hero {
  display: grid; grid-template-columns: 1fr 36px 1.1fr 36px 1.2fr;
  gap: 10px; align-items: stretch; margin: 26px 0 38px;
}
.exit2-hero-item {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 18px 20px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: center;
}
.exit2-hero-item > span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--grey-500); margin-bottom: 6px; }
.exit2-hero-item > strong { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -0.02em; color: var(--grey-900); line-height: 1.1; }
.exit2-hero-item > em { font-style: normal; font-size: 0.74rem; color: var(--grey-500); margin-top: 6px; line-height: 1.45; }
.exit2-hero-item.accent { border-color: var(--accent-border); background: var(--accent-wash); }
.exit2-hero-item.accent > span { color: var(--accent); }
.exit2-hero-item.accent > strong { color: var(--accent); }
.exit2-hero-item.total { background: var(--navy); border-color: var(--navy); }
.exit2-hero-item.total > span { color: rgba(255,255,255,0.7); }
.exit2-hero-item.total > strong { color: #fff; }
.exit2-hero-item.total > em { color: rgba(255,255,255,0.65); }
.exit2-hero-op { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--grey-400, #9aa6b8); }
@media (max-width: 720px) {
  .exit2-hero { grid-template-columns: 1fr; }
  .exit2-hero-op { padding: 0; font-size: 1.2rem; }
}

/* Interviewfoto: vaste verhouding, nooit uitgerekt.
   LET OP: de kolomverdeling alleen op desktop — mobiel stapelt. */
@media (min-width: 761px) {
  .interview-head--photo { grid-template-columns: 1fr 280px; align-items: start; }
}
@media (max-width: 760px) {
  .interview-head--photo { grid-template-columns: 1fr; }
  .interview-photo { max-width: 300px; margin: 8px auto 0; }
}
.interview-photo img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%; }

/* Donkere swirl-achtergrond vaker terug (zelfde stijl als de exit-band) */
.value-hero {
  background:
    linear-gradient(105deg, rgba(10,22,38,0.95) 0%, rgba(10,22,38,0.86) 55%, rgba(10,22,38,0.74) 100%),
    url('../assets/photos/swirl-red.jpg') center / cover no-repeat;
}
.cta-banner {
  background:
    linear-gradient(rgba(14,31,54,0.92), rgba(14,31,54,0.94)),
    url('../assets/photos/swirl-flow.jpg') center / cover no-repeat;
}

/* Waardepeiling: betekenis-checklist bij de uitkomst */
.wiz-checks { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 34px; box-shadow: var(--shadow-sm); }
.wiz-checks-title { font-family: var(--font-display); font-weight: 800; color: var(--grey-900); margin-bottom: 14px; font-size: 1.02rem; letter-spacing: -0.01em; }
.wiz-checks ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.wiz-checks li { position: relative; padding-left: 30px; font-size: 0.92rem; color: var(--grey-700); line-height: 1.5; }
.wiz-checks li::before { content: '\2713'; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
@media (max-width: 620px) { .wiz-checks ul { grid-template-columns: 1fr; } }

/* Interactief logo: donut draait bij hover op het logo */
.nav-logo::before { transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-logo:hover::before { transform: rotate(360deg); }

/* Interactief logo: scroll-voortgang als 80/20-donut (linksonder) */
.scroll-donut {
  position: fixed; left: 20px; bottom: 20px; z-index: 1190;
  width: 52px; height: 52px; cursor: pointer;
  background: rgba(255,255,255,0.94); border: 1px solid var(--grey-200);
  border-radius: 50%; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-donut.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-donut:hover { box-shadow: var(--shadow-lg); }
.scroll-donut svg { width: 38px; height: 38px; transform: rotate(-90deg); }
.scroll-donut .sd-track { stroke: var(--grey-900); }
.scroll-donut .sd-arc { stroke: var(--accent); }
@media (max-width: 760px) { .scroll-donut { display: none; } }
@media print { .scroll-donut { display: none; } }

/* ============================================
   MOBIEL & TABLET — foto/tekst-composities
   Foto's stapelen netjes BOVEN of ONDER de tekst,
   compact en gecentreerd; vaste beeldverhoudingen.
   ============================================ */

/* Hero: toon de foto ook op mobiel — gestapeld onder de tekst */
@media (max-width: 900px) {
  .hero-figure { display: block; margin: 36px auto 0; max-width: 300px; }
  .hero-orb { max-width: 280px; margin: 0 auto; }
  .hero-figure .hero-figure-badge { position: static; display: block; margin: 14px auto 0; max-width: 280px; text-align: center; }
  .hero-minimal { min-height: 0; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; margin-top: 40px; }
}
/* Smal tablet: orb niet tegen de tekst aan persen */
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-orb { max-width: 360px; }
  .hero-figure .hero-figure-badge { left: 0; }
}

/* Trust-bar: netjes gecentreerd laten wrappen (geen overflow meer) */
@media (max-width: 768px) {
  .trust-bar-inner { gap: 18px; }
  .trust-bar-group { display: flex; flex-wrap: wrap; justify-content: center; text-align: center; gap: 6px 12px; max-width: 100%; }
  .trust-bar-logos { flex-wrap: wrap; justify-content: center; }
  .trust-bar-sep { display: none; }
}

/* Tablet: tweekoloms foto/tekst pas naast elkaar als er écht ruimte is */
@media (max-width: 860px) {
  .whoweare-intro { grid-template-columns: 1fr; }
  .whoweare-photo { max-width: 320px; margin: 0 auto; }
  .testi { grid-template-columns: 1fr; }
  .testi-photo { max-width: 320px; margin: 0 auto; }
  .founder-feature { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { max-width: 260px; margin: 0 auto; }
  .founder-links { justify-content: center; }
}
@media (max-width: 700px) {
  .wiz-niklas { grid-template-columns: 1fr; text-align: center; }
  .wiz-niklas-photo { max-width: 220px; margin: 0 auto; }
}

/* Beelden: vaste verhoudingen op mobiel — nooit metershoge foto's */
@media (max-width: 768px) {
  .sector-rich-visual { order: -1; }
  .sector-rich-visual img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
  .img-section { min-height: 0; }
  .img-section-visual img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
  .feature-block-image img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
  .gesprek-foto img { aspect-ratio: 4 / 3; }
  .testi-photo img { aspect-ratio: 4 / 5; object-fit: cover; }
  .whoweare-photo img { aspect-ratio: 4 / 5; }
  .marquee { padding: 11px 0; }
  .marquee-track span { font-size: 0.78rem; }
  .exit2-hero-item > strong { font-size: 1.3rem; }
}

/* Desktop-finetuning: consistente beeldverhoudingen in composities */
@media (min-width: 769px) {
  .testi-photo img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
  .whoweare-photo img { aspect-ratio: 4 / 5; }
  .sector-rich-visual img { height: 100%; object-fit: cover; }
}

/* Gate: risk-reversal microcopy onder de knop */
.wiz-gate-sub { display: block; margin-top: 12px; font-size: 0.78rem; color: var(--grey-500); font-weight: 600; line-height: 1.6; }

/* Fallback-melding bij negatieve equity value */
.exit2-fallback { background: var(--accent-wash); border: 1px solid var(--accent-border); border-radius: var(--radius); padding: 18px 22px; font-size: 0.92rem; color: var(--grey-800); line-height: 1.7; margin: 22px 0; }

/* Rekenmodule: persoonlijk Niklas-blok onder het resultaat */
.wiz-niklas {
  display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px,4vw,40px);
  align-items: center; max-width: 760px; margin: 48px auto 0;
  background: var(--bg-tint); border: 1px solid var(--bg-tint-deep);
  border-radius: var(--radius-lg); padding: clamp(22px,3.5vw,36px);
}
.wiz-niklas-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; background: var(--grey-100); }
.wiz-niklas-photo img { width: 100%; height: 100%; object-fit: cover; }
.wiz-niklas-text h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 10px; letter-spacing: -0.01em; }
.wiz-niklas-text p { color: var(--grey-600); font-size: 0.93rem; line-height: 1.7; margin-bottom: 18px; }
.wiz-niklas-text .btn { margin-bottom: 10px; }
.wiz-niklas-sub { display: block; font-size: 0.78rem; color: var(--grey-500); }
@media (max-width: 620px) { .wiz-niklas { grid-template-columns: 1fr; text-align: center; } .wiz-niklas-photo { max-width: 220px; margin: 0 auto; } }

/* Exit 2 — groeipad-tabel (waardepeiling) */
.exit2-table { margin: 22px 0 26px; border: 1px solid var(--grey-200); border-radius: var(--radius); overflow: hidden; background: #fff; }
.exit2-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 14px 20px; border-bottom: 1px solid var(--grey-100); }
.exit2-row:last-child { border-bottom: none; }
.exit2-row > span { font-size: 0.9rem; color: var(--grey-600); line-height: 1.5; }
.exit2-row > strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--grey-900); white-space: nowrap; letter-spacing: -0.01em; }
.exit2-row.accent { background: var(--accent-wash); }
.exit2-row.accent > span { color: var(--grey-900); font-weight: 600; }
.exit2-row.accent > strong { color: var(--accent); font-size: 1.35rem; }
@media (max-width: 560px) { .exit2-row { flex-direction: column; align-items: flex-start; gap: 4px; } .exit2-row > strong { font-size: 1.1rem; } }

/* Final CTA: subtiele swirl-textuur */
.cta-section {
  background:
    linear-gradient(rgba(14,31,54,0.93), rgba(14,31,54,0.95)),
    url('../assets/photos/swirl-flow.jpg') center / cover no-repeat;
}

/* ============================================
   NIKLAS-BAND — terugkerende afspraak-CTA
   ============================================ */
.niklas-band {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  max-width: 880px; margin: 0 auto;
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 22px 28px;
  box-shadow: var(--shadow-md);
}
.niklas-band > img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-border); flex-shrink: 0; }
.niklas-band-text { flex: 1; min-width: 220px; }
.niklas-band-text strong { display: block; font-family: var(--font-display); font-size: 1.08rem; color: var(--grey-900); letter-spacing: -0.01em; }
.niklas-band-text span { font-size: 0.88rem; color: var(--grey-600); }
.niklas-band .btn { flex-shrink: 0; }
@media (max-width: 560px) { .niklas-band { text-align: center; justify-content: center; } }

/* ============================================
   ZWEVENDE AFSPRAAK-KNOP (FAB)
   ============================================ */
.book-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 1200;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  padding: 14px 22px; border-radius: 100px;
  box-shadow: 0 10px 30px rgba(224,49,42,0.38);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.book-fab.visible { opacity: 1; transform: none; pointer-events: auto; }
.book-fab:hover { background: var(--accent-dark); transform: translateY(-2px); }
.book-fab svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 480px) { .book-fab { padding: 12px 18px; font-size: 0.82rem; } .book-fab .fab-x { display: none; } }
@media print { .book-fab { display: none; } }
@media (max-width: 720px) { .testi { grid-template-columns: 1fr; text-align: center; } .testi-photo { max-width: 220px; margin: 0 auto; } }

/* Desktop: interview-kop in balans — kleinere foto, verticaal gecentreerd.
   Deze MOET vóór het mobile slot-overrides-blok staan. */
@media (min-width: 761px) {
  .interview-head--photo { grid-template-columns: 1fr 240px; align-items: center; }
  .interview-photo img { max-height: 300px; aspect-ratio: 4 / 5; object-fit: cover; }
}


/* ============================================
   MOBIELE SLOT-OVERRIDES — dit blok moet ALTIJD
   het laatste in dit bestand blijven, zodat geen
   latere desktopregel de mobiele stapeling breekt.
   ============================================ */
@media (max-width: 700px) {
  .wiz-niklas { grid-template-columns: 1fr; text-align: center; }
  .wiz-niklas-photo { max-width: 220px; margin: 0 auto; }
}


/* Mobiel: EXPLICIETE fotohoogtes — niet afhankelijk van aspect-ratio-support.
   Voorkomt metershoge portretten op telefoons. */
@media (max-width: 768px) {
  .whoweare-photo { max-width: 320px; margin: 0 auto; }
  .whoweare-photo img { height: 380px; object-fit: cover; object-position: 50% 22%; }
  .founder-photo img { height: 320px; object-fit: cover; object-position: 50% 22%; }
  .testi-photo img { height: 380px; object-fit: cover; }
  .interview-photo img { height: 360px; object-fit: cover; object-position: 50% 20%; }
  .wiz-niklas-photo { aspect-ratio: auto; }
  .wiz-niklas-photo img { height: 270px; object-fit: cover; object-position: 50% 25%; }
  .gesprek-foto img { height: 280px; }
  .office-grid img { height: 200px; }
  .sector-rich-visual img { height: 230px; }
  .img-section-visual img { height: 230px; }
  .feature-block-image img { height: 220px; }
}

/* (verplaatst naar boven de slot-overrides) */
