:root {
  --ink: #14131a;
  --ink-soft: #54525f;
  --paper: #f6f5f8;
  --paper-warm: #ecebf0;
  --accent: #9747ff;
  --accent-deep: #7a2fe0;
  --line: #dddce3;
  --card: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Spline Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}

h1, h2, h3 {
  font-family: 'Spline Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

/* Fraunces alleen voor het display-moment (hero H1) en de twee quotes */
.hero h1,
.case-quote,
.recommend-quote {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 100; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 245, 248, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 30px; width: auto; }
.logo-footer img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 15px;
  color: var(--ink-soft); transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 11px 22px; border-radius: 2px; font-size: 14px;
  text-decoration: none; transition: background .2s, color .2s;
}
.nav-links a.nav-cta:hover { background: var(--accent); color: var(--paper); }

/* Hamburger toggle (verborgen op desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 9px 11px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle-bars {
  display: block;
  width: 22px; height: 14px;
  position: relative;
}
.nav-toggle-bars span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 6px; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 6px; transform: rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero { padding: 110px 0 96px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: 60px; right: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 71, 255, 0.12), transparent 70%);
  z-index: 0; pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600; margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  max-width: 16ch; margin-bottom: 32px;
  position: relative; z-index: 1;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--ink-soft); max-width: 52ch;
  margin-bottom: 40px; position: relative; z-index: 1;
}
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-credentials {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  list-style: none;
  position: relative;
  z-index: 1;
}
.hero-credentials li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-num {
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cred-lbl {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 16px 32px; border-radius: 2px;
  font-size: 16px; font-weight: 500;
  text-decoration: none; display: inline-block;
  transition: transform .15s, background .2s;
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-text {
  font-size: 16px; text-decoration: none; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-text:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- TRUST STRIP ---------- */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.trust-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
}
.trust-label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.trust-names {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 1000px;
  list-style: none;
}
.trust-names li {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink); opacity: 0.65;
  line-height: 1.2;
  padding: 22px 8px;
  background: rgba(20, 19, 26, 0.025);
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
  transition: opacity .2s ease, transform .2s ease,
              border-color .2s ease, background-color .2s ease;
  cursor: default;
  min-height: 70px;
}
.trust-names li:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #ffffff;
}

/* ---------- SECTION SHELL ---------- */
section { padding: 96px 0; }
.sec-eyebrow {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600; margin-bottom: 18px;
}
.sec-title { font-size: clamp(28px, 3.6vw, 36px); max-width: 20ch; margin-bottom: 24px; }
.sec-intro { font-size: 18px; color: var(--ink-soft); max-width: 56ch; }

/* ---------- PROBLEM ---------- */
.problem { background: var(--paper-warm); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.problem-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 26px; margin-top: 6px;
}
.problem-item { display: flex; gap: 18px; }
.problem-num {
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent); flex-shrink: 0; width: 30px;
  padding-top: 3px;
}
.problem-item h3 { font-size: 19px; margin-bottom: 6px; }
.problem-item p { font-size: 16px; color: var(--ink-soft); }
.problem-close {
  margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line);
  font-size: 18px; color: var(--ink); max-width: 70ch; line-height: 1.6;
}

/* ---------- SERVICES ---------- */
.svc-feature {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  background: var(--ink); color: var(--paper);
  border-radius: 3px; overflow: hidden; margin-top: 52px;
}
.svc-feature-body { padding: 46px 44px; }
.svc-feature-body .svc-tag { color: #b98bff; }
.svc-feature-body h3 { font-size: 26px; margin-bottom: 14px; }
.svc-feature-body > p { font-size: 16px; color: #b6b4c2; margin-bottom: 24px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.svc-list li {
  font-size: 15px; color: #e3e1ea;
  padding-left: 26px; position: relative;
}
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1.5px; background: var(--accent);
}
.svc-feature-meta {
  background: #211f2b; padding: 46px 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.svc-meta-block { display: flex; flex-direction: column; gap: 5px; }
.svc-meta-k {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #b98bff; font-weight: 600;
}
.svc-meta-v { font-size: 15px; color: #e3e1ea; }
.svc-meta-investment {
  padding-top: 18px;
  border-top: 1px solid #2e2c39;
}
.svc-meta-investment .svc-meta-k { color: #c9a8ff; }
.svc-feature-cta { margin-top: auto; text-align: center; }

.svc-bridge {
  text-align: center; font-size: 16px; color: var(--ink-soft);
  max-width: 58ch; margin: 44px auto 30px; line-height: 1.6;
}

.svc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.svc-card-wide {
  background: var(--card); border: 1px solid var(--line);
  padding: 36px 30px; border-radius: 3px;
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 36px; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.svc-card-wide:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -22px rgba(28, 26, 23, 0.4);
  border-color: var(--accent);
}
.svc-tag {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600; margin-bottom: 16px;
}
.svc-card-wide h3 { font-size: 22px; margin-bottom: 12px; }
.svc-card-wide > div > p { font-size: 15px; color: var(--ink-soft); }
.svc-meta {
  font-size: 14px; color: var(--ink-soft);
  padding-top: 0; border-top: none;
}
.svc-meta strong { color: var(--ink); font-weight: 600; }

.process-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  counter-reset: step;
  position: relative;
}
.process-timeline li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.process-timeline li:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px -22px rgba(28, 26, 23, 0.35);
}
.step-num {
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.step-week {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}
.step-name {
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 2px 0 8px;
  line-height: 1.25;
}
.process-timeline p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- CASE ---------- */
.case { background: var(--ink); color: var(--paper); }
.case .sec-eyebrow { color: #b98bff; }
.case-title {
  font-size: clamp(28px, 3.6vw, 36px); max-width: 20ch; margin-bottom: 24px;
}
.case-body {
  font-size: 17px; color: #b6b4c2; max-width: 62ch; margin-bottom: 48px;
}
.case-quote {
  /* Fraunces blijft hier (uit globale rule) */
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 400; line-height: 1.35; max-width: 30ch; margin: 48px 0 16px;
}
.case-quote em { color: #b98bff; font-style: italic; }
.case-attr { font-size: 14px; color: #9a98a6; }
.case-stats {
  display: flex; gap: 56px; flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid #2e2c39; border-bottom: 1px solid #2e2c39;
  list-style: none;
}
.case-stat .num {
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 40px; font-weight: 600; color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.case-stat .lbl { font-size: 14px; color: #9a98a6; margin-top: 8px; max-width: 22ch; }

.case-channels { margin-top: 44px; }
.case-channels-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b98bff;
  font-weight: 600;
  margin-bottom: 18px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.channel-card {
  background: #1f1d29;
  border: 1px solid #2e2c39;
  border-radius: 3px;
  padding: 22px 22px 20px;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.channel-card:hover {
  transform: translateY(-3px);
  border-color: #b98bff;
  background: #25232f;
}
.channel-name {
  display: block;
  font-family: 'Spline Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.channel-card p {
  font-size: 14px;
  color: #b6b4c2;
  line-height: 1.5;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--paper-warm), var(--line));
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-text h2 { font-size: clamp(26px, 3.4vw, 32px); margin-bottom: 24px; }
.about-text p { font-size: 17px; color: var(--ink-soft); margin-bottom: 16px; }
.about-text p strong { color: var(--ink); font-weight: 600; }

.about-qa {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}
.about-qa h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.3;
}
.about-qa p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0;
}
.recommend {
  margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line);
  max-width: 72ch;
}
.recommend-quote {
  /* Fraunces blijft hier (uit globale rule) */
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 400; line-height: 1.4; color: var(--ink); margin-bottom: 16px;
}
.recommend-attr { font-size: 14px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq .sec-title { margin-bottom: 36px; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary {
  background-color: transparent;
  transition: color .15s ease, background-color .15s ease;
}
.faq-item summary:hover {
  color: var(--accent);
  background-color: rgba(151, 71, 255, 0.04);
}
.faq-item[open] > summary { color: var(--ink); }
.faq-q {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform .25s ease, opacity .2s ease;
}
.faq-icon::before {
  /* horizontal line */
  left: 2px; right: 2px;
  top: 50%; height: 2px;
  margin-top: -1px;
  border-radius: 1px;
}
.faq-icon::after {
  /* vertical line */
  top: 2px; bottom: 2px;
  left: 50%; width: 2px;
  margin-left: -1px;
  border-radius: 1px;
}
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 4px 24px;
  max-width: 65ch;
}
.faq-a p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact { background: var(--paper-warm); text-align: center; }
.contact h2 {
  font-size: clamp(30px, 4vw, 42px);
  max-width: 18ch; margin: 0 auto 24px;
}
.contact p {
  font-size: 18px; color: var(--ink-soft);
  max-width: 50ch; margin: 0 auto 40px;
}
.contact-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink); color: #9a98a6; padding: 44px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-inner .logo { color: var(--paper); }
.footer-inner a { color: #9a98a6; text-decoration: none; font-size: 14px; }
.footer-inner a:hover { color: var(--paper); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; list-style: none; }
.footer-copy { font-size: 13px; }

/* ---------- REVEAL ANIMATION (progressive enhancement) ---------- */
.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 32px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .25s ease, visibility 0s linear .25s;
    box-shadow: 0 14px 30px -18px rgba(20, 19, 26, 0.2);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: opacity .2s ease, transform .25s ease, visibility 0s linear 0s;
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links a.nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    padding: 14px 22px;
    font-size: 15px;
  }
  .problem-grid, .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .svc-card-wide { grid-template-columns: 1fr; gap: 22px; }
  .svc-feature { grid-template-columns: 1fr; }
  .svc-feature-body { padding: 36px 28px; }
  .svc-feature-meta { padding: 32px 28px; }
  .hero { padding: 70px 0 64px; }
  section { padding: 68px 0; }
  .case-stats { gap: 36px; }
  .hero-credentials { gap: 28px; margin-top: 40px; padding-top: 24px; }
  .cred-num { font-size: 26px; }
  .channel-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-timeline li { padding: 18px 18px 20px; }
  .step-name { font-size: 16px; }
  .trust { padding: 32px 0; }
  .trust-inner { gap: 16px; }
  .trust-names {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-names li {
    font-size: 14px;
    padding: 18px 6px;
    min-height: 60px;
  }
}
