/* ===========================================
   Marlies van Beek — Coaching & Advies
   Shared stylesheet
   =========================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-card: #ffffff;
  --ink: #0a1628;
  --ink-soft: #4a5874;
  --ink-muted: #8893a8;
  --line: #e6ecf4;
  --blue: #1652f0;
  --blue-deep: #0c3bc4;
  --blue-soft: #e8efff;
  --blue-tint: #f0f5ff;
  --accent: #00d4a8;
  --gold: #f5b942;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 2px 8px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(10, 22, 40, 0.08), 0 2px 6px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 12px 32px -8px rgba(22, 82, 240, 0.18), 0 4px 12px rgba(10, 22, 40, 0.06);
  --max-content: 720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  padding-bottom: 92px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }

/* Container — desktop wrapper, mobile full-width */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  background: var(--bg);
  position: relative;
}

@media (min-width: 720px) {
  .container {
    box-shadow: 0 0 80px rgba(10, 22, 40, 0.06);
  }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo em { color: var(--blue); font-style: italic; }
.menu-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.menu-btn:active { transform: scale(0.92); background: var(--bg-soft); }
.menu-btn[aria-expanded="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* SLIDE-OUT NAVIGATION */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: white;
  z-index: 61;
  padding: 80px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-panel.open { transform: translateX(0); }
.nav-panel a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-panel a:hover { color: var(--blue); }
.nav-panel a.active { color: var(--blue); }
.nav-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.nav-cta-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.nav-cta-block a {
  font-family: inherit;
  font-size: 14px;
  border: none;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HERO */
.hero {
  position: relative;
  padding: 28px 20px 36px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22, 82, 240, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -150px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 168, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--blue-soft);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  position: relative;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 212, 168, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 212, 168, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(0, 212, 168, 0); }
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(28px, 7.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.hero p.lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 38ch;
  position: relative;
}

/* Hero visual met foto */
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 24px;
  background: var(--bg-soft);
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.55) 100%);
  pointer-events: none;
}
.hero-visual-overlay {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  z-index: 2;
  gap: 12px;
}
.hero-visual-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  max-width: 60%;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-visual-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-visual-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(10, 22, 40, 0.2);
  color: var(--ink);
}
.hero-visual-badge:active {
  transform: translateY(0);
}
.hero-visual-badge strong { display: block; font-size: 14px; color: var(--blue); }

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
.trust-item-label {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.trust-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.trust-item-sub {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 13px;
}
.trust-item-value a {
  border-bottom: 1px dotted var(--ink-muted);
  transition: color 0.2s, border-color 0.2s;
}
.trust-item-value a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.stars { color: var(--gold); letter-spacing: -1px; font-size: 13px; }

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 14px rgba(22, 82, 240, 0.32);
}
.btn-primary:active { transform: scale(0.98); background: var(--blue-deep); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 6px 20px rgba(22, 82, 240, 0.4); color: white; }

.btn-secondary {
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:active { transform: scale(0.98); }

.cta-meta {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}
.cta-meta span { margin: 0 8px; opacity: 0.4; }

/* Section base */
.section {
  padding: 56px 20px 40px;
  position: relative;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.section h2 em { font-style: italic; color: var(--blue); }
.section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  margin-top: 24px;
  color: var(--ink);
}
.section-intro {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 40ch;
}
.section p { color: var(--ink-soft); margin-bottom: 16px; font-size: 15px; }
.section p strong { color: var(--ink); }
.section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.section ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px;
  height: 16px;
  background: var(--blue-soft);
  border-radius: 50%;
}
.section ul li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

/* Services scroller */
.services-section {
  background: var(--bg-soft);
  padding: 56px 0 40px;
}
.services-section .section-head { padding: 0 20px; margin-bottom: 24px; }
.services-scroll {
  display: flex;
  gap: 12px;
  padding: 4px 20px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.services-scroll::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 24px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* Outcomes */
.outcomes-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.outcome {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.outcome:last-child { border-bottom: 1px solid var(--line); }
.outcome-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
}
.outcome h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.outcome p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* Process — donker blok */
.process-section {
  background: var(--ink);
  color: white;
  padding: 56px 20px 40px;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22, 82, 240, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.process-section .section-tag { color: var(--accent); }
.process-section .section-tag::before { background: var(--accent); }
.process-section h2 { color: white; position: relative; }
.process-section h2 em { color: var(--accent); }
.process-section .section-intro { color: rgba(255,255,255,0.7); position: relative; }
.process-steps { position: relative; margin-top: 8px; }
.process-step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 60px;
  bottom: -10px;
  width: 2px;
  background: rgba(22, 82, 240, 0.3);
}
.process-step-num {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22, 82, 240, 0.15);
  z-index: 1;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Testimonials */
.testimonials-section { padding: 56px 0 40px; }
.testimonials-section .section-head { padding: 0 20px; margin-bottom: 24px; }
.testimonials-scroll {
  display: flex;
  gap: 14px;
  padding: 4px 20px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 300px;
  background: var(--blue-tint);
  border-radius: 20px;
  padding: 24px;
  scroll-snap-align: start;
  border: 1px solid var(--blue-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: -0.01em;
  flex-grow: 1;
}
.testimonial-author {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* FAQ */
.faq-section {
  padding: 56px 20px 40px;
  background: var(--bg-soft);
}
.faq-list { margin-top: 8px; }
.faq-item {
  background: var(--bg-card);
  border-radius: 14px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--blue-soft); }
.faq-q {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--blue); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Contact */
.contact-section {
  padding: 56px 20px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-tint) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(22, 82, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.form {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  transition: all 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(22, 82, 240, 0.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form .btn-primary { margin-top: 8px; }
.form-meta {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact methods grid */
.contact-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-method {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
}
.contact-method:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-content { flex: 1; }
.contact-method-label {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-method-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* Page hero (kleinere variant voor binnen-pagina's) */
.page-hero {
  padding: 28px 20px 24px;
  position: relative;
}
.page-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(30px, 8.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero p.lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.page-hero-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Footer — mobile basis */
.footer {
  padding: 40px 20px 24px;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: white;
  line-height: 1;
}
.footer-logo em { color: var(--accent); font-style: italic; }
.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-link-subtle {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.25);
  display: inline-block;
  width: fit-content;
}
.footer-link-subtle:hover {
  color: white;
  border-bottom-color: rgba(255,255,255,0.5);
}
.footer-link-accent {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}
.footer-link-accent:hover {
  color: white;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
}
.footer-nav a:hover { color: white; }
.footer-meta {
  font-size: 11px;
  opacity: 0.5;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Sticky bottom CTA */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
  box-shadow: 0 -4px 24px -8px rgba(10, 22, 40, 0.1);
  max-width: var(--max-content);
  margin: 0 auto;
}
.sticky-icon-btn {
  flex: 0 0 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.sticky-icon-btn:active { transform: scale(0.93); }
.sticky-icon-btn.wa { background: #25d366; color: white; border-color: #25d366; }
.sticky-cta-main {
  flex: 1;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s;
  box-shadow: 0 4px 14px rgba(22, 82, 240, 0.32);
}
.sticky-cta-main:active { transform: scale(0.98); }
.sticky-cta-main:hover { color: white; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(12px); animation: reveal 0.7s forwards; }
.reveal:nth-child(1) { animation-delay: 0.05s; }
.reveal:nth-child(2) { animation-delay: 0.15s; }
.reveal:nth-child(3) { animation-delay: 0.25s; }
.reveal:nth-child(4) { animation-delay: 0.35s; }
.reveal:nth-child(5) { animation-delay: 0.45s; }
.reveal:nth-child(6) { animation-delay: 0.55s; }
.reveal:nth-child(7) { animation-delay: 0.65s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* Bedankt page specifiek */
.thanks-hero {
  padding: 80px 24px 60px;
  text-align: center;
}
.thanks-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.thanks-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(32px, 9vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.thanks-hero h1 em { font-style: italic; color: var(--blue); }
.thanks-hero p { font-size: 16px; color: var(--ink-soft); max-width: 38ch; margin: 0 auto 12px; }

/* ============================================
   DESKTOP RESPONSIVE — vanaf 900px
   Premium Coaching / Editorial layout
   ============================================ */
@media (min-width: 900px) {
  :root {
    --max-content: none;
  }

  body {
    padding-bottom: 0;
    background: var(--bg);
  }

  /* Container — geen wrapping kaart meer, full-bleed */
  .container {
    max-width: none;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  /* Inner content max-width helper class */
  .section,
  .services-section .section-head,
  .services-scroll,
  .testimonials-section .section-head,
  .testimonials-scroll,
  .faq-section .section-tag,
  .faq-section h2,
  .faq-list,
  .contact-section > *:not(::before),
  .process-section > * {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  /* HEADER — sticky op desktop net als mobiel */
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
  }
  .logo {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .menu-btn { display: none; }

  .header .desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 32px;
    margin-left: auto;
  }
  .header .desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s;
    position: relative;
  }
  .header .desktop-nav a:hover {
    color: var(--ink);
  }
  .header .desktop-nav a.active {
    color: var(--blue);
  }
  .header .desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0; right: 0;
    height: 2px;
    background: var(--blue);
  }
  .header .desktop-nav .nav-cta {
    background: var(--ink);
    color: white;
    padding: 11px 22px;
    border-radius: 100px;
    font-size: 13px;
    transition: background 0.2s, transform 0.15s;
  }
  .header .desktop-nav .nav-cta:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-1px);
  }
  .header .desktop-nav .nav-cta::after { display: none; }

  /* HERO — asymmetrische magazine-cover ----- */
  .hero {
    padding: 100px 60px 120px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(22, 82, 240, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 168, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero > * { position: relative; z-index: 1; }
  .hero-eyebrow,
  .hero h1,
  .hero p.lead,
  .hero .trust-grid,
  .hero .btn,
  .hero .cta-meta {
    grid-column: 1;
    max-width: none;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: 1 / span 6;
    margin-bottom: 0;
    aspect-ratio: 4/5;
    max-height: 680px;
    transform: rotate(0.5deg);
  }
  .hero h1 {
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .hero p.lead {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 480px;
  }
  .hero .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 540px;
  }
  .hero .trust-item {
    padding: 12px 14px;
  }
  .hero .trust-item-label { font-size: 10px; }
  .hero .trust-item-value { font-size: 13px; }
  .hero .btn-primary {
    max-width: 320px;
    padding: 18px 28px;
    font-size: 16px;
  }
  .hero .cta-meta {
    text-align: left;
    max-width: 320px;
  }

  /* PAGE HERO — gecentreerd magazine intro */
  .page-hero {
    padding: 100px 60px 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .page-hero .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero h1 {
    font-size: clamp(44px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -0.025em;
  }
  .page-hero p.lead {
    font-size: 19px;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }
  .page-hero-image {
    max-width: 1080px;
    margin: 40px auto;
    aspect-ratio: 16/9;
    border-radius: 24px;
  }

  /* SECTIES — full-bleed met afwisselende achtergronden */
  .section {
    padding: 100px 60px;
    max-width: 800px;
  }
  .section h2 {
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .section h3 {
    font-size: 28px;
    margin-top: 40px;
  }
  .section p,
  .section ul li {
    font-size: 17px;
  }

  /* SERVICES — 3 cards, premium gevoel */
  .services-section {
    background: var(--bg-soft);
    padding: 120px 60px;
  }
  .services-section .section-head {
    max-width: 1080px;
    margin: 0 auto 60px;
    padding: 0;
    text-align: center;
  }
  .services-section h2 {
    font-size: clamp(40px, 4vw, 56px);
  }
  .services-section .section-intro {
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
    font-size: 17px;
  }
  .services-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
    overflow-x: visible;
  }
  .service-card {
    flex: none;
    min-height: 360px;
    padding: 40px 32px;
    background: white;
    border-radius: 24px;
    border-color: transparent;
    box-shadow: 0 4px 24px -8px rgba(10, 22, 40, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(22, 82, 240, 0.18);
  }
  .service-card .service-icon {
    width: 56px; height: 56px;
    border-radius: 18px;
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .service-card-link {
    font-size: 14px;
  }

  /* OUTCOMES — meer ademruimte, niet meer 2-koloms grid */
  .section .outcomes-list {
    display: block;
    max-width: 720px;
    margin: 32px auto 0;
  }
  .outcome {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
  .outcome:last-child { border-bottom: 1px solid var(--line); }
  .outcome-num {
    font-size: 36px;
  }
  .outcome h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .outcome p {
    font-size: 16px;
  }

  /* PROCESS — donkere sectie met meer ruimte */
  .process-section {
    padding: 120px 60px;
  }
  .process-section .section-tag,
  .process-section h2,
  .process-section .section-intro,
  .process-steps {
    max-width: 800px;
  }
  .process-section h2 {
    font-size: clamp(40px, 4vw, 56px);
  }
  .process-section .section-intro {
    font-size: 17px;
    max-width: 480px;
  }
  .process-step {
    padding: 28px 0;
  }
  .process-step h3 {
    font-size: 20px;
  }
  .process-step p {
    font-size: 16px;
  }

  /* TESTIMONIALS — premium feature: éérst grote quote, dan kleinere */
  .testimonials-section {
    padding: 120px 60px;
    background: var(--bg);
  }
  .testimonials-section .section-head {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0;
    text-align: center;
  }
  .testimonials-section h2 {
    font-size: clamp(40px, 4vw, 56px);
  }
  .testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow-x: visible;
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
  }
  .testimonial {
    flex: none;
    padding: 36px 32px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 4px 16px -4px rgba(10, 22, 40, 0.04);
  }
  .testimonial:nth-child(1) {
    grid-column: 1 / span 3;
    background: linear-gradient(135deg, var(--blue-tint) 0%, white 100%);
    padding: 56px 64px;
    border: none;
  }
  .testimonial:nth-child(1) .testimonial-quote {
    font-size: 28px;
    line-height: 1.3;
    max-width: 800px;
  }
  .testimonial:nth-child(1) .testimonial-stars {
    font-size: 16px;
  }
  .testimonial:nth-child(1) .testimonial-author {
    font-size: 15px;
  }
  .testimonial:nth-child(1) .testimonial-avatar {
    width: 40px; height: 40px;
    font-size: 14px;
  }
  .testimonial-quote {
    font-size: 17px;
    line-height: 1.5;
  }

  /* FAQ — gecentreerd, ruimere accordion */
  .faq-section {
    padding: 120px 60px;
    background: var(--bg-soft);
  }
  .faq-section .section-tag,
  .faq-section h2 {
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-section .section-tag {
    justify-content: center;
  }
  .faq-section h2 {
    font-size: clamp(40px, 4vw, 56px);
    margin-bottom: 48px;
  }
  .faq-list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-q {
    padding: 24px 28px;
    font-size: 17px;
  }
  .faq-a-inner {
    padding: 0 28px 24px;
    font-size: 16px;
  }

  /* CONTACT — gecentreerd formulier in lichte gradient */
  .contact-section {
    padding: 120px 60px;
  }
  .contact-section .section-tag,
  .contact-section h2,
  .contact-section .section-intro,
  .contact-section .form {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section .section-tag {
    justify-content: center;
  }
  .contact-section h2 {
    font-size: clamp(40px, 4vw, 56px);
    text-align: center;
  }
  .contact-section .section-intro {
    text-align: center;
    font-size: 17px;
  }
  .form {
    padding: 48px;
    border-radius: 28px;
  }

  /* CONTACT methods grid */
  .contact-methods {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 800px;
    margin: 32px auto;
  }

  /* FOOTER — desktop 3-koloms compact */
  .footer {
    padding: 48px 60px 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px 48px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-logo {
    font-size: 28px;
  }
  .footer-contact {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-nav {
    grid-column: 3;
    grid-row: 1;
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-meta {
    grid-column: 1 / span 3;
    grid-row: 2;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .sticky-cta { display: none !important; }

  /* Thanks page */
  .thanks-hero {
    padding: 160px 60px 100px;
  }
  .thanks-hero h1 {
    font-size: clamp(48px, 5vw, 64px);
  }
  .thanks-icon {
    width: 96px; height: 96px;
  }
}

/* ============================================
   GROTERE DESKTOP — vanaf 1200px
   ============================================ */
@media (min-width: 1200px) {
  .hero {
    padding: 120px 80px 140px;
    gap: 100px;
  }
  .hero h1 {
    font-size: 72px;
  }
}
