/* Digital Spina — single page site
   Structuur ge&iuml;nspireerd op bobmeijer.com
   Kleursysteem: wit/grijs basis, groen (#008A00) uitsluitend voor CTA's, oranje als accentkleur.
   --spinach-300 / --spinach-900 blijven uitsluitend gereserveerd voor het blad-logo (merkmerk). */

:root {
  --black: #14171a;
  --cta-green: #008A00;
  --cta-green-dark: #006F00;
  --spinach-300: #8FCE78;
  --spinach-900: #1F5C16;
  --ink: #14171a;
  --ink-soft: #565f59;
  --paper: #FFFFFF;
  --paper-soft: #F5F6F3;
  --border: #E4E7E1;
  --coral: #FF5A1F;
  --coral-dark: #D4480F;
  --navy: #041E3A;
  --navy-border: rgba(255,255,255,0.12);
  --status-good: #1E8E3E;
  --status-bad: #D93025;
  --stat-blue-bg: #E8F0FE;
  --stat-blue: #1A73E8;
  --stat-amber-bg: #FEF7E0;
  --stat-amber: #F29900;
  --radius: 10px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 800;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 16px; color: var(--ink-soft); }

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 30, 58, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--navy-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.logo:hover { color: #fff; }

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--spinach-300);
  color: var(--spinach-900);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}

.main-nav a:hover { color: #fff; }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: #fff; }

.nav-cta {
  background: var(--cta-green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--cta-green-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Buttons (shared) */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--cta-green);
  color: #fff;
}
.btn-primary:hover { background: var(--cta-green-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

.btn-outline-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline-light:hover { border-color: var(--ink); }

.btn-hero-primary {
  background: var(--cta-green);
  color: #fff;
}
.btn-hero-primary:hover { background: var(--cta-green-dark); color: #fff; }

/* Hero */
.hero {
  padding: 88px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--black);
}

.hero h1 .accent { color: var(--coral); }

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
}
.hero-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 700;
}

.hero-media-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px dashed var(--border);
}

/* Credentials / specialisatie */
.credentials {
  padding: 88px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.credentials-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--black);
}

.credentials-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 520px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 700;
}

.credentials-photo-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px dashed var(--border);
}

@media (max-width: 640px) {
  .credentials-inner { grid-template-columns: 1fr; }
  .credentials-media { order: -1; }
  .credentials-photo-placeholder { max-width: 320px; margin: 0 auto; }
}

/* FAQ accordion */
.faq {
  padding: 88px 0;
  background: #fff;
}
.faq h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 40px;
  max-width: 680px;
  color: var(--black);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
}
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: transform 0.15s ease;
}
.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-item p {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 720px;
}

/* Dark closing CTA (feed-leak banner) */
.cta-black {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
}
.cta-black h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-black-inner { max-width: 620px; margin: 0 auto; }
.cta-black p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* Objection Q&A */
.objection {
  padding: 64px 0;
  background: var(--navy);
}

.objection-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.objection-question {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
  color: #fff;
}

.objection-answer {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
}

.objection-highlight {
  color: var(--coral);
  font-weight: 700;
}

/* Route: three-step engagement model */
.route {
  padding: 80px 0;
  background: var(--paper-soft);
}

.route h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 32px;
}

.route-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.route-step {
  position: relative;
  padding: 32px 72px 32px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background 0.15s ease;
}

.route-step:hover {
  background: var(--paper-soft);
}

.route-step:last-child {
  border-bottom: none;
}

.route-eyebrow {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.route-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.route-number {
  color: var(--coral);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.route-head h3 {
  font-size: 1.6rem;
}

.route-desc {
  color: var(--ink-soft);
  max-width: 640px;
}

.route-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 1.2rem;
  transition: transform 0.15s ease;
}
a.route-arrow:hover {
  color: var(--coral-dark);
  transform: translateY(-50%) translateY(3px);
}

@media (max-width: 640px) {
  .route-step {
    padding: 28px 48px 28px 20px;
  }
  .route-arrow {
    right: 16px;
  }
}

/* Problem section */
.problem {
  padding: 80px 0 48px;
  background: #fff;
}

.problem h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.problem .section-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.problem-card {
  padding: 32px;
  border-left: 1px solid var(--border);
}

.problem-card:first-child {
  border-left: none;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

@media (max-width: 860px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .problem-card:first-child {
    border-top: none;
  }
}

/* Audit intro */
.audit-intro {
  padding: 72px 0 8px;
}

.audit-intro-inner {
  max-width: 680px;
}

.audit-intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.audit-intro p:not(.eyebrow) {
  font-size: 1.05rem;
}

/* Werkwijze: steps + pricing */
.werkwijze { padding: 56px 0 80px; }

.werkwijze-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.steps-card,
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 28px;
}

.pricing-card { padding: 28px; display: flex; flex-direction: column; }

.step {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-eyebrow {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.8rem;
  color: var(--coral);
  margin-bottom: 8px;
}

.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: 0.95rem; }

.pricing-eyebrow {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}
.pricing-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.pricing-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.pricing-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.97rem;
}
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--coral);
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.pricing-guarantee {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.pricing-guarantee strong { color: var(--black); }

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

/* Before / after */
.before-after {
  background: var(--paper-soft);
  padding: 72px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.before-after h2 { color: var(--black); margin-bottom: 40px; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.ba-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ba-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.ba-tag-before { background: rgba(255, 90, 31, 0.14); color: var(--coral); }
.ba-tag-after { background: rgba(20, 23, 26, 0.06); color: var(--ink); }

.ba-status {
  font-size: 0.82rem;
  font-weight: 600;
}
.ba-status-bad { color: var(--coral); }
.ba-status-good { color: var(--ink); }

.ba-card h3 {
  color: var(--black);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ba-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.ba-icon-bad { background: rgba(255, 90, 31, 0.14); color: var(--coral); }
.ba-icon-good { background: rgba(20, 23, 26, 0.08); color: var(--ink); }

.ba-fields {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-field {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--paper-soft);
  border-radius: 8px;
}

.ba-field dt {
  color: var(--ink-soft);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ba-field dd {
  margin: 0;
  text-align: right;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ba-before .ba-field dd { color: var(--coral); }
.ba-after .ba-field dd { color: var(--ink); }

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

@media (max-width: 480px) {
  .ba-field { flex-direction: column; align-items: flex-start; gap: 4px; }
  .ba-field dd { text-align: left; white-space: normal; }
}

/* Feed quality dashboard */
.feed-quality { padding: 80px 0; background: var(--paper); text-align: center; }
.feed-quality h2 { color: var(--black); max-width: 680px; margin-left: auto; margin-right: auto; }
.feed-quality .eyebrow { text-align: center; }
.feed-quality .section-intro { color: var(--ink-soft); margin-left: auto; margin-right: auto; }
.feed-quality .fq-table-title,
.feed-quality .fq-table { text-align: left; }

.fq-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 40px auto 24px;
  max-width: 640px;
  text-align: left;
}
.fq-stat {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.fq-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
}
.fq-stat-label { font-size: 0.85rem; color: var(--ink-soft); }
.fq-stat-bad { background: rgba(255, 90, 31, 0.1); border-color: rgba(255, 90, 31, 0.3); }
.fq-stat-bad .fq-stat-value { color: var(--coral); }

.fq-donut-card {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin: 0 auto 48px;
  position: relative;
  max-width: 640px;
  text-align: left;
}
.fq-donut { flex-shrink: 0; }
.fq-donut-center {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--status-good);
}
.fq-donut-center small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.fq-donut-legend p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--ink);
}
.fq-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.fq-dot-good { background: var(--status-good); }
.fq-dot-bad { background: var(--status-bad); }
.fq-donut-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0 !important; }

.fq-table-title { font-size: 1.2rem; margin-bottom: 16px; color: var(--black); }

.fq-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.fq-row {
  display: grid;
  grid-template-columns: 32px 1.6fr 1fr 0.8fr 1.2fr 60px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.fq-row:last-child { border-bottom: none; }

.fq-head {
  background: var(--paper-soft);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--ink-soft);
}

.fq-num { color: var(--ink-soft); }
.fq-name { font-weight: 600; color: var(--ink); }
.fq-name em { font-style: normal; color: var(--coral); font-weight: 500; font-size: 0.82rem; margin-left: 4px; }

.fq-badge {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid currentColor;
}
.fq-badge-required { color: var(--ink); }
.fq-badge-recommended { color: var(--ink); }
.fq-badge-depends { color: #B9791A; }
.fq-badge-optional { color: var(--ink-soft); }
.fq-badge-high { color: var(--coral); }
.fq-badge-medium { color: var(--ink); }
.fq-badge-low { color: var(--ink-soft); }
.fq-badge-na { color: var(--ink-soft); }

.fq-bar {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--status-bad);
  overflow: hidden;
}
.fq-bar i {
  display: block;
  height: 100%;
  background: var(--status-good);
  border-radius: 999px;
}

.fq-pct { font-weight: 700; color: var(--status-good); text-align: right; }
.fq-pct-zero { color: var(--status-bad); }

.fq-category {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper-soft);
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  cursor: pointer;
  font-family: inherit;
}
.fq-chevron {
  transition: transform 0.15s ease;
  font-size: 1rem;
}
.fq-category[aria-expanded="true"] .fq-chevron { transform: rotate(180deg); }

.fq-rows {
  display: none;
}
.fq-rows.is-open { display: block; }

@media (max-width: 640px) {
  .fq-table { overflow-x: auto; }
  .fq-row { grid-template-columns: 28px 160px 100px 80px 100px 50px; width: max-content; min-width: 100%; }
  .fq-category { position: sticky; left: 0; }
  .fq-donut-card { padding: 20px; }
  .fq-donut-center { left: 20px; top: 20px; }
}

/* Placeholder voorbeeld-secties (dummy tekst, later aan te vullen) */
.placeholder-section {
  padding: 64px 0;
  border-top: 1px dashed var(--border);
}
.placeholder-section h2 {
  max-width: 680px;
}
.placeholder-section .section-intro {
  max-width: 640px;
}

.duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
}

.duo-card {
  padding: 32px;
  border-left: 1px solid var(--border);
}
.duo-card:first-child { border-left: none; }
.duo-card h3, .duo-card h4 { font-size: 1.1rem; margin-bottom: 12px; }
.duo-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0; }

@media (max-width: 640px) {
  .duo-grid { grid-template-columns: 1fr; }
  .duo-card { border-left: none; border-top: 1px solid var(--border); }
  .duo-card:first-child { border-top: none; }
}

.option-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.option-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.option-block h3 { font-size: 1.25rem; margin-bottom: 12px; }
.option-block > p { color: var(--ink-soft); margin-bottom: 0; }
.option-block .duo-grid { margin-top: 24px; margin-bottom: 24px; }

.option-tagline {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 0;
}

.option-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 4px;
}
.option-price-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.choice-section .eyebrow,
.choice-section h2,
.choice-section .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.choice-section h2 { max-width: none; }
.choice-section .section-intro { max-width: 640px; margin-bottom: 40px; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choice-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.choice-label {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.choice-card h3 { margin-bottom: 10px; }
.choice-card p:last-child { margin-bottom: 0; color: var(--ink-soft); }

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

/* Logo bar */
.logos {
  padding: 40px 0 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper-soft);
}

.logos-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.logo-slot {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: #B7BEB6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-intro {
  max-width: 560px;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-role {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* About */
.about { padding: 88px 0; }
.about-inner { max-width: 680px; }
.about p { font-size: 1.05rem; }

/* Dark CTA */
.cta-dark {
  background: var(--paper-soft);
  color: var(--ink);
  padding: 88px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-dark h2 { color: var(--black); }
.cta-dark p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 32px; }
.cta-dark-inner { max-width: 620px; margin: 0 auto; }
.cta-dark .hero-actions { justify-content: center; }

/* Contact / audit-aanvraagformulier */
.contact-form {
  padding: 88px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--border);
}

.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--black);
}
.contact-form-copy .section-intro {
  color: var(--ink-soft);
  max-width: 420px;
  margin-bottom: 0;
}

.contact-form-fields {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.form-row .optional {
  font-weight: 400;
  color: var(--ink-soft);
}
.form-row input,
.form-row textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  border-color: var(--coral);
}

.contact-form-fields .btn {
  align-self: flex-start;
}

.form-status {
  font-size: 0.9rem;
  margin-bottom: 0;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--cta-green); }
.form-status.is-error { color: var(--coral); }

@media (max-width: 720px) {
  .contact-form-inner { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--paper-soft);
  color: var(--ink);
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.logo-leaf-small { color: var(--spinach-300); display: flex; }

.footer-tagline {
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }

.footer-col-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.footer-col { display: flex; flex-direction: column; }
.footer-col a {
  color: var(--coral);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--ink); }

.footer-domain { color: var(--ink-soft); font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media-placeholder { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-border);
    padding: 12px 24px 20px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  .hero { padding: 56px 0 48px; }
  .about, .testimonials, .cta-dark { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
