/* =============================================
   ELEVA SPORT — CSS
   ============================================= */

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

:root {
  --bg: #f0f0f0;
  --bg-light: #f7f7f7;
  --bg-2: #e8e8e8;
  --bg-3: #dedede;
  --bg-dark: #d6d6d6;
  --text: #111111;
  --text-muted: #4a4a4a;
  --accent: #111111;
  --accent-dark: #333333;
  --accent-dim: rgba(0,0,0,0.06);
  --white: #111111;
  --border: rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.22);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 2px;
  --transition: 0.3s ease;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Focus zichtbaar voor toetsenbord/accessibility */
:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Voorkom iOS input zoom (font-size min 16px) */
input, select, textarea {
  font-size: max(16px, 1rem) !important;
}

/* Betere tap highlight op mobiel */
* {
  -webkit-tap-highlight-color: transparent;
}

/* =============================================
   UTILITIES
   ============================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section__title span {
  color: var(--accent);
}

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  font-weight: 700;
}

.btn--primary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #111111;
  border-color: rgba(0,0,0,0.25);
}

.btn--outline:hover {
  border-color: #111111;
  color: #111111;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: rgba(0,0,0,0.65);
  border-color: transparent;
  padding-left: 0;
}

.btn--ghost:hover {
  color: #111111;
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAV
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 3rem;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(247,247,247,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}


.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
  text-decoration: none;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111111;
  line-height: 1;
}

.nav__logo-text span {
  color: rgba(0,0,0,0.7);
  font-weight: 400;
}

.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__logo-img--footer {
  height: 110px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: #111111;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  transition: all var(--transition);
}

/* =============================================
   MOBILE MENU
   ============================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 5rem 2rem 3rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s ease, visibility 0s linear 0.4s;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s ease, visibility 0s linear 0s;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: 0.05em;
  color: #111111;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: #555555;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f7f7f7 0%, #f2f2f2 50%, #ebebeb 100%);
  z-index: 0;
}

/* Noise texture overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Logo parallax — rechts in hero */
.hero__logo-bg {
  position: absolute;
  right: clamp(2rem, 5vw, 7rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 34vw, 500px);
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  user-select: none;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 6rem;
  text-align: center;
}

/* SEO keyword label in H1 — visueel klein, semantisch in h1 */
.hero__seo-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

/* Screen-reader only utility */
.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;
}

/* Label fade-in */
.hero__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #111111;
  margin-bottom: 2rem;
}

.hero__line2 {
  color: #111111;
}


/* ── Title cycle (animated word switch) ───── */
.title-cycle {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.title-cycle__sizer {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.title-cycle__word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(120%);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  white-space: nowrap;
}

.title-cycle__word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.title-cycle__word.is-exit {
  opacity: 0;
  transform: translateY(-120%);
}

/* Word reveal */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.word-reveal:nth-of-type(1) .word-reveal__inner { animation-delay: 0.5s; }
.word-reveal:nth-of-type(2) .word-reveal__inner { animation-delay: 0.7s; }

@keyframes wordReveal {
  to { transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Subtitle */
.hero__sub {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

/* Glow CTA — originele donkere kleur met glow */
.btn--glow {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #fff !important;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, background 0.3s ease !important;
}

.btn--glow:hover {
  background: #333333 !important;
  border-color: #333333 !important;
  box-shadow: 0 0 25px rgba(0,0,0,0.3), 0 0 55px rgba(0,0,0,0.12) !important;
}

/* Ghost button — originele stijl */
.btn--ghost-light {
  color: rgba(0,0,0,0.55) !important;
}

.btn--ghost-light:hover {
  color: #111111 !important;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #111111, transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.ls-accent {
  color: var(--accent);
}

/* Underline wrapper */
.ls-underline-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

/* Animated SVG underline */
.animated-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: visible;
  color: var(--accent);
}

.au-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition:
    stroke-dashoffset 1.5s ease-in-out,
    opacity 0.5s ease;
}

/* Hover path hidden by default */
.au-path--hover {
  opacity: 0;
}

/* Draw animation triggers when .drawn is added */
.animated-underline.drawn .au-path {
  stroke-dashoffset: 0;
}

/* Hover: swap between normal and inverted wave */
.ls-underline-wrap:hover .au-path--normal {
  opacity: 0;
}

.ls-underline-wrap:hover .au-path--hover {
  opacity: 1;
}

/* =============================================
   ABOUT / COACH
   ============================================= */

.about {
  background: #111111;
  padding: 5rem 0;
}

.about .container {
  max-width: 1300px;
}

.coach__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 6rem;
  align-items: start;
}

/* Tekst kant */
.coach__text {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.coach__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.coach__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.coach__text p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Definitie rijen */
.coach__defs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.coach__def {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.coach__def-word {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.coach__def p {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* CTA knop in de donkere sectie */
.btn--coach-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  align-self: flex-start;
  min-height: 48px;
}

.btn--coach-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* Foto kant */
.coach__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  max-height: 520px;
  align-self: center;
}

.coach__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .coach__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .coach__photo-wrap {
    order: -1;
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }

  .coach__photo {
    object-position: center center;
  }

  .coach__text {
    padding: 3rem 2rem;
  }

  .btn--coach-cta {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .coach__photo-wrap {
    aspect-ratio: 1 / 1;
    max-height: 360px;
  }

  .coach__photo {
    object-position: center center;
  }

  .coach__def {
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
  }
}


/* =============================================
   PROBLEMS / MISSION
   ============================================= */

.problems {
  background: var(--bg-light);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.problem:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.problem__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.problem h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.problem__pain {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.problem__fix {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

.problem__fix span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* Compare table */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.compare__col {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.compare__col--good {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1c1c1c, #141414);
}

.compare__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.compare__col--bad .compare__label { color: var(--text-muted); }
.compare__col--good .compare__label { color: rgba(255,255,255,0.6); }

.compare__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.compare__col li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.compare__col--bad li {
  color: var(--text-muted);
}

.compare__col--bad li::before {
  content: '✕';
  color: #444444;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

.compare__col--good li {
  color: rgba(255,255,255,0.9);
}

.compare__col--good li::before {
  content: '✓';
  color: #ffffff;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

.compare__vs {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   PILLARS
   ============================================= */

.pillars {
  background: var(--bg);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.pillar:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   HANDWRITTEN OVAL — HOW IT WORKS
   ============================================= */

.hw-wrap {
  position: relative;
  display: inline-block;
  padding: 0.6em 0.8em;
  line-height: inherit;
}

.hw-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--text);
  opacity: 0.18;
  pointer-events: none;
  overflow: visible;
}

.hw-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.43, 0.13, 0.23, 0.96);
}

.hw-wrap.drawn .hw-path {
  stroke-dashoffset: 0;
}

@media (max-width: 640px) {
  .hw-wrap {
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.how {
  background: var(--bg);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(0,0,0,0.35);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(0,0,0,0.08));
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* =============================================
   PROGRAMS
   ============================================= */

.programs {
  background: var(--bg-light);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.program {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition);
}

.program--featured {
  border-color: #111111;
  background: linear-gradient(135deg, #181818, #141414);
  transform: scale(1.03);
}

.program--featured .program__tag { color: rgba(255,255,255,0.55); }
.program--featured .program__name { color: #ffffff; }
.program--featured .program__price { color: #ffffff; }
.program--featured .price__per { color: rgba(255,255,255,0.55); }
.program--featured .program__duration { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.12); }
.program--featured .program__features li { color: rgba(255,255,255,0.85); }
.program--featured .program__features li::before { background: #ffffff; }

.program__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.program__name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.program__price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.price__per {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.program__duration {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.program__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.program__features li {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.program__features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials {
  background: var(--bg-2);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--accent);
}

/* =============================================
   INSTAGRAM
   ============================================= */

.instagram {
  background: var(--bg-2);
}

.instagram__feed {
  margin: 0 auto;
  max-width: 1000px;
}

.instagram__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  background: #111111;
  border-top: none;
  border-bottom: none;
  padding: 6rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* =============================================
   CONTACT
   ============================================= */

.contact {
  background: var(--bg-2);
}

.contact__wa {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact__sub {
  color: rgba(0,0,0,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
  text-align: left;
}

.contact__channel:hover {
  transform: translateY(-2px);
}

.contact__channel--wa:hover {
  border-color: #25D366;
}

.contact__channel--ig:hover {
  border-color: #C13584;
}

.channel__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__channel--wa .channel__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact__channel--ig .channel__icon {
  background: rgba(193, 53, 132, 0.12);
  color: #C13584;
}

.channel__text {
  flex: 1;
}

.channel__text strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.channel__text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.channel__arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.contact__channel:hover .channel__arrow {
  transform: translateX(4px);
  color: var(--white);
}

/* =============================================
   STICKY MOBILE CTA
   ============================================= */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg);
  border-top: 1px solid var(--border-strong);
  padding: 0.875rem 1.25rem;
  padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.sticky-cta__text strong {
  font-size: 0.9rem;
  color: var(--text);
}

.sticky-cta__text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sticky-cta__btn {
  flex-shrink: 0;
  font-size: 0.8rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* WhatsApp button style */
.btn--whatsapp {
  gap: 0.5rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__inner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__ig {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__ig:hover {
  color: var(--accent);
}

.footer__credit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__badge { right: 0; }

  .programs__grid,
  .testimonials__grid,
  .problems__grid {
    grid-template-columns: 1fr;
  }

  .program--featured { transform: scale(1); }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), rgba(0,0,0,0.08));
    margin-top: 0;
  }

  .compare { grid-template-columns: 1fr; }
  .compare__vs { text-align: center; }
}

/* =============================================
   MOBILE — 640px en kleiner
   ============================================= */

@media (max-width: 640px) {

  /* Nav */
  .nav {
    padding: 0.75rem 1.25rem;
  }

  .nav__logo-img {
    height: 80px;
  }

  .nav__logo-img--footer {
    height: 80px;
  }

  /* Sections */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Hero — extra top padding voor de grotere nav */
  .hero__logo-bg { display: none; }

  .hero__label,
  .hero__sub,
  .hero__actions { animation-duration: 0.6s; }

  .hero__content {
    padding-top: 7rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  /* Title cycle overflow voorkomen */
  .title-cycle {
    max-width: calc(100vw - 2.5rem);
  }

  .title-cycle__sizer,
  .title-cycle__word {
    font-size: inherit;
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* Section titles */
  .section__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  /* Handwritten oval — smaller padding op mobiel */
  .hw-wrap {
    padding: 0.5em 0.6em;
  }

  /* About */
  .about__text {
    text-align: left;
  }

  /* Programs */
  .program { padding: 2rem 1.5rem; }

  /* Steps */
  .step { padding: 0 1rem; }

  /* Buttons — min touch target 48px */
  .btn {
    min-height: 48px;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Floating WA verborgen op mobiel — sticky CTA dekt dit af */
  .wa-float {
    display: none;
  }

  /* Testimonials */
  .testimonial { padding: 1.75rem 1.25rem; }

  /* Contact channels */
  .contact__channel { padding: 1.1rem 1.25rem; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* CTA banner */
  .cta-banner { padding: 4rem 1.25rem; }

  /* Compare */
  .compare__col { padding: 1.5rem; }
}

/* =============================================
   MOBILE MENU SLUIT-KNOP & CTA
   ============================================= */

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111111;
  padding: 0.5rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__cta {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 280px;
  justify-content: center;
  min-height: 52px;
}

/* =============================================
   PREFERS REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__label,
  .hero__sub,
  .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .word-reveal__inner {
    animation: none;
    transform: none;
  }

  .title-cycle__word {
    transition: opacity 0.3s ease;
    transform: none !important;
  }

  .title-cycle__word.is-active {
    transform: none;
  }

  .au-path,
  .hw-path {
    transition: none;
  }

  .hero__scroll span {
    animation: none;
  }

  .wa-float::before {
    animation: none;
  }
}
