/* ═══════════════════════════════════════════════════════
   ATHLETIC BLUEPRINT — athleticblueprint.ch
   Design System & Styles
═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  /* Backgrounds — blanc cassé / gris très clair */
  --bg-primary:    #F0F5FF;
  --bg-secondary:  #E6EBF8;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F5F9FF;
  --border:        #C4CEDF;
  --border-light:  #D8E2F0;

  /* Primary — Bleu électrique */
  --gold:          #1A5CFF;
  --gold-light:    #4D82FF;
  --gold-dark:     #0A3BB5;
  --gold-bg:       rgba(26,92,255,0.08);
  --gold-bg-hover: rgba(26,92,255,0.14);

  /* Accent — Cyan / Turquoise */
  --cyan:          #00C5B8;
  --cyan-light:    #3DD6CE;
  --cyan-dark:     #009A91;

  /* Texte — anthracite sur fond clair */
  --text-white:    #0C1220;
  --text-light:    #1E2A3E;
  --text-muted:    #4F6380;
  --text-dim:      #7A90A8;

  --radius:        4px;
  --radius-md:     8px;
  --radius-lg:     12px;

  --font-heading:  'Bebas Neue', 'Impact', sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --nav-h:         72px;
  --container:     1160px;

  --transition:    0.25s ease;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ───────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.container  { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #ffffff;
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,92,255,0.30);
}

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full  { width: 100%; justify-content: center; }
.btn--lg    { padding: 18px 48px; font-size: 0.85rem; }

/* ── Section Helpers ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--text-white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

.section-header--left { text-align: left; }
.section-header--left .section-desc { margin: 0; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,249,255,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: background var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(240,246,255,0.99);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: rgba(26,92,255,0.2);
  box-shadow: 0 1px 0 rgba(26,92,255,0.06), 0 4px 20px rgba(26,92,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
}

/* Logo image — cercle propre, visible sur tous les navigateurs */
.logo__img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(26,92,255,0.35);
  box-shadow: 0 0 12px rgba(26,92,255,0.12);
}

.logo__img--hero {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  border: 2px solid rgba(26,92,255,0.5);
  box-shadow: 0 0 32px rgba(26,92,255,0.2), 0 0 0 6px rgba(26,92,255,0.06);
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text-white); }
.nav__link.active { color: var(--gold); }

.nav__link--cta {
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid rgba(26,92,255,0.25);
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--gold-bg-hover);
  color: var(--gold-light);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-light);
  transition: all var(--transition);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Blueprint grid pattern */
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,92,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 28% 48%, rgba(26,92,255,0.22) 0%, transparent 65%),
    radial-gradient(ellipse at 70% 40%, rgba(0,197,184,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,92,255,0.08) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 120px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(26,92,255,0.2);
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1.0;
  color: #fff;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 28px;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__subtitle strong { color: #fff; }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  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; }
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats {
  background: var(--bg-secondary);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 0;
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 40px;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stats__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stats__label-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.stats__label-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════
   LES 5 PILIERS
═══════════════════════════════════════════════════════ */
.piliers {
  padding: 120px 0;
  background: var(--bg-primary);
}

.piliers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pilier-card {
  position: relative;
  background: var(--bg-card);
  padding: 48px 32px 40px;
  transition: background var(--transition);
  overflow: hidden;
}
.pilier-card:hover {
  background: var(--bg-card-hover);
}

/* Watermark number */
.pilier-card__number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity var(--transition);
}
.pilier-card:hover .pilier-card__number {
  opacity: 0.12;
}

.pilier-card__icon {
  margin-bottom: 24px;
}

.pilier-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1;
}

.pilier-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pilier-card__list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.pilier-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   MÉTHODOLOGIE
═══════════════════════════════════════════════════════ */
.methodologie {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

/* ── USP — Valeur ajoutée ────────────────────────────── */
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 4rem;
}

.usp__item {
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.usp__item:hover {
  border-color: rgba(26,92,255,0.3);
  transform: translateY(-4px);
}

.usp__icon {
  width: 42px;
  height: 42px;
  background: var(--gold-bg);
  border: 1px solid rgba(26,92,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.usp__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.usp__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Séparateur de section ────────────────────────────── */
.section-divider {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.section-divider .section-label {
  white-space: nowrap;
  flex-shrink: 0;
}

.section-divider__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
  margin: 0;
}

/* ── Types de Programme ──────────────────────────────── */
.training-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 1.25rem;
  margin-top: 3rem;
}

/* Row 1 : Bodybuilding | Athletic Contrast */
.ttcard:nth-child(1) { grid-column: 1; grid-row: 1; }
.ttcard:nth-child(2) { grid-column: 2; grid-row: 1; }
/* Row 2 : Olympics Blueprint (pleine largeur) */
.ttcard:nth-child(3) { grid-column: 1 / -1; grid-row: 2; }
/* Row 3 : HYROX — géré par .ttcard--hyrox */

.ttcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Barre dorée en haut */
.ttcard::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.ttcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(26,92,255,0.22), 0 0 0 1px rgba(26,92,255,0.2);
  border-color: rgba(26,92,255,0.5);
}

.ttcard:hover::before {
  height: 4px;
  opacity: 1;
}

.ttcard--featured {
  background: linear-gradient(150deg, #EEF3FF 0%, #E6F0FF 100%);
  border-color: rgba(26,92,255,0.25);
}

.ttcard--featured::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  height: 4px;
  opacity: 1;
}

/* Corps de la carte */
.ttcard__body {
  padding: 1.75rem 1.75rem 2rem;
}

/* Icône */
.ttcard__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-bg);
  border: 1px solid rgba(26,92,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ttcard:hover .ttcard__icon {
  background: rgba(26,92,255,0.14);
  border-color: rgba(26,92,255,0.4);
}

.ttcard--featured .ttcard__icon {
  background: rgba(26,92,255,0.12);
  border-color: rgba(26,92,255,0.35);
}

.ttcard__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.ttcard--featured .ttcard__name {
  color: var(--gold-light);
}

/* Description */
.ttcard__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Idéal pour */
.ttcard__ideal {
  font-size: 0.82rem;
  color: var(--text-light);
  background: rgba(26,92,255,0.07);
  border-left: 2px solid var(--gold);
  padding: 0.55rem 0.85rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.ttcard__ideal strong {
  color: var(--gold);
  font-weight: 600;
}

.ttcard--featured .ttcard__ideal {
  background: rgba(26,92,255,0.12);
  border-left-color: var(--gold-light);
}

/* Tags en pilules */
.ttcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ttcard__tag {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.26rem 0.65rem;
  border: 1px solid rgba(26,92,255,0.18);
  border-radius: 100px;
  color: var(--text-dim);
  background: transparent;
  transition: all 0.25s ease;
}

.ttcard:hover .ttcard__tag {
  border-color: rgba(26,92,255,0.4);
  color: var(--gold);
}

.ttcard--featured .ttcard__tag {
  border-color: rgba(26,92,255,0.3);
  color: var(--gold);
}

/* ── Style unifié pour toutes les cartes programmes ── */
.ttcard {
  background: linear-gradient(150deg, #EEF3FF 0%, #E6F0FF 100%);
  border-color: rgba(26,92,255,0.18);
  color: var(--gold);
}

.ttcard::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  height: 3px;
  opacity: 1;
}

.ttcard .ttcard__icon {
  color: var(--gold);
  background: rgba(26,92,255,0.10);
  border-color: rgba(26,92,255,0.30);
}

.ttcard .ttcard__name {
  color: var(--gold-light);
}

.ttcard .ttcard__ideal strong {
  color: var(--gold);
}

.ttcard:hover .ttcard__tag {
  border-color: rgba(26,92,255,0.40);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   PROGRAMMES
═══════════════════════════════════════════════════════ */
.programmes {
  padding: 120px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.programmes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.programmes__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.programme-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  transition: border-color var(--transition);
}
.programme-card:hover {
  border-color: var(--border);
}
.programme-card--featured {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.programme-card--featured:hover {
  border-color: var(--gold-light);
}

.programme-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 2px;
}

.programme-card__header {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.programme-card__type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.programme-card__name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.programme-card__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.programme-card__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.programme-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.feat-check {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.feat-disabled {
  color: var(--text-dim) !important;
}
.feat-disabled span {
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════ */
.cta-band {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(26,92,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--text-white);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--bg-primary);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.detail-icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: var(--gold); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.footer__brand .nav__logo { margin-bottom: 16px; }

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer__col a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS 3D — js/animations.js
═══════════════════════════════════════════════════════ */

/* Performance hints */
.hero__logo-mark, .hero__badge, .hero__title,
.hero__subtitle, .hero__actions, .hero__mascot,
.ttcard, .programme-card, .service-item,
.stats__item, .usp__item, .section-header {
  will-change: opacity, transform;
}

/* Cards — 3D tilt context */
.ttcard,
.programme-card,
.usp__item {
  transform-style: preserve-3d;
  transform-origin: center center;
}

/* Glare overlay (injected by JS) */
.card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 2;
}

/* Box-shadow deepens during 3D tilt */
.ttcard {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.ttcard:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px var(--gold-dark);
}

.programme-card {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.programme-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.programme-card--featured:hover,
.programme-card--elite:hover {
  box-shadow: 0 24px 56px rgba(26,92,255,0.2), 0 0 0 1px var(--gold);
}

/* Service item — JS handles transform, CSS keeps transition */
.service-item {
  transition: background 0.25s ease, border-color 0.25s ease;
}

/* USP hover */
.usp__item {
  transition: background 0.25s ease, border-color 0.25s ease,
              box-shadow 0.3s ease;
}
.usp__item:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* Btn press + magnetic (JS handles translate) */
.btn {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.btn:active {
  filter: brightness(0.88);
}

/* Hero canvas sits behind everything */
.hero > canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure hero content stays above canvas */
.hero__bg,
.hero__content,
.hero__scroll-hint {
  position: relative;
  z-index: 1;
}

/* Smooth scroll parallax on mascot */
.hero__mascot-img {
  transition: none; /* JS handles this smoothly */
}

/* Hero background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Nav link active underline animation */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Stats numbers — gold pulse on counter end */
@keyframes goldPulse {
  0%   { text-shadow: 0 0 0 rgba(26,92,255,0); }
  50%  { text-shadow: 0 0 20px rgba(26,92,255,0.5), 0 0 40px rgba(0,197,184,0.2); }
  100% { text-shadow: 0 0 0 rgba(26,92,255,0); }
}
.stats__number.pulse-done {
  animation: goldPulse 0.8s ease forwards;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .piliers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .piliers__grid .pilier-card:nth-child(4),
  .piliers__grid .pilier-card:nth-child(5) {
    grid-column: span 1;
  }
  .piliers__grid .pilier-card:nth-child(4) { margin-left: calc(50%); }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .usp__grid { grid-template-columns: 1fr 1fr; }
  .section-divider { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--border);
  }
  .stats__divider { display: none; }
  .stats__item {
    background: var(--bg-secondary);
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(240,246,255,0.99);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(12px);
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__link { padding: 14px 16px; font-size: 0.85rem; }
  .nav__burger { display: flex; }

  /* Pillars stacked */
  .piliers__grid {
    grid-template-columns: 1fr;
  }
  .piliers__grid .pilier-card:nth-child(4) { margin-left: 0; }

  /* Programmes */
  .programmes__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__links {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
  .hero__scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════
   HERO — LOGO MARK
═══════════════════════════════════════════════════════ */
.hero__logo-mark {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
  cursor: none;
}

/* ── Hero mascot background — grand cercle visible sans blend mode ── */
.hero__mascot {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  border: 1px solid rgba(26,92,255,0.2);
  box-shadow: 0 0 60px rgba(26,92,255,0.10), inset 0 0 30px rgba(26,92,255,0.04);
}

.hero__mascot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* ═══════════════════════════════════════════════════════
   PROGRAMME CARD — PRICE
═══════════════════════════════════════════════════════ */
.programme-card__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.price__currency {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-right: 2px;
}
.price__amount {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.price__suffix {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1;
}
.price__suffix small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.programme-card--featured .price__amount { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   PACK ELITE CARD
═══════════════════════════════════════════════════════ */
.programme-card--elite {
  border-color: rgba(0,197,184,0.35);
  background: linear-gradient(160deg, rgba(0,197,184,0.06) 0%, var(--bg-card) 60%);
}
.programme-card--elite:hover { border-color: var(--cyan); }
.programme-card--elite .price__amount { color: var(--cyan-dark); }

.programme-card__badge--elite {
  background: var(--cyan);
  color: #ffffff;
}

.btn--elite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--cyan);
  background: transparent;
  color: var(--cyan-dark);
  transition: all var(--transition);
}
.btn--elite:hover {
  background: var(--cyan);
  color: #ffffff;
}

/* Guides inclus — dans les cartes programme */
.programme-card__guides {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.guide-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.guide-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(26,92,255,0.3);
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   SERVICES À LA CARTE
═══════════════════════════════════════════════════════ */
.services { padding: var(--section-pad) 0; background: var(--bg-section); }

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.service-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.service-item--soon { opacity: 0.6; }

/* Séance Individuelle — mise en avant */
.service-item--featured {
  background: linear-gradient(135deg, rgba(26,92,255,0.06) 0%, rgba(0,197,184,0.04) 100%);
  border-left: 3px solid var(--gold);
  border-top: 1px solid rgba(26,92,255,0.2);
}
.service-item--featured .service-item__title {
  color: var(--gold-light);
  font-size: 1.25rem;
}
.service-item--featured .service-item__status {
  background: rgba(26,92,255,0.15);
  color: var(--gold);
  border: 1px solid rgba(26,92,255,0.3);
  font-weight: 700;
}

/* Last Minute Programme card */
.lastminute-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(26,92,255,0.07) 0%, rgba(0,197,184,0.05) 100%);
  border: 1px solid rgba(26,92,255,0.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.lastminute-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--cyan), var(--gold-light));
}
.lastminute-card__name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--text-white);
  margin: 0.5rem 0 1rem;
}
.lastminute-card__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
}
.lastminute-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.programme-card__badge--lastminute {
  background: rgba(0,197,184,0.15);
  color: var(--cyan);
  border: 1px solid rgba(0,197,184,0.35);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .lastminute-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lastminute-card__right { align-items: flex-start; text-align: left; }
}

.service-item__left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
}

.service-item__status {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
  white-space: nowrap;
}
.service-item__status--dispo {
  background: rgba(26,92,255,0.15);
  border: 1px solid rgba(26,92,255,0.4);
  color: var(--gold);
}
.service-item__status--soon {
  background: rgba(26,92,255,0.05);
  border: 1px solid rgba(26,92,255,0.18);
  color: var(--text-dim);
}

.service-item__content { flex: 1; }
.service-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.service-item__sub {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 10px;
}
.service-item__desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 560px;
}

.service-item__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 140px;
}
.service-item__price {
  text-align: right;
}
.service-item__price .price__currency {
  font-size: 0.85rem;
  color: var(--text-dim);
  vertical-align: super;
  margin-right: 2px;
}
.service-item__price .price__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.service-item__price .price__suffix {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: 2px;
}
.service-item__price--soon {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .usp__grid { grid-template-columns: 1fr; }
  .training-types__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ttcard:nth-child(1),
  .ttcard:nth-child(2),
  .ttcard:nth-child(3),
  .ttcard:nth-child(4),
  .ttcard:nth-child(5) { grid-column: 1; grid-row: auto; }

  .service-item {
    flex-direction: column;
    gap: 20px;
  }
  .service-item__right {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .service-item__left { flex-direction: column; gap: 10px; }
}

/* ═══════════════════════════════════════════════════════
   SÉANCE DÉCOUVERTE — BANNER
═══════════════════════════════════════════════════════ */
.decouverte-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.decouverte-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 3px 0 0 3px;
}
.decouverte-banner::after {
  content: 'DÉCOUVERTE';
  position: absolute;
  right: -32px; top: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(26,92,255,0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.decouverte-banner__left { flex: 1; }
.decouverte-banner__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin: 6px 0 14px;
}
.decouverte-banner__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 520px;
}
.decouverte-banner__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.decouverte-banner__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.decouverte-banner__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.decouverte-banner__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.decouverte-banner__price .price__amount {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
}
.decouverte-banner__price .price__currency {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}
.decouverte-banner__price .price__suffix {
  font-size: 1rem;
  color: var(--text-muted);
}
.decouverte-banner__price .price__suffix small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 900px) {
  .programmes__grid--3 { grid-template-columns: 1fr; }
  .decouverte-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
  }
  .decouverte-banner__features { grid-template-columns: 1fr; }
  .decouverte-banner__right { align-items: flex-start; width: 100%; }
}
@media (max-width: 768px) {
  .programmes__grid--3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   QUIZ SECTION
═══════════════════════════════════════════════════════ */
.quiz {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.quiz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,92,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.quiz__wrapper {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

/* Progress */
.quiz__progress-bar-container {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.quiz__progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz__step-indicator {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

/* Steps */
.quiz__step { display: none; }
.quiz__step.active { display: block; }

.quiz__q {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 32px;
}

/* Options */
.quiz__opts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.quiz__opts--3 { grid-template-columns: repeat(3, 1fr); }
.quiz__opts--2 { grid-template-columns: repeat(2, 1fr); }

.quiz__opt { cursor: pointer; display: block; }
.quiz__opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.quiz__opt-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  height: 100%;
}
.quiz__opt-inner strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}
.quiz__opt-inner small {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.quiz__opt:hover .quiz__opt-inner {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.quiz__opt input:checked + .quiz__opt-inner {
  border-color: var(--gold);
  background: var(--gold-bg-hover);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.quiz__opt input:checked + .quiz__opt-inner strong { color: var(--gold); }

/* Navigation */
.quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.quiz__nav .btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Result */
.quiz__result {
  text-align: center;
  padding: 20px 0;
}
.quiz__result-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.quiz__result-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 32px;
}
.quiz__result-prog {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  margin-bottom: 16px;
}
.quiz__result-prog--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(26,92,255,0.07) 0%, var(--bg-card) 100%);
}
.quiz__result-badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.quiz__result-prog h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 10px;
}
.quiz__result-prog p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.quiz__result-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.quiz__result-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.quiz__result-alt {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: center;
}
.quiz__result-alt a { color: var(--gold); text-decoration: underline; }
.quiz__result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Training Style Card */
.quiz__training-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  margin-bottom: 20px;
  text-align: left;
}
.quiz__training-card__header {
  margin-bottom: 14px;
}
.quiz__training-label {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quiz__training-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
}
.quiz__training-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.quiz__training-method {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.quiz__training-method-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.quiz__training-method p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}
.quiz__training-method p strong {
  color: var(--gold);
}

/* Note contextuelle dans la training card */
.quiz__training-note {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.55;
  background: rgba(26,92,255,0.04);
  border-left: 3px solid var(--gold);
  color: var(--text-dim);
}
.quiz__training-note strong {
  color: var(--text-light);
}

/* Tags */
.quiz__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quiz__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px 10px;
}

/* Responsive quiz */
@media (max-width: 768px) {
  .quiz__opts,
  .quiz__opts--3,
  .quiz__opts--2 { grid-template-columns: 1fr; }
  .quiz__nav { flex-direction: column-reverse; gap: 12px; }
  .quiz__nav .btn { width: 100%; justify-content: center; }
  .quiz__result-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════
   DARK THEME — fond noir + bleu électrique + cyan
═══════════════════════════════════════════════════════ */
[data-theme="dark"] {
  --bg-primary:    #080B14;
  --bg-secondary:  #0D1220;
  --bg-card:       #111827;
  --bg-card-hover: #141D2E;
  --border:        #1E2A3E;
  --border-light:  #162035;

  --gold:          #1A5CFF;
  --gold-light:    #4D82FF;
  --gold-dark:     #0A3BB5;
  --gold-bg:       rgba(26,92,255,0.10);
  --gold-bg-hover: rgba(26,92,255,0.18);

  --cyan:          #00C5B8;
  --cyan-light:    #3DD6CE;
  --cyan-dark:     #009A91;

  --text-white:    #F0F5FF;
  --text-light:    #C8D8F0;
  --text-muted:    #7A90A8;
  --text-dim:      #4F6380;
}

/* Nav dark */
[data-theme="dark"] .nav {
  background: rgba(8,11,20,0.94) !important;
  border-bottom-color: rgba(26,92,255,0.15) !important;
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(5,8,15,0.99) !important;
  box-shadow: 0 1px 0 rgba(26,92,255,0.08), 0 8px 32px rgba(0,0,0,0.6) !important;
}
[data-theme="dark"] .nav__links {
  background: rgba(8,11,20,0.99) !important;
}

/* Hero overlay dark */
[data-theme="dark"] .hero__overlay {
  background:
    radial-gradient(ellipse 55% 55% at 28% 48%, rgba(26,92,255,0.20) 0%, transparent 65%),
    radial-gradient(ellipse at 70% 40%, rgba(0,197,184,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,92,255,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, rgba(8,11,20,0.80) 50%, var(--bg-primary) 100%) !important;
}
[data-theme="dark"] .hero__grid-pattern {
  background-image:
    linear-gradient(rgba(26,92,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,255,0.06) 1px, transparent 1px) !important;
}

/* Cards dark glass */
[data-theme="dark"] .ttcard {
  background: rgba(15,20,38,0.80) !important;
  border-color: rgba(26,92,255,0.14) !important;
}
[data-theme="dark"] .usp__item {
  background: rgba(12,18,32,0.85) !important;
  border-color: rgba(26,92,255,0.12) !important;
}
[data-theme="dark"] .programme-card--featured {
  background: rgba(10,18,40,0.85) !important;
  box-shadow: 0 0 0 1px rgba(26,92,255,0.3), 0 0 60px rgba(26,92,255,0.12), 0 24px 64px rgba(0,0,0,0.6) !important;
}
[data-theme="dark"] .programme-card--elite {
  background: rgba(0,30,28,0.70) !important;
}
[data-theme="dark"] .service-item {
  background: rgba(10,14,26,0.75) !important;
}
[data-theme="dark"] .service-item:hover {
  background: rgba(15,22,40,0.90) !important;
}

/* ttcard featured dark */
[data-theme="dark"] .ttcard--featured {
  background: linear-gradient(150deg, #0D1838 0%, #0A1230 100%) !important;
}

/* Stats & sections dark */
[data-theme="dark"] .stats__item {
  background: var(--bg-secondary) !important;
}

/* Contact form dark */
[data-theme="dark"] .contact__form {
  background: var(--bg-secondary);
  border-color: var(--border);
}
[data-theme="dark"] .form-input {
  background: var(--bg-card);
  color: var(--text-white);
}

/* Mascot dark */
[data-theme="dark"] .hero__mascot {
  box-shadow: 0 0 80px rgba(26,92,255,0.15), inset 0 0 40px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════════════════
   CART NAV BUTTON
═══════════════════════════════════════════════════════ */
.cart-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid rgba(26,92,255,0.2);
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 4px;
}
.cart-nav-btn:hover {
  background: var(--gold-bg-hover);
  border-color: var(--gold);
  transform: scale(1.08);
}
.cart-nav-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: badgePop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes badgePop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   CART PANEL
═══════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
.cart-panel.open {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
.cart-panel__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-panel__close:hover {
  background: rgba(26,92,255,0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-dim);
}
.cart-empty svg { margin: 0 auto 16px; display: block; }
.cart-empty p { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.cart-empty small { font-size: 0.78rem; color: var(--text-dim); }

/* ── Cart guide (progression indicator) ── */
.cart-guide {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 18px;
}
.cart-guide__step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 5px 6px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.35s ease;
}
.cart-guide__step--done {
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.07);
}
.cart-guide__icon {
  font-size: 0.65rem;
  line-height: 1;
}
.cart-guide__sep {
  color: rgba(255,255,255,0.12);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Cart groups ── */
.cart-group {
  margin-bottom: 18px;
}
.cart-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-group__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.cart-group__count {
  font-size: 0.6rem;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 600;
}

/* ── Cart items ── */
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 0;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: background 0.2s ease;
}
.cart-item:last-child { margin-bottom: 0; }

.cart-item__accent {
  width: 3px;
  border-radius: 4px;
  align-self: stretch;
  flex-shrink: 0;
  min-height: 36px;
  background: rgba(255,255,255,0.1);
}
.cart-item--plan .cart-item__accent       { background: var(--gold); }
.cart-item--programme .cart-item__accent  { background: #00c5b8; }
.cart-item--service .cart-item__accent    { background: #3791ff; }

.cart-item--plan      { background: rgba(201,168,76,0.05); }
.cart-item--programme { background: rgba(0,197,184,0.05); }
.cart-item--service   { background: rgba(55,145,255,0.04); }

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}
.cart-item__qty {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 0.7rem;
  margin-left: 3px;
}
.cart-item__remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,80,80,0.07);
  border: 1px solid rgba(255,80,80,0.18);
  color: rgba(255,80,80,0.55);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.cart-item__remove:hover {
  background: rgba(255,80,80,0.15);
  color: #ff5050;
  border-color: rgba(255,80,80,0.4);
  transform: scale(1.1);
}

/* ── Cart empty state steps ── */
.cart-steps {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.cart-step {
  flex: 1;
  text-align: center;
}
.cart-step-arrow {
  color: rgba(255,255,255,0.12);
  font-size: 1rem;
  flex-shrink: 0;
}
.cart-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.25);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
}
.cart-step__text { display: flex; flex-direction: column; gap: 2px; }
.cart-step__text strong { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.cart-step__text span   { font-size: 0.58rem; color: rgba(255,255,255,0.18); }

/* ── Footer ── */
.cart-panel__footer {
  padding: 18px 20px 26px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Cart breakdown (monthly + one-time) */
.cart-breakdown {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.02);
}
.cart-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 4px 0;
}
.cart-breakdown__row + .cart-breakdown__row {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 8px;
  margin-top: 4px;
}
.cart-breakdown__row span:last-child {
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

/* Cart total main row */
.cart-total {
  margin-bottom: 0;
}
.cart-total__main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.cart-total__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-total__amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.cart-total__amount small {
  font-size: 0.9rem;
  opacity: 0.55;
  font-family: var(--font-body);
  letter-spacing: 0;
  margin-left: 1px;
}
.cart-total__note {
  font-size: 0.62rem;
  color: var(--text-dim);
  text-align: right;
  margin-top: 8px;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Add to cart button variants */
.btn--cart {
  font-size: 0.72rem !important;
  padding: 8px 14px !important;
  letter-spacing: 0.08em;
  border-color: rgba(26,92,255,0.3) !important;
  color: var(--gold) !important;
  white-space: nowrap;
}
.btn--cart:hover {
  background: var(--gold-bg) !important;
  border-color: var(--gold) !important;
}
.btn--cart.in-cart {
  background: var(--gold-bg) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.btn--cart-sm {
  font-size: 0.7rem !important;
  padding: 7px 12px !important;
}

/* Programme card ctas */
.programme-card__ctas {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.programme-card__ctas .btn--cart {
  order: -1;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════
   TTCARD ACTIONS
═══════════════════════════════════════════════════════ */
.ttcard__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,92,255,0.12);
  flex-wrap: wrap;
}

.btn-seance-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(26,92,255,0.25);
  border-radius: var(--radius);
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-seance-type:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
}

.btn-add-cart {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-add-cart.in-cart {
  background: rgba(26,92,255,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   HYROX CARD
═══════════════════════════════════════════════════════ */
.ttcard--hyrox {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  background: linear-gradient(135deg, rgba(0,197,184,0.08) 0%, rgba(26,92,255,0.06) 50%, #EEF3FF 100%) !important;
  border-color: rgba(0,197,184,0.25) !important;
  border-left: 3px solid var(--cyan) !important;
}
.ttcard--hyrox::before {
  background: linear-gradient(90deg, var(--cyan-dark), var(--cyan), var(--gold-light)) !important;
  height: 3px !important;
  opacity: 1 !important;
}
.ttcard--hyrox .ttcard__body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto auto;
  gap: 0 1.5rem;
  align-items: start;
}
.ttcard--hyrox .ttcard__icon {
  grid-column: 1;
  grid-row: 1;
  background: rgba(0,197,184,0.1) !important;
  border-color: rgba(0,197,184,0.3) !important;
}
.ttcard--hyrox .ttcard__hyrox-badge {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  background: rgba(0,197,184,0.12);
  border: 1px solid rgba(0,197,184,0.3);
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
  align-self: center;
}
.ttcard--hyrox .ttcard__name {
  grid-column: 2;
  grid-row: 1;
  color: var(--cyan-dark) !important;
}
.ttcard--hyrox .ttcard__desc {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
}
.ttcard--hyrox .ttcard__ideal {
  grid-column: 2;
  grid-row: 3;
}
.ttcard--hyrox .ttcard__tags {
  grid-column: 2;
  grid-row: 4;
}
.ttcard--hyrox .ttcard__actions {
  grid-column: 3;
  grid-row: 1 / 5;
  flex-direction: column;
  border-top: none;
  border-left: 1px solid rgba(26,92,255,0.12);
  padding-top: 0;
  padding-left: 1.5rem;
  margin-top: 0;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 640px) {
  .ttcard--hyrox .ttcard__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ttcard--hyrox .ttcard__icon,
  .ttcard--hyrox .ttcard__hyrox-badge,
  .ttcard--hyrox .ttcard__name,
  .ttcard--hyrox .ttcard__desc,
  .ttcard--hyrox .ttcard__ideal,
  .ttcard--hyrox .ttcard__tags,
  .ttcard--hyrox .ttcard__actions {
    grid-column: 1;
    grid-row: auto;
  }
  .ttcard--hyrox .ttcard__actions {
    border-left: none;
    border-top: 1px solid rgba(26,92,255,0.12);
    padding-left: 0;
    padding-top: 1rem;
    flex-direction: row;
  }
}

/* ═══════════════════════════════════════════════════════
   SÉANCE TYPE MODALS
═══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(6px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.95);
  z-index: 301;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px 40px;
  max-width: 520px;
  width: calc(100% - 48px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.modal__close:hover { color: var(--gold); border-color: var(--gold); }

.modal__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.modal__body { }
.modal__block-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 10px;
}
.modal__block-label:first-child { margin-top: 0; }
.modal__body ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.modal__body li {
  font-size: 0.86rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.modal__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   LAST MINUTE — OPTIONS PILLS
═══════════════════════════════════════════════════════ */
.lastminute-options {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.lastminute-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(26,92,255,0.06);
  border: 1px solid rgba(26,92,255,0.18);
  border-radius: 20px;
  padding: 4px 12px 4px 8px;
}
.lastminute-option--travel {
  background: rgba(0,197,184,0.08);
  border-color: rgba(0,197,184,0.25);
  color: var(--cyan-dark);
}
.lastminute-option__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.lastminute-option__dot--travel { background: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   PLAN ELITE — Visual Enhancement
═══════════════════════════════════════════════════════ */
.programme-card--elite {
  border-color: rgba(0,197,184,0.4) !important;
  background: linear-gradient(160deg, rgba(0,197,184,0.09) 0%, rgba(26,92,255,0.04) 50%, var(--bg-card) 100%) !important;
  box-shadow: 0 0 0 1px rgba(0,197,184,0.15), 0 8px 32px rgba(0,197,184,0.08);
}
.programme-card--elite:hover {
  box-shadow: 0 24px 56px rgba(0,197,184,0.18), 0 0 0 1px var(--cyan) !important;
}
.programme-card--elite .feat-check--star {
  color: var(--cyan);
  font-size: 0.85rem;
}
.programme-card--elite li:has(.feat-check--star) {
  color: var(--text-white);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   CONTACT — CART SUMMARY
═══════════════════════════════════════════════════════ */
.contact__cart-summary {
  background: var(--gold-bg);
  border: 1px solid rgba(26,92,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 20px 0 24px;
}
.contact__cart-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.contact__cart-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-light);
}
.contact__cart-list li span { color: var(--gold); font-weight: 600; }

/* Form cart preview */
.form-cart-preview {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-cart-preview-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
}
.form-cart-preview-item span { color: var(--gold); font-weight: 600; }

.form-required { color: var(--gold); font-size: 0.8em; }
.form-hint { color: var(--text-dim); font-size: 0.85em; font-weight: 400; font-style: italic; }

/* ═══════════════════════════════════════════════════════
   FILE UPLOAD AREA
═══════════════════════════════════════════════════════ */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}
.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.file-upload-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.5;
}
.file-upload-link {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
}
.file-upload-placeholder small { font-size: 0.72rem; color: var(--text-dim); }

.file-upload-preview {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.file-upload-preview img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.file-upload-info {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.file-remove-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,80,80,0.8);
  background: rgba(255,80,80,0.07);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: var(--radius);
  padding: 4px 10px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.file-remove-btn:hover {
  background: rgba(255,80,80,0.14);
  color: #ff5050;
}

/* ── Theme toggle button ────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid rgba(26,92,255,0.2);
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              transform 0.3s ease;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--gold-bg-hover);
  border-color: var(--gold);
  transform: rotate(20deg);
}
.theme-toggle__icon { display: flex; align-items: center; justify-content: center; }
/* Light theme: show moon icon */
.theme-toggle__icon--light  { display: none; }
.theme-toggle__icon--dark   { display: flex; }
/* Dark theme: show sun icon */
[data-theme="dark"] .theme-toggle__icon--light { display: flex; }
[data-theme="dark"] .theme-toggle__icon--dark  { display: none; }
