/* ==========================================================
   WYLD SIDE — CSS propre (doublons supprimés)
   Objectif : lisible, maintenable, et aligné DA logo.
   ----------------------------------------------------------
   Palette DA (logo) :
   Vert   #54f98d
   Orange #ffa364
   Rose   #ff97e9
   Violet #a685ff
   Jaune  #dcff4a
   ========================================================== */


/* =========================
   1) TYPOGRAPHIE
   ========================= */
@font-face {
  font-family: "WyldFutura";
  src: url("assets/FuturaStd-CondensedBoldObl.otf") format("opentype");
  font-weight: 700;
  font-style: oblique;
  font-display: swap;
}


/* =========================
   2) VARIABLES (DA + UI)
   ========================= */
:root {
  /* Fond + textes (autorisés hors DA) */
  --bg: #000000;
  --ink: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.74);
  --muted2: rgba(255,255,255,.62);

  /* Palette DA (logo) */
  --green: #54f98d;
  --orange: #ffa364;
  --pink: #ff97e9;
  --purple: #a685ff;
  --lime: #dcff4a;

  /* UI */
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.45);

  --r: 18px;
  --r2: 26px;

  --container: 1080px;
}


/* =========================
   3) RESET / BASE
   ========================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;

  /* Variante plus claire (validée) */
  background:
    radial-gradient(1400px 900px at 20% 15%, rgba(220,255,74,0.18), transparent 60%),
    radial-gradient(1200px 800px at 80% 85%, rgba(84,249,141,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    #151515;

  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Accessibilité : lien "skip" */
.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  z-index: 999;
}
.skip:focus { left: 10px; }

/* Layout container */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}


/* =========================
   4) HEADER / NAVIGATION
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 38px; width: auto; }

/* Menu desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-family: "WyldFutura", system-ui, sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover {
  text-decoration: none;
  background: rgba(255,255,255,.06);
}

.nav a.cta {
  background: var(--lime);
  color: #000;
  box-shadow: var(--shadow);
}

.nav a.cta:hover { background: #fff; }

/* Bouton burger (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255,255,255,.88);
  border-radius: 2px;
}


/* =========================
   5) HERO
   ========================= */
.hero {
  position: relative;
  padding: 44px 0 36px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -120px -220px -120px;
  background:
    radial-gradient(700px 500px at 20% 20%, rgba(220,255,74,.20), transparent 60%),
    radial-gradient(700px 500px at 80% 35%, rgba(166,133,255,.22), transparent 60%),
    radial-gradient(620px 520px at 35% 80%, rgba(255,151,233,.20), transparent 60%),
    radial-gradient(620px 520px at 85% 85%, rgba(84,249,141,.18), transparent 60%);
  filter: saturate(120%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.kicker {
  margin: 0 0 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

h1 {
  margin: 0 0 12px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.02;
}

/* Surbrillance titre */
.hl {
  display: inline-block;
  background: linear-gradient(90deg, rgba(220,255,74,.95), rgba(84,249,141,.95));
  color: #000;
  padding: 4px 10px 6px;
  border-radius: 14px;
}

/* Pills services */
.pill-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  color: #000;
  box-shadow: var(--shadow);
}

.pill-lime  { background: var(--lime); }
.pill-green { background: var(--green); }
.pill-pink  { background: var(--pink); }

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

/* Boutons (par défaut : côte à côte, wrap si besoin) */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Boutons UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 16px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 18px;
  border: 1px solid var(--stroke);
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  border-color: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: #fff; text-decoration: none; }

.btn-ghost {
  background: var(--lime);
  color: #000;
  box-shadow: var(--shadow);
}

.btn-ghost:hover { background: #fff; text-decoration: none; }

.btn-dark {
  background: #0d0d0d;
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.btn-dark:hover { background: #151515; text-decoration: none; }

/* Mini-cards (info / preuves / promesses) */
.hero-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
}

.mini-title {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 16px;
}

.mini-text { color: var(--muted2); font-size: 13px; }

/* HERO — bloc visuel de droite (sans personnes) */
.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  overflow: hidden;
  background:
    radial-gradient(220px 180px at 25% 30%, rgba(220,255,74,.8), transparent 70%),
    radial-gradient(260px 220px at 70% 25%, rgba(255,151,233,.7), transparent 70%),
    radial-gradient(320px 260px at 55% 75%, rgba(84,249,141,.65), transparent 70%),
    radial-gradient(420px 320px at 78% 85%, rgba(166,133,255,.6), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0,0,0,.0) 0px,
      rgba(0,0,0,.0) 14px,
      rgba(0,0,0,.10) 14px,
      rgba(0,0,0,.10) 22px
    );
  mix-blend-mode: overlay;
  opacity: .55;
  pointer-events: none;
}

/* Stickers / tags (DA fun) */
.sticker {
  position: absolute;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #000;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
}

.s1 { top: 18px; right: 18px; background: var(--orange); }
.s2 { top: 86px; left: 18px; background: var(--lime); transform: rotate(7deg); }
.s3 { bottom: 18px; left: 18px; background: var(--purple); transform: rotate(-4deg); }

/* Carte style "plan" (si utilisée) */
.hero-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 74px;
  padding: 16px;
  border-radius: var(--r2);
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.16);
}

.hc-title {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 18px;
}

.hc-line {
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}

.hc-line span {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--green));
}

.hc-line:nth-child(3) span { width: 78%; background: linear-gradient(90deg, var(--pink), var(--orange)); }
.hc-line:nth-child(4) span { width: 42%; background: linear-gradient(90deg, var(--purple), var(--pink)); }

.hc-badges { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.badge {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.2);
  color: #000;
}

.b1 { background: var(--lime); }
.b2 { background: var(--green); }
.b3 { background: var(--pink); }

/* Si tu as un hero avec logo à droite */
.hero-logo-wrap{
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
}

.hero-logo{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.6));
  transform: scale(1.65);
}

/* HERO — Disposition "alignée ligne par ligne" (Bouton ↔ mini-card)
   ⚠️ Utilise cette classe uniquement si ton HTML contient <div class="hero-cta-row"> */
.hero-cta-row{
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 14px 18px;
  align-items: center;
  margin-top: 16px;
}

@media (max-width: 780px){
  .hero-cta-row{
    grid-template-columns: 1fr;
  }
}


/* =========================
   6) SECTIONS (structure)
   ========================= */
.section { padding: 54px 0; }
.section-head { margin-bottom: 18px; }

h2 {
  margin: 0;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 36px;
}

.muted { margin: 8px 0 0; color: var(--muted2); }


/* =========================
   LOCATION DE SALLE
   (2 cartes côte à côte)
   ========================= */
.cards-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Responsive */
@media (max-width: 980px){
  .cards-2{
    grid-template-columns: 1fr;
  }
}



/* =========================
   7) CARTES (Cours, etc.)
   ========================= */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(0,0,0,.22);
  color: #000;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 26px;
}

.card p { 
	margin: 0 0 12px;
	line-height: 1.05; 
}

.card-green  { background: rgba(84,249,141,.95); }
.card-orange { background: rgba(255,163,100,.96); }
.card-purple { background: rgba(166,133,255,.96); }
.card-pink   { background: rgba(255,151,233,.95); }
.card-lime   { background: rgba(220,255,74,.95); }

.bullets { margin: 0 0 12px 18px; padding: 0; }

.card-link {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.card-link:hover { text-decoration: underline; }


/* =========================
   8) PRICING (ancienne grille)
   (peut rester si tu l'utilises ailleurs)
   ========================= */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card {
  padding: 18px;
  border-radius: var(--r2);
  color: #000;
  border: 1px solid rgba(0,0,0,.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.pc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }

.price-card h3 {
  margin: 0;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 22px;
}

.price {
  font-family: "WyldFutura", system-ui, sans-serif;
  font-size: 32px;
  letter-spacing: .02em;
}

.price span {
  font-size: 14px;
  font-family: system-ui, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.pc-lime  { background: linear-gradient(135deg, rgba(220,255,74,.96), rgba(255,163,100,.84)); }
.pc-pink  { background: linear-gradient(135deg, rgba(255,151,233,.96), rgba(166,133,255,.86)); }
.pc-green { background: linear-gradient(135deg, rgba(84,249,141,.96), rgba(220,255,74,.86)); }


/* =========================
   9) TARIFS — TABS (Abonnements / Cartes)
   ========================= */
.pricing-tabs{
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-tab{
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink);
  font-family: "WyldFutura", system-ui, sans-serif; /* (corrigé) */
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  transition: all .25s ease;
}

.pricing-tab:hover{
  background: rgba(255,255,255,0.10);
}

/* Onglet actif : utiliser --lime (il n'y a pas de --yellow dans ton :root) */
.pricing-tab.is-active{
  background: var(--lime);
  color: #000;
  border-color: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}

/* Panels */
.pricing-panel{
  display: none;
  animation: fadeUp .35s ease;
}

.pricing-panel.is-active{
  display: block;
}

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

/* Grille des offres tarifs */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-grid .price-card{
  padding: 22px;
  border-radius: 22px;
  text-align: center;
  color: #000;
  box-shadow: var(--shadow);
}

.pricing-grid .price-card h3{
  margin: 0 0 10px;
  font-family: "WyldFutura", system-ui, sans-serif; /* (corrigé) */
  text-transform: uppercase;
}

.pricing-grid .price{
  font-size: 42px;
  font-family: "WyldFutura", system-ui, sans-serif; /* (corrigé) */
  margin-bottom: 6px;
}

.pricing-grid .price-sub{
  font-size: 14px;
  opacity: .85;
}

/* Carte mise en avant */
.pricing-grid .price-card.featured{
  transform: scale(1.05);
  outline: 2px solid rgba(0,0,0,0.25);
}


/* =========================
   10) ABOUT
   ========================= */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.quote {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
}

.quote-mark {
  font-family: "WyldFutura", system-ui, sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--lime);
}

.quote p { margin: 8px 0 8px; color: var(--muted); }
.quote-author { color: var(--muted2); }

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.fact {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 8px;
}

.d1 { background: var(--lime); }
.d2 { background: var(--green); }
.d3 { background: var(--pink); }

.about-visual {
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  overflow: hidden;
  min-height: 320px;
  background:
    radial-gradient(260px 220px at 20% 20%, rgba(255,163,100,.7), transparent 70%),
    radial-gradient(320px 260px at 80% 30%, rgba(220,255,74,.6), transparent 70%),
    radial-gradient(280px 240px at 35% 80%, rgba(255,151,233,.6), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.poster {
  position: absolute;
  inset: 16px;
  border-radius: var(--r2);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  padding: 18px;
}

.poster-top, .poster-mid, .poster-bot {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.poster-top { font-size: 34px; color: var(--lime); }
.poster-mid { font-size: 64px; color: #fff; line-height: .9; }
.poster-bot { font-size: 18px; color: var(--muted2); }

.bubble {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--pink);
  color: #000;
  padding: 10px 12px;
  border-radius: 999px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: var(--shadow);
}

/* =========================
   10) ABOUT
   ========================= */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.quote {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
}

.quote-mark {
  font-family: "WyldFutura", system-ui, sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--lime);
}

.quote p { margin: 8px 0 8px; color: var(--muted); }
.quote-author { color: var(--muted2); }

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.fact {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 8px;
}

.d1 { background: var(--lime); }
.d2 { background: var(--green); }
.d3 { background: var(--pink); }

.about-visual {
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  overflow: hidden;
  min-height: 320px;
  background:
    radial-gradient(260px 220px at 20% 20%, rgba(255,163,100,.7), transparent 70%),
    radial-gradient(320px 260px at 80% 30%, rgba(220,255,74,.6), transparent 70%),
    radial-gradient(280px 240px at 35% 80%, rgba(255,151,233,.6), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.poster {
  position: absolute;
  inset: 16px;
  border-radius: var(--r2);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  padding: 18px;
}

.poster-top, .poster-mid, .poster-bot {
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.poster-top { font-size: 34px; color: var(--lime); }
.poster-mid { font-size: 64px; color: #fff; line-height: .9; }
.poster-bot { font-size: 18px; color: var(--muted2); }

.bubble {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--pink);
  color: #000;
  padding: 10px 12px;
  border-radius: 999px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: var(--shadow);
}

/* =========================
   A PROPOS — Coachs + Slider
   ========================= */

/* Coach tabs : on réutilise .fact mais on lui donne un vrai comportement d'onglet */
.coach-tabs{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* important : une seule "case" */
  margin-top: 18px;

  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden; /* pour les arrondis */
}

.coach-tabs .fact{
  all: unset; /* on neutralise le style "pill" */
  cursor: pointer;

  display: grid;
  place-items: center;
  padding: 16px 10px;

  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 18px;
  color: var(--muted);

  position: relative;
  transition: background .25s ease, color .25s ease;
}
.coach-tabs .fact:hover{
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.coach-tabs .fact.is-active{
  background: var(--lime);
  color: #000;
}
.coach-tabs .fact:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

/* Panels coachs */
.coach-panel{
  margin-top: 14px;
  animation: coachFade .28s ease;
}

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

/* Slider */
.about-slider{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(260px 220px at 20% 20%, rgba(220,255,74,.35), transparent 70%),
    radial-gradient(320px 260px at 80% 30%, rgba(255,151,233,.30), transparent 70%),
    rgba(0,0,0,.45);
}

/* IMPORTANT: on garde le cadrage "dans le cadre" */
.about-slides{
  position: absolute;
  inset: 0;
}

/* Images : jamais coupées (contain) */
.about-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ pas de coupe */
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .85s ease;
}

.about-slide.is-active{
  opacity: 1;
  transform: scale(1);
}

/* Dots */
.about-dots{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.about-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.18);
}

.about-dot.is-active{
  background: var(--lime);
  border-color: rgba(0,0,0,.18);
}

/* ✅ Légende coach sur la photo */
.about-caption{
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4; /* au-dessus des images/dots */

  padding: 10px 14px;
  border-radius: 999px;

  background: var(--lime);
  color: #000;

  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 14px;

  box-shadow: var(--shadow);
  pointer-events: none;
}

/* =================================================
   A PROPOS — Alignement parfait gauche / droite
   ================================================= */

@media (min-width: 981px){

  /* Parent : mêmes hauteurs */
  .split.about-coachs{
    display: flex;
    align-items: stretch;
    gap: 18px;
  }

  /* Colonne gauche */
  .about-left{
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  /* Zone contenu coach : prend TOUT l’espace */
  .coach-content{
    flex: 1 1 auto;
    display: flex;
  }

  .coach-panel{
    width: 100%;
  }

  /* Colonne droite (slider) */
  .about-slider{
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    min-height: 320px;
  }
}



/* =========================
   11) CONTACT
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

/* ✅ NOUVEAU : colonne gauche (coordonnées + photo) */
.contact-left{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ✅ NOUVEAU : bloc photo */
.contact-photo{
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
}

.contact-photo img{
  width: 100%;
  display: block;
  max-height: 220px;   /* ajuste si besoin */
  object-fit: cover;   /* mets "contain" si tu veux voir l’image entière */
}

/* (le reste inchangé) */
.contact-card--table{
  display: grid;
  gap: 12px;
}

.contact-dl{
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-row{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.contact-row dt{
  margin: 0;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-row dd{
  margin: 0;
  color: var(--ink);
}
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-instagram{
  width: 1.1em;        /* taille emoji */
  height: 1.1em;
  fill: currentColor; /* prend la couleur du texte */
  flex-shrink: 0;
}

@media (max-width: 520px){
  .contact-row{
    grid-template-columns: 1fr;
  }
}
.contact-row:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.contact-row a{
  text-decoration: underline;
  text-decoration-color: rgba(220,255,74,.6);
}


.form {
  padding: 18px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 10px;
}

label { display: grid; gap: 6px; }

label span {
  color: var(--muted2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.45);
  color: #fff;
  outline: none;
}

input:focus, textarea:focus {
  border-color: rgba(220,255,74,.7);
  box-shadow: 0 0 0 4px rgba(220,255,74,.12);
}

.fineprint { margin: 0; color: var(--muted2); font-size: 12px; }

/* ✅ Optionnel : sur mobile, garde une hauteur raisonnable */
@media (max-width: 980px){
  .contact-photo img{ max-height: 180px; }
}


/* =========================
   12) FOOTER
   ========================= */
.footer {
  padding: 30px 0 40px;
  border-top: 1px solid var(--stroke);
}

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

.footer-logo { height: 32px; width: auto; }
.footer-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

/* Le bloc © prend toute la largeur (ligne dédiée) */
.footer-meta > div{
  flex: 0 0 100%;
  color: var(--muted2);
}

/* Liens + bouton sur une même ligne, retour à la ligne si besoin */
.footer-meta a,
.footer-meta .linklike{
  white-space: nowrap;
}

/* Bonus : style du bouton "linklike" cohérent */
.footer-meta .linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}


/* =========================
   13) RESPONSIVE
   ========================= */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .cards-3, .pricing, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card.featured { transform: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }

  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 68px;
    background: rgba(0,0,0,.88);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
  }

  /* IMPORTANT : ton JS toggle la classe 'open' */
  .nav.open { display: flex; }

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

@media (max-width: 520px) {
  .hero-mini { grid-template-columns: 1fr; }
  .brand-logo { height: 32px; }
}
@media (max-width: 720px){
  .coach-tabs{
    grid-template-columns: 1fr 1fr;
  }

  .coach-tabs .fact{
    font-size: 16px;
    padding: 14px 8px;
  }

  /* Ajustement séparateurs mobile */
  .coach-tabs .fact:nth-child(2)::after{
    display: none;
  }
}
/* =========================
   LEGAL / PRIVACY / COOKIES UI
   ========================= */

.legal { max-width: 860px; }

.legal-card{
  padding: 18px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
}

.legal-card h3{
  margin: 18px 0 8px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 20px;
}

.legal-card h3:first-child{ margin-top: 0; }

.legal-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-card a{
  text-decoration: underline;
  text-decoration-color: rgba(220,255,74,.6);
}

/* Bouton “lien” */
.linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

/* =========================
   Cookie banner + settings
   ========================= */

.cookie-banner{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
}

.cookie-banner.is-open{ display: block; }

.cookie-inner{
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cookie-text p{
  margin: 6px 0 0;
  color: var(--muted);
}

.cookie-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-panel{
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

.cookie-panel-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
}

.cookie-opt{
  display: flex;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  margin-top: 8px;
}

.cookie-opt input{ margin-top: 3px; }

.cookie-save-row{
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

/* Bouton flottant cookies */
.cookie-fab{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9998;
  border-radius: 999px;
  padding: 10px 12px;
  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  color: #fff;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

@media (max-width: 720px){
  .cookie-actions{ justify-content: stretch; }
  .cookie-actions .btn{ width: 100%; }
}


/* =========================================================
   BACKGROUND GLOBAL — HERO VERSION LUMINEUSE
   ========================================================= */

html, body { min-height: 100%; }

body{
  background: none !important;
  position: relative;
}

/* Fond HERO clair, homogène sur toute la page */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    /* Halos plus larges et plus doux */
    radial-gradient(900px 650px at 18% 18%, rgba(220,255,74,.32), transparent 70%),
    radial-gradient(900px 650px at 82% 30%, rgba(166,133,255,.32), transparent 70%),
    radial-gradient(820px 720px at 30% 78%, rgba(255,151,233,.30), transparent 70%),
    radial-gradient(820px 720px at 88% 82%, rgba(84,249,141,.30), transparent 70%),

    /* Voile lumineux vertical */
    linear-gradient(
      180deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.06)
    ),

    /* Base plus claire */
    #242424;

  filter: saturate(115%);
  background-repeat: no-repeat;
}

/* Désactivation du halo local du HERO */
.hero::before{
  display: none !important;
}

/* =========================
   PLANNING — Layout + UI
   (Ajoute ce bloc à ton CSS)
   ========================= */

.planning-layout{
  display: grid;
  grid-template-columns: 1fr 2fr; /* ⬅️ 1/3 à gauche, 2/3 à droite */
  gap: 14px;
  align-items: stretch;
}

/* Menu vertical (gauche) */
.planning-days{
  display: grid;
  grid-auto-rows: 1fr;
  gap: 10px;

  padding: 12px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
}

/* Boutons jours */
.planning-day{
  all: unset;
  cursor: pointer;

  display: grid;
  place-items: center;

  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);

  font-family: "WyldFutura", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 16px;
  color: var(--muted);

  /* Texte de bas en haut */
  

  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.planning-day:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.planning-day.is-active{
  background: var(--lime);
  color: #000;
  border-color: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}

/* Bloc image (droite) */
.planning-view{
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  overflow: hidden;

  min-height: 320px;
  background:
    radial-gradient(260px 220px at 20% 20%, rgba(220,255,74,.25), transparent 70%),
    radial-gradient(320px 260px at 80% 30%, rgba(255,151,233,.22), transparent 70%),
    rgba(0,0,0,.45);
  box-shadow: var(--shadow);

  display: grid;
  place-items: center;
  padding: 14px;
}

/* Image : toujours dans le cadre */
.planning-image{
  width: 100%;
  height: 100%;
  max-height: 520px;     /* ajuste si tu veux plus/moins haut */
  object-fit: contain;   /* pas coupée */
  display: block;

  opacity: 0;
  transform: scale(1.01);
  transition: opacity .35s ease, transform .6s ease;
}

.planning-image.is-visible{
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 980px){
  .planning-layout{
    grid-template-columns: 1fr;
  }

  .planning-days{
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-template-columns: repeat(6, 1fr);
  }

  .planning-day{
    writing-mode: horizontal-tb;
    transform: none;
    padding: 14px 10px;
    border-radius: 16px;
  }
}


/* =========================
   PLANNING — Fix mobile
   ========================= */

/* Empêche tout débordement horizontal dû à la section */
#planning, .planning, .planning-wrap {
  max-width: 100%;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 720px){

  /* 1 colonne sur mobile */
  .planning-grid{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Le menu jours devient une barre horizontale scrollable (propre + lisible) */
  .planning-days{
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .planning-days::-webkit-scrollbar{ display:none; } /* Chrome/Safari */

  /* Les boutons ne se superposent plus */
  .planning-day{
    writing-mode: horizontal-tb !important; /* on désactive le vertical sur mobile */
    transform: none !important;
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 12px 14px !important;
    line-height: 1.1;
    border-radius: 999px;
  }

  /* Bloc image : prend toute la largeur */
  .planning-view{
    width: 100%;
    min-width: 0;
  }

  /* Image toujours contenue dans le cadre (pas de débordement) */
  .planning-view img{
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
}

