/* ============================================================
   DE FUNFABRIEK v2 — Premium Business Coaching Stylesheet
   A complete, production-quality CSS for funfabriek.nl
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --color-orange:       #F5841F;
  --color-orange-dark:  #D97018;
  --color-orange-light: #FFF8F0;
  --color-orange-hover: #E07518;
  --color-orange-glow:  rgba(245, 132, 31, 0.18);

  --color-teal:         #00B4B4;
  --color-teal-dark:    #009999;
  --color-teal-light:   #E6F8F8;
  --color-teal-hover:   #00A3A3;

  /* Neutrals */
  --color-navy:         #0D1B2A;
  --color-navy-soft:    #1B2D45;
  --color-dark:         #0D1B2A;
  --color-dark-soft:    #1B2D45;
  --color-text:         #1E293B;
  --color-text-light:   #64748B;
  --color-text-muted:   #94A3B8;
  --color-border:       #E2E8F0;
  --color-gray-50:      #F8FAFC;
  --color-gray-100:     #FAFBFC;
  --color-gray-200:     #F1F5F9;
  --color-gray-300:     #E2E8F0;
  --color-white:        #FFFFFF;

  /* Gradients */
  --gradient-orange:    linear-gradient(135deg, #F5841F 0%, #F6A051 100%);
  --gradient-teal:      linear-gradient(135deg, #00B4B4 0%, #00D4D4 100%);
  --gradient-dark:      linear-gradient(135deg, #0D1B2A 0%, #1B2D45 100%);
  --gradient-hero:      linear-gradient(160deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.6) 50%, rgba(0, 180, 180, 0.4) 100%);
  --gradient-hero-small:linear-gradient(160deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.7) 60%, rgba(245, 132, 31, 0.25) 100%);
  --gradient-card:      linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  --gradient-cta-orange: linear-gradient(135deg, #F5841F 0%, #E07518 100%);

  /* Typography */
  --font-heading:   'Gabarito', system-ui, -apple-system, sans-serif;
  --font-body:      'Gabarito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 18px;
  --font-size-xs:   0.75rem;
  --font-size-sm:   0.875rem;
  --font-size-md:   1rem;
  --font-size-lg:   1.125rem;
  --font-size-xl:   1.25rem;
  --line-height-body:    1.75;
  --line-height-heading: 1.15;
  --letter-spacing-tight: -0.03em;
  --letter-spacing-wide:  0.08em;

  /* Spacing Scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Layout */
  --container-max:    1200px;
  --container-narrow: 750px;
  --header-height:    80px;

  /* Radii */
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(13, 27, 42, 0.06), 0 1px 2px rgba(13, 27, 42, 0.04);
  --shadow:       0 4px 12px rgba(13, 27, 42, 0.08), 0 2px 4px rgba(13, 27, 42, 0.04);
  --shadow-md:    0 8px 24px rgba(13, 27, 42, 0.10), 0 4px 8px rgba(13, 27, 42, 0.05);
  --shadow-lg:    0 16px 48px rgba(13, 27, 42, 0.12), 0 8px 16px rgba(13, 27, 42, 0.06);
  --shadow-xl:    0 24px 64px rgba(13, 27, 42, 0.16), 0 12px 24px rgba(13, 27, 42, 0.08);
  --shadow-orange: 0 8px 24px rgba(245, 132, 31, 0.25);
  --shadow-teal:   0 8px 24px rgba(0, 180, 180, 0.20);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition:        0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================================
   2. GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-orange-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: var(--color-text);
}

em {
  font-style: italic;
}

blockquote {
  border-left: 4px solid var(--color-orange);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  background: var(--color-orange-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

blockquote p {
  color: var(--color-text);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

blockquote footer,
blockquote cite {
  font-style: normal;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: block;
  margin-top: var(--space-sm);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   3. LAYOUT — CONTAINER & GRIDS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.grid-2--reverse {
  direction: rtl;
}

.grid-2--reverse > * {
  direction: ltr;
}

/* Three-column grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Five-column grid (FunFactors) */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  text-align: center;
}


/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: background var(--transition), box-shadow var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}

.logo:hover img {
  opacity: 0.8;
}

/* Desktop Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.main-nav li {
  list-style: none;
}

.main-nav a {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-orange);
}

.main-nav a.active {
  background: var(--color-orange-light);
}

/* Nav CTA Button */
.main-nav .btn-nav {
  margin-left: var(--space-sm);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--color-gray-200);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  background-image: url('../img/martin.webp');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  padding: calc(var(--header-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-overlay-gradient {
  background: var(--gradient-hero-small);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: var(--space-xl);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.hero-secondary {
  color: var(--color-orange);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: var(--space-2xl);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Small hero (sub-pages) */
.hero-small {
  min-height: 50vh;
  max-height: 420px;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  background-image: none;
  background: var(--gradient-dark);
}

.hero-small .hero-overlay {
  background: var(--gradient-hero-small);
}

.hero-small .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-small .hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero-small .hero-subtitle {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-center .hero-content {
  margin: 0 auto;
}


/* ============================================================
   6. SECTIONS
   ============================================================ */
.section {
  padding: clamp(60px, 8vw, 110px) 0;
}

.section-alt {
  background-color: var(--color-gray-100);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.section-intro h2 {
  margin-bottom: var(--space-lg);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-concept {
  background-color: var(--color-white);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}

.section-text p {
  margin-bottom: var(--space-lg);
}

.section-text .btn {
  margin-top: var(--space-md);
}

.section-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
  object-fit: cover;
}

.img-rounded {
  border-radius: var(--radius-lg);
}

.img-shadow {
  box-shadow: var(--shadow-lg);
}

/* Lead paragraph */
.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--color-text-light);
}

/* Subtitle chip */
.subtitle {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-orange);
  margin-bottom: var(--space-md);
}

/* Section dark (stats / dark bg) */
.section-stats {
  background: var(--gradient-dark);
  color: var(--color-white);
  text-align: center;
}

.section-stats h2 {
  color: var(--color-white);
}

.section-stats .lead,
.section-stats p {
  color: rgba(255, 255, 255, 0.75);
}

.section-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* Section FunFactor (about page) */
.section-funfactor {
  padding: clamp(50px, 6vw, 80px) 0;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

/* Primary — orange */
.btn-primary {
  background: var(--gradient-orange);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Secondary — teal */
.btn-secondary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.btn-outline:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* White (on dark backgrounds) */
.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  font-weight: 800;
}

.btn-white:hover {
  background: var(--color-gray-100);
  color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Large button */
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Small button */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
}

/* Nav button (inside header) */
.btn-nav {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: var(--font-size-md);
  color: var(--color-orange);
  transition: gap var(--transition), color var(--transition);
}

.link-arrow:hover {
  gap: var(--space-sm);
  color: var(--color-orange-dark);
}


/* ============================================================
   8. CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}


/* ============================================================
   9. FUNFACTOR CARDS
   ============================================================ */
.funfactors {
  margin-top: var(--space-xl);
}

.funfactor-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  border-top: 4px solid var(--color-orange);
}

.funfactor-card:nth-child(2) {
  border-top-color: var(--color-teal);
}

.funfactor-card:nth-child(3) {
  border-top-color: #6366F1;
}

.funfactor-card:nth-child(4) {
  border-top-color: #F59E0B;
}

.funfactor-card:nth-child(5) {
  border-top-color: #10B981;
}

.funfactor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.funfactor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-orange-light);
  color: var(--color-orange);
  margin: 0 auto var(--space-lg);
}

.funfactor-card:nth-child(2) .funfactor-icon {
  background: var(--color-teal-light);
  color: var(--color-teal);
}

.funfactor-card:nth-child(3) .funfactor-icon {
  background: #EEF2FF;
  color: #6366F1;
}

.funfactor-card:nth-child(4) .funfactor-icon {
  background: #FFFBEB;
  color: #F59E0B;
}

.funfactor-card:nth-child(5) .funfactor-icon {
  background: #ECFDF5;
  color: #10B981;
}

/* Large icon variant (de-funfabriek page) */
.funfactor-icon-lg {
  width: 80px;
  height: 80px;
}

.funfactor-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.funfactor-card:nth-child(2) .funfactor-number {
  background: var(--color-teal);
}

.funfactor-card:nth-child(3) .funfactor-number {
  background: #6366F1;
}

.funfactor-card:nth-child(4) .funfactor-number {
  background: #F59E0B;
}

.funfactor-card:nth-child(5) .funfactor-number {
  background: #10B981;
}

.funfactor-number-lg {
  width: 48px;
  height: 48px;
  font-size: 1.125rem;
}

.funfactor-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.funfactor-card p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* FunFactor header (de-funfabriek detail) */
.funfactor-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.funfactor-header h2 {
  margin-bottom: 0;
}

/* FunFactor badge (begeleiding page) */
.funfactor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}


/* ============================================================
   10. STAT CARDS & NUMBERS
   ============================================================ */
.stat-card,
.stat-item {
  padding: var(--space-2xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), background var(--transition);
}

.stat-card:hover,
.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: var(--letter-spacing-tight);
}

.stat-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: rgba(255, 255, 255, 0.85);
}

.stats-subtext {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-2xl);
}

.stats-dark .stat-item {
  background: rgba(255, 255, 255, 0.04);
}

/* Stats subtext inside card (boeken page bundles) */
.stat-card .stats-subtext {
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
}


/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background-color: var(--color-gray-100);
}

.section-testimonials h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonial {
  position: relative;
  padding: var(--space-2xl);
  border-top: 4px solid var(--color-orange);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--color-orange);
  opacity: 0.12;
  pointer-events: none;
}

.testimonial blockquote {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  background: none;
  border-radius: 0;
}

.testimonial blockquote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.testimonial-author span {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Testimonial quote (variant) */
.testimonial-quote {
  font-size: var(--font-size-lg);
  font-style: italic;
  line-height: 1.7;
  position: relative;
}


/* ============================================================
   12. TIMELINE (werkwijze)
   ============================================================ */
.section-timeline {
  background-color: var(--color-white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 48px;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-teal) 100%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-3xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(245, 132, 31, 0.3);
}

.timeline-item:nth-child(2) .timeline-number {
  background: var(--color-teal);
  box-shadow: 0 4px 12px rgba(0, 180, 180, 0.3);
}

.timeline-item:nth-child(3) .timeline-number {
  background: #6366F1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.timeline-item:nth-child(4) .timeline-number {
  background: #F59E0B;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.timeline-item:nth-child(5) .timeline-number {
  background: var(--color-teal);
  box-shadow: 0 4px 12px rgba(0, 180, 180, 0.3);
}

.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.5);
  margin-left: var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.timeline-header h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.timeline-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  background: var(--color-orange-light);
  color: var(--color-orange);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.timeline-content p {
  margin-bottom: var(--space-md);
}

.timeline-result {
  padding: var(--space-md);
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  border-left: 3px solid var(--color-teal);
}

.timeline-result strong {
  color: var(--color-teal-dark);
}


/* ============================================================
   13. BOOK SHOWCASE (boeken)
   ============================================================ */
.book-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.book-meta strong {
  color: var(--color-text);
}

.book-reviews {
  margin: var(--space-xl) 0;
}

.book-reviews blockquote {
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  background: var(--color-gray-100);
}

.book-reviews blockquote:last-child {
  margin-bottom: 0;
}

.book-reviews blockquote p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
}

.book-reviews blockquote footer {
  font-size: var(--font-size-xs);
}

/* Checklist / list-check */
.checklist,
.list-check {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.checklist li,
.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.65;
}

.checklist li::before,
.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 20px;
  height: 20px;
  background: var(--color-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.list-check li strong {
  color: var(--color-navy);
}


/* ============================================================
   14. SERVICE CARDS (begeleiding-coaching)
   ============================================================ */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--color-orange);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:nth-child(2) {
  border-left-color: var(--color-teal);
}

.service-card:nth-child(3) {
  border-left-color: #6366F1;
}

.service-card:nth-child(4) {
  border-left-color: #F59E0B;
}

.service-card .icon,
.service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--color-orange-light);
  color: var(--color-orange);
  margin-bottom: var(--space-lg);
}

.service-card:nth-child(2) .icon,
.service-card:nth-child(2) .service-icon {
  background: var(--color-teal-light);
  color: var(--color-teal);
}

.service-card:nth-child(3) .icon,
.service-card:nth-child(3) .service-icon {
  background: #EEF2FF;
  color: #6366F1;
}

.service-card:nth-child(4) .icon,
.service-card:nth-child(4) .service-icon {
  background: #FFFBEB;
  color: #F59E0B;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--font-size-sm);
  line-height: 1.65;
}


/* ============================================================
   15. CTA SECTIONS
   ============================================================ */
.cta-section {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.cta-orange {
  background: var(--gradient-cta-orange);
  color: var(--color-white);
}

.cta-orange h2 {
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.cta-orange p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--font-size-lg);
}

.cta-dark {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.cta-dark h2 {
  color: var(--color-white);
}

.cta-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-cta-block {
  background: var(--color-gray-100);
}

.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-block h2 {
  margin-bottom: var(--space-lg);
}

.cta-block .lead {
  margin-bottom: var(--space-2xl);
}

.section-cta-banner {
  background: var(--gradient-dark);
}

.section-cta-banner .newsletter-inner {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-cta-banner .newsletter-inner h2 {
  color: var(--color-white);
}

.section-cta-banner .newsletter-inner p {
  color: rgba(255, 255, 255, 0.8);
}


/* ============================================================
   16. NEWSLETTER
   ============================================================ */
.section-newsletter {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-inner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.newsletter-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group-inline {
  display: flex;
  gap: var(--space-sm);
}

.form-group-inline input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-group-inline input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-group-inline input[type="email"]:focus {
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-inline {
  display: flex;
  gap: var(--space-sm);
}


/* ============================================================
   17. FORMS (contact page)
   ============================================================ */
.section-contact {
  padding: clamp(60px, 8vw, 100px) 0;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  margin-bottom: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px var(--color-orange-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-privacy-note {
  margin-top: var(--space-md);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-privacy-note a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

.form-privacy-note a:hover {
  color: var(--color-orange);
}

/* Contact info card */
.contact-info-wrapper {
  padding-left: var(--space-xl);
}

.contact-info-card {
  text-align: center;
  padding: var(--space-2xl);
}

.contact-person {
  margin-bottom: var(--space-xl);
}

.contact-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 4px solid var(--color-orange-light);
}

.contact-person h3 {
  margin-bottom: var(--space-xs);
}

.contact-person p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.contact-details li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--font-size-sm);
}

.contact-details li svg {
  flex-shrink: 0;
  color: var(--color-orange);
}

.contact-details a {
  color: var(--color-text);
}

.contact-details a:hover {
  color: var(--color-orange);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.social-link svg {
  width: 20px;
  height: 20px;
}


/* ============================================================
   18. ARTICLES / FUNLAB
   ============================================================ */
.section-articles {
  background-color: var(--color-white);
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card-image {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.article-card-image > div {
  transition: transform var(--transition-slow);
}

.article-card:hover .article-card-image > div {
  transform: scale(1.05);
}

.article-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-category {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.article-card-body h3 a {
  color: var(--color-navy);
  transition: color var(--transition);
}

.article-card-body h3 a:hover {
  color: var(--color-orange);
}

.article-card-body p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  flex: 1;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.article-meta-divider {
  color: var(--color-text-muted);
}

.article-card-body .link-arrow {
  margin-top: auto;
  font-size: var(--font-size-sm);
}


/* ============================================================
   19. ARTICLE PAGE (single post)
   ============================================================ */
.section-article {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.article-header {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  transition: color var(--transition);
}

.article-back:hover {
  color: var(--color-orange);
}

.article-header .article-category {
  margin-bottom: var(--space-md);
}

.article-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  max-width: 100%;
}

.article-header .article-meta {
  font-size: var(--font-size-sm);
}

/* Article body */
.article-body {
  margin-bottom: var(--space-4xl);
}

.article-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

.article-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article-body p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  color: var(--color-text);
}

.article-body .lead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}

.article-body strong {
  font-weight: 700;
}

.article-body em {
  font-style: italic;
}

.article-body blockquote {
  margin: var(--space-2xl) 0;
}

/* Article CTA */
.article-cta {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-orange-light);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.article-cta h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.article-cta p {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

/* Article footer */
.article-footer {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3xl);
}

/* Author box */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3xl);
}

.author-box-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.author-box-info p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Article share */
.article-share {
  margin-bottom: var(--space-3xl);
}

.article-share h4 {
  margin-bottom: var(--space-md);
}

.share-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Related articles */
.related-articles {
  margin-top: var(--space-2xl);
}

.related-articles h4 {
  margin-bottom: var(--space-xl);
  font-size: 1.25rem;
}


/* ============================================================
   20. PRICING CARDS
   ============================================================ */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  border: 2px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-highlight {
  border-color: var(--color-orange);
  position: relative;
}

.pricing-highlight::before {
  content: 'Populair';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gradient-orange);
  color: var(--color-white);
  border-radius: var(--radius-full);
}


/* ============================================================
   21. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-xl);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-xl);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--color-orange);
}


/* ============================================================
   22. ANIMATIONS
   ============================================================ */

/* Fade in from below */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.grid-5 .fade-in:nth-child(1),
.grid-5.fade-in .card:nth-child(1) { transition-delay: 0s; }
.grid-5 .fade-in:nth-child(2),
.grid-5.fade-in .card:nth-child(2) { transition-delay: 0.08s; }
.grid-5 .fade-in:nth-child(3),
.grid-5.fade-in .card:nth-child(3) { transition-delay: 0.16s; }
.grid-5 .fade-in:nth-child(4),
.grid-5.fade-in .card:nth-child(4) { transition-delay: 0.24s; }
.grid-5 .fade-in:nth-child(5),
.grid-5.fade-in .card:nth-child(5) { transition-delay: 0.32s; }

.grid-3.fade-in .card:nth-child(1) { transition-delay: 0s; }
.grid-3.fade-in .card:nth-child(2) { transition-delay: 0.1s; }
.grid-3.fade-in .card:nth-child(3) { transition-delay: 0.2s; }

.stats-grid.fade-in .stat-card:nth-child(1),
.stats-grid.fade-in .stat-item:nth-child(1) { transition-delay: 0s; }
.stats-grid.fade-in .stat-card:nth-child(2),
.stats-grid.fade-in .stat-item:nth-child(2) { transition-delay: 0.12s; }
.stats-grid.fade-in .stat-card:nth-child(3),
.stats-grid.fade-in .stat-item:nth-child(3) { transition-delay: 0.24s; }
.stats-grid.fade-in .stat-card:nth-child(4),
.stats-grid.fade-in .stat-item:nth-child(4) { transition-delay: 0.36s; }

/* Hero text entrance */
.hero .fade-in:nth-child(1) { transition-delay: 0.1s; }
.hero .fade-in:nth-child(2) { transition-delay: 0.25s; }
.hero .fade-in:nth-child(3) { transition-delay: 0.4s; }
.hero .fade-in:nth-child(4) { transition-delay: 0.55s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   23. SECTION-SPECIFIC: DOKTER
   ============================================================ */
.section-dokter .section-image img {
  border-radius: var(--radius-xl);
}


/* ============================================================
   24. SECTION-SPECIFIC: FUNLAB (homepage)
   ============================================================ */
.section-funlab h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}


/* ============================================================
   25. CONTACT GRID & MISC
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}


/* ============================================================
   26. BOOK FEATURES
   ============================================================ */
.book-features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.book-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

.book-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}


/* ============================================================
   27. RESPONSIVE: TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  /* Nav toggle visible */
  .nav-toggle {
    display: flex;
  }

  /* Mobile nav overlay */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 999;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .main-nav a {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }

  .main-nav .btn-nav {
    margin-left: 0;
    margin-top: var(--space-md);
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  /* Grids */
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    gap: var(--space-2xl);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  /* Timeline */
  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-marker {
    left: -40px;
    width: 38px;
    height: 38px;
  }

  .timeline-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}


/* ============================================================
   28. RESPONSIVE: MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Grids stack */
  .grid-2,
  .grid-3,
  .grid-5 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .grid-2--reverse {
    direction: ltr;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3.25rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-small {
    min-height: 40vh;
    max-height: 320px;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  }

  /* Sections */
  .section {
    padding: clamp(40px, 6vw, 60px) 0;
  }

  .section-intro {
    margin-bottom: var(--space-2xl);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .stat-number {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  /* FunFactor cards */
  .funfactor-card {
    padding: var(--space-xl) var(--space-lg);
  }

  /* Timeline */
  .timeline {
    padding-left: 36px;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-marker {
    left: -36px;
    width: 32px;
    height: 32px;
  }

  .timeline-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .timeline-content {
    padding: var(--space-xl);
    margin-left: var(--space-md);
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
  }

  .footer-col ul li {
    margin-bottom: 0;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .form-group-inline {
    flex-direction: column;
  }

  .form-group-inline .btn {
    width: 100%;
  }

  /* Contact */
  .contact-info-wrapper {
    padding-left: 0;
  }

  /* Newsletter */
  .newsletter-inner {
    padding: var(--space-2xl) var(--space-lg);
  }

  /* Author box */
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Share links */
  .share-links {
    justify-content: center;
  }

  /* Service cards */
  .service-card {
    border-left-width: 3px;
  }

  /* FunFactor header (de-funfabriek detail) */
  .funfactor-header {
    align-items: center;
    text-align: center;
  }

  /* CTA section */
  .cta-section {
    padding: clamp(40px, 6vw, 60px) 0;
  }

  /* Article page */
  .section-article {
    padding-top: calc(var(--header-height) + var(--space-2xl));
  }

  .article-header h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  /* Related articles grid */
  .related-articles .grid-2 {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   29. RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-social {
    flex-direction: column;
    align-items: center;
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .card {
    padding: var(--space-xl);
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}


/* ============================================================
   30. PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .nav-toggle,
  .hero-overlay,
  .site-footer,
  .btn,
  .newsletter-inner,
  .cta-section,
  .section-newsletter,
  .article-share,
  .article-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 1rem 0;
    background: none !important;
  }

  .hero-title {
    color: #000;
    text-shadow: none;
    font-size: 2rem;
  }

  .hero-subtitle {
    color: #333;
  }

  .section {
    padding: 1rem 0;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  img {
    max-width: 50%;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}


/* ============================================================
   31. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-0  { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0  { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }

.hidden { display: none; }

.relative { position: relative; }

.overflow-hidden { overflow: hidden; }
