/* ============================================================
   InnoGym — Landing page
   Dark premium · brand gold #F5D90A · Poppins + Bebas Neue
   ============================================================ */

:root {
  --bg:       #0B0C0F;
  --bg-2:     #0F1115;
  --surface:  #14161B;
  --card:     #171A21;
  --line:     #262B33;
  --gold:     #F5D90A;
  --gold-soft:#FFF59D;
  --on-gold:  #16181D;
  --ink:      #F4F5F7;
  --muted:    #9AA1AD;
  --radius:   22px;
  --nav-h:    74px;
  --display:  'Bebas Neue', 'Poppins', sans-serif;
  --body:     'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--on-gold); }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 130px) 0; position: relative; }

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.h2 em, .hero__title em { font-style: normal; color: var(--gold); }
.lead { color: var(--muted); font-size: 1.02rem; margin-top: 18px; max-width: 52ch; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.kicker__dot {
  width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
  position: relative;
}
.kicker__dot::after {
  content: ''; position: absolute; right: -6px; top: -2px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: clamp(36px, 5vw, 60px); flex-wrap: wrap;
}
.section__note { color: var(--muted); max-width: 38ch; font-size: 0.92rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 0.92rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 17px 32px; font-size: 0.98rem; }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(5px); }

.btn--gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 10px 34px rgba(245, 217, 10, 0.25); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(245, 217, 10, 0.38); }
.btn--gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn--gold:hover::before { transition: transform 0.7s ease; transform: translateX(120%); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn--dark { background: var(--on-gold); color: var(--gold); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,0.35); }
.btn--outline-dark { background: transparent; color: var(--on-gold); border: 2px solid rgba(22,24,29,0.55); }
.btn--outline-dark:hover { background: rgba(22,24,29,0.1); transform: translateY(-3px); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader--done { opacity: 0; visibility: hidden; }
.preloader__logo { width: 86px; animation: pulse 1.2s ease-in-out infinite; }
.preloader__bar { width: 150px; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.preloader__bar span {
  display: block; height: 100%; width: 40%; background: var(--gold); border-radius: 3px;
  animation: loadbar 1s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.08); opacity: 0.85; } }
@keyframes loadbar { 0% { transform: translateX(-100%);} 100% { transform: translateX(380%);} }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav--scrolled {
  background: rgba(11, 12, 15, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { height: var(--nav-h); display: flex; align-items: center; gap: 34px; }
.nav__brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.15rem; }
.nav__brand img { width: 40px; }
.nav__brand em { font-style: normal; color: var(--gold); }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  position: relative; padding: 6px 0; transition: color 0.25s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); border-radius: 2px; transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; font-size: 0.85rem; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.nav__burger--open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: -8% 0;
  background: url('../assets/img/hero.jpg') center 32% / cover no-repeat;
  filter: brightness(0.42) saturate(1.08);
  will-change: transform;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,12,15,0.92) 0%, rgba(11,12,15,0.55) 48%, rgba(11,12,15,0.25) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 30%),
    linear-gradient(180deg, rgba(11,12,15,0.75) 0%, transparent 26%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none;
  animation: glowfloat 9s ease-in-out infinite alternate;
}
.hero__glow--1 { width: 480px; height: 480px; background: rgba(245,217,10,0.16); top: -120px; right: -80px; }
.hero__glow--2 { width: 380px; height: 380px; background: rgba(245,217,10,0.07); bottom: -140px; left: 22%; animation-delay: -4s; }
@keyframes glowfloat { to { transform: translateY(40px) scale(1.08); } }

.hero__grain {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 30px;
  padding: 40px 0 70px;
}
.hero__kicker { animation: fadeUp 0.8s 0.15s ease backwards; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.2rem, 8.2vw, 6.6rem);
  line-height: 0.95; letter-spacing: 0.012em; margin: 10px 0 22px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: block; animation: riseIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
.hero__title .line:nth-child(1) span { animation-delay: 0.25s; }
.hero__title .line:nth-child(2) span { animation-delay: 0.38s; }
.hero__title .line:nth-child(3) span { animation-delay: 0.51s; }
@keyframes riseIn { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero__sub {
  color: var(--muted); max-width: 46ch; font-size: 1.04rem;
  animation: fadeUp 0.8s 0.65s ease backwards;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; animation: fadeUp 0.8s 0.8s ease backwards; }

.hero__proof {
  display: flex; align-items: center; gap: 22px; margin-top: 44px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.95s ease backwards;
}
.proof { display: flex; flex-direction: column; }
.proof__num { font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--ink); }
.proof__num small { font-size: 1.05rem; color: var(--gold); }
.proof__label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; margin-top: 4px; }
.proof__sep { width: 1px; height: 38px; background: var(--line); }

/* hero mascot */
.hero__mascot { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 420px; }
.hero__ring {
  position: absolute; bottom: 6%; width: 78%; aspect-ratio: 1;
  border: 1.5px dashed rgba(245,217,10,0.4); border-radius: 50%;
  animation: spin 26s linear infinite;
}
.hero__blob {
  position: absolute; bottom: 8%; width: 64%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(245,217,10,0.32), rgba(245,217,10,0.05) 65%);
  filter: blur(8px);
}
@keyframes spin { to { transform: rotate(360deg); } }
.mascot-img {
  position: relative; z-index: 2; width: min(340px, 78%);
  filter: drop-shadow(0 34px 44px rgba(0,0,0,0.55));
  animation: floaty 4.5s ease-in-out infinite, mascotIn 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes floaty { 50% { transform: translateY(-16px); } }
@keyframes mascotIn { from { opacity: 0; transform: translateY(60px) scale(0.85); } }

.hero__badge {
  position: absolute; z-index: 3; background: rgba(20, 22, 27, 0.88);
  border: 1px solid var(--line); border-radius: 14px; padding: 10px 16px;
  font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.hero__badge--1 { top: 18%; left: -4%; animation: floaty 5s 0.4s ease-in-out infinite, fadeUp 0.7s 1.15s ease backwards; }
.hero__badge--2 { bottom: 16%; right: -2%; animation: floaty 5.5s 1s ease-in-out infinite, fadeUp 0.7s 1.3s ease backwards; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 5;
  font-size: 0.66rem; letter-spacing: 0.3em; color: var(--muted); font-weight: 700;
}
.hero__scroll-line { width: 1.5px; height: 38px; background: linear-gradient(var(--gold), transparent); display: block; animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 50% { transform: scaleY(0.55); opacity: 0.5; } }

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

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold); color: var(--on-gold);
  transform: rotate(-1.6deg) scale(1.02); margin: 10px 0 -20px;
  padding: 15px 0; overflow: hidden; position: relative; z-index: 5;
  box-shadow: 0 18px 50px rgba(245, 217, 10, 0.18);
}
.marquee__track { display: flex; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.12em; padding-right: 8px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Club ---------- */
.club { background: var(--bg); }
.club__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.club__media { position: relative; }
.club__photo { border-radius: var(--radius); overflow: hidden; }
.club__photo img { transition: transform 0.8s ease; }
.club__photo:hover img { transform: scale(1.05); }
.club__photo--main { aspect-ratio: 4/5; box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.club__photo--main img { height: 100%; width: 100%; object-fit: cover; }
.club__photo--float {
  position: absolute; right: -8%; bottom: -10%; width: 56%;
  border: 6px solid var(--bg); box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.club__xp {
  position: absolute; top: -22px; left: -18px; background: var(--gold); color: var(--on-gold);
  border-radius: 18px; padding: 16px 20px; display: flex; flex-direction: column;
  box-shadow: 0 18px 44px rgba(245,217,10,0.3); rotate: -4deg;
}
.club__xp-num { font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.club__xp-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 3px; }

.checklist { list-style: none; margin: 26px 0 30px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: center; color: var(--ink); font-size: 0.96rem; }
.check {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(245,217,10,0.14);
  color: var(--gold); font-size: 0.75rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stats { border-block: 1px solid var(--line); background: var(--bg-2); padding: clamp(46px, 6vw, 70px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat__num {
  font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold); line-height: 1; display: block;
}
.stat__label { color: var(--muted); font-size: 0.84rem; margin-top: 8px; display: block; }

/* ---------- Cours ---------- */
.cours { background: var(--bg); }
.cours__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.card:hover { border-color: rgba(245,217,10,0.55); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.card__media { aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card:hover .card__media img { transform: scale(1.08); }
.card__body { padding: 22px 22px 24px; }
.card__body h3 { font-family: var(--display); font-size: 1.55rem; font-weight: 400; letter-spacing: 0.03em; }
.card__body p { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }
.card__tag {
  display: inline-block; margin-top: 14px; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(245,217,10,0.4); padding: 5px 12px; border-radius: 999px;
}
.card--femmes {
  background: linear-gradient(150deg, rgba(245,217,10,0.16), rgba(245,217,10,0.04) 55%), var(--card);
  display: flex; align-items: center;
}
.card__body--center { text-align: center; padding: 40px 26px; width: 100%; }
.card__icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.card__tag--invert { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }

/* ---------- App ---------- */
.app { background: var(--bg-2); border-block: 1px solid var(--line); overflow: hidden; }
.app__glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: rgba(245,217,10,0.08); filter: blur(120px); left: -150px; top: 10%;
}
.app__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; position: relative; }
.app__phone-wrap { position: relative; display: flex; justify-content: center; }
.app__phone {
  width: min(310px, 80%); border-radius: 44px; padding: 12px;
  background: #1d2027; border: 1px solid #2d323c;
  box-shadow: 0 50px 110px rgba(0,0,0,0.6), inset 0 0 0 2px #0c0d10;
  transition: transform 0.4s ease;
}
.app__phone:hover { transform: rotate(-2deg) translateY(-8px); }
.app__screen { border-radius: 34px; }
.app__mascot {
  position: absolute; width: 150px; bottom: -30px; right: 2%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.5));
  animation: floaty 5s ease-in-out infinite; transform-origin: bottom;
}
.steps { display: grid; gap: 16px; margin-top: 28px; }
.step { display: flex; gap: 16px; align-items: center; }
.step__num {
  width: 42px; height: 42px; border-radius: 14px; flex-shrink: 0;
  background: var(--gold); color: var(--on-gold);
  font-family: var(--display); font-size: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(245,217,10,0.22);
}
.step strong { font-size: 0.96rem; }
.step p { color: var(--muted); font-size: 0.82rem; }
.app__features {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 28px;
}
.app__features li {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 16px; font-size: 0.85rem; font-weight: 500;
}
.store-badges { display: flex; gap: 14px; margin-top: 30px; }
.store-badges img { height: 52px; transition: transform 0.25s ease; }
.store-badges a:hover img { transform: translateY(-4px); }
.app__soon { color: var(--muted); font-size: 0.8rem; margin-top: 12px; }

/* ---------- Coachs ---------- */
.coachs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coach {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; border: 1px solid var(--line);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.coach:hover { border-color: rgba(245,217,10,0.5); }
.coach img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.coach:hover img { transform: scale(1.06); }
.coach figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(13, 14, 18, 0.78); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
}
.coach figcaption strong { font-size: 0.98rem; }
.coach figcaption span { color: var(--gold); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Témoignages ---------- */
.temoignages { background: var(--bg-2); border-block: 1px solid var(--line); }
.gbadge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 22px; font-size: 0.88rem; color: var(--muted);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.gbadge:hover { border-color: var(--gold); transform: translateY(-2px); }
.gbadge strong { color: var(--ink); }
.gbadge__stars { color: var(--gold); letter-spacing: 2px; }
.temoignages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative; transition: transform 0.3s ease, border-color 0.3s ease;
}
.quote:hover { transform: translateY(-6px); border-color: rgba(245,217,10,0.4); }
.quote__mark {
  font-family: var(--display); font-size: 4rem; color: var(--gold);
  line-height: 0.6; display: block; margin-bottom: 16px;
}
.quote p { color: var(--ink); font-size: 0.93rem; }
.quote footer { margin-top: 18px; color: var(--gold); font-weight: 700; font-size: 0.85rem; }

/* ---------- CTA band ---------- */
.cta { background: var(--gold); color: var(--on-gold); overflow: hidden; position: relative; }
.cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: clamp(50px, 7vw, 80px) 0; flex-wrap: wrap; position: relative;
}
.cta__mascot {
  position: absolute; right: -10px; bottom: -34%; width: 200px; opacity: 0.95;
  transform: rotate(4deg); pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}
.cta__title { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1; }
.cta__text p { font-weight: 500; margin-top: 10px; opacity: 0.8; max-width: 44ch; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-right: clamp(0px, 16vw, 210px); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }
.info-cards { display: grid; gap: 14px; margin-top: 30px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 20px; transition: border-color 0.3s ease, transform 0.3s ease;
}
a.info-card:hover { border-color: var(--gold); transform: translateX(6px); }
.info-card__icon { font-size: 1.3rem; }
.info-card strong { font-size: 0.95rem; display: block; }
.info-card p { color: var(--muted); font-size: 0.86rem; margin-top: 3px; }
.socials { display: flex; gap: 18px; margin-top: 30px; }
.socials img { width: 46px; height: 46px; object-fit: contain; transition: transform 0.25s ease; }
.socials a:hover img { transform: translateY(-5px) scale(1.06); }
.contact__map {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); min-height: 420px;
}
.contact__map iframe {
  width: 100%; height: 100%; border: 0; position: absolute; inset: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4) brightness(0.9);
}
.contact__route { position: absolute; bottom: 18px; right: 18px; z-index: 2; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer__inner {
  padding: 40px 0; display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  justify-content: space-between;
}
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.85rem; font-weight: 500; transition: color 0.25s; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { color: var(--muted); font-size: 0.78rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(160deg, #2ee36b 0%, #25d366 55%, #1ebe59 100%);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPop 0.6s 2s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.wa-float svg { width: 34px; height: 34px; display: block; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.35); }
/* soft pulsing ring */
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55); pointer-events: none;
  animation: waRing 2.6s ease-out infinite;
}
@keyframes waPop { from { transform: scale(0); } }
@keyframes waRing {
  0%, 55% { transform: scale(1); opacity: 0; }
  65% { opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 90px; }
  .hero__mascot { min-height: 340px; margin-top: 10px; }
  .mascot-img { width: 270px; }
  .cours__grid, .temoignages__grid, .coachs__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 38px; }
  .app__grid, .contact__grid, .club__grid { grid-template-columns: 1fr; }
  .app__phone-wrap { order: 2; margin-top: 20px; }
  .contact__map { min-height: 340px; }
  .cta__mascot { display: none; }
  .cta__actions { margin-right: 0; }
}
@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.nav__links--open {
    display: flex; position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(11,12,15,0.97); backdrop-filter: blur(18px);
    flex-direction: column; padding: 26px 8%; gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .cours__grid, .temoignages__grid, .coachs__grid { grid-template-columns: 1fr; }
  .app__features { grid-template-columns: 1fr; }
  .hero__badge--1 { left: 0; } .hero__badge--2 { right: 0; }
  .club__photo--float { right: 0; }
  .marquee__track span { font-size: 1.15rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
