/* ============================================================
   ACTIVE LIFE COACHING — Design System
   Premium · cinématographique · sombre & chaud
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Couleurs — dérivées des photos réelles du studio */
  --ink:        #0B0B0C;   /* fond principal, noir d'encre */
  --ink-2:      #111012;   /* surfaces élevées */
  --ink-3:      #18171A;   /* cartes */
  --bone:       #F4EFE7;   /* crème, texte principal */
  --bone-dim:   #C8C1B6;   /* texte secondaire */
  --mist:       #8E877C;   /* texte atténué, chaud */
  --gold:       #3BD27A;   /* accent principal — lumières & liseré Matrix */
  --gold-soft:  #7FE3A6;
  --gold-deep:  #259D5C;
  --cognac:     #6E4A33;   /* cuir des fauteuils */
  --cognac-lt:  #9A6A48;
  --ember:      #B23A2E;   /* pop d'énergie, rare (tenue rouge) */
  --line:       rgba(244, 239, 231, 0.10);
  --line-2:     rgba(244, 239, 231, 0.16);
  --glass:      rgba(17, 16, 18, 0.55);

  /* Typo */
  --display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Échelle fluide */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.95rem);
  --step-0:  clamp(1rem, 0.95rem + 0.24vw, 1.18rem);
  --step-1:  clamp(1.25rem, 1.13rem + 0.55vw, 1.6rem);
  --step-2:  clamp(1.6rem, 1.38rem + 1.05vw, 2.4rem);
  --step-3:  clamp(2.1rem, 1.7rem + 1.95vw, 3.5rem);
  --step-4:  clamp(2.8rem, 2.1rem + 3.4vw, 5.5rem);
  --step-5:  clamp(3.4rem, 2.2rem + 5.8vw, 8rem);

  /* Espace & rythme */
  --pad: clamp(1.25rem, 4vw, 6rem);
  --section: clamp(5rem, 9vw, 11rem);
  --maxw: 1320px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Mouvement */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }

/* Grain cinématographique global */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.display {
  font-size: var(--step-5);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
h2.section-title { font-size: var(--step-4); font-weight: 600; }
h3 { font-size: var(--step-2); }
em, .italic { font-style: italic; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow.centered::after {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.lead { font-size: var(--step-1); line-height: 1.5; color: var(--bone-dim); font-weight: 350; }
.muted { color: var(--mist); }
.gold { color: var(--gold); }
.serif-accent { font-family: var(--display); font-style: italic; font-weight: 600; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.container-wide { max-width: 1600px; }
.container-narrow { max-width: 880px; }
section { position: relative; }
.section-pad { padding-block: var(--section); }
.section-pad-t { padding-top: var(--section); }
.section-pad-b { padding-bottom: var(--section); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1.2rem; }
.stack-lg > * + * { margin-top: 2rem; }

/* sections claires (rythme éditorial) */
.bg-bone { background: var(--bone); color: var(--ink); }
.bg-bone .eyebrow { color: var(--cognac); }
.bg-bone .eyebrow::before, .bg-bone .eyebrow.centered::after { background: var(--cognac); }
.bg-bone .muted { color: #6a635a; }
.bg-bone .lead { color: #423d36; }
.bg-bone .gold { color: var(--gold-deep); }
.bg-ink-2 { background: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: #1a1305;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05em 1.9em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--fg);
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 10px 30px -12px rgba(59,210,122,0.6);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.btn:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 18px 45px -12px rgba(59,210,122,0.75); }
.btn:hover::before { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-ghost {
  --fg: var(--bone);
  background: transparent;
  border: 1px solid var(--line-2);
  box-shadow: none;
  color: var(--fg);
}
.btn-ghost::before { background: rgba(244,239,231,0.06); }
.btn-ghost:hover { box-shadow: none; border-color: var(--gold); color: var(--gold); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-lg { padding: 1.25em 2.4em; font-size: var(--step-0); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--bone);
  position: relative;
  padding-bottom: 4px;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0.001);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow svg { width: 0.9em; transition: transform 0.4s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.4rem;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding-block: 0.85rem;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; z-index: 1002; }
.nav-logo img { height: 40px; width: auto; transition: height 0.4s var(--ease); }
/* survol : aucune animation (sur demande) */
.nav-logo span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.05;
}
.nav-logo span small { display:block; color: var(--gold); font-size: 0.62rem; letter-spacing: 0.3em; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 450;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
  padding: 0.4em 0;
  white-space: nowrap; /* un libellé de menu ne se coupe jamais sur 2 lignes */
  transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0.001);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--bone); }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1002;
}
.nav-burger span {
  width: 24px; height: 1.5px;
  background: var(--bone);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.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); }

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); pointer-events: all; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu nav a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0.18em 0;
  color: var(--bone);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-menu nav a span { color: var(--gold); font-size: 0.9rem; vertical-align: super; margin-right: 0.4em; font-family: var(--sans); }
.mobile-menu.open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu .mm-foot { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.6rem; color: var(--mist); font-size: 0.9rem; }
.mobile-menu .mm-foot a { color: var(--bone-dim); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* Réserve la hauteur du header FIXE : sinon, sur un écran peu haut, le contenu
     ancré en bas (flex-end) déborde vers le haut SOUS le menu et s'y fait masquer
     (le « Coaching premium · Nalinnes » disparaissait). Sur écran haut le contenu
     tient dans 100svh → ce padding est sans effet visible. */
  padding-top: clamp(9rem, 15vh, 11rem);
  padding-bottom: clamp(3rem, 7vh, 6rem);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(11,11,12,0.35) 45%, rgba(11,11,12,0.55) 100%),
    radial-gradient(120% 80% at 70% 20%, rgba(59,210,122,0.14), transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 960px; }
.hero h1 { font-size: var(--step-5); }
.hero .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero .word > span { display: inline-block; }
.hero-sub { margin-top: 1.8rem; max-width: 540px; }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bone-dim);
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; inset:0; background: var(--gold); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%);} 50%{transform: translateY(0);} 100%{transform: translateY(100%);} }
@media (max-height: 900px) { .hero .scroll-cue { display: none; } }

/* hero stats bar */
.hero-meta {
  position: absolute;
  right: var(--pad); bottom: clamp(3rem,7vh,6rem);
  z-index: 2;
  display: flex; flex-direction: column; gap: 0.4rem;
  text-align: right;
  max-width: 230px;
}
.hero-meta .k { font-family: var(--display); font-size: var(--step-2); color: var(--gold); line-height: 1; }
.hero-meta .v { font-size: 0.8rem; color: var(--bone-dim); letter-spacing: 0.04em; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.6rem;
  white-space: nowrap;
  -webkit-user-select: none; user-select: none;
}
.marquee-track { display: inline-flex; gap: 2.5rem; align-items: center; will-change: transform; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; color: var(--bone); }
.marquee span.out { color: transparent; -webkit-text-stroke: 1px var(--mist); }
.marquee .dot { color: var(--gold); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards / features ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.8vw, 1.4rem); }

.card {
  position: relative;
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), background 0.6s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at var(--mx,50%) var(--my,0%), rgba(59,210,122,0.10), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card:hover::before { opacity: 1; }
.card .num { font-family: var(--display); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.card h3 { font-size: var(--step-1); margin-top: 1rem; }
.card p { color: var(--mist); margin-top: 0.7rem; font-size: var(--step-0); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(59,210,122,0.16), rgba(59,210,122,0.04));
  border: 1px solid var(--line-2);
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.card .icon svg { width: 26px; height: 26px; }

/* liste avec check or */
.check-list li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--step-0);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold) 70%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/68% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/68% no-repeat;
}
.bg-bone .check-list li { border-color: rgba(0,0,0,0.08); }

/* ---------- Media / images ---------- */
.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.media.reveal-clip img { transform: scale(1.15); }
.media:hover img { transform: scale(1.04); }
.media-tall { aspect-ratio: 3/4; }
.media-wide { aspect-ratio: 16/10; }
.media-square { aspect-ratio: 1/1; }
.media .tag {
  position: absolute; left: 1rem; bottom: 1rem;
  padding: 0.5em 1em;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone);
}

/* clip reveal helper */
.clip-reveal { clip-path: inset(0 0 100% 0); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--ink); padding: clamp(1.6rem, 3vw, 2.8rem) clamp(1rem,2vw,1.6rem); text-align: center; }
.bg-bone .stats { background: rgba(0,0,0,0.1); }
.bg-bone .stat { background: var(--bone); }
.stat .k { font-family: var(--display); font-size: var(--step-4); line-height: 1; color: var(--bone); font-weight: 600; }
.bg-bone .stat .k { color: var(--ink); }
.stat .k .gold { color: var(--gold); }
.stat .v { margin-top: 0.6rem; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--mist); text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column; gap: 1.4rem;
  height: 100%;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.quote-card .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.quote-card blockquote { font-family: var(--display); font-size: var(--step-1); line-height: 1.4; font-weight: 600; letter-spacing: -0.01em; }
.quote-card .who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.quote-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(150deg, var(--cognac), var(--gold-deep)); display: grid; place-items: center; font-family: var(--display); color: var(--bone); }
.quote-card .who .meta b { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; }
.quote-card .who .meta span { font-size: 0.8rem; color: var(--mist); }

/* ---------- Accordion / FAQ ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bone);
  transition: color 0.3s var(--ease);
}
.acc-head:hover { color: var(--gold); }
.acc-icon { flex: none; position: relative; width: 22px; height: 22px; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.acc-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.acc-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.acc-item.open .acc-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.acc-body { overflow: hidden; height: 0; }
.acc-body-inner { padding-bottom: 1.7rem; color: var(--mist); max-width: 720px; font-size: var(--step-0); }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  padding: clamp(1.8rem,3vw,2.6rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .idx { font-family: var(--display); font-size: var(--step-3); color: var(--gold); line-height: 1; font-weight: 600; }
.step h3 { font-size: var(--step-2); }
.step p { color: var(--mist); margin-top: 0.7rem; max-width: 620px; }

/* ---------- Pricing / offer ---------- */
.offer-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.4rem);
  overflow: hidden;
}
.offer-card::before {
  content:""; position:absolute; inset:-1px;
  background: linear-gradient(140deg, rgba(59,210,122,0.5), transparent 35%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px; border-radius: inherit; pointer-events: none;
}
.offer-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 1em; border-radius: 100px;
  background: rgba(59,210,122,0.12); border: 1px solid rgba(59,210,122,0.3);
  color: var(--gold-soft); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.price-row { display:flex; align-items: baseline; gap: 0.6rem; }
.price-row .amount { font-family: var(--display); font-size: var(--step-4); line-height: 1; }
.price-row .strike { color: var(--mist); text-decoration: line-through; font-size: var(--step-1); }

/* ---------- Landing / conversion (page bilan) ---------- */
.lp-hero {
  position: relative;
  padding-top: clamp(7.5rem, 14vh, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.lp-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(85% 70% at 78% 6%, rgba(59,210,122,0.16), transparent 55%),
    radial-gradient(70% 60% at 6% 95%, rgba(110,74,51,0.30), transparent 60%);
}
.lp-hero .crumb { color: var(--mist); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.lp-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.lp-hero h1 { font-size: clamp(2.3rem, 1.6rem + 2.8vw, 3.9rem); line-height: 1.04; }
.lp-hero .lp-copy > * + * { margin-top: 1.25rem; }

/* réassurance */
.reassure { display: flex; flex-wrap: wrap; gap: 0.7rem 1.5rem; }
.reassure span { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.9rem; color: var(--bone-dim); }
.reassure svg { width: 1.15em; height: 1.15em; color: var(--gold); flex: none; }

/* preuve sociale en ligne */
.trust-row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -13px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1rem; color: var(--bone);
  background: linear-gradient(150deg, var(--cognac), var(--gold-deep));
}
.avatars span:first-child { margin-left: 0; }
.rating-txt .stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.9rem; }
.rating-txt b { display: block; color: var(--bone); font-size: 0.92rem; font-weight: 500; }
.rating-txt span { color: var(--mist); font-size: 0.82rem; }

/* carte formulaire premium */
.form-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  box-shadow: 0 46px 90px -46px rgba(0,0,0,0.85);
}
.form-card::before {
  content: ""; position: absolute; inset: -1px;
  background: linear-gradient(140deg, rgba(59,210,122,0.55), transparent 38%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px; border-radius: inherit; pointer-events: none;
}
.fc-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.fc-head h3 { font-size: var(--step-1); }
.live-badge { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); white-space: nowrap; }
.live-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(59,210,122,0.55); } 70% { box-shadow: 0 0 0 9px rgba(59,210,122,0); } 100% { box-shadow: 0 0 0 0 rgba(59,210,122,0); } }
.fc-foot { margin-top: 1rem; text-align: center; font-size: 0.8rem; color: var(--mist); }

/* --- Formulaire natif (conversion) --- */
.lead-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; position: relative; }
.field label { font-size: 0.8rem; letter-spacing: 0.02em; color: var(--bone-dim); font-weight: 500; }
.field label .req { color: var(--gold); }
.field input, .field select {
  width: 100%;
  padding: 0.92em 1.1em;
  background: rgba(244,239,231,0.04);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder { color: var(--mist); }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D9A441' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05em center;
  padding-right: 2.6em;
  cursor: pointer;
}
.field select:invalid { color: var(--mist); }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244,239,231,0.06);
  box-shadow: 0 0 0 4px rgba(59,210,122,0.13);
}
.field.invalid input, .field.invalid select { border-color: var(--ember); }
.field .err { font-size: 0.74rem; color: #e8a59e; display: none; }
.field.invalid .err { display: block; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-fineprint { text-align: center; font-size: 0.78rem; color: var(--mist); display: flex; align-items: center; justify-content: center; gap: 0.5em; flex-wrap: wrap; }
.form-alt { text-align: center; font-size: 0.82rem; color: var(--mist); margin-top: 0.2rem; }
.form-alt a { color: var(--bone-dim); border-bottom: 1px solid var(--line-2); }
.form-alt a:hover { color: var(--gold); border-color: var(--gold); }

/* état de succès */
.form-success { text-align: center; padding: 1.5rem 0.5rem; }
.form-success .fs-check {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.8rem; color: #1a1305;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold) 70%);
  box-shadow: 0 12px 30px -10px rgba(59,210,122,0.6);
  animation: popCheck 0.6s var(--ease) both;
}
@keyframes popCheck { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: var(--step-2); margin-bottom: 0.6rem; }
.form-success p { color: var(--mist); }
@media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } }

/* value card */
.value-card { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); height: 100%; }
.value-card .value-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.value-card h3 { font-size: var(--step-2); }
.value-tag { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(59,210,122,0.3); padding: 0.4em 0.9em; border-radius: 100px; white-space: nowrap; }

/* CTA sticky mobile */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-top: 1px solid var(--line-2);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }
.sticky-cta .sc-note { text-align: center; font-size: 0.72rem; color: var(--mist); margin-top: 0.45rem; }
@media (min-width: 721px) { .sticky-cta { display: none !important; } }

@media (max-width: 940px) {
  .lp-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(4rem,7vw,7rem); }
.footer-cta {
  text-align: center;
  padding: clamp(3rem,7vw,6rem) 0;
  border-bottom: 1px solid var(--line);
}
.footer-cta h2 { font-size: var(--step-4); max-width: 16ch; margin-inline: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-block: clamp(3rem,5vw,4.5rem); }
.footer-grid h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); margin-bottom: 1.2rem; font-weight: 600; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-grid a { color: var(--bone-dim); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-grid a:hover { color: var(--gold); }
.footer-brand p { color: var(--mist); max-width: 32ch; margin-top: 1.2rem; font-size: 0.95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-block: 2rem; border-top: 1px solid var(--line); color: var(--mist); font-size: 0.82rem; }
.footer-bottom a { color: var(--mist); }
.footer-bottom a:hover { color: var(--bone); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: var(--bone); transform: translate(-50%, -50%); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(244,239,231,0.6); transform: translate(-50%, -50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease); }
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(244,239,231,0.08); border-color: transparent; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: grid; place-items: center;
  transition: clip-path 1s var(--ease);
}
.preloader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo { width: 64px; margin: 0 auto 1.4rem; opacity: 0.95; animation: prePulse 2s var(--ease) infinite; }
@keyframes prePulse { 0%,100%{ transform: scale(1); opacity:0.9;} 50%{ transform: scale(1.08); opacity:1;} }
.pre-bar { width: min(220px, 60vw); height: 1px; background: var(--line-2); position: relative; overflow: hidden; margin: 0 auto; }
.pre-bar i { position:absolute; inset:0; background: var(--gold); transform-origin: left; transform: scaleX(0); }
.pre-count { margin-top: 1rem; font-family: var(--display); font-size: 0.9rem; color: var(--mist); letter-spacing: 0.2em; }

/* ---------- Page transition ---------- */
.page-trans {
  position: fixed; inset: 0; z-index: 9997;
  background: var(--ink-2);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.page-trans.in { transform: scaleY(1); transform-origin: bottom; transition: transform 0.6s var(--ease); }
.page-trans.out { transform: scaleY(0); transform-origin: top; transition: transform 0.6s var(--ease); }

/* ---------- Reveal animations (scopées .js pour rester visible sans JS) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js [data-reveal].in { opacity: 1; transform: none; }
html.js [data-clip] { clip-path: inset(0 0 100% 0); }
html.js [data-clip] img { transform: scale(1.15); }
html.js .hero .word > span { transform: translateY(110%); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* page intro hero header (interior pages) */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 13rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.page-hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(80% 60% at 80% 0%, rgba(59,210,122,0.10), transparent 60%);
}
.page-hero h1 { font-size: var(--step-4); max-width: 16ch; }
.page-hero .crumb { color: var(--mist); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.4rem; }
.page-hero .crumb a:hover { color: var(--gold); }

/* feature image float decoration */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; z-index: -1; }
.glow-gold { background: radial-gradient(circle, rgba(59,210,122,0.35), transparent 70%); }
.glow-cognac { background: radial-gradient(circle, rgba(110,74,51,0.5), transparent 70%); }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill { padding: 0.55em 1.1em; border: 1px solid var(--line-2); border-radius: 100px; font-size: 0.85rem; color: var(--bone-dim); transition: border-color .3s, color .3s; }
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Panneau "système" (page Méthode, sans photo) ---------- */
.spec-panel {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.spec-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(75% 70% at 72% 18%, rgba(59,210,122,0.14), transparent 60%);
}
.spec-panel::after {
  content: ""; position: absolute; inset: 0; opacity: 0.6;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask: radial-gradient(72% 72% at 50% 50%, #000, transparent 78%);
          mask: radial-gradient(72% 72% at 50% 50%, #000, transparent 78%);
}
.spec-panel .spec-num {
  position: absolute; top: -0.18em; left: 0.08em;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(8rem, 22vw, 15rem); line-height: 1;
  color: rgba(244,239,231,0.05);
  pointer-events: none; z-index: 0;
}
.spec-panel .spec-icon {
  position: relative; z-index: 1;
  width: 96px; height: 96px; border-radius: 26px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(59,210,122,0.20), rgba(59,210,122,0.04));
  border: 1px solid var(--line-2);
  color: var(--gold);
  box-shadow: 0 20px 50px -20px rgba(59,210,122,0.45);
}
.spec-panel .spec-icon svg { width: 44px; height: 44px; }
.spec-panel .spec-tag {
  position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim); z-index: 1;
}

/* ---------- Responsive ---------- */
/* Le menu complet (jusqu'à 8 entrées) ne tient plus sur une ligne en dessous de ~1080px
   → on bascule sur le menu burger AVANT que les libellés ne se serrent/coupent. */
@media (max-width: 1080px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-meta { display: none; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; gap: 0.6rem; }
  .site-footer { padding-top: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; padding-block: 1.8rem; }
  .footer-brand { margin-bottom: 0; }
  .footer-brand p { display: none; }
  .footer-brand .link-arrow { margin-top: 0.8rem !important; }
  .footer-grid h4 { margin-bottom: 0.55rem; font-size: 0.72rem; }
  .footer-grid ul { gap: 0.35rem; }
  .footer-grid a, .footer-grid span { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding-block: 1.2rem; font-size: 0.74rem; line-height: 1.5; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero { align-items: center; padding-top: 7rem; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero .word > span { transform: none; }
  .marquee-track { animation: none; }
}

/* logo plus grand, rétréci quand le header se compacte */
.site-header.scrolled .nav-logo img { height: 36px; }

/* champ date lisible sur fond sombre */
.field input[type="date"] { color-scheme: dark; }
.field input[type="date"]:invalid { color: var(--mist); }

/* ——— Bouton « Espace membre » (accès SaaS Sport Danz) dans l'en-tête ——— */
.nav-member {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 500; line-height: 1;
  color: var(--bone-dim); border: 1px solid var(--line-2); border-radius: 100px;
  padding: .6em 1.05em; text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.nav-member:hover { color: var(--gold); border-color: var(--gold); background: rgba(255,255,255,.03); }
@media (max-width: 1080px) { .nav-member { display: none; } }
