/* ═══════════════════════════════════════════════════════════════
   B42 YOUTH ACADEMY — styles.css
   Design System: Dark Athletic
═══════════════════════════════════════════════════════════════ */

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

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  --bg: #0a0a0a;
  --bg-alt: #1a1a1a;
  --accent: #c6ff00;
  --accent-dark: #a8d800;
  --accent-bg: rgba(198, 255, 0, 0.06);
  --accent-border: rgba(198, 255, 0, 0.22);
  --text: #ffffff;
  --text-2: #aaaaaa;
  --text-muted: #bfbdc6;
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.14);
  --red: #ff5c5c;
  --light: #ffffff;

  --ff-display: "Montserrat", sans-serif;
  --ff-headline: "Montserrat", sans-serif;
  --ff-body: "Montserrat", sans-serif;

  --max-w: 1280px;
  --section-v: clamp(80px, 8vw, 120px);
  --section-h: clamp(16px, 4vw, 60px);
}

/* ── BASE ─────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-h);
}

.section {
  padding: var(--section-v) 0;
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background: var(--bg-alt);
  padding: var(--section-v) 0;
  border-bottom: 1px solid var(--border);
}

/* ── SECTION LIGHT ────────────────────────────────────────── */
.section-light {
  --text: #0d0d1a;
  --text-2: #4a4a6a;
  --text-muted: #7a7a9a;
  --accent: #6d7cff;
  --accent-dark: #5a69ee;
  --accent-bg: rgba(109, 124, 255, 0.1);
  --accent-border: rgba(109, 124, 255, 0.28);
  --border: rgba(0, 0, 0, 0.1);
  --border-hi: rgba(0, 0, 0, 0.18);
  --bg-alt: #ffffff;
  --red: #e04444;

  background: #ebebf5;
  padding: var(--section-v) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.section-light .section-label {
  color: var(--accent);
}

.section-light .h2,
.section-light .h3 {
  color: var(--text);
}

.section-light .sub {
  color: var(--text-2);
}

.section-light .solution-subhead {
  color: var(--text);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.h1 {
  font-family: var(--ff-headline);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.h2 {
  font-family: var(--ff-headline);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
}

.h3 {
  font-family: var(--ff-headline);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.sub {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
}

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

.trust-line {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  padding: 14px 32px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #000000;
}
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(198, 255, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-secondary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 16px rgba(198, 255, 0, 0.2);
}

.btn-lg {
  font-size: 15px;
  padding: 18px 44px;
  border-radius: 9999px;
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-hi);
  color: var(--text-2);
  opacity: 0.85;
}

.badge-award {
  background: var(--accent-bg);
  border-color: var(--accent-border);
  color: var(--accent);
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-label {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

/* ── HERO ACCENT LINE (inside nav) ────────────────────────── */
.hero-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #c6ff00 0%, rgba(198, 255, 0, 0.3) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.6;
}

/* ── TRUST & CLUBS SECTION ────────────────────────────────── */
.trust-section {
  padding: var(--section-v) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.trust-headline {
  font-family: var(--ff-headline);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
  margin: 12px 0 14px;
  max-width: 720px;
}

.trust-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 640px;
}

.clubs-carousel {
  --clubs-scroll-duration: 40s;
  position: relative;
  overflow: hidden;
  margin: 44px 0 40px;
}

.clubs-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: autoScroll var(--clubs-scroll-duration) linear infinite;
  will-change: transform;
}

.club-logo-item {
  flex: 0 0 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.club-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.club-logo-item:hover {
  opacity: 1;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.trust-intro {
  max-width: 640px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .trust-intro {
    flex-direction: column;
    text-align: center;
  }
}

.trust-intro img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--ff-headline);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-row-container {
  margin-top: 32px;
}

.social-row-container p {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
  text-align: center;
}

.social-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 12px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-item:hover {
  color: var(--accent);
  cursor: pointer;
}

.social-item:hover .social-label {
  color: var(--accent);
}

.social-label {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.social-number {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(80px, 10vw, 130px);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  background-size: cover;
  background-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-top-logo {
  display: flex;
  justify-content: center;
  margin-top: clamp(20px, 4vh, 44px);
  margin-bottom: clamp(28px, 6vh, 64px);
}

.hero-top-logo img {
  height: clamp(56px, 8vw, 88px);
  width: auto;
}

.hero-inner {
  display: block;
}

.hero-content {
  max-width: 700px;
}

.hero-visual {
  display: none;
}

/* Hero stagger animations */
.hero-h1 {
  animation: fadeInUp 0.4s ease-out 0.15s both;
}
.hero-sub {
  animation: fadeInUp 0.4s ease-out 0.25s both;
}
.hero-cta-group {
  animation: fadeInUp 0.4s ease-out 0.35s both;
}
.hero-badges {
  animation: fadeInUp 0.4s ease-out 0.45s both;
}

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

/* ── PROBLEM SECTION ──────────────────────────────────────── */
.problem-intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.problem-intro p {
  font-family: var(--ff-body);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 20px;
}

.problem-punchline {
  font-family: var(--ff-headline);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

/* ── NUMBERED ITEMS ───────────────────────────────────────── */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.numbered-item {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: flex-start;
  padding: clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid var(--border);
}

.numbered-item:first-child {
  border-top: 1px solid var(--border);
}

.num-big {
  font-family: var(--ff-display);
  font-size: clamp(72px, 8vw, 96px);
  color: var(--accent);
  line-height: 0.82;
  width: clamp(90px, 11vw, 140px);
  flex-shrink: 0;
}

.num-content {
  flex: 1;
  padding-top: 4px;
}

.num-content .h3 {
  margin-bottom: 8px;
}

.num-content p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

.num-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent);
  border-radius: 20px;
  padding: 4px 14px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.04em;
}

.section .num-badge {
  color: var(--bg);
}

/* ── SOLUTION SECTION ─────────────────────────────────────── */
.solution-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.solution-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
}

.solution-card-label {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.solution-card p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

.solution-subhead {
  font-family: var(--ff-headline);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

/* ── STATS SECTION ────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.stat-cell {
  background: var(--bg-alt);
  padding: clamp(28px, 3vw, 44px) 28px;
  text-align: center;
}

.stat-num {
  font-family: var(--ff-headline);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}

.stat-note {
  margin-top: 24px;
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.note-box {
  background: rgba(255, 204, 0, 0.04);
  border: 1px solid rgba(255, 204, 0, 0.18);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 24px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.note-box strong {
  color: #ffcc44;
}

/* ── EXPERTS CAROUSEL ─────────────────────────────────────── */
.expert-carousel {
  margin-top: 48px;
  overflow: hidden;
}

.expert-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expert-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-bottom: 48px;
}

.expert-slide-img {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--accent-bg);
}

.expert-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.expert-slide-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.expert-role {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.expert-name {
  font-family: var(--ff-headline);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.expert-bio {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
}

.expert-link {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.expert-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 48px;
}

.expert-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hi);
  background: var(--bg-alt);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s;
  font-family: var(--ff-body);
  flex-shrink: 0;
}

.expert-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.expert-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.expert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-hi);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}

.expert-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.testimonial-video {
  position: relative;
  background: #0f1300;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonial-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}

.testimonial-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(198, 255, 0, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(198, 255, 0, 0.12);
  border: 1.5px solid rgba(198, 255, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  padding-left: 4px;
  position: relative;
  z-index: 1;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.testimonial-video:hover .play-btn {
  background: rgba(198, 255, 0, 0.22);
  border-color: var(--accent);
}

.testimonial-body {
  padding: 20px 24px 22px;
}

.testimonial-quote {
  font-family: var(--ff-body);
  font-size: 15px;
  color: #dddddd;
  line-height: 1.65;
  margin-bottom: 12px;
}

.testimonial-meta {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.testimonial-meta a {
  color: var(--accent);
}

/* ── FÜR WEN ──────────────────────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.fit-card {
  border-radius: 24px;
  padding: 28px;
}

.fit-card-no {
  background: rgba(255, 92, 92, 0.05);
  border: 1px solid rgba(255, 92, 92, 0.15);
}

.fit-card-yes {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.fit-label {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.fit-label-no {
  color: var(--red);
}
.fit-label-yes {
  color: var(--accent);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-list li {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1.5;
}

.fit-card-no .fit-list li::before {
  content: "✕";
  color: var(--red);
}
.fit-card-yes .fit-list li::before {
  content: "✓";
  color: var(--accent);
}

/* ── PACKAGE / VALUE STACK ────────────────────────────────── */
.package-intro {
  max-width: 600px;
  margin-bottom: 56px;
}

.value-table-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}

.value-table {
  width: 100%;
  border-collapse: collapse;
}

.value-table td {
  padding: 16px 24px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.value-table td:last-child {
  text-align: right;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.value-table .row-subtotal td {
  font-size: 13px;
  color: var(--text-muted);
}

.value-table .row-total td {
  padding: 22px 24px;
  font-family: var(--ff-headline);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--text);
  border-bottom: none;
}

.value-table .row-total td:last-child {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--accent);
  letter-spacing: -0.02em;
}

.value-table .row-was td {
  padding: 18px 24px 0;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  border-bottom: none;
}

.package-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── GUARANTEE BLOCK ──────────────────────────────────────── */
.guarantee-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 64px);
}

.guarantee-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
}

.guarantee-headline {
  font-family: var(--ff-headline);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.guarantee-body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

/* ── SIGNINGS ─────────────────────────────────────────────── */
.signing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.signing-video {
  position: relative;
  background: #111;
  border-radius: 16px;
  aspect-ratio: 9 / 16;
  max-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.signing-video:hover {
  border-color: rgba(198, 255, 0, 0.4);
}

.signing-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signing-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* ── VIDEO MODAL ─────────────────────────────────────────── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 360px);
}

.video-modal-inner video {
  width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 12px;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.video-modal-close:hover {
  opacity: 1;
}

.signing-name {
  font-family: var(--ff-headline);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.signing-quote {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-2);
  font-style: italic;
  margin-top: 6px;
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

.signing-move {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-2);
}

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

.dfb-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(198, 255, 0, 0.04);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  padding: 14px 20px;
  margin-top: 32px;
}

.dfb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(198, 255, 0, 0.4);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 0 5px rgba(198, 255, 0, 0);
  }
}

.dfb-text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q-text {
  font-family: var(--ff-headline);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 260px;
}

.faq-answer p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ── IMAGE PLACEHOLDERS ──────────────────────────────────── */
.img-placeholder {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 4vw, 52px) 24px;
  gap: 12px;
  background: rgba(198, 255, 0, 0.02);
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  border-radius: inherit;
  z-index: 0;
}

.img-placeholder-tag {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}

.img-placeholder-desc {
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.problem-img {
  min-height: 600px;
  margin-bottom: 48px;
}

.fit-img {
  min-height: 540px;
  margin-bottom: 40px;
}

.final-cta-img {
  max-width: 600px;
  margin: 0 auto 48px;
  min-height: 200px;
  border-radius: 12px;
}

.hero-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 24px;
  z-index: 1;
  width: 90%;
}

.hero-visual-center .img-placeholder-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.hero-visual-center p {
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

.testimonial-video-hint {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--ff-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.05em;
  z-index: 2;
  padding: 0 12px;
}

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.final-cta-text {
  text-align: left;
}

.final-cta-text .sub {
  margin: 0 0 36px;
}

.final-cta-text .scarcity {
  display: block;
  margin-bottom: 28px;
}

.final-cta-text .trust-line {
  margin-top: 16px;
}

.final-cta-visual .final-cta-img {
  max-width: none;
  margin: 0;
  min-height: 500px;
}

.scarcity {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.final-cta .h2 {
  margin-bottom: 20px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-name {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo p {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── MODULE GRID ─────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.module-card {
  background: var(--bg-alt);
  border: 2px solid var(--border-hi);
  border-radius: 12px;
  padding: 28px 24px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.module-card:hover {
  background: rgba(198, 255, 0, 0.04);
  border-color: var(--accent-border);
}

.module-card-title {
  font-family: var(--ff-headline);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.module-card-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}

.modules-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── RESPONSIVE: 500px ────────────────────────────────────── */
@media (min-width: 500px) {
  .signing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-cards {
    grid-template-columns: 1fr 1fr;
  }
  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── RESPONSIVE: 768px ────────────────────────────────────── */
@media (min-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── RESPONSIVE: 1024px ───────────────────────────────────── */
@media (min-width: 1024px) {
  .solution-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── MOBILE: max-width 767px ─────────────────────────────── */
@media (max-width: 767px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
  }
  .final-cta-text {
    text-align: center;
  }
  .final-cta-text .sub {
    margin: 0 auto 36px;
  }
  .final-cta-visual {
    order: -1;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  :root {
    --section-v: 60px;
  }

  .hero {
    min-height: 100svh;
    padding: clamp(80px, 14vw, 120px) 0 clamp(64px, 10vw, 100px);
    align-items: flex-end;
  }

  .hero-top-logo {
    margin-top: 8px;
    margin-bottom: 28px;
  }

  .trust-headline {
    font-size: clamp(24px, 6vw, 48px);
    margin-bottom: 12px;
  }

  .trust-subtitle {
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 32px;
  }

  .club-logo-item {
    flex: 0 0 90px;
    height: 50px;
  }

  .clubs-carousel {
    --clubs-scroll-duration: 32s;
  }

  .stat-row,
  .social-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: clamp(18px, 2.5vw, 32px);
  }

  .expert-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }

  .expert-slide-img {
    aspect-ratio: 3 / 4;
    border-radius: 16px;
  }

  .expert-slide-info {
    gap: 12px;
    text-align: center;
    align-items: center;
  }

  .expert-slide-info .expert-bio {
    text-align: left;
  }

  .expert-nav {
    justify-content: center;
  }

  .h1 {
    font-size: clamp(40px, 11vw, 110px);
  }
  .h2 {
    font-size: clamp(28px, 8vw, 60px);
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
  }
  .h3 {
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  /* tighter numbers so label + text still breathe */
  .num-big {
    font-size: clamp(52px, 14vw, 72px);
    width: clamp(70px, 18vw, 90px);
  }

  /* single-column expert cards — bio text is too cramped at 2-col */
  .expert-grid {
    grid-template-columns: 1fr;
  }

  /* full-width primary CTAs for easier tapping */
  .btn-lg {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* tighter value table */
  .value-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  .value-table .row-was td {
    padding: 12px 16px 0;
    font-size: 13px;
  }
  .value-table .row-total td {
    padding: 16px;
    font-size: 16px;
  }
  .value-table .row-total td:last-child {
    font-size: 26px;
  }

  .package-intro {
    margin-bottom: 32px;
  }
  .solution-subhead {
    margin-top: 40px !important;
  }
}

/* ── SMALL MOBILE: max-width 480px ──────────────────────── */
@media (max-width: 480px) {
  .nav-label {
    display: none;
  }
  .numbered-item {
    gap: 16px;
    padding: 20px 0;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOUNDER STORY ───────────────────────────────────────── */
.founder-story {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.founder-story-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.founder-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-story-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-story-content p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}

.founder-signature {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 15px !important;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .founder-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-story-img {
    aspect-ratio: 16/9;
    max-height: 300px;
  }
}

/* ── SHOWCASE HERO ───────────────────────────────────────── */
.showcase-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 16px;
}

.showcase-hero-video {
  aspect-ratio: 9/16;
  max-height: 480px;
  border-radius: 16px;
}

.showcase-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-hero-player {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.showcase-hero-move {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.showcase-hero-quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

@media (max-width: 768px) {
  .showcase-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase-hero-video {
    aspect-ratio: 16/9;
    max-height: 260px;
  }
  .showcase-hero-move {
    font-size: 22px;
  }
}

/* ── AN DIE ELTERN ───────────────────────────────────────── */
.parents-text {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parents-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ── VERY SMALL MOBILE: max-width 360px ─────────────────── */
@media (max-width: 360px) {
  .h1 {
    font-size: 36px;
  }
  .num-big {
    font-size: 44px;
    width: 60px;
  }
}
