/* ═══════════════════════════════════════════════════════════════
   PROJECT U — Main Stylesheet
   Extracted from React component — visually identical
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --f-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --f-body: 'DM Sans', -apple-system, sans-serif;
  --bg1: #0F1923;
  --bg2: #0B1219;
  --accent: #B8965A;
  --t1: #F2EFE9;
  --t2: #9A958E;
  --t3: #5C5750;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg1); color: var(--t1); font-family: var(--f-body); overflow-x: hidden; }
::selection { background: rgba(184,150,90,0.3); color: var(--t1); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: rgba(184,150,90,0.3); border-radius: 10px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── Reveal Animation System ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(1);
  filter: blur(0px);
  will-change: opacity, transform, filter;
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}
/* Transition speed applied per-element via inline style for stagger delays */

/* ─── Shared Components ─────────────────────────────────────── */

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 60px;
  background: rgba(184,150,90,0.08);
  border: 1px solid rgba(184,150,90,0.12);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Section heading */
.heading {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

/* Gradient text accent */
.gradient-text {
  background: linear-gradient(135deg, #C9A96E, #937545);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Body text */
.body-text {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--t2);
}

/* Section divider line */
.section-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,90,0.2), transparent);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section padding */
.section-pad {
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ─── CTA Buttons ───────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 14px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  border: none;
}
.cta--primary {
  background: linear-gradient(135deg, #B8965A 0%, #937545 100%);
  color: #0F1923;
}
.cta--primary:hover {
  background: linear-gradient(135deg, #C9A96E 0%, #A07D4A 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,150,90,0.3);
}
.cta--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--t1);
  border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.cta--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.cta--small {
  padding: 12px 28px;
  font-size: 13px;
}
.cta__arrow {
  transition: transform 0.3s;
  font-size: 16px;
}
.cta:hover .cta__arrow {
  transform: translateX(3px);
}

/* ─── Glass Card ────────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.glass--hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(184,150,90,0.2);
}
.glass--no-hover { cursor: default; }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.nav--scrolled {
  padding: 12px 0;
  background: rgba(15,25,35,0.85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__monogram {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(184,150,90,0.15), rgba(184,150,90,0.05));
  border: 1px solid rgba(184,150,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav__brand-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}
.nav__brand-sub {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: -1px;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  text-decoration: none;
  color: var(--t2);
  font-size: 13px;
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav__link:hover { color: var(--t1); }

/* Nav logo image */
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Footer logo image */
.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Mobile menu button */
.nav__mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__mob-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mob-btn.is-open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav__mob-btn.is-open span:nth-child(2) { opacity: 0; }
.nav__mob-btn.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile menu panel */
.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15,25,35,0.98);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 28px 32px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-menu a {
  text-decoration: none;
  color: var(--t2);
  font-size: 16px;
  font-family: var(--f-body);
  font-weight: 500;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1a2a3a;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(11,18,25,0.55) 0%,
    rgba(11,18,25,0.35) 35%,
    rgba(11,18,25,0.45) 65%,
    rgba(11,18,25,0.85) 100%
  );
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 200px 60px rgba(11,18,25,0.5);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 32px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 60px;
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  margin-bottom: 36px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
.hero__badge-text {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(42px, 7.5vw, 88px);
  font-weight: 800;
  line-height: 1.04;
  color: #FFFFFF;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  max-width: 900px;
}
.hero__title .gradient-text {
  filter: drop-shadow(0 2px 8px rgba(184,150,90,0.3));
  background: linear-gradient(135deg, #D4B574 0%, #B8965A 50%, #937545 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: rgba(242,239,233,0.75);
  max-width: 540px;
  margin-bottom: 48px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.2);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1.5s ease 1.4s;
}
.hero--loaded .hero__scroll { opacity: 0.5; }
.hero__scroll-mouse {
  width: 24px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid rgba(242,239,233,0.25);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll-dot {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDot 2s ease infinite;
}

/* Hero load animation */
.hero__anim {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(6px);
}
.hero--loaded .hero__anim {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}
.hero--loaded .hero__anim--1 { transition: all 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s; }
.hero--loaded .hero__anim--2 { transition: all 1.1s cubic-bezier(0.16,1,0.3,1) 0.3s; }
.hero--loaded .hero__anim--3 { transition: all 1.1s cubic-bezier(0.16,1,0.3,1) 0.45s; }
.hero--loaded .hero__anim--4 { transition: all 1.1s cubic-bezier(0.16,1,0.3,1) 0.6s; }

/* ─── Problem Section ───────────────────────────────────────── */
.problem { background: var(--bg2); position: relative; overflow: hidden; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.problem__card { padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; height: 100%; }
.problem__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184,150,90,0.08);
  border: 1px solid rgba(184,150,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}
.problem__text {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--t1);
  letter-spacing: -0.01em;
}

/* Solution tease */
.solution-tease { margin-top: 72px; max-width: 640px; position: relative; }
.solution-tease__bar {
  width: 48px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 28px;
}
.solution-tease__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--t1);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.solution-tease__text {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--t2);
  margin-bottom: 12px;
}
.solution-tease__text strong { color: var(--t1); }
.solution-tease__cta { margin-top: 32px; }

/* ─── Transform Carousel ────────────────────────────────────── */
.transforms { background: var(--bg1); position: relative; overflow: hidden; }
.carousel { position: relative; max-width: 800px; margin: 0 auto; }
.carousel__viewport {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.carousel__track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel__slide { min-width: 100%; }
.carousel__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.carousel__photo {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.carousel__photo--before {
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(15,25,35,0.8) 0%, rgba(15,25,35,0.95) 100%);
}
.carousel__photo--after {
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(184,150,90,0.06) 0%, rgba(15,25,35,0.9) 100%);
}
/* When real images are present, override backgrounds */
.carousel__photo.has-image { background-color: var(--bg2); }
.carousel__photo.has-image .carousel__photo-placeholder { display: none; }

.carousel__photo-placeholder {
  opacity: 0.3;
}
.carousel__photo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 60px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.carousel__photo-label--before {
  background: rgba(255,255,255,0.06);
  color: var(--t3);
}
.carousel__photo-label--after {
  background: rgba(184,150,90,0.12);
  color: var(--accent);
}
.carousel__info {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.carousel__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--t1);
}
.carousel__age {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--t3);
}
.carousel__tag {
  padding: 4px 14px;
  border-radius: 60px;
  background: rgba(184,150,90,0.1);
  border: 1px solid rgba(184,150,90,0.12);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

/* Carousel arrows */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,25,35,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t1);
  font-size: 18px;
  transition: all 0.3s;
  z-index: 2;
}
.carousel__arrow:hover {
  border-color: rgba(184,150,90,0.3);
  background: rgba(15,25,35,0.95);
}
.carousel__arrow--prev { left: -20px; }
.carousel__arrow--next { right: -20px; }

/* Carousel dots */
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel__dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 8px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.carousel__dot.is-active {
  background: var(--accent);
  width: 28px;
}

/* ─── About / Wie Zijn Wij ──────────────────────────────────── */
.about { background: var(--bg1); position: relative; overflow: hidden; }
.about__glow {
  position: absolute;
  top: 30%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about__coaches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.coach-card { padding: 0; overflow: hidden; height: 100%; }
.coach-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(184,150,90,0.08) 0%, rgba(15,25,35,0.6) 50%, rgba(184,150,90,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background-size: cover;
  background-position: center;
}
.coach-card__photo.has-image .coach-card__placeholder { display: none; }
.coach-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.25;
}
.coach-card__placeholder svg { color: var(--t2); }
.coach-card__placeholder-text {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.coach-card__corner {
  position: absolute;
  width: 40px;
  height: 40px;
}
.coach-card__corner--tl {
  top: 20px; left: 20px;
  border-left: 2px solid rgba(184,150,90,0.2);
  border-top: 2px solid rgba(184,150,90,0.2);
  border-radius: 4px 0 0 0;
}
.coach-card__corner--br {
  bottom: 20px; right: 20px;
  border-right: 2px solid rgba(184,150,90,0.2);
  border-bottom: 2px solid rgba(184,150,90,0.2);
  border-radius: 0 0 4px 0;
}
.coach-card__info { padding: 32px 28px; }
.coach-card__role {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.coach-card__name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.coach-card__desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--t2);
}
.coach-card__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.coach-card__social {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.coach-card__social:hover {
  color: var(--t1);
}

/* ─── Approach ──────────────────────────────────────────────── */
.approach { background: var(--bg2); position: relative; overflow: hidden; }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.pillar { padding: 36px 28px; height: 100%; }
.pillar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.pillar__icon { font-size: 28px; opacity: 0.3; }
.pillar__num {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.pillar__title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 12px;
}
.pillar__desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--t3);
}

/* ─── For Who ───────────────────────────────────────────────── */
.forwho { background: var(--bg1); position: relative; overflow: hidden; }
.forwho__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.forwho-card { padding: 36px 32px; }
.forwho-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.forwho-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.forwho-card__icon--yes { background: rgba(184,150,90,0.15); color: var(--accent); }
.forwho-card__icon--no { background: rgba(255,255,255,0.05); color: var(--t3); font-size: 14px; }
.forwho-card__title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
}
.forwho-card__title--yes { color: var(--accent); }
.forwho-card__title--no { color: var(--t3); }
.forwho-card__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}
.forwho-card__check { font-size: 14px; flex-shrink: 0; }
.forwho-card__check--yes { color: var(--accent); }
.forwho-card__check--no { color: var(--t3); opacity: 0.5; }
.forwho-card__item-text { font-family: var(--f-body); font-size: 15px; }
.forwho-card__item-text--yes { color: var(--t1); }
.forwho-card__item-text--no { color: var(--t3); }

/* ─── Results / Testimonials ────────────────────────────────── */
.results { background: var(--bg2); position: relative; overflow: hidden; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.testimonial { padding: 36px 28px; height: 100%; display: flex; flex-direction: column; }
.testimonial__quote-mark {
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--f-display);
  font-weight: 300;
}
.testimonial__text {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--t1);
  flex: 1;
  margin-bottom: 28px;
}
.testimonial__footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(184,150,90,0.12), rgba(15,25,35,0.6));
  border: 1px solid rgba(184,150,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial__avatar svg { color: var(--t3); opacity: 0.5; }
.testimonial__info { flex: 1; }
.testimonial__name {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
}
.testimonial__role {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--t3);
}
.testimonial__metric {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 60px;
  background: rgba(184,150,90,0.1);
  border: 1px solid rgba(184,150,90,0.12);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* ─── Final CTA ─────────────────────────────────────────────── */
.final-cta { background: var(--bg1); position: relative; overflow: hidden; }
.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--t1);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.final-cta__sub {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--t2);
  max-width: 500px;
  margin: 0 auto 44px;
}
.final-cta__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.final-cta__tag {
  padding: 6px 16px;
  border-radius: 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.04em;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 40px 32px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__monogram {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(184,150,90,0.15), rgba(184,150,90,0.05));
  border: 1px solid rgba(184,150,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
}
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__links { display: flex; gap: 28px; }
.footer__link {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--t3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__link:hover { color: var(--accent); }
.footer__copy {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--t3);
  opacity: 0.5;
}

/* ─── Typewriter Effect ──────────────────────────────────────── */
.typewriter {
  display: inline;
}
/* Initially empty — JS will type the text in */
.typewriter--js {
  display: inline;
}
.typewriter__cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--accent);
  animation: cursorBlink 0.8s steps(1) infinite;
  margin-left: 2px;
  font-style: normal;
}
.typewriter__cursor--hidden {
  opacity: 0;
  animation: none;
}
.typewriter .gradient-text {
  background: linear-gradient(135deg, #D4B574 0%, #B8965A 50%, #937545 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(184,150,90,0.3));
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── Keyframes ─────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mob-btn { display: flex; }
  .carousel__arrow--prev { left: 8px; }
  .carousel__arrow--next { right: 8px; }
}
@media (min-width: 769px) {
  .nav__mob-btn { display: none; }
  .nav__mobile-menu { display: none !important; }
}
