/* ============================================
   PARETO AT WORK — Redesign v2
   Uber-inspired: bold, minimal, monochrome
   ============================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --grey-100: #f0f0f0;
  --grey-200: #e5e5e5;
  --grey-300: #d4d4d4;
  --grey-500: #737373;
  --grey-600: #525252;
  --grey-700: #404040;
  --grey-800: #262626;
  --grey-900: #171717;
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-subtle: rgba(217, 119, 6, 0.08);
  --accent-border: rgba(217, 119, 6, 0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --nav-h: 72px;
  --transition: 0.2s ease;
  --radius: 16px;
  --radius-sm: 8px;
}

/* --- 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;
  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.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.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(--black); 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.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.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; }

.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 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer; border: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--grey-200); transform: translateY(-1px); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--grey-800); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; border: 2px solid var(--grey-300); color: var(--grey-900); }
.btn-outline-dark:hover { border-color: var(--grey-900); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.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 20px; 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: 640px; }
.hero h1 { margin-bottom: 24px; }
.hero p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--grey-300); margin-bottom: 40px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; 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.5;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 60%);
}

/* --- Image Section --- */
.img-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.img-section-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}
.img-section-content h2 { margin-bottom: 20px; }
.img-section-content p { color: var(--grey-600); line-height: 1.75; margin-bottom: 16px; }
.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;
}

/* --- 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);
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card-dark {
  background: var(--grey-900);
  border-color: var(--grey-800);
  color: var(--white);
}
.card-dark:hover { background: var(--grey-800); }
.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: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions,
.cta-banner .hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* --- Niklas Personal CTA --- */
.niklas-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius);
}
.niklas-cta-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.niklas-cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.niklas-cta-text h4 { margin-bottom: 4px; }
.niklas-cta-text p { color: var(--grey-500); font-size: 0.9rem; margin-bottom: 12px; }
.niklas-cta-links { display: flex; gap: 20px; font-size: 0.9rem; font-weight: 600; }
.niklas-cta-links a { text-decoration: underline; text-underline-offset: 3px; }
.niklas-cta-links a:hover { opacity: 0.6; }

/* dark variant */
.niklas-cta-dark {
  background: var(--grey-900);
  color: var(--white);
}
.niklas-cta-dark p { color: var(--grey-300); }

/* --- 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(217, 119, 6, 0.15); }
.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: 60px;
}
.footer-brand { max-width: 300px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--grey-800);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--grey-500);
}

/* --- 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: 2px; border-radius: var(--radius); overflow: hidden; }
.eco-item { padding: 40px; background: var(--grey-900); }
.eco-item h4 { color: var(--white); margin-bottom: 8px; }
.eco-item p { color: var(--grey-300); font-size: 0.9rem; line-height: 1.65; }

/* --- 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; }
.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.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 28px 24px;
  z-index: 3;
}
.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(--off-white);
  border-bottom: 1px solid var(--grey-200);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.trust-bar-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-bar-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  white-space: nowrap;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-logo {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.02em;
}
.trust-logo-muted {
  color: var(--grey-500);
  font-weight: 700;
}
.trust-bar-sep {
  width: 1px;
  height: 28px;
  background: var(--grey-300);
}

/* ============================================
   PAIN CARDS ("Herken je dit?")
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius);
  padding: 40px;
}
.pain-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(217, 119, 6, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.pain-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.pain-card p {
  color: var(--grey-300);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   SECTOR RICH CARDS (Four Disciplines)
   ============================================ */
.sector-rich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: 24px;
  border: 1px solid var(--grey-200);
}
.sector-rich-reversed { direction: rtl; }
.sector-rich-reversed > * { direction: ltr; }

.sector-rich-content {
  padding: clamp(32px, 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;
}
.sector-rich-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 12px;
  line-height: 1.2;
}
.sector-rich-content p {
  color: var(--grey-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.sector-rich-list {
  margin-bottom: 24px;
  padding: 0;
}
.sector-rich-list li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 0.85rem;
  color: var(--grey-700);
  line-height: 1.5;
  list-style: none;
}
.sector-rich-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.sector-rich-proof {
  display: flex;
  gap: 24px;
  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.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.sector-proof-stat span {
  font-size: 0.7rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  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);
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--grey-200);
}
.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.75rem;
  font-weight: 600;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   QUOTE BLOCK (Social Proof)
   ============================================ */
.quote-block {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.quote-block blockquote {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--grey-900);
  margin: 0;
  font-style: italic;
}
.quote-author {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 20px;
  color: var(--grey-900);
}
.quote-role {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-top: 2px;
}

/* ============================================
   REASON CARDS (Waarom Aansluiten)
   ============================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reason-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius);
  padding: 40px;
  transition: all var(--transition);
}
.reason-card:hover {
  background: var(--grey-800);
  transform: translateY(-2px);
}
.reason-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent-light);
}
.reason-icon svg { width: 100%; height: 100%; }
.reason-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.reason-card p {
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- 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%; }
}
