/* ============================================================
   AI1OP1 — main stylesheet (v0.2.0)
   Paraplu voor 1-op-1 AI-trainingen.
   Coral + midnight blue. Overgenomen uit leervibecoden, uitgebreid
   met paraplu-specifieke styling (variant-kaarten, cross-links, /test).
   ============================================================ */

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

:root {
  --coral:       #e84c1e;
  --coral-dark:  #c23d16;
  --coral-light: #f07050;
  --coral-bg:    rgba(232,76,30,.08);
  --midnight:    #0f1f3d;
  --midnight2:   #1a3660;
  --midnight3:   #254a8a;
  --sand:        #f5e6d3;
  --warm-bg:     #faf8f5;
  --white:       #ffffff;
  --dark2:       #1e293b;
  --dark3:       #334155;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --green:       #16a34a;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--midnight); background: var(--white); line-height: 1.6; padding-top: 68px; /* ruimte voor sticky nav */ }

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--dark3); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── KNOPPEN ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,76,30,.4); }
.btn-secondary { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral); color: #fff; }
.btn-dark { background: var(--midnight); color: #fff; }
.btn-dark:hover { background: var(--midnight2); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

.tag { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: 50px; }
.tag-coral { background: var(--coral-bg); color: var(--coral); border: 1px solid rgba(232,76,30,.2); }
.tag-green { background: rgba(22,163,74,.1); color: var(--green); }
.tag-sand { background: var(--sand); color: var(--midnight); }
.section-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--coral); margin-bottom: 12px; display: block; }
.divider { width: 48px; height: 4px; background: linear-gradient(90deg, var(--coral), #f5a623); border-radius: 2px; margin: 16px 0 24px; }
.divider-center { margin: 16px auto 24px; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── NAV (paraplu) ── */
.ai1op1-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(15,31,61,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.07); }
.ai1op1-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.ai1op1-nav .nav-logo { font-size: 1rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.02em; }
.ai1op1-nav .nav-logo span { color: var(--coral-light); }
.ai1op1-nav .nav-links { display: flex; align-items: center; gap: 28px; }
.ai1op1-nav .nav-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; position: relative; }
.ai1op1-nav .nav-links a:hover { color: #fff; }
.ai1op1-nav .nav-links a.actief { color: var(--coral-light); }
.ai1op1-nav .nav-links a.actief::after { content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--coral-light); }
.ai1op1-nav .nav-cta { padding: 10px 22px !important; font-size: .85rem !important; }

/* Dropdown — AI oplossingen */
.ai1op1-nav .nav-dropdown { position: relative; }
.ai1op1-nav .nav-dropdown-trigger { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.ai1op1-nav .nav-dropdown-trigger:hover, .ai1op1-nav .nav-dropdown.actief .nav-dropdown-trigger { color: var(--coral-light); }
.ai1op1-nav .nav-arrow { font-size: .7rem; transition: transform .2s; }
.ai1op1-nav .nav-dropdown:hover .nav-arrow,
.ai1op1-nav .nav-dropdown:focus-within .nav-arrow { transform: rotate(180deg); }
.ai1op1-nav .nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--white); border-radius: 12px; box-shadow: 0 12px 36px rgba(0,0,0,.18);
  min-width: 280px; padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 110;
}
.ai1op1-nav .nav-dropdown:hover .nav-dropdown-menu,
.ai1op1-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.ai1op1-nav .nav-dropdown-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--midnight) !important; font-size: .92rem; font-weight: 600;
  text-decoration: none; transition: background .15s;
}
.ai1op1-nav .nav-dropdown-menu a:hover { background: var(--warm-bg); color: var(--coral) !important; }
.ai1op1-nav .nav-meta { font-size: .76rem; font-weight: 500; color: var(--muted); }
.ai1op1-nav .nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 8px; }
.ai1op1-nav .nav-dropdown-all { color: var(--coral) !important; font-size: .85rem !important; }

@media (max-width: 760px) {
  .ai1op1-nav .nav-links { display: none; }
  .ai1op1-nav .nav-cta { padding: 8px 16px !important; font-size: .78rem !important; }
}

/* ── BROODKRUIMELS (variant pages) ── */
.broodkruimels { background: var(--warm-bg); border-bottom: 1px solid var(--border); padding: 14px 0; font-size: .82rem; }
.broodkruimels a { color: var(--muted); text-decoration: none; transition: color .2s; }
.broodkruimels a:hover { color: var(--coral); }
.broodkruimels span.scheiding { color: var(--border); margin: 0 8px; }
.broodkruimels span.huidig { color: var(--midnight); font-weight: 600; }

/* ── HERO (gedeeld) ── */
.hero-section { background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 45%, #1a3660 100%); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: -150px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(232,76,30,.18) 0%, transparent 70%); pointer-events: none; }
.hero-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-section h1 { color: #fff; margin-bottom: 8px; }
.hero-section h1 em { font-style: normal; color: var(--coral-light); }

.human-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); color: #4ade80; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-bottom: 18px; letter-spacing: .04em; }
.human-badge::before { content: '●'; font-size: .6rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.72); margin-bottom: 36px; line-height: 1.75; margin-top: 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; align-items: center; }
.hero-actions .btn { padding: 13px 22px; font-size: .9rem; white-space: nowrap; }
/* Mobiel mag wrappen, desktop forceren naast elkaar */
@media (min-width: 861px) { .hero-actions { flex-wrap: nowrap; } }

/* Opvallende secondary CTA in hero — amber/goud op donker, springt eruit naast coral primary */
.hero-actions .btn-secondary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--midnight);
  border: 2px solid #fcd34d;
  backdrop-filter: none;
  font-weight: 800;
}
.hero-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,191,36,.35);
}

/* code/chat-window in hero */
.chat-window { background: #1e293b; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.chat-top { background: #0f172a; padding: 12px 16px; display: flex; align-items: center; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ef4444; } .dot-y { background: #eab308; } .dot-g { background: #22c55e; }
.chat-title { margin-left: 10px; font-size: .78rem; color: rgba(255,255,255,.45); font-family: 'JetBrains Mono', monospace; }
.chat-body { padding: 28px 22px; min-height: 240px; display: flex; flex-direction: column; gap: 14px; font-family: 'JetBrains Mono', monospace; }
.chat-line { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.7; }
.chat-line .comment { color: #64748b; }
.chat-line .accent { color: var(--coral-light); }
.cursor { display: inline-block; width: 2px; height: 1em; background: var(--coral-light); vertical-align: text-bottom; animation: blink .8s step-end infinite; margin-left: 2px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.project-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.project-tag { background: rgba(232,76,30,.12); border: 1px solid rgba(232,76,30,.2); color: #f07050; font-size: .75rem; padding: 5px 12px; border-radius: 6px; font-weight: 500; cursor: default; user-select: none; }
/* Hero-foto van Daan */
.hero-foto { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.08); }
.hero-foto img { display: block; width: 100%; height: 100%; max-height: 560px; object-fit: cover; object-position: center 25%; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-foto img { max-height: 360px; }
}

/* ── VARIANT-KAARTEN (kern van de paraplu hoofdpagina) ── */
.variant-sectie { background: var(--warm-bg); }
.variant-sectie .sectie-kop { text-align: center; margin-bottom: 48px; }
.variant-sectie .sectie-kop p { color: var(--muted); max-width: 560px; margin: 12px auto 0; }
.variant-kaarten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.variant-kaart { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; transition: all .25s; position: relative; }
.variant-kaart:hover { transform: translateY(-4px); border-color: var(--coral); box-shadow: 0 12px 32px rgba(232,76,30,.12); }
.variant-kaart h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--midnight); }
.variant-kaart .variant-prijs { font-size: 1.6rem; font-weight: 900; color: var(--coral); margin-bottom: 4px; line-height: 1; }
.variant-kaart .variant-format { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.variant-kaart .variant-pitch { font-size: .95rem; color: var(--dark2); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.variant-kaart .variant-cta { margin-top: auto; }
.variant-kaart--placeholder { background: var(--sand); opacity: .6; pointer-events: none; }
.variant-kaart--placeholder::before { content: 'BINNENKORT'; position: absolute; top: 14px; right: 14px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: var(--coral); background: var(--white); padding: 4px 10px; border-radius: 4px; }
@media (max-width: 880px) { .variant-kaarten { grid-template-columns: 1fr; } }

/* ── TWEE PADEN (homepage: Trainingen vs 1op1) ── */
.paden-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 920px; margin: 0 auto; }
.pad-kaart { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 40px 34px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--midnight); transition: transform .2s, box-shadow .2s, border-color .2s; }
.pad-kaart:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,31,61,.12); border-color: var(--coral); }
.pad-kaart .pad-icon { font-size: 2.6rem; line-height: 1; }
.pad-kaart h3 { font-size: 1.5rem; font-weight: 800; }
.pad-kaart p { font-size: 1rem; color: var(--dark3); line-height: 1.6; flex-grow: 1; }
.pad-kaart .pad-meta { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.pad-kaart .pad-cta { margin-top: 8px; font-weight: 800; color: var(--coral); font-size: 1rem; }
.pad-kaart--primary { background: linear-gradient(135deg, #0f1f3d 0%, #1a3660 100%); border-color: transparent; color: #fff; }
.pad-kaart--primary h3 { color: #fff; }
.pad-kaart--primary p { color: rgba(255,255,255,.75); }
.pad-kaart--primary .pad-meta { color: rgba(255,255,255,.5); }
.pad-kaart--primary .pad-cta { color: var(--coral-light); }
.pad-kaart--primary:hover { border-color: var(--coral); }
@media (max-width: 760px) { .paden-grid { grid-template-columns: 1fr; } }

/* ── TEST CTA STRIP (op hoofdpagina) ── */
.test-cta-strip { background: var(--coral); padding: 56px 0; }
.test-cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.test-cta-strip h2 { color: #fff; margin: 0; flex: 1 1 400px; }
.test-cta-strip p { color: rgba(255,255,255,.85); margin: 8px 0 0; max-width: 520px; }
.test-cta-strip .btn { background: #fff; color: var(--coral); padding: 16px 32px; font-size: 1rem; }
.test-cta-strip .btn:hover { background: var(--midnight); color: #fff; }

/* ── CROSS-LINK STROOK (onder variant pages) ── */
.cross-link-strook { background: var(--midnight); padding: 64px 0; color: #fff; }
.cross-link-strook .sectie-kop { text-align: center; margin-bottom: 32px; }
.cross-link-strook h3 { color: #fff; font-size: 1.4rem; }
.cross-link-strook .sectie-kop p { color: rgba(255,255,255,.55); margin-top: 8px; }
.cross-link-kaarten { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 800px; margin: 0 auto; }
.cross-link-kaart { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 22px 24px; text-decoration: none; transition: all .2s; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cross-link-kaart:hover { background: rgba(232,76,30,.1); border-color: rgba(232,76,30,.4); transform: translateY(-2px); }
.cross-link-kaart-inhoud strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.cross-link-kaart-inhoud span { font-size: .84rem; color: rgba(255,255,255,.55); }
.cross-link-kaart-pijl { color: var(--coral-light); font-size: 1.5rem; flex-shrink: 0; }
@media (max-width: 600px) { .cross-link-kaarten { grid-template-columns: 1fr; } }

/* ── LOGO MARQUEE ── */
#partners { background: var(--warm-bg); padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.partners-label { text-align: center; padding: 18px 0 0; font-size: .75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.marquee-wrapper { overflow: hidden; padding: 16px 0 20px; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--warm-bg), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(270deg, var(--warm-bg), transparent); }
.marquee-track { display: flex; gap: 0; animation: marquee 28s linear infinite; width: max-content; align-items: center; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { display: flex; align-items: center; padding: 0 36px; flex-shrink: 0; }
.logo-item img { height: 44px; width: auto; object-fit: contain; opacity: .85; transition: opacity .2s; }
.logo-item img:hover { opacity: 1; }
.logo-item--groot img { height: 62px; }

/* Over-pagina: links naar Daans andere sites */
.over-sites { display: flex; flex-direction: column; gap: 8px; }
.over-sites-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.over-sites-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.over-sites-links a { color: var(--coral); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.over-sites-links a:hover { border-bottom-color: var(--coral); }

/* Trainingen: sfeerbeeld (video groot + fotostrip) */
.sfeer-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.sfeer-grid figure { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 40px rgba(10,22,40,.12); background: #0a1628; }
.sfeer-video { grid-column: span 2; grid-row: span 2; }
.sfeer-video video { display: block; width: 100%; height: 100%; object-fit: cover; background: #0a1628; }
.sfeer-foto img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) {
  .sfeer-grid { grid-template-columns: 1fr 1fr; }
  .sfeer-video { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
}

/* ── PROBLEM / DRIE PIJLERS ── */
#problem { background: var(--warm-bg); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.problem-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .2s; }
.problem-card:hover { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,76,30,.07); transform: translateY(-2px); }
.problem-icon { font-size: 2rem; margin-bottom: 14px; }
@media (max-width: 680px) { .problem-grid { grid-template-columns: 1fr; } }

/* ── WHAT (vibecoding uitleg) ── */
#what { background: var(--white); }
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.what-quote { background: var(--sand); border-left: 3px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin-top: 24px; font-style: italic; font-size: .95rem; color: var(--midnight); }
.what-quote strong { font-style: normal; color: var(--coral); }
.analogy-card { background: var(--warm-bg); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.analogy-row { display: flex; gap: 16px; margin-bottom: 10px; align-items: flex-start; }
.analogy-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); min-width: 65px; padding-top: 3px; }
.analogy-value { font-size: .92rem; font-weight: 600; color: var(--midnight); }
.analogy-value.hl { color: var(--coral); }
@media (max-width: 780px) { .what-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── SESSIONS (3 sessie-kaarten op /vibecoding) ── */
#sessions { background: var(--midnight); position: relative; overflow: hidden; }
#sessions::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #0f1f3d 0%, #1a3660 100%); }
.sess-header { position: relative; z-index: 1; text-align: center; margin-bottom: 56px; }
.sess-header h2 { color: #fff; }
.sess-header p { color: rgba(255,255,255,.55); font-size: 1rem; max-width: 520px; margin: 14px auto 0; }
.sess-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.sess-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 32px 26px; transition: all .2s; position: relative; }
.sess-card:hover { background: rgba(255,255,255,.08); border-color: rgba(232,76,30,.45); transform: translateY(-3px); }
.sess-card.feat { border-color: rgba(232,76,30,.35); background: rgba(232,76,30,.07); }
.sess-icon { width: 64px; height: 64px; margin-bottom: 18px; color: var(--coral-light); }
.sess-icon svg { width: 100%; height: 100%; }
.sess-num { font-size: 3rem; font-weight: 900; color: var(--coral-light); line-height: 1; margin-bottom: 6px; opacity: .35; position: absolute; top: 24px; right: 24px; }
.sess-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.sess-sub { font-size: .8rem; color: var(--coral-light); font-weight: 600; margin-bottom: 14px; }
.sess-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }
.sess-meta { display: flex; flex-direction: column; gap: 7px; }
.sess-meta-item { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: rgba(255,255,255,.4); }
@media (max-width: 780px) { .sess-grid { grid-template-columns: 1fr; } }

/* ── WHY 1-ON-1 / BANNER ── */
#why { background: var(--warm-bg); }
.why-header { text-align: center; margin-bottom: 52px; }
.why-header p { color: var(--muted); max-width: 520px; margin: 12px auto 0; }
.human-banner { background: var(--midnight); color: rgba(255,255,255,.85); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px; display: flex; align-items: center; gap: 18px; }
.human-banner-icon { font-size: 2rem; flex-shrink: 0; }
.human-banner strong { color: #fff; display: block; margin-bottom: 4px; font-size: 1.15rem; }
.human-banner span { font-size: .92rem; color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all .2s; }
.why-card:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.why-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--coral-bg); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
@media (max-width: 680px) { .why-grid { grid-template-columns: 1fr; } }

/* ── USE CASES / PROJECTEN GRID ── */
#usecases { background: var(--white); }
.uc-header { text-align: center; margin-bottom: 48px; }
.uc-header p { color: var(--muted); max-width: 520px; margin: 10px auto 0; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { background: var(--warm-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: all .2s; cursor: default; }
.case-card:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.case-emoji { font-size: 1.8rem; margin-bottom: 10px; }
.case-card h3 { font-size: .95rem; margin-bottom: 7px; }
.case-card p { font-size: .82rem; line-height: 1.6; }
.case-time { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--green); font-weight: 700; margin-top: 10px; }
@media (max-width: 860px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .cases-grid { grid-template-columns: 1fr; } }
/* Twee brede kaarten naast elkaar, één kolom vanaf tablet. Zelfde reden als
   hierboven: niet inline zetten, anders blijft mobiel in twee kolommen. */
.cases-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .cases-grid--2 { grid-template-columns: 1fr; } }

/* ── PREREQS (vereisten op /vibecoding) ── */
#prereqs { background: var(--warm-bg); }
.prereqs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.prereq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.prereq-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }
.prereq-icon { font-size: 1.3rem; flex-shrink: 0; }
.prereq-text strong { display: block; font-size: .88rem; color: var(--midnight); }
.prereq-text span { font-size: .8rem; color: var(--muted); }
.prereqs-right { background: linear-gradient(135deg, rgba(232,76,30,.06), rgba(245,166,35,.06)); border: 1px solid rgba(232,76,30,.15); border-radius: 16px; padding: 30px; }
.cursor-demo { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.cursor-demo-icon { position: relative; width: 28px; height: 28px; }
.cursor-svg { animation: click-anim 2.5s ease-in-out infinite; transform-origin: top left; }
@keyframes click-anim { 0%,100%{transform:scale(1)} 45%{transform:scale(.85)} 55%{transform:scale(1)} }
.click-ripple { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); opacity: 0; animation: ripple 2.5s ease-in-out infinite; }
@keyframes ripple { 0%,40%,100%{opacity:0;transform:scale(0)} 50%{opacity:.7;transform:scale(1)} 65%{opacity:0;transform:scale(1.5)} }
.prereqs-right h3 { margin-bottom: 8px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 14px 0 0; }
.check-list li { display: flex; gap: 10px; font-size: .88rem; color: var(--dark2); }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
@media (max-width: 780px) { .prereqs-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── PRICING ── */
/* Let op: de prijs-kaarten zijn ontworpen voor een DONKERE achtergrond
   (witte tekst). Gebruik altijd id="pricing" of class="pricing-section",
   anders wordt de tekst wit-op-wit en onleesbaar. */
#pricing,
.pricing-section { background: var(--midnight); }
.pricing-inner { text-align: center; }
.pricing-inner h2 { color: #fff; margin-bottom: 14px; }
.pricing-inner > p { color: rgba(255,255,255,.55); margin-bottom: 48px; font-size: 1rem; }
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 700px; margin: 0 auto 32px; }
.price-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 32px 28px; text-align: left; position: relative; }
.price-card.feat { border-color: rgba(232,76,30,.45); background: rgba(232,76,30,.08); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; white-space: nowrap; letter-spacing: .05em; text-transform: uppercase; }
.price-label { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: .82rem; color: rgba(255,255,255,.38); margin-bottom: 18px; }
.price-inc { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.price-inc li { display: flex; gap: 9px; font-size: .85rem; color: rgba(255,255,255,.65); }
.price-inc li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; }
.price-note { color: rgba(255,255,255,.38); font-size: .83rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.price-note strong { color: rgba(255,255,255,.55); }
.price-saving { display: inline-block; background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25); color: #4ade80; font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-top: 10px; }
@media (max-width: 560px) { .pricing-cards { grid-template-columns: 1fr; } }
/* Drie tarieven naast elkaar. NOOIT via een inline style zetten: een inline
   grid-template-columns wint van elke media query, waardoor de kaarten op
   mobiel naast elkaar geperst blijven staan. */
.pricing-cards--3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
@media (max-width: 880px) { .pricing-cards--3 { grid-template-columns: 1fr; max-width: 420px; } }

/* ── ABOUT (Wie is Daan) ── */
#about { background: var(--warm-bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.about-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--midnight2), var(--midnight)); position: relative; }
.about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.75)); padding: 22px; }
.about-photo-name { color: #fff; font-weight: 800; font-size: 1.05rem; }
.about-photo-title { color: rgba(255,255,255,.6); font-size: .8rem; }
.about-right h2 { margin-bottom: 16px; }
.about-right p { margin-bottom: 14px; font-size: .95rem; }
.about-creds { display: flex; flex-direction: column; gap: 9px; margin-top: 24px; }
.cred { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--dark2); }
.cred::before { content: '→'; color: var(--coral); font-weight: 700; flex-shrink: 0; }
@media (max-width: 780px) { .about-inner { grid-template-columns: 1fr; } .about-photo { aspect-ratio: 16/7; } }

/* ── CTA / FORMULIER ── */
.cta-section { background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 100%); }
.cta-section h2 { color: #fff; margin-bottom: 14px; max-width: 560px; margin-left: auto; margin-right: auto; text-align: center; }
.cta-sub { color: rgba(255,255,255,.55); max-width: 480px; margin: 0 auto 36px; font-size: 1rem; text-align: center; }
.contact-options { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.form-wrapper { max-width: 700px; margin: 0 auto; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 24px; }
.form-wrapper iframe { border-radius: var(--radius); }

/* ── FAQ ── */
#faq { background: var(--warm-bg); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 18px 22px; text-align: left; cursor: pointer; font-size: .98rem; font-weight: 600; color: var(--midnight); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q::after { content: '+'; color: var(--coral); font-size: 1.5rem; font-weight: 800; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 18px; color: var(--dark3); font-size: .92rem; line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── /TEST PAGINA ── */
.test-hero { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); color: #fff; padding: 80px 0; text-align: center; }
.test-hero h1 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.test-hero p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 8px; font-size: 1.05rem; }
.test-gratis-badge { display: inline-block; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: .82rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; }
.test-form-sectie { background: rgba(232,76,30,.8); padding: 80px 0; }
.test-form-wrapper { max-width: 700px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.test-form-wrapper label { display: block; font-weight: 600; color: var(--midnight); margin-bottom: 8px; font-size: .92rem; }
.test-form-wrapper input, .test-form-wrapper textarea { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-family: inherit; font-size: .95rem; margin-bottom: 20px; transition: border-color .2s; }
.test-form-wrapper input:focus, .test-form-wrapper textarea:focus { border-color: var(--coral); outline: none; }
.test-form-wrapper textarea { min-height: 90px; resize: vertical; }
.test-resultaat { margin-top: 32px; padding: 28px; background: var(--sand); border-radius: 12px; border-left: 4px solid var(--coral); display: none; }
.test-resultaat.zichtbaar { display: block; }
.test-resultaat h3 { margin-bottom: 12px; }
.test-resultaat-inhoud { font-size: .94rem; line-height: 1.7; color: var(--dark2); white-space: pre-wrap; }
.test-resultaat-acties { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.test-status { font-size: .88rem; color: var(--muted); margin-top: 12px; min-height: 1em; }
.test-status.fout { color: #dc2626; }
.test-status.bezig { color: var(--coral); }

/* ── BOEK NU / FIJNE FORMULIEREN IFRAME ── */
.boek-sectie { background: var(--midnight); padding: 96px 0; }
.boek-sectie .container { max-width: 800px; }
.boek-sectie h2 { color: #fff; text-align: center; margin-bottom: 14px; }
.boek-sectie p.boek-lead { color: rgba(255,255,255,.6); text-align: center; max-width: 560px; margin: 0 auto 40px; }
.boek-sectie iframe { width: 100%; border: 0; min-height: 800px; border-radius: 12px; background: #fff; }

/* ── FOOTER ── */
.ai1op1-footer { background: #060d1a; padding: 36px 0; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.foot-logo { font-weight: 800; color: rgba(255,255,255,.6); font-size: .92rem; }
.foot-logo span { color: var(--coral-light); }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links span, .foot-links a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .8rem; transition: color .2s; }
.foot-links a:hover { color: rgba(255,255,255,.65); }
.foot-copy { color: rgba(255,255,255,.22); font-size: .75rem; }
.foot-legal a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .78rem; transition: color .2s; }
.foot-legal a:hover { color: rgba(255,255,255,.85); text-decoration: underline; }

/* ── FOTO CARROUSEL (Daan in actie, op /over) ── */
.about-carousel { margin-top: 56px; }
.about-carousel .section-label { text-align: center; display: block; }
.carousel-track {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 16px 0;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: rgba(232,76,30,.3); border-radius: 3px; }
.carousel-slide {
  flex: 0 0 280px; scroll-snap-align: center;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.carousel-slide img {
  display: block; width: 100%; height: 200px; object-fit: cover;
  filter: contrast(1.08) saturate(.78) brightness(.94);
}
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.carousel-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dots span.active { background: var(--coral); transform: scale(1.3); }
@media (max-width: 600px) {
  .carousel-slide { flex-basis: 240px; }
  .carousel-slide img { height: 170px; }
}

/* ── HERO: extra regels onder de knoppen ── */
.hero-cta-meta { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 10px; }
.hero-doelgroep { color: rgba(255,255,255,.42); font-size: .8rem; margin-top: 14px; max-width: 520px; line-height: 1.6; }

/* ── PRAKTIJK-CHIPS (inkoopfeiten direct onder de hero-tekst) ── */
.praktijk-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 26px; }
.praktijk-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 600;
  padding: 6px 13px; border-radius: 50px; white-space: nowrap;
}
.praktijk-chip::before { content: '✓'; color: #4ade80; font-weight: 800; }

/* ── AI ACT BLOK (/trainingen) ── */
.aiact-blok { background: linear-gradient(135deg, #0a1628 0%, #14294d 100%); padding: 88px 0; }
.aiact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aiact-kaart {
  background: rgba(232,76,30,.08); border: 1px solid rgba(232,76,30,.28);
  border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 8px;
}
.aiact-kaart strong { color: #fff; font-size: 1rem; }
.aiact-kaart span { color: rgba(255,255,255,.68); font-size: .88rem; line-height: 1.7; }
@media (max-width: 780px) { .aiact-grid { grid-template-columns: 1fr; } }

/* ── CHATGPT VERSUS CHATGPT WORK ── */
.gpt-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.gpt-kaart { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 28px; }
.gpt-kaart--accent { background: rgba(232,76,30,.1); border-color: rgba(232,76,30,.35); }
@media (max-width: 780px) { .gpt-duo { grid-template-columns: 1fr; } }

/* ── TRAININGSKAART met inkoopfeiten ── */
.training-kaart { display: flex; flex-direction: column; }
.training-feiten { list-style: none; margin: 14px 0 0; display: flex; flex-direction: column; gap: 5px; }
.training-feiten li { display: flex; gap: 8px; font-size: .78rem; color: var(--dark2); }
.training-feiten li span {
  color: var(--muted); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: .68rem; min-width: 74px; flex-shrink: 0; padding-top: 1px;
}
.training-leerdoel {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: .8rem !important; line-height: 1.6; color: var(--dark2) !important;
}
.training-leerdoel strong { color: var(--coral); }

/* ── PROCES-STAPPEN (na je aanvraag) ── */
.proces-stappen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proces-stap {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; position: relative;
}
.proces-nummer {
  width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: #fff;
  font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.proces-stap strong { color: var(--midnight); font-size: .98rem; }
.proces-stap span { color: var(--dark3); font-size: .85rem; line-height: 1.65; }
@media (max-width: 880px) { .proces-stappen { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .proces-stappen { grid-template-columns: 1fr; } }

/* ── DEELNEMERSREACTIES ── */
.review-cijfer { font-size: 1.05rem; font-weight: 700; color: var(--coral); margin-top: 12px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-kaart {
  background: var(--warm-bg); border: 1px solid var(--border); border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-kaart p { font-size: .92rem; line-height: 1.7; color: var(--dark2); font-style: italic; }
.review-kaart cite { font-size: .82rem; color: var(--muted); font-style: normal; font-weight: 600; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

/* Placeholders: altijd zichtbaar gemarkeerd zodat ze nooit per ongeluk live blijven staan */
.review-placeholder { background: repeating-linear-gradient(45deg, #fff7f3, #fff7f3 10px, #ffeee7 10px, #ffeee7 20px); border: 2px dashed var(--coral); border-left-width: 2px; border-radius: var(--radius); }
.review-placeholder strong { color: var(--coral); font-size: .88rem; }
.review-placeholder span { color: var(--dark3); font-size: .82rem; line-height: 1.6; }
.placeholder-inline { display: inline-block; margin-top: 12px; border: 2px dashed var(--coral); border-radius: 8px; padding: 6px 14px; color: var(--coral); font-size: .85rem; font-weight: 600; }

/* ── STARTVRAGEN (/oplossingen) ── */
.startvraag-kaart { background: var(--warm-bg); }
.startvraag-rol {
  display: inline-block; font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .09em; color: var(--coral); margin-bottom: 8px;
}
.startvraag-kaart h3 { font-size: 1rem; line-height: 1.45; color: var(--midnight); }

/* ── KOSTEN-BLOK (eerlijk over abonnementen na de sessie) ── */
.kosten-blok {
  max-width: 660px; margin: 32px auto 0; text-align: left;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 24px 26px; display: flex; flex-direction: column; gap: 8px;
}
.kosten-blok strong { color: #fff; font-size: 1rem; }
.kosten-blok span { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.75; }

.price-saving--neutraal { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.6); }

/* ── REKENVOORBEELD (trainingsprijs per deelnemer) ── */
.rekenvoorbeeld { max-width: 700px; margin: 8px auto 28px; text-align: left; }
.rekenvoorbeeld-label {
  display: block; text-align: center; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.rekenvoorbeeld ul { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.rekenvoorbeeld li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 14px 12px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.rekenvoorbeeld li span { font-size: .76rem; color: rgba(255,255,255,.5); }
.rekenvoorbeeld li strong { font-size: 1.15rem; color: #fff; font-weight: 800; }
@media (max-width: 620px) { .rekenvoorbeeld ul { grid-template-columns: repeat(2, 1fr); } }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .cursor-svg, .click-ripple, .human-badge::before, .cursor { animation: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .chat-line .cursor { display: none; }
}
