/* =========================================================
   P204 - "Welke baan past bij mij?" landingspagina
   Getrouw herbouwd volgens capture van 7 aug 2026 (BACKUP-ANALYSE).
   Palet: brand geel #ffe71e | ink paarsblauw #474976
   Fonts: Raleway (headings) + Lato (body)
   ========================================================= */

:root {
  --brand: #ffe71e;
  --brand-soft: #f7e98b;
  --ink: #474976;
  --ink-strong: #2f3062;
  --muted: #636475;
  --bg-tint: #edf0f5;
  --bg-warm: #fff7d6;      /* crème-geel CTA */
  --white: #ffffff;
  --font-head: 'Raleway', sans-serif;
  --font-body: 'Lato', sans-serif;
  --container: 1200px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { font-family: var(--font-head); color: var(--ink-strong); }

/* ---------- Header / nav ---------- */
.site-header { position: relative; z-index: 5; background: var(--white); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.logo { font-family: var(--font-head); font-weight: 800; color: var(--ink-strong); text-decoration: none; font-size: 18px; }
.main-nav a { color: var(--muted); text-decoration: none; font-size: 15px; }
.main-nav a:hover { color: var(--ink-strong); text-decoration: underline; }

/* ---------- Hero (geel blok, tekst, geen foto) ---------- */
.hero {
  position: relative;
  background: var(--brand);
  overflow: hidden;
  padding: 80px 24px 96px;
  text-align: left;
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(46px, 7vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 34px;
  color: var(--ink-strong);
  max-width: 760px;
}
.hero-shape {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: var(--brand-soft);
  transform: rotate(12deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
  opacity: .55;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.btn-hero { background: var(--ink-strong); color: var(--white); }
.btn-hero:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(47,48,98,.22); }
.btn-outline { background: transparent; border-color: var(--ink-strong); color: var(--ink-strong); }
.btn-outline:hover { background: var(--ink-strong); color: var(--white); }
.btn-outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink-strong); }
.cta-row { text-align: center; margin-top: 12px; }

/* ---------- Secties algemeen ---------- */
.section { padding: 88px 24px; }
.section-title { font-size: 38px; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; text-align: center; margin: 0 0 20px; }
.lead { font-size: 19px; font-weight: 600; font-family: var(--font-head); text-align: center; color: var(--ink); max-width: 680px; margin: 0 auto 28px; }
.section-title-left { font-size: 34px; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 14px; }
.subtitle { font-size: 22px; font-weight: 600; font-family: var(--font-head); color: var(--ink); margin: 0 0 18px; }
.body-copy-left { margin: 0 0 18px; }

/* ---------- Intro (2 kolommen) ---------- */
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-media { }
.intro-image { width: 100%; height: auto; border-radius: var(--radius); }
.check-list { list-style: none; padding: 0; margin: 0 0 22px; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 10px; font-size: 17px; }
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand);
}

/* ---------- Steps (crème-geel CTA) ---------- */
.steps { background: var(--bg-warm); text-align: center; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-tint); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; max-width: 860px; margin: 0 auto; }
.testimonial { margin: 0; padding: 34px; background: var(--white); border-radius: var(--radius); text-align: center; box-shadow: 0 8px 24px rgba(71,73,118,.08); }
.avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; }
.testimonial blockquote { margin: 0 0 14px; font-size: 16px; font-style: italic; }
.testimonial figcaption { font-family: var(--font-head); font-weight: 700; color: var(--ink-strong); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--ink-strong); text-align: center; }
.final-cta .section-title, .final-cta .lead { color: var(--white); }

/* ---------- FAQ (3 kolommen) ---------- */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 1000px; margin: 0 auto; }
.faq-item { border-top: 3px solid var(--brand); padding-top: 18px; }
.faq-item h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.faq-item p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-strong); padding: 34px 24px; text-align: center; }
.footer-title { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 18px; margin: 0 0 6px; }
.footer p { margin: 0; color: rgba(255,255,255,.8); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 840px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 60px 24px 72px; }
  .section { padding: 64px 20px; }
  .section-title { font-size: 30px; }
}
@media (max-width: 520px) {
  .header-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-title { font-size: 40px; }
  .btn { width: 100%; text-align: center; padding: 18px 20px; }
}