/* De AI Professional — website
   Lichte web-variant van het brand-systeem.
   Donker navy blijft voor social en carousels, deze site is licht.
   Behoudt: Fraunces headlines met 1 oranje italic kernwoord, Inter body,
   JetBrains Mono labels, oranje + cyan accenten. */

:root {
  /* Oppervlak (licht) */
  --bg: #FBFAF8;
  --bg-alt: #F2F4F7;
  --surface: #FFFFFF;

  /* Ink (navy als tekstkleur op licht) */
  --ink: #0A0E1F;
  --ink-80: rgba(10, 14, 31, 0.84);
  --ink-70: rgba(10, 14, 31, 0.72);
  --ink-55: rgba(10, 14, 31, 0.55);
  --ink-40: rgba(10, 14, 31, 0.40);

  /* Accenten */
  --orange: #FF6B35;
  --orange-soft: #FF8B5C;
  --orange-ink: #E0531F;          /* donkerder oranje voor tekst/links op wit */
  --cyan: #4DD0E1;
  --teal: #0E7C8B;                /* leesbare cyan-variant voor tekst op licht */
  --teal-soft: rgba(77, 208, 225, 0.14);

  /* Lijnen en schaduw */
  --line: rgba(10, 14, 31, 0.10);
  --line-soft: rgba(10, 14, 31, 0.06);
  --shadow-card: 0 18px 40px -22px rgba(10, 14, 31, 0.28);
  --shadow-btn: 0 10px 24px -10px rgba(255, 107, 53, 0.55);

  /* Typografie */
  --font-serif: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* Maat */
  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-80);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Zachte warme gloed zodat het licht niet vlak-wit wordt */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(720px 520px at 88% -5%, rgba(77, 208, 225, 0.10), transparent 60%),
    radial-gradient(680px 520px at 6% 102%, rgba(255, 107, 53, 0.08), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

::selection { background: var(--orange); color: #fff; }

a { color: var(--teal); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--ink); }

img { max-width: 100%; display: block; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-serif); color: var(--ink); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; }
.accent { font-style: italic; color: var(--orange); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 16px;
}
.eyebrow--orange { color: var(--orange-ink); }

.pill {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--ink-70); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--orange-soft); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--teal); min-height: auto; padding: 0; border-radius: 0; }
.btn-ghost:hover { color: var(--ink); transform: none; }
.btn-arrow::after { content: "\2192"; font-size: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 21px; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand .brand-mark { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--ink), #1E2A4A); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 15px; }
.brand .brand-mark img { width: 23px; height: 23px; object-fit: contain; display: block; }
.brand b { font-weight: 400; }
.brand .accent { font-style: italic; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-70); font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--ink); }
.nav .btn { min-height: 44px; padding: 0 20px; font-size: 15px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; color: var(--ink); font-size: 20px; align-items: center; justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.4vw, 70px); margin: 18px 0 22px; }
.hero .lead { font-size: 20px; color: var(--ink-70); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 22px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-55); letter-spacing: 0.02em; }

.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-card); object-fit: cover; aspect-ratio: 4 / 5; }
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-card);
  font-size: 14px; color: var(--ink-70); max-width: 240px;
}
.hero-badge strong { display: block; font-family: var(--font-serif); font-size: 24px; color: var(--ink); line-height: 1; margin-bottom: 4px; }

/* ---------- Trust-strip (cijfers) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 44px); color: var(--ink); line-height: 1; }
.stat .num .accent { font-style: italic; }
.stat .label { font-size: 14px; color: var(--ink-55); margin-top: 8px; }

/* ---------- Card-grid (stromen, features) ---------- */
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.card .card-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { font-size: 16px; color: var(--ink-70); margin-bottom: 18px; }
.card .card-price { font-family: var(--font-mono); font-size: 14px; color: var(--ink); margin-bottom: 18px; }
.card .card-link { margin-top: auto; font-weight: 600; }
.card-step .step-num { font-family: var(--font-serif); font-size: 40px; color: var(--orange); font-style: italic; line-height: 1; margin-bottom: 14px; }

/* ---------- Flow-methode (genummerde rij) ---------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; }
.flow-item .flow-n { font-family: var(--font-mono); font-size: 13px; color: var(--teal); letter-spacing: 0.1em; }
.flow-item h3 { font-size: 21px; margin: 10px 0 8px; }
.flow-item p { font-size: 15px; color: var(--ink-70); }

/* ---------- Lijsten (voor wie / niet voor wie) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.list-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.list-card h3 { font-size: 22px; margin-bottom: 18px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; gap: 13px; font-size: 16px; color: var(--ink-80); line-height: 1.5; }
.checklist .mark { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 2px; }
.checklist .mark.yes { background: rgba(127, 229, 211, 0.25); color: #1d7d68; }
.checklist .mark.no { background: rgba(10, 14, 31, 0.06); color: var(--ink-40); }

/* ---------- Prijs-blok ---------- */
.price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.price-row .price { font-family: var(--font-serif); font-size: 38px; color: var(--ink); }
.price-row .price-unit { font-family: var(--font-mono); font-size: 14px; color: var(--ink-55); }

/* ---------- Steps (3-stappen-traject) ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--font-serif); font-style: italic; font-size: 34px; color: var(--orange); width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 16px; color: var(--ink-70); }

/* ---------- Person / about ---------- */
.person { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-card); }
.person img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%; }
.person .role { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin: 4px 0 14px; }
.person h3 { font-size: 28px; }
.person p { font-size: 16px; color: var(--ink-70); margin-bottom: 14px; }

/* Monogram-avatar (fallback als er nog geen foto is) */
.avatar-mono { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; width: 100%; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--ink), #1E2A4A); color: #fff; font-family: var(--font-serif); font-style: italic; line-height: 1; }

/* Founders-rij (compacte duo-kaarten, o.a. op home) */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.founder-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: flex; gap: 20px; align-items: center; }
.founder-card img, .founder-card .avatar-mono { width: 96px; height: 96px; flex-shrink: 0; border-radius: var(--radius-sm); object-fit: cover; }
.founder-card .avatar-mono { font-size: 38px; }
.founder-card h3 { font-size: 21px; margin-bottom: 2px; }
.founder-card .role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.founder-card p { font-size: 15px; color: var(--ink-70); }

/* ---------- CTA-band ---------- */
.cta-band { background: linear-gradient(150deg, var(--ink) 0%, #131A2E 100%); border-radius: 22px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 80% 10%, rgba(255,107,53,0.22), transparent 60%); pointer-events: none; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; position: relative; }
.cta-band h2 .accent { color: var(--orange-soft); }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); position: relative; }
.cta-band .btn-secondary:hover { border-color: #fff; color: #fff; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
details.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
details.faq-item[open] { border-color: var(--ink-40); }
details.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-family: var(--font-mono); font-size: 22px; color: var(--orange); transition: transform 0.2s; }
details.faq-item[open] summary::after { content: "\2212"; }
details.faq-item .faq-answer { padding: 0 24px 22px; color: var(--ink-70); font-size: 15px; line-height: 1.7; }
details.faq-item .faq-answer p + p { margin-top: 10px; }

/* ---------- Formulier ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }
.form-card h2 { font-size: 26px; margin-bottom: 8px; }
.form-card .lead { color: var(--ink-55); font-size: 15px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field textarea { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; width: 100%; transition: border-color 0.15s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-40); }
.form-card .btn { width: 100%; }
.form-disclaimer { margin-top: 16px; font-size: 12px; color: var(--ink-40); text-align: center; line-height: 1.5; }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; }
.prose h2 { font-size: 24px; margin: 36px 0 12px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-70); margin-bottom: 12px; }
.prose ul { padding-left: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 32px; margin-top: 0; }
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand .brand-mark { background: rgba(255,255,255,0.12); }
.site-footer p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 320px; }
.site-footer h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); font-size: 15px; }
.site-footer a:hover { color: #fff; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px; }
.footer-base .wrap { display: flex; justify-content: space-between; gap: 16px; grid-template-columns: none; }
.footer-base p { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- Community-screenshots ---------- */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.shots img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); }

/* ---------- Uitgelichte kaart (Drie manieren) ---------- */
.card--feature { border-color: var(--orange); box-shadow: 0 22px 50px -24px rgba(255, 107, 53, 0.45); }
.card--feature .card-tag { color: var(--orange-ink); }

/* ---------- Flow-methode als verbonden route ---------- */
.flowpath { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flowpath .flow-track { position: absolute; top: 23px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line); z-index: 0; overflow: hidden; }
.flowpath .flow-fill { display: block; height: 100%; width: calc(var(--progress, 0) * 100%); background: var(--orange); transition: width .12s linear, height .12s linear; }
.flowpath .flow-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.flowpath.in .flow-step { opacity: 1; transform: none; }
.flowpath.in .flow-step:nth-of-type(1) { transition-delay: .05s; }
.flowpath.in .flow-step:nth-of-type(2) { transition-delay: .14s; }
.flowpath.in .flow-step:nth-of-type(3) { transition-delay: .23s; }
.flowpath.in .flow-step:nth-of-type(4) { transition-delay: .32s; }
.flowpath .flow-dot { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 0 auto 18px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line); font-family: var(--font-mono); font-size: 13px; color: var(--ink-55); transition: border-color .3s ease, color .3s ease, background .3s ease; }
.flowpath .flow-step.active .flow-dot { border-color: var(--orange); color: var(--orange-ink); background: #fff; }
.flowpath .flow-step h3 { font-size: 21px; margin: 0 0 8px; }
.flowpath .flow-step p { font-size: 15px; color: var(--ink-70); }

/* ---------- Afwisselend tekst en beeld (Wat het oplevert) ---------- */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.feature + .feature { margin-top: 44px; }
.feature-visual img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-card); object-fit: cover; aspect-ratio: 4 / 3; }
.feature-text h3 { font-size: clamp(26px, 3vw, 34px); margin: 12px 0 14px; }
.feature-text p { font-size: 17px; color: var(--ink-70); margin-bottom: 4px; }
.feature-text .card-tag { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }

/* ---------- Scroll-reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
.flowpath[data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .flowpath { grid-template-columns: 1fr; gap: 0; }
  .flowpath .flow-track { top: 0; bottom: 0; left: 23px; right: auto; width: 2px; height: auto; }
  .flowpath .flow-fill { width: 100%; height: calc(var(--progress, 0) * 100%); }
  .flowpath .flow-step { display: grid; grid-template-columns: 48px 1fr; gap: 4px 18px; text-align: left; padding: 0 0 30px; }
  .flowpath .flow-dot { grid-row: 1 / span 2; margin: 0; }
  .flowpath .flow-step h3 { align-self: center; }
  .feature, .feature--flip { grid-template-columns: 1fr; gap: 24px; }
  .feature--flip .feature-visual { order: 2; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .flowpath .flow-step { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .cards-3, .cards-4, .flow { grid-template-columns: 1fr 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.25s; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { margin-top: 14px; }
  .nav-toggle { display: inline-flex; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .cards-3, .cards-4, .flow, .split, .tiers { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .person { grid-template-columns: 1fr; text-align: center; }
  .person img { max-width: 200px; margin: 0 auto; }
  .founders { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; text-align: center; }
  .cta-band { padding: 40px 24px; }
  .hero-badge { left: 0; }
  .site-footer .wrap, .footer-base .wrap { grid-template-columns: 1fr; }
  .footer-base .wrap { flex-direction: column; }
}

/* ---- AI-ladder (homepage): opbouwende tijdlijn van vijf niveaus ---- */
.ladder { position: relative; max-width: 940px; margin: 44px auto 0; }

.rung { position: relative; padding-left: 80px; padding-bottom: 36px; }
.rung:last-child { padding-bottom: 0; }
/* de rail: verbindt elk knooppunt met het volgende, en wordt naar boven toe oranjer */
.rung:not(:last-child)::after { content: ""; position: absolute; left: 27px; top: 62px; bottom: -10px; width: 2px;
  background: linear-gradient(to bottom, var(--line), var(--orange-soft)); z-index: 0; }

.rung-num { position: absolute; left: 0; top: 4px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line); z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-size: 23px; color: var(--ink-55);
  box-shadow: var(--shadow-card); }
/* hoe hoger op de ladder, hoe meer oranje het knooppunt */
.rung:nth-child(2) .rung-num { color: var(--orange-ink); border-color: rgba(255,107,53,.35); }
.rung:nth-child(3) .rung-num { color: var(--orange-ink); border-color: rgba(255,107,53,.55); }
.rung:nth-child(4) .rung-num { color: var(--orange-ink); border-color: rgba(255,107,53,.75); }
.rung:nth-child(5) .rung-num { color: #fff; background: var(--orange); border-color: var(--orange); box-shadow: var(--shadow-btn); }

.rung-card { background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: 26px 30px; }
/* hoe hoger op de ladder, hoe warmer de linkerrand: subtiele progressie zonder donkere posters */
.rung:nth-child(2) .rung-card { border-left: 3px solid rgba(255,107,53,.35); }
.rung:nth-child(3) .rung-card { border-left: 3px solid rgba(255,107,53,.55); }
.rung:nth-child(4) .rung-card { border-left: 3px solid rgba(255,107,53,.75); }
.rung:nth-child(5) .rung-card { border-left: 3px solid var(--orange); }
.rung-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.rung-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-55); margin: 0; }
.rung-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); background: var(--teal-soft); border-radius: var(--radius-pill); padding: 5px 13px; white-space: nowrap; }
.rung-badge.is-premium { color: var(--orange-ink); background: rgba(255,107,53,.1); }
.rung-card h3 { font-size: 23px; line-height: 1.2; margin-bottom: 16px; }
.rung-learn { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.rung-learn li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.5; color: var(--ink-70); }
.rung-learn li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

@media (max-width: 760px) {
  .rung-learn { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ladder::before { left: 19px; }
  .rung { padding-left: 56px; }
  .rung-num { width: 40px; height: 40px; top: 2px; font-size: 17px; }
  .rung-body { padding: 22px 22px; }
}

/* Content / artikel (leeskolom, herbruikbaar voor kennis-pagina's) */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body > p:first-of-type { font-size: 19px; color: var(--ink-80); }
.article-body h2 { font-family: var(--font-serif); font-size: clamp(23px, 3vw, 29px); line-height: 1.2; margin: 44px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { color: var(--ink-80); font-size: 17px; line-height: 1.75; margin: 0 0 16px; }
.article-body ul { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { position: relative; padding-left: 26px; color: var(--ink-80); font-size: 17px; line-height: 1.6; }
.article-body ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--orange-ink); text-decoration: underline; text-underline-offset: 2px; }
.article-cta { max-width: 720px; margin: 8px auto 0; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); text-align: center; }
.article-cta h2 { font-family: var(--font-serif); font-size: 25px; margin: 0 0 10px; }
.article-cta p { color: var(--ink-70); margin: 0 0 18px; }

/* ---------- Reviews, statisch (zichtbaar zonder JS, met schema) ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.review-card .quote { font-size: 15px; line-height: 1.65; color: var(--ink-80); margin: 0 0 18px; }
.review-card .quote mark { background: rgba(255,107,53,.14); color: var(--ink); padding: 0 2px; border-radius: 3px; }
.review-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.review-who { display: flex; flex-direction: column; }
.review-who .who-name { font-weight: 600; color: var(--ink); font-size: 15px; }
.review-who .who-role { font-size: 13px; color: var(--ink-55); }
.review-src { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); white-space: nowrap; }
.reviews-foot { text-align: center; margin-top: 30px; }
.reviews-rating { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-70); margin-bottom: 16px; }
.reviews-rating .stars { color: var(--orange); font-size: 17px; letter-spacing: 2px; }
@media (max-width: 920px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- Maand-agenda (telbare waarde onder de tiers) ---------- */
.agenda { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 30px 32px; max-width: 760px; margin: 0 auto; }
.agenda h3 { font-size: 22px; margin-bottom: 18px; }
.agenda-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.agenda-list li { display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.agenda-list li:last-child { border-bottom: 0; }
.agenda-day { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); flex: 0 0 132px; }
.agenda-what { font-size: 16px; color: var(--ink-80); }
.agenda-what b { font-weight: 600; color: var(--ink); }
.agenda-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-55); margin-left: 8px; }
@media (max-width: 560px) { .agenda-list li { flex-direction: column; gap: 4px; } .agenda-day { flex-basis: auto; } }

/* ---------- Proefweek-strook op Premium-tier ---------- */
.trial-note { background: rgba(255,107,53,.08); border: 1px solid rgba(255,107,53,.2); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px; color: var(--ink); margin: 4px 0 16px; }
.trial-note b { font-weight: 600; }
.tier-fineprint { color: var(--ink-55); font-size: 14px; margin: 6px 0 16px; }

/* ---------- Footer-trust (bedrijfsgegevens) ---------- */
.footer-trust { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 14px; line-height: 1.7; }
.footer-trust a { color: rgba(255,255,255,0.75); }

/* ---------- E-mailvangnet (optin, gekoppeld aan Kit) ---------- */
.optin { max-width: 640px; margin: 0 auto; text-align: center; }
.optin h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 12px; }
.optin > p { font-size: 18px; color: var(--ink-70); }
.optin-form { display: flex; gap: 12px; max-width: 500px; margin: 24px auto 12px; }
.optin-form input[type="email"] { flex: 1; min-width: 0; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0 22px; min-height: 52px; transition: border-color 0.15s; }
.optin-form input[type="email"]:focus { outline: none; border-color: var(--teal); }
.optin-form input[type="email"]::placeholder { color: var(--ink-40); }
.optin-form .btn { white-space: nowrap; }
@media (max-width: 520px) { .optin-form { flex-direction: column; } }

/* ---------- Utility (verving van losse inline-styles) ---------- */
.btn-full { width: 100%; }
.mt-24 { margin-top: 24px; }
.center { text-align: center; }
.tier-card--vip { border-color: var(--orange); }

/* ---------- Tools-bibliotheek (/tools) ---------- */

/* Tool-pagina: asymmetrische hero met een preview van wat je krijgt */
.tool-hero { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.tool-hero h1 { font-size: clamp(33px, 4.4vw, 54px); margin: 8px 0 0; }
.tool-outcome { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.03em; color: var(--orange-ink); margin: 14px 0 16px; }
.tool-hero .lead { font-size: 19px; color: var(--ink-70); max-width: 30em; margin-bottom: 26px; }
.hero-free { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.03em; color: var(--teal); }

/* De preview zelf: een licht kaartje met een floating label */
.asset-preview { position: relative; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 30px); box-shadow: var(--shadow-card); }
.asset-preview svg { width: 100%; height: auto; display: block; border-radius: 10px; }
.asset-tag { position: absolute; top: -13px; left: 22px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 5px 13px; box-shadow: var(--shadow-card); }

/* In dit pakket: kop links, gecheckte lijst rechts */
.pakket { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.pakket-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.pakket-voor { font-size: 15px; color: var(--ink-70); margin-top: 8px; }
.pakket-voor strong { color: var(--ink); font-weight: 600; }
.pakket-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.pakket-list li { position: relative; padding-left: 34px; font-size: 16px; color: var(--ink-80); line-height: 1.5; }
.pakket-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--orange-ink); background: rgba(255, 107, 53, 0.12); border-radius: 50%; }

/* Zo werkt het: drie stappen */
.howto { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); max-width: 920px; margin: 0 auto; }
.howto-step { text-align: center; padding: 0 8px; }
.howto-n { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); font-family: var(--font-serif); font-style: italic; font-size: 26px; color: var(--orange); box-shadow: var(--shadow-card); }
.howto-step h3 { font-size: 20px; margin-bottom: 8px; }
.howto-step p { font-size: 15px; color: var(--ink-70); }

/* Uitgelichte tool op de hub (hergebruikt .feature) */
.tool-feature { align-items: center; }
.tool-feature .feature-text h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 12px 0 12px; }
.tool-feature .feature-text p { margin-bottom: 10px; }
.tool-feature .hero-cta { margin-top: 20px; }

/* Tool-kaarten met preview-thumbnail */
.tool-cards { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.tool-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.tool-card:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -26px rgba(10, 14, 31, 0.34); border-color: rgba(255, 107, 53, 0.4); color: inherit; }
.tool-card-preview { background: var(--bg-alt); border-bottom: 1px solid var(--line-soft); padding: 22px 22px 0; }
.tool-card-preview svg { width: 100%; height: auto; display: block; }
.tool-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.tool-card-body .card-tag { margin-bottom: 12px; }
.tool-card-body h3 { font-size: 21px; margin-bottom: 10px; }
.tool-card-body p { font-size: 15px; color: var(--ink-70); margin-bottom: 18px; }
.tool-card-body .card-link { margin-top: auto; font-weight: 600; color: var(--orange-ink); }

@media (max-width: 920px) {
  .tool-hero { grid-template-columns: 1fr; gap: 36px; }
  .tool-hero-visual { max-width: 520px; }
  .pakket { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 680px) {
  .howto { grid-template-columns: 1fr; gap: 22px; }
  .pakket-list { grid-template-columns: 1fr; }
  .howto-step { display: grid; grid-template-columns: 56px 1fr; gap: 2px 18px; text-align: left; }
  .howto-n { grid-row: 1 / span 2; margin-bottom: 0; }
  .howto-step h3 { align-self: end; }
}

/* ---------- Header-dropdown (Hoe wij helpen) ---------- */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink-70); background: none; border: 0; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
.nav-dropdown-trigger::after { content: ""; width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s ease; opacity: 0.7; }
.nav-dropdown:hover .nav-dropdown-trigger, .nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--ink); }
.nav-dropdown:hover .nav-dropdown-trigger::after, .nav-dropdown:focus-within .nav-dropdown-trigger::after { transform: rotate(225deg) translateY(2px); opacity: 1; }
.nav-dropdown-trigger:focus-visible { outline: 2px solid var(--teal); outline-offset: 5px; border-radius: 4px; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 224px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease; z-index: 60; }
.nav-dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.nav-dropdown-menu a { font-size: 15px; font-weight: 500; color: var(--ink-70); padding: 10px 14px; border-radius: 8px; white-space: nowrap; }
.nav-dropdown-menu a:hover { color: var(--ink); background: var(--bg-alt); }

@media (max-width: 680px) {
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown-trigger { display: none; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; background: transparent; border: 0; box-shadow: none; padding: 0; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
}
