/* =========================================
   TITRES DE SECTION — UNIFORMISATION
   ========================================= */
.pricing-header-elite .section-title,
.equipment-section .section-title,
.cc-main-title,
.cinematic-title,
.reviews-title,
.app-main-title,
.section-header-elite .section-title,
.faq-main-title {
  font-size: var(--fs-section-title) !important;
  font-weight: var(--fw-black);
  line-height: var(--lh-heading);
  text-transform: uppercase;
  color: var(--title-color);
  letter-spacing: var(--ls-tight);
}

/* =========================================
   HERO SECTION (ACCUEIL)
   ========================================= */

/* CONTENEUR PRINCIPAL */
.hero-section {
    position: relative;
    margin-top: calc(-1 * var(--nav-height));
    height: 85vh;
    min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: block;
  padding-top: 0 !important;
}

/* IMAGE DE FOND */
.hero-photos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-img {
    display: block;    /* Supprime l'espace vertical résiduel des éléments inline */
    position: absolute;
    top: 0;            /* Force le collage en haut du conteneur .hero-photos */
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop par défaut */
.hero-img-desktop {
  display: block;
  object-position: center 53.5%;
}

.hero-img-mobile {
  display: none;
  object-position: center center;
}

/* CONTENU */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITRE PRINCIPAL */
.club-title {
  font-family: var(--font-family-heading);
  font-size: var(--fs-hero-title);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--title-color);
  margin-bottom: var(--space-6);
  max-width: 900px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* SOUS-TITRE */
.club-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--subtitle-color);
  font-weight: var(--fw-medium);
  max-width: 650px;
  margin-bottom: var(--space-10);
  line-height: var(--lh-body);
}

/* STATISTIQUES */
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 3.5rem;
}

.hero-line {
  font-size: 2.1rem;
  font-weight: var(--fw-extrabold);
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.thin-text {
  font-size: 1.1rem;
  font-weight: var(--fw-extrabold);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* BOUTONS D'ACTION */
.hero-buttons {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Bouton principal */
.nous-rejoindre {
  background: var(--primary-color);
  color: var(--text-black);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
  font-size: var(--btn-font-size);
  letter-spacing: 0.8px;
  border-radius: 0;
  border: 2px solid var(--primary-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-base);
}

.nous-rejoindre::before {
  content: none;
}

.nous-rejoindre:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Bouton secondaire */
.btn-en-savoir-plus {
  background: transparent;
  color: var(--text-black);
  border: 2px solid var(--border-soft-2);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
  font-size: var(--btn-font-size);
  letter-spacing: 0.8px;
  border-radius: var(--btn-radius);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-base);
}

.btn-en-savoir-plus:hover {
  border-color: var(--text-white);
  background: rgba(255,255,255,0.1);
}

/* BADGE FFHM */
.badge-ffhm {
  position: absolute;
  bottom: 80px;
  left: 5.2%;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .badge-ffhm {
    left: 4%;
  }
}

@media (max-width: 768px) {
  .badge-ffhm {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    justify-content: center;
  }
}
.badge-ffhm:hover { opacity: 1; }

.badge-text {
  color: var(--text-black);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.badge-separator { width: 1px; height: 15px; background: rgba(255,255,255,0.2); }
.badge-ffhm img { height: 40px; width: auto; }

/* =========================================
   ANIMATIONS HERO - EFFET CROISÉ
   ========================================= */
.club-title,
.club-subtitle,
.hero-line,
.user-welcome,
.user-subtitle,
.club-date {
  opacity: 0;
  transition: opacity 1.3s ease, transform 1.3s ease;
  will-change: opacity, transform;
  color: #ffffff;
}

.club-title,
.user-welcome {
  transform: translateX(-1300px);
}

.club-subtitle,
.hero-line,
.user-subtitle,
.club-date {
  transform: translateX(1400px);
}

.club-title.animate,
.club-subtitle.animate,
.hero-line.animate,
.user-welcome.animate,
.user-subtitle.animate,
.club-date.show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   HERO - VERSION CONNECTÉE (STATS)
   ========================================= */

/* Barre de stats horizontale */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  width: fit-content;
  max-width: 480px;
}

/* Carte individuelle */
.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-stat-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Valeur principale */
.hero-stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

/* Label sous la valeur */
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Séparateur vertical entre les cartes */
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Section hero connectée — fond identique au visiteur */
.hero-logged .hero-content {
  z-index: 4;
  justify-content: center;
}

/* Responsive mobile — stats cachées */
@media (max-width: 768px) {
  .hero-stats-row {
    display: none !important;
  }
}

/* RESPONSIVE MOBILE HERO */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
    margin-top: 0 !important;
  }

  .hero-img-desktop {
    display: none;
  }

  .hero-img-mobile {
    display: block;
    transform: translateY(5%);
  }

  .hero-photos::after {
    background: var(--hero-overlay-mobile);
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .club-title {
    font-size: 1.88rem;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }

  .club-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-inner {
    margin-bottom: 2rem;
    gap: 10px;
  }

  .hero-line {
    font-size: 1.5rem;
  }

  .thin-text {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-bottom: 2rem;
  }

  .nous-rejoindre, .btn-en-savoir-plus {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .badge-ffhm {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 150px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {

  /* On masque ce qu’on ne veut pas */
  .club-subtitle,
  .hero-inner,
  .hero-line,
  .thin-text,
  .club-date,
  .user-welcome,
  .user-subtitle {
    display: none !important;
  }

  .hero-section {
    min-height: 100vh;
  }

  /* Le contenu prend toute la hauteur */
  .hero-content {
    position: relative;
    height: 100%;
    min-height: 100vh;
    padding-top: 0px !important;
    padding-bottom: 35px !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Titre au milieu */
  .club-title {
    display: block !important;
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    max-width: 26ch;
    text-align: center;
  }

  /* Boutons fixés en bas du hero */
  .hero-buttons {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 35px;
    width: auto;
    max-width: 420px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .nous-rejoindre,
  .btn-en-savoir-plus {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  /* Overlay plus propre */
  .hero-photos::after {
    background: linear-gradient(
      to top,
      rgba(5,5,5,0.88) 0%,
      rgba(5,5,5,0.38) 50%,
      rgba(5,5,5,0.10) 100%
    ) !important;
  }
}

/* =========================
   ACCUEIL — SECTION 2 (PRICING)
   ========================= */

.home-pricing-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding-y) 0;
  background: #f8f7f5;
  border-bottom: none;
  z-index: 1;
}

.bg-watermark {
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: rgba(0, 0, 0, 0.07);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-align: center;
}

.watermark-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

/* =========================================
   HEADER
   ========================================= */
.pricing-header-elite {
  color: var(--text-black);
  text-align: center;
  margin-bottom: -22px;
}


.home-pricing-section .p-title {
  font-size: 1.15rem;
  font-weight: 900;
}

.pricing-header-elite .section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 14px;
  color: #0a0a0a;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-header-elite .text-outline {
  color: var(--brand-orange);
}

.pricing-header-elite .section-subtitle {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   TOGGLE
   ========================================= */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.toggle-wrapper {
  background: #161616;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  padding: 4px;
  border-radius: 50px;
  display: flex;
  position: relative;
  width: 300px;
  max-width: 100%;
}

.toggle-wrapper input { display: none; }

.toggle-wrapper label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 2;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  color: rgba(255,255,255,0.55);
}

.discount {
  font-size: 0.7rem;
  background: var(--primary-color);
  color: var(--text-black);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.toggle-glider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: var(--primary-color);
  border-radius: 40px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

#type-student:checked ~ .toggle-glider { transform: translateX(100%); }
#type-student:checked ~ label[for="type-student"] { color: var(--text-black); }
#type-standard:checked ~ label[for="type-standard"] { color: var(--text-black); }

/* Toggle version claire — section abonnements (fond #f8f7f5) */
.home-pricing-section .toggle-wrapper {
  background: rgba(0,0,0,0.05);
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.12);
}

.home-pricing-section .toggle-wrapper label {
  color: rgba(0,0,0,0.55);
}

.home-pricing-section #type-standard:checked ~ label[for="type-standard"],
.home-pricing-section #type-student:checked ~ label[for="type-student"] {
  color: #fff;
}

/* =========================================
   GRID
   ========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

/* =========================================
   CARDS
   ========================================= */
.pricing-card-elite {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card-elite::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px 12px 0 0;
}

.pricing-card-elite:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.pricing-card-elite.is-popular {
  border-color: rgba(245, 119, 6, 0.5);
  background: #141414;
  box-shadow: 0 0 48px rgba(245, 119, 6, 0.1);
}

.pricing-card-elite.is-popular::before {
  background: var(--brand-orange);
}

/* Ribbon */
.popular-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card-elite.is-popular .p-card-head {
  margin-top: 0;
}

/* En-tête */
.p-card-head {
  margin-bottom: 20px;
}

.p-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.is-popular .p-title {
  color: var(--brand-orange);
}

.p-price-box {
  display: flex;
  flex-direction: column; /* ← colonne au lieu de row */
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 0;
}

.p-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-black);
  line-height: 1;
}

.p-price-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.p-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-black);
  opacity: 0.7;
}

.p-monthly-cost {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.p-monthly-cost strong {
  color: var(--brand-orange);
  font-weight: 700;
}

/* Promo box */
.p-promo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--brand-orange);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-black);
}

.p-promo-box i {
  color: var(--brand-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Features */
.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.p-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-black);
    padding: 2px 0;
}

.p-features li::before {
    display: none; /* supprime la barre CSS */
}

.p-features li i {
    color: var(--brand-orange);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.p-features li strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.4;
}

.p-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-feature-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-black);
}

.p-feature-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Feature non disponible */
.p-feature-off {
  opacity: 0.35;
}

.p-feature-off i {
  color: rgba(255, 255, 255, 0.3) !important;
}

.p-feature-off .p-feature-text strong {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   BOUTONS
   ========================================= */
.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.25s ease;
  border-radius: 0;
}

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  border: 2px solid var(--brand-orange);
}

.btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* =========================================
   DISCLAIMER & LEGAL
   ========================================= */
.pricing-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin: 50px auto 0;
  max-width: 900px;
  width: calc(100% - 3rem);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.pricing-disclaimer a {
  color: var(--link-accent);
  font-weight: var(--fw-extrabold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-legal-notice {
  max-width: 850px;
  margin: 60px auto 0;
  text-align: center;
  padding: 0 20px;
}

.pricing-legal-notice p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 15px;
}

.legal-link {
  color: #F57706;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 119, 6, 0.3);
  transition: text-decoration-color 0.3s ease;
}

.legal-link:hover {
  text-decoration-color: rgba(245, 119, 6, 1);
}

.mt-2 {
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 15px;
}

/* =========================================
   NAVIGATION MOBILE (DOTS + FLÈCHES)
   ========================================= */
.pricing-navigation {
  display: none !important;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.slider-arrow {
  background: transparent;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 15px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.slider-arrow:active,
.slider-arrow:hover {
  color: var(--text-white);
}

.pricing-indicators {
  display: flex;
  gap: 8px;
}

.pricing-indicators .dot {
  display: block;
  width: 20px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: background-color 0.3s ease;
}

.pricing-indicators .dot.active {
  background-color: var(--brand-orange);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
  .home-pricing-section {
    padding: var(--section-padding-y-tablet) 0;
  }

  .pricing-header-elite .section-title {
    font-size: 2.4rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    max-width: 820px;
    gap: 18px;
  }

  .popular-ribbon {
    top: 0;
  }
}

@media (max-width: 768px) {
  .home-pricing-section {
    padding: var(--section-padding-y-mobile) 0;
  }

  .pricing-header-elite {
    margin-bottom: 35px;
    padding: 0 0px;
    text-align: left;
  }

  .pricing-header-elite .section-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 0;
  }

  .pricing-header-elite .section-subtitle {
    max-width: 100%;
    font-size: 0.98rem;
    margin: 0;
  }

  .pricing-toggle-container {
    padding: 0 18px;
  }

    .toggle-wrapper {
        width: 80%;
        max-width: none;
    }

  .pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 20px;
    padding: 0 18px 20px 18px;
    justify-content: flex-start;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-card-elite {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 20px;
  }

  .pricing-card-elite.is-popular .p-card-head {
    margin-top: 36px;
  }

  .p-value {
    font-size: 2.45rem;
  }

  .p-features {
    margin: 16px 0 14px;
    padding-top: 14px;
  }

  .btn-pricing {
    padding: 13px 12px;
  }

  .pricing-disclaimer {
    margin: 2px auto 0;
    width: calc(100% - 2rem);
    padding: 15px 12px;
    font-size: 0.85rem;
  }

  .pricing-navigation {
    display: flex !important;
  }

  .bg-watermark {
    width: 90vw;
    font-size: 13vw;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 420px) {
  .pricing-grid {
    max-width: 100%;
    padding: 0 14px;
  }

  .pricing-card-elite {
    flex: 0 0 100%;
    padding: 18px;
  }

  .p-value {
    font-size: 2.25rem;
  }

  .toggle-wrapper label {
    padding: 11px 12px;
    font-size: 0.85rem;
  }
}

/* =========================
   ACCUEIL — SECTION 3 (EQUIPMENT)
   ========================= */

.equipment-section {
  padding: var(--section-padding-y) 0 calc(var(--section-padding-y) * 1.5);
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

/* ── Numéro déco fond (même traitement que "01") ── */
.equip-bg-number {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 900;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.equip-inner {
  position: relative;
}

/* ── Layout principal ── */
.equip-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ── Colonne gauche ── */
.equip-info {
  flex: 0 0 340px;
  position: relative;
}

.equip-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Titre */
.equip-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin: 0;
}

.equip-title em {
  display: block;
  font-style: normal;
  color: #F57706;
}

/* Description */
.equip-desc {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--text-muted-2);
  margin: 0;
}

/* ── Liste bénéfices ── */
.equip-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-soft);
}

.equip-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition-fast);
}

.equip-benefit-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
  color: var(--brand-orange);
  font-size: 0.85rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.equip-benefit:hover .equip-benefit-icon {
  border-color: var(--brand-orange);
  background: rgba(245, 119, 6, 0.06);
}

.equip-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.equip-benefit-text strong {
  font-size: 0.82rem;
  font-weight: var(--fw-medium);
  color: var(--text-white);
  line-height: 1.2;
}

.equip-benefit-text span {
  font-size: 0.72rem;
  color: var(--text-muted-2);
  line-height: 1.4;
}

/* Scroll hint */
.equip-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: var(--fw-medium);
}

.equip-scroll-hint i {
  font-size: 0.7rem;
  animation: equip-hint-slide 1.8s ease-in-out infinite;
}

@keyframes equip-hint-slide {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50%       { transform: translateX(5px); opacity: 1; }
}

.equip-scroll-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brand-orange);
  flex-shrink: 0;
}

/* ── Galerie ── */
.equip-gallery {
  flex: 1;
  min-width: 0;
  /* masque l'overflow sur les côtés tout en gardant le scroll */
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.equip-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar stylée */
.equip-track::-webkit-scrollbar { height: 3px; }
.equip-track::-webkit-scrollbar-track {
  background: var(--border-soft);
}
.equip-track::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
}

/* ── Carte machine ── */
.equip-card {
  flex: 0 0 280px;
  height: 420px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--border-soft);
  transition: border-color var(--transition-fast), transform 0.35s ease;
  background: var(--bg-dark);
}

.equip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 119, 6, 0.45);
}

.equip-card-img {
  position: absolute;
  inset: 0;
}

.equip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) brightness(0.55);
  transition: transform 0.55s ease, filter 0.35s ease;
}

.equip-card:hover .equip-card-img img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.65);
}

.equip-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%),
    linear-gradient(135deg, transparent 65%, rgba(245,119,6,0.12) 100%);
  pointer-events: none;
}

/* Coin décoratif orange — même signature que section CC */
.equip-card-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--brand-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.equip-card:hover .equip-card-corner {
  opacity: 1;
}

/* Badge + titre */
.equip-card-body {
  position: absolute;
  bottom: 22px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: var(--fw-medium);
  width: fit-content;
}

.equip-badge::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
  animation: cc-blink 2s ease-in-out infinite;
}

.equip-card-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-black);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ── Carte CTA ── */
.equip-card--cta {
  background: var(--brand-orange);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  cursor: default;
}

.equip-card--cta:hover {
  transform: translateY(-6px);
  border-color: transparent;
}

.equip-cta-bg-text {
  position: absolute;
  bottom: -0.2em;
  right: -0.05em;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.1);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.equip-cta-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.equip-cta-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--text-black);
  margin: 0;
}

.equip-cta-title em {
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.7);
  color: transparent;
  display: block;
}

.equip-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-white);
  color: var(--brand-orange);
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 22px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  width: fit-content;
  transition: var(--transition-fast);
}

.equip-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.equip-cta-btn i { transition: transform 0.25s; }
.equip-cta-btn:hover i { transform: translateX(4px); }


/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 992px) {
  .equipment-section { padding: var(--section-padding-y-tablet) 0 calc(var(--section-padding-y-tablet) * 1.4); }

  .equip-layout {
    flex-direction: column;
    gap: 48px;
  }

  .equip-info {
    flex: auto;
    width: 100%;
  }

  .equip-sticky { position: static; }

  .equip-gallery {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .equip-card    { flex: 0 0 260px; height: 380px; }
  .equip-scroll-hint { display: none; }
}

@media (max-width: 768px) {
  .equipment-section { padding: var(--section-padding-y-mobile) 0 calc(var(--section-padding-y-mobile) * 1.4); }

  .equip-card { flex: 0 0 220px; height: 340px; }

  .equip-cta-title { font-size: 1.4rem; }
}

/* =================================================================
   SECTIONS REFONTE — COURS COLLECTIFS + AVIS CLIENTS
   CHM · Design Athletic Editorial
   ================================================================= */

.home-cc-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-section);
  overflow: hidden;
}

/* Numéro décoratif en fond */
.cc-bg-number {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 900;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.cc-inner {
  position: relative;
}

/* Layout grid */
.cc-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

/* ── Eyebrow partagé entre sections ── */
.cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  font-weight: var(--fw-medium);
  margin-bottom: 32px;
}

.cc-eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brand-orange);
  flex-shrink: 0;
}

/* ── Colonne gauche ── */
.cc-info-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  padding-right: 72px;
  border-right: 1px solid var(--border-soft);
}

/* Titre */
.cc-main-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--brand-orange);
  margin: 0;
}

.cc-main-title em {
  display: block;
  font-style: normal;
  color: var(--text-white);
}

/* Description */
.cc-description {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--text-muted-2);
  max-width: 380px;
  margin: 0;
}

/* Stats row */
.cc-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cc-stat {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}

.cc-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
  flex-shrink: 0;
  margin: 0 24px;
}

.cc-stat-v {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.cc-stat-v sup {
  font-size: 0.45em;
  color: var(--brand-orange);
  vertical-align: super;
  font-weight: 900;
}

.cc-stat-u {
  font-size: 0.62rem;
  color: var(--text-muted-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

/* Bouton */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-orange);
  color: var(--text-white);
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.62rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 28px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  width: fit-content;
  transition: var(--transition-fast);
}

.cc-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.cc-btn i {
  transition: transform 0.25s;
}

.cc-btn:hover i {
  transform: translateX(5px);
}

/* ── Colonne droite ── */
.cc-visual-side {
  padding-left: 72px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cadre image */
.cc-img-wrapper {
    position: relative;
    flex: none;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.cc-img {
    width: auto;
    height: auto;
    max-height: 520px; /* ← ajuste cette valeur selon ton goût */
    object-fit: unset;
    display: block;
}

.cc-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%),
    linear-gradient(135deg, transparent 60%, rgba(245,119,6,0.15) 100%);
  pointer-events: none;
}

/* Coin décoratif orange */
.cc-img-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--brand-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.cc-img-meta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cc-img-count {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}

/* Strip disciplines */
.cc-disc-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-soft);
}

.cc-disc {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-right: 1px solid var(--border-soft);
  transition: background var(--transition-fast);
  cursor: default;
}

.cc-disc:last-child {
  border-right: none;
}

.cc-disc:hover {
  background: rgba(245,119,6,0.05);
}

.cc-disc i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cc-disc.cardio i { color: var(--danger-color); }
.cc-disc.renfo  i { color: var(--brand-orange); }
.cc-disc.zen    i { color: var(--success-color); }

.cc-disc-name {
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  color: var(--text-white);
  display: block;
  line-height: 1.1;
}

.cc-disc-sub {
  font-size: 0.58rem;
  color: var(--text-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

/* =================================================================
   SECTION AVIS CLIENTS
   ================================================================= */

.home-reviews-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}

.reviews-inner {
  position: relative;
}

/* Score 4.9 géant en fond */
.rev-bg-score {
  position: absolute;
  top: -0.3em;
  right: -0.04em;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(14rem, 26vw, 24rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-white);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Header section */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.reviews-header-left {
  display: flex;
  flex-direction: column;
}

.reviews-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--text-white);
  margin: 0;
}

.reviews-title em {
  font-style: normal;
  color: var(--brand-orange);
}

.cc-eyebrow-text {
   color: var(--text-white);
}

/* Score bloc */
.reviews-score-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.score-number {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.score-stars {
  color: var(--warning-color);
  font-size: 0.65rem;
  letter-spacing: 3px;
  margin-top: 4px;
}

.score-count {
  font-size: 0.6rem;
  color: var(--text-muted-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Grille cartes */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-soft);
  position: relative;
  z-index: 1;
}

/* Carte avis */
.rev-card {
  position: relative;
  background: var(--bg-section);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border-soft);
  transition: background var(--transition-fast);
  overflow: hidden;
}

.rev-card:last-child {
  border-right: none;
}

.rev-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-orange);
}

/* Guillemet décoratif */
.rev-quote-mark {
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* Texte de l'avis */
.rev-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted-2);
  font-style: italic;
  flex: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Footer de la carte */
.rev-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.rev-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', var(--font-family-heading);
  font-weight: var(--fw-bold);
  font-size: 0.72rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.rev-avatar.av-a { background: var(--brand-orange); }
.rev-avatar.av-b { background: var(--brand-blue); }
.rev-avatar.av-c { background: var(--success-color); color: #111; }
.rev-avatar.av-d { background: #5E35B1; }

.rev-user {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rev-name {
  font-size: 0.73rem;
  font-weight: var(--fw-medium);
  color: var(--text-white);
}

.rev-label {
  font-size: 0.58rem;
  color: var(--text-muted-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rev-stars {
  color: var(--warning-color);
  font-size: 0.55rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* CTA footer */
.reviews-foot {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.reviews-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-soft-2);
  color: var(--text-white);
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.reviews-cta-link:hover {
  border-color: var(--brand-orange);
  color: var(--text-white);
}

.reviews-cta-link i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.reviews-cta-link:hover i {
  transform: translateX(4px);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 992px) {
  .home-cc-section  { padding: var(--section-padding-y-tablet) 0; }

  .cc-grid-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cc-info-side {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 48px;
    gap: 28px;
  }

  .cc-visual-side {
    padding-left: 0;
    padding-top: 48px;
  }

  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .reviews-score-block { text-align: left; align-items: flex-start; }
}

@media (max-width: 768px) {
    .home-cc-section,
    .home-reviews-section { padding: var(--section-padding-y-mobile) 0; }

    /* Fix débordement texte */
    .cc-description {
        max-width: 100%;
    }

    /* Fix stats rognées */
    .cc-stats-row {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
    }

    .cc-stat-sep { display: none; }

    .cc-stat {
        flex: 0 0 auto;
        min-width: 0;
    }

    .cc-stat-v {
        font-size: clamp(1.6rem, 8vw, 2.6rem);
    }

    .cc-stat-u {
        font-size: 0.58rem;
        white-space: normal;
        max-width: 70px;
    }

    /* Fix image */
    .cc-img {
        width: 100%;
        max-height: none;
        object-fit: unset;
    }

    .cc-disc-strip  { grid-template-columns: 1fr; }
    .cc-disc        { border-right: none; border-bottom: 1px solid var(--border-soft); }
    .cc-disc:last-child { border-bottom: none; }

    .cc-btn { width: 100%; justify-content: center; }

    .reviews-grid   { grid-template-columns: 1fr; }
    .rev-card       { border-right: none; border-bottom: 1px solid var(--border-soft); }
    .rev-card:last-child { border-bottom: none; }
}

/* =========================
   ACCUEIL — SECTION 5 (ESPACES D'ENTRAÎNEMENT)
   ========================= */

.home-cinematic-section {
  padding: var(--section-padding-y) 0 0 0;
  background: var(--bg-dark);
}

/* ── HEADER ─────────────────────────────────────────── */

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 44px;
  margin-bottom: 48px;
  text-align: left;
}

.container-header-left {
  display: flex;
  flex-direction: column;
}

/* Eyebrow tag — cohérent avec .cc-eyebrow */
.cinematic-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: var(--fw-medium);
  margin-bottom: 16px;
}

.cinematic-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-orange);
  animation: cinematic-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes cinematic-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.cinematic-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var( --brand-orange);
  margin-bottom: 0;
}

.cinematic-title .text-outline {
  display: block;
  font-style: normal;
  color: #fff;
}

.cinematic-subtitle {
  font-size: var(--fs-body-sm);
  color: var(--text-muted-1);
  font-weight: var(--fw-regular);
  margin-top: 10px;
  letter-spacing: 0.5px;
  line-height: var(--lh-body);
}

/* Hint hover — côté droit du header */
.cinematic-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted-1);
  font-weight: var(--fw-medium);
  align-self: flex-end;
}

.cinematic-hint-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

/* ── PANELS CONTAINER ───────────────────────────────── */

.cinematic-container {
  display: flex;
  height: 620px;
  width: 100%;
  overflow: hidden;
  gap: 2px;
}

.cinematic-panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 44px 40px;
  text-decoration: none;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  cursor: pointer;
}

.cinematic-panel:hover {
  flex: 2;
}

/* ── BACKGROUND IMAGE ───────────────────────────────── */

.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.6s ease;
  z-index: 1;
  filter: grayscale(30%) brightness(0.55);
}

.cinematic-panel:hover .panel-bg {
  transform: scale(1.06);
  filter: grayscale(10%) brightness(0.5);
}

.panel-bg-haltero {
  background-image: url('/images/nos_pratiques/halterophilie/1.jpg');
}

.panel-bg-muscu {
  background-image: url('/images/nos_pratiques/musculation/histoire-club.jpg');
}

/* ── OVERLAY ────────────────────────────────────────── */

.panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    transparent 100%
  );
  transition: background 0.6s ease;
}

.cinematic-panel:hover .panel-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.50) 60%,
    rgba(245, 119, 6, 0.08) 100%
  );
}

/* ── ACCENT BAR (orange, animate from bottom) ───────── */

.panel-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-orange);
  z-index: 4;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cinematic-panel:hover .panel-accent {
  transform: scaleY(1);
}

/* ── INDEX (top-right) ──────────────────────────────── */

.panel-index {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition-fast);
}

.cinematic-panel:hover .panel-index {
  color: rgba(255, 255, 255, 0.5);
}

/* ── PANEL CONTENT ──────────────────────────────────── */

.panel-content {
  position: relative;
  z-index: 3;
  color: var(--text-white);
  width: 100%;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.panel-number {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: 3px;
  color: var(--brand-orange);
  margin-right: 16px;
  opacity: 0.7;
}

.panel-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 16px;
  font-weight: var(--fw-medium);
}

.panel-content h3 {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 0;
  transition: transform 0.4s ease;
}

.cinematic-panel:hover .panel-content h3 {
  transform: translateY(-4px);
}

/* Description — animée avec max-height (pas display:none) */
.panel-desc {
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  color: var(--text-muted-1);
  font-weight: var(--fw-regular);
  max-width: 400px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.5s ease,
              opacity    0.4s ease,
              margin     0.3s ease;
}

.cinematic-panel:hover .panel-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 24px;
}

/* CTA */
.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity  0.4s ease 0.1s,
              transform 0.4s ease 0.1s;
}

.btn-discover i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.cinematic-panel:hover .btn-discover {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-panel:hover .btn-discover:hover i {
  transform: translateX(4px);
}

/* ── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 992px) {
  .home-cinematic-section {
    padding: var(--section-padding-y-tablet) 0 0 0;
  }

  .cinematic-container {
    height: 540px;
  }

  .container-header {
    padding: 0 28px;
  }
}

@media (max-width: 768px) {
  .home-cinematic-section {
    padding: var(--section-padding-y-mobile) 0 0 0;
  }

  .container-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .cinematic-hint {
    display: none;
  }

  .cinematic-container {
    flex-direction: column;
    height: auto;
    gap: 2px;
  }

  .cinematic-panel {
    flex: none !important;
    height: 340px;
    padding: 28px 24px;
  }

  .cinematic-panel:hover {
    flex: none !important;
  }

  /* Tout visible par défaut sur mobile */
  .panel-desc {
    max-height: 120px !important;
    opacity: 1 !important;
    margin-top: 14px !important;
    margin-bottom: 18px !important;
  }

  .btn-discover {
    opacity: 1 !important;
    transform: none !important;
  }

  .panel-accent {
    transform: scaleY(1) !important;
  }

  .panel-content h3 {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .cinematic-panel {
    height: 300px;
    padding: 22px 20px;
  }

  .panel-content h3 {
    font-size: 1.5rem;
  }

  .panel-desc {
    font-size: 0.82rem;
  }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .cinematic-panel,
  .cinematic-panel:hover {
    flex: none !important;
  }

  .cinematic-panel:hover .panel-bg {
    transform: none !important;
    filter: grayscale(30%) brightness(0.55) !important;
  }

  .panel-desc {
    max-height: 120px !important;
    opacity: 1 !important;
    margin-top: 14px !important;
    margin-bottom: 18px !important;
  }

  .btn-discover {
    opacity: 1 !important;
    transform: none !important;
  }

  .panel-accent {
    transform: scaleY(1) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-panel,
  .panel-bg,
  .panel-overlay,
  .panel-accent,
  .panel-desc,
  .btn-discover,
  .panel-content h3 {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================
   ACCUEIL — SECTION 6 (APP)
   ========================= */

.home-app-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}

/* Numéro déco fond — 03 */
.app-bg-number {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 900;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.app-inner {
  position: relative;
}

/* ── Layout ── */
.app-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 640px;
}

/* On cible l'eyebrow spécifiquement dans la section info de l'app */
.app-info-side .cc-eyebrow {
  color: var(--text-white); /* Ou une couleur sombre pour qu'il soit visible */
  margin-bottom: 0;         /* Optionnel : pour ajuster l'espace avec le titre */
}

/* Si tu veux aussi que la ligne soit plus visible ou d'une autre couleur */
.app-info-side .cc-eyebrow-line {
  background: var(--brand-orange); 
  opacity: 1;
}

/* =================================================================
   COLONNE TEXTE
   ================================================================= */

.app-info-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Badge statut */
.app-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  width: fit-content;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  font-weight: var(--fw-medium);
}

.app-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
  animation: cc-blink 2s ease-in-out infinite;
}

/* Titre */
.app-main-title {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--brand-orange);
  margin: 0;
}

.app-main-title em {
  display: block;
  font-style: normal;
  color: var(--text-white);
}

/* Description */
.app-description {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--text-white);
  max-width: 440px;
  margin: 0;
}

/* ── Liste bénéfices ── */
.app-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-soft);
}

.app-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.84rem;
  color: var(--text-white);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.app-benefits li:hover {
  color: var(--text-white);
}

.app-benefit-bullet {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.app-benefits li:hover .app-benefit-bullet {
  transform: translateX(3px);
}

/* ── Stores ── */
.app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-soft);
  padding: 13px 20px;
  opacity: 0.5;
  cursor: not-allowed;
  transition: var(--transition-fast);
  min-width: 180px;
}

.app-store-btn i {
  font-size: 1.5rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-store-top {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
}

.app-store-bottom {
  font-family: 'Unbounded', var(--font-family-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

/* =================================================================
   COLONNE VISUELLE
   ================================================================= */

.app-visual-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
}

/* Lignes de grille déco en fond */
.app-grid-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  z-index: 0;
}

.app-grid-lines span {
  border-left: 1px solid var(--border-soft);
  opacity: 0.5;
}

.app-grid-lines span:last-child {
  border-right: 1px solid var(--border-soft);
}

/* Halo orange */
.app-halo {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,119,6,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ── Mockup téléphone ── */
.app-phone-frame {
  position: absolute; /* ← sort du flux */
  width: 1500px;       /* ← monte autant que tu veux */
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.app-phone-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}

/* Coin signature orange */
.app-phone-corner {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 44px;
  height: 44px;
  background: var(--brand-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 1200px) {
  .app-grid-layout  { gap: 56px; }
  .app-phone-frame  { width: 360px; }
  .app-visual-side  { min-height: 580px; }
  .app-halo         { width: 380px; height: 380px; }
}

@media (max-width: 992px) {
  .home-app-section { padding: var(--section-padding-y-tablet) 0; }

  .app-grid-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .app-info-side {
    align-items: center;
    text-align: center;
  }

  .app-description { max-width: 600px; }

  .app-benefits {
    width: min(100%, 500px);
    text-align: left;
  }

  .app-stores { justify-content: center; }

  .app-visual-side {
    width: 100%;
    min-height: 500px;
    order: -1;
  }

  .app-phone-frame  { width: 300px; }
  .app-halo         { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .home-app-section { padding: var(--section-padding-y-mobile) 0; }

  .app-stores {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 300px);
  }

  .app-store-btn { min-width: 0; width: 100%; }

  .app-visual-side  { min-height: 420px; }
  .app-phone-frame  { width: 240px; }
  .app-halo         { width: 260px; height: 260px; }
  .app-grid-lines   { display: none; }
}

@media (max-width: 480px) {
  .app-visual-side  { min-height: 350px; }
  .app-phone-frame  { width: 190px; }
  .app-halo         { width: 200px; height: 200px; }
}

/* =========================
   ACCUEIL — SECTION (NEWS + FAQ)
   ========================= */

.home-news-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-section);
}

.header-text h2{
  color: var(--brand-orange) !important;
}

.section-header-elite {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-top: 20px;
}

.btn-link-all {
  color: var(--text-white);
  text-decoration: none;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.btn-link-all:hover {
  border-color: var(--brand-orange);
  gap: 15px;
}

.news-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Supprime l'ancienne card-info */
.card-info { display: none; }

/* Card full-image */
.news-card-minimal {
  background: transparent;
  border: none;
  overflow: hidden;
  transition: var(--transition-base);
}

.news-card-minimal:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-anchor {
  text-decoration: none !important;
  display: block;
}

.card-img-container {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.news-card-minimal:hover img {
  transform: scale(1.06);
}

/* Gradient sombre en bas */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.60) 40%,
    rgba(0, 0, 0, 0.10) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
}

.info-date {
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-title {
  font-size: 1rem;
  font-weight: var(--fw-extrabold);
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-excerpt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 14px;
  display: block;
}

.info-more {
  color: var(--brand-orange);
  font-size: 0.75rem;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.empty-news-minimal {
  color: var(--subtitle-color);
  padding: 40px 0;
}

/* FAQ */
.home-faq-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-section);
}

.faq-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.sticky-content { position: sticky; top: 120px; }

.faq-main-desc { color: var(--subtitle-color); margin: 25px 0 40px; font-size: 1.1rem; line-height: var(--lh-body); }

.faq-contact-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--brand-orange);
  border-top: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.faq-main-title{
  color: var(--brand-orange);
}

.faq-contact-card h4 { color: var(--text-black); }
.faq-contact-card p  { color: var(--text-black); }

.btn-elite-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: var(--text-black);
  padding: 12px 25px;
  text-decoration: none;
  font-weight: var(--fw-extrabold);
  margin-top: 20px;
  transition: var(--transition);
}

.btn-elite-contact:hover { transform: scale(1.05); filter: brightness(1.1); }

/* ACCORDION */
.faq-elite-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-elite-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  cursor: pointer;
  text-align: left;
}

.q-text { font-size: 1.25rem; font-weight: var(--fw-bold); transition: var(--transition); }
.q-icon {
  width: 35px; height: 35px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--text-white);
  flex-shrink: 0;
}

.faq-elite-item.active .q-text { color: var(--brand-orange); }
.faq-elite-item.active .q-icon { background: var(--brand-orange); border-color: var(--brand-orange); transform: rotate(45deg); }

.faq-elite-content {
  max-height: 0;
  overflow: hidden;
}

.faq-elite-item.active .faq-elite-content {
  max-height: 1000px;
}

.inner-text { padding-bottom: 30px; color: var(--subtitle-color); line-height: 1.8; font-size: 1.05rem; }

.faq-footer-link { margin-top: 40px; }
.faq-footer-link a { color: var(--text-white); text-decoration: none; font-weight: var(--fw-bold); display: flex; align-items: center; gap: 15px; }

/* Responsive news/faq */
@media (max-width: 1200px) {
  .faq-grid-layout { gap: 40px; }
  .faq-main-title { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .home-news-section { padding: var(--section-padding-y-tablet) 0; }
  .home-faq-section  { padding: var(--section-padding-y-tablet) 0; }

  .news-grid-home    { grid-template-columns: repeat(2, 1fr); }
  .faq-grid-layout   { grid-template-columns: 1fr; }
  .sticky-content    { position: relative; top: 0; }
  .section-header-elite { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 600px) {
  .home-news-section { padding: var(--section-padding-y-mobile) 0; }
  .home-faq-section  { padding: var(--section-padding-y-mobile) 0; }

  .news-grid-home    { grid-template-columns: 1fr; }
  .card-img-container { height: 220px; }
  .faq-main-title    { font-size: 2.2rem; }
}

/* ACCESSIBILITÉ GLOBALE */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════


/* ═══════════════════════════════════════════════════════════════
   HERO SLIDER — VUE VISITEUR
   ═══════════════════════════════════════════════════════════════ */

/* ─ Conteneur global ─ */
.hero-section {
  position: relative;
  margin-top: -42px;
  height: 85vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
}

/* ─ Slides photos ─ */
.slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.slide.active { opacity: 1; }

/* ─ Overlay sombre ─ */
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

/* ─ Filigrane "CHM SALEUX" ─ */
.slider-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  z-index: 2;
  line-height: 1;
}

/* ─ Contenu bas-gauche ─ */
.slider-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 4;
  max-width: 680px;
}

/* Tag "Saleux · Depuis 1998" */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
  display: inline-block;
}

/* Titre */
@keyframes hero-white-flash {
  0%   { opacity: 0.85; }
  100% { opacity: 0; }
}
@keyframes hero-slide-from-left {
  from { opacity: 0; transform: translateX(-1300px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hero-slide-from-right {
  from { opacity: 0; transform: translateX(1300px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 20;
  pointer-events: none;
  animation: hero-white-flash 0.35s ease-out forwards;
}

.slider-title {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  animation: hero-slide-from-left 0.8s ease-out 0.2s both;
}
.slider-title-accent {
  color: var(--brand-orange);
}

/* Sous-titre */
.slider-subtitle {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
  animation: hero-slide-from-right 0.8s ease-out 0.2s both;
}

/* CTAs */
.slider-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-cta-primary:hover {
  background: #d96800;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(245,119,6,0.45);
}
.hero-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero-cta-white:hover {
  background: rgba(255,255,255,0.85);
}

.slider-cta-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.slider-cta-play:hover { color: #fff; }

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.slider-cta-play:hover .play-btn {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
}

/* ─ Barre de stats en bas ─ */
.slider-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  height: 80px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-stats-bar.stats-visible {
  opacity: 1;
  transform: translateY(0);
}

.slider-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 16px;
}

.slider-stat-num {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}

.slider-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.slider-stat-div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 16px 0;
}

/* ─ Dots de navigation ─ */
.slider-dots {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.slider-dot {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.35);
  font-size: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--brand-orange);
  width: 40px;
}

/* ─ Badge FFHM (positionné bas-gauche au-dessus stats bar) ─ */
.hero-section .badge-ffhm {
  position: absolute;
  bottom: 100px;
  left: 5.3%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  z-index: 5;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.hero-section .badge-ffhm:hover { opacity: 1; }

.badge-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.46rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.badge-ffhm img { height: 26px; width: auto; min-height: 26px; }

/* ─ Overlay gradient hero v2 (vue connectée) ─ */
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

/* ─ Responsive ─ */
@media (max-width: 900px) {
  .slider-dots { right: 3%; }
  .slider-watermark { font-size: clamp(2rem, 14vw, 170px); }
}
@media (max-width: 768px) {
  .slider-content { bottom: 120px; left: 5%; right: 5%; }
  .slider-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .slider-cta { flex-direction: column; gap: 14px; }
  .hero-cta-primary { width: 100%; justify-content: center; }
  .slider-dots { display: none; }
  .slider-stats-bar { display: none; }
  .hero-section .badge-ffhm { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   SECTION SERVICES — NOS ACTIVITÉS
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   DISCIPLINES — PANNEAUX ACCORDÉON HORIZONTAL
   ══════════════════════════════════════════════════════ */

.disciplines-section {
  background: #161616;
  padding: 230px 0 0;
  position: relative;
  overflow: hidden;
}

/* ── Vidéo brume ── */
.disc-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 85%, transparent 100%);
}

/* ── Filigrane NOS PRATIQUES ── */
@keyframes disc-watermark-rise {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.disc-watermark {
  position: absolute;
  top: 40px;
  left: 5%;
  transform: translateY(80px);
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.05);
  text-align: left;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 0.92;
  z-index: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.disc-watermark.is-visible {
  animation: disc-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* ── Dots carousel disciplines (tablette only) ── */
.disc-carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 40px;
}

.disc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.disc-dot--active {
  background: #F57706;
  transform: scale(1.3);
}

/* ── Header ── */
.disciplines-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5% 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.disc-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.disc-affiliation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.disc-affiliation-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.disc-badge-ffhm {
  height: 80px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.disc-badge-ffhm:hover {
  opacity: 1;
}

.disc-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 18px;
}

.disc-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--brand-orange);
  flex-shrink: 0;
}

.disc-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
}

.disc-line-1,
.disc-title .disc-title-outline {
  display: block;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}

.disc-title.is-visible .disc-line-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.disc-title.is-visible .disc-title-outline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .disc-line-1,
  .disc-title .disc-title-outline {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.disc-title-outline {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Panneaux ── */
.disciplines-panels {
  display: flex;
  height: 72vh;
  min-height: 520px;
  gap: 12px;
  background: #161616;
  overflow: hidden;
  padding: 0 5% 80px;
}

/* Grande carte gauche (Haltérophilie) */
.disc-panel--large {
  flex: 2;
}

/* Groupe droit : deux cartes empilées */
.disc-panel-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disc-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Background image */
.disc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.disc-panel:hover .disc-bg {
  transform: scale(1.04);
}

/* Overlay */
.disc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
  transition: background 0.5s;
}
.disc-panel:hover .disc-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

/* Grand numéro en filigrane */
.disc-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  line-height: 1;
  z-index: 1;
  transition: opacity 0.4s, -webkit-text-stroke-color 0.4s;
  user-select: none;
}
.disc-panel:hover .disc-num {
  -webkit-text-stroke-color: rgba(245, 119, 6, 0.35);
}

/* Contenu texte */
.disc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.disc-name {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 0;
  white-space: nowrap;
  transition: margin-bottom 0.35s ease;
}
.disc-panel:hover .disc-name {
  margin-bottom: 14px;
}

/* Contenu révélé au hover */
.disc-reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease 0.1s;
}
.disc-panel:hover .disc-reveal {
  max-height: 120px;
  opacity: 1;
}

.disc-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0 0 16px;
}

.disc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  transition: gap 0.2s;
}
.disc-panel:hover .disc-cta {
  gap: 12px;
}

/* ── Responsive disciplines ── */
@media (max-width: 900px) {
  /* Padding-top assez grand pour que le filigrane 2 lignes soit visible avant les cards */
  .disciplines-section { padding: 210px 0 0; }

  .disciplines-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 5% 24px;
  }

  .disc-header-right { align-items: flex-start; }

  .disc-badge-ffhm { height: 56px; }

  /* Filigrane : 2 lignes, taille réduite */
  .disc-watermark {
    white-space: normal;
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 0.88;
    max-width: 55%;
    top: 60px;
  }

  /* Carousel horizontal — 1 card par slide avec gutter */
  .disciplines-panels {
    flex-direction: row;
    height: 380px;
    min-height: unset;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-gutter-tablet, 4%);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 var(--page-gutter-tablet, 4%);
  }
  .disciplines-panels::-webkit-scrollbar { display: none; }

  /* Chaque slide = viewport - 2 gutters → 1 card bien cadrée */
  .disc-panel--large,
  .disc-panel-group .disc-panel {
    flex: 0 0 92%;
    height: 380px;
    scroll-snap-align: start;
    margin: 0;
  }

  /* Le groupe transparent, ses enfants sont les slides directs */
  .disc-panel-group {
    display: contents;
  }

  /* Dots visibles */
  .disc-carousel-dots { display: flex; }

  /* Description toujours visible */
  .disc-name { margin-bottom: 12px !important; }
  .disc-reveal {
    max-height: 120px !important;
    opacity: 1 !important;
  }

  .disc-num { font-size: 4rem; }
}

@media (max-width: 480px) {
  .disciplines-section { padding: 150px 0 0; }

  /* Filigrane */
  .disc-watermark {
    white-space: normal;
    font-size: clamp(2rem, 14vw, 170px);
    line-height: 0.88;
    max-width: 75%;
    top: 20px;
  }

  /* Annuler le carousel tablette → retour empilement vertical */
  .disciplines-panels {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    height: auto;
    gap: 10px;
    padding: 0 5% 40px;
  }

  /* Rétablir disc-panel-group en flex colonne normal */
  .disc-panel-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
  }

  .disc-panel--large {
    flex: none;
    height: 220px;
    scroll-snap-align: none;
    margin: 0;
  }

  .disc-panel-group .disc-panel {
    flex: none;
    height: 220px;
    scroll-snap-align: none;
    margin: 0;
  }

  /* Masquer les dots sur mobile */
  .disc-carousel-dots { display: none; }

  .disc-title { font-size: clamp(2rem, 9vw, 3rem); }
}


/* ═══════════════════════════════════════════════════════════════
   SECTION CTA — FERMETURE DE PAGE
   ═══════════════════════════════════════════════════════════════ */

.home-cta-section {
  position: relative;
  padding: 44px 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.home-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}

.home-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  padding: 0 5%;
}

.home-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.home-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: inline-block;
}

.home-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
}

.home-cta-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.home-cta-btn:hover {
  background: #d96800;
  box-shadow: 0 10px 30px rgba(245,119,6,0.45);
}

@media (max-width: 768px) {
  .home-cta-section { padding: 48px 0; }
  .home-cta-btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   BACKGROUNDS DES SLIDES (hors inline style — CSP compliance)
   ═══════════════════════════════════════════════════════════════ */
.slide-1 { background-image: url('/images/club/1.jpg'); }
.slide-2 { background-image: url('/images/club/3.jpg'); }
.slide-3 { background-image: url('/images/club/4.jpg'); }
.slide-4 { background-image: url('/images/club/club1.jpg'); }

@media (max-width: 768px) {
  .slide-1 { background-image: url('/images/club/robert.jpg'); opacity: 1 !important; }
  .slide-2, .slide-3, .slide-4 { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BACKGROUNDS DES CARTES SERVICES (CSP compliance)
   ═══════════════════════════════════════════════════════════════ */
.svc-musculation   { background-image: url('/images/nos_pratiques/musculation/histoire-club.jpg'); }
.svc-halterophilie { background-image: url('/images/nos_pratiques/halterophilie/1.jpg'); }
.svc-cours         { background-image: url('/images/menu_dropdown/services_du_club/cours_collectifs/cours-co.jpg'); }
.svc-sauna         { background-image: url('/images/sauna.jpg'); }

/* ═══════════════════════════════════════════════════════════════
   BACKGROUND SECTION CTA (CSP compliance)
   ═══════════════════════════════════════════════════════════════ */
.home-cta-bg { background-image: url('/images/cta-banner.jpg'); }


/* ═══════════════════════════════════════════════════════════════
   SECTION COURS COLLECTIFS
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   SYSTÈME HOME — épuré / pro
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
.hm-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F57706;
  display: block;
  margin-bottom: 14px;
}

.hm-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0a0a0a;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hm-title--light { color: #fff; }
.hm-orange { color: #F57706; }

.hm-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  margin: 0 0 32px;
  max-width: 420px;
}

.hm-text--light { color: rgba(255,255,255,0.45); }

.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 0;
  transition: all 0.2s;
}

.hm-btn--dark {
  background: #0a0a0a;
  color: #fff;
}
.hm-btn--dark:hover { background: #F57706; }

.hm-btn--orange {
  background: #F57706;
  color: #fff;
}
.hm-btn--orange:hover { background: #d96800; }

.hm-btn--outline {
  background: transparent;
  color: #0a0a0a;
  border: 1.5px solid rgba(0,0,0,0.2);
}
.hm-btn--outline:hover { border-color: #0a0a0a; }

.hm-btn i { font-size: 0.75rem; transition: transform 0.2s; }
.hm-btn:hover i { transform: translateX(3px); }

/* ── Cours Collectifs ── */
/* ── Bande fine gauche ── */
.hm-cc-band {
  position: absolute;
  left: 0;
  width: 34%;
  top: 0;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 8% 40px 10%;
  z-index: 2;
  gap: 20px;
}
.hm-cc-band-num {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hm-cc-band-divider {
  width: 32px;
  height: 2px;
  background: #F57706;
}
.hm-cc-band-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}
.hm-cc-band-days {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.hm-cc-band-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.hm-cc-band-day i { font-size: 0.4rem; }
.hm-cc-band-day--on { color: rgba(255,255,255,0.7); }
.hm-cc-band-day--on i { color: #F57706; }
.hm-cc-band-stat-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hm-cc-band-stat-row strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.03em;
}
.hm-cc-band-stat-row span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CC inner layout ── */
.hm-cc-inner {
  display: block;
}
.hm-cc-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hm-cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hm-cc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 6px 12px;
  border-radius: 100px;
}
.hm-cc-tag i { color: #F57706; font-size: 0.65rem; }

/* ── CC watermark ── */
.hm-cc-watermark {
  display: block;
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  text-align: left;
  padding-left: 4px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(50px);
  transition: none;
}
.hm-cc-watermark.is-visible {
  animation: cc-watermark-rise 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes cc-watermark-rise {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CC Instagram block — style ON AIR ── */
.hm-cc-insta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-cc-insta-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.hm-cc-insta-eyebrow i {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hm-cc-insta-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}
.hm-cc-insta-handle {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 900;
  color: rgba(0,0,0,0.18);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.hm-cc-insta-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-cc-insta-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.hm-cc-insta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hm-cc-insta-profile-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0a0a0a;
}
.hm-cc-insta-profile-info > span {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45);
  display: block;
  margin-top: 2px;
}
.hm-cc-insta-stats-row {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.hm-cc-insta-stats-row span {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.55);
}
.hm-cc-insta-stats-row strong {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0a0a0a;
  display: inline;
}
.hm-cc-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.hm-cc-insta-post {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
}
.hm-cc-insta-post img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hm-cc-insta-post:hover img { transform: scale(1.05); }
.hm-cc-insta-post-info {
  padding: 8px 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hm-cc-insta-caption {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(0,0,0,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hm-cc-insta-desc {
  font-size: 0.62rem;
  color: rgba(0,0,0,0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.hm-cc-insta-stats {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.38);
}
.hm-cc-insta-stats i { color: #e0405a; }
.hm-cc-insta-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hm-cc-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F57706;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.hm-cc-insta-btn i { font-size: 1.2em; }
.hm-cc-insta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── CC WhatsApp block ── */
.hm-cc-wa {
  background: #f9f9f7;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-cc-wa-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}
.hm-cc-wa-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.2;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin: 0;
}
.hm-cc-wa-title span {
  color: #25D366;
}
.hm-cc-wa-desc {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.65;
  margin: 0;
}
.hm-cc-wa-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-cc-wa-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(0,0,0,0.65);
}
.hm-cc-wa-perks li i {
  color: #25D366;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hm-cc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}
.hm-cc-wa-btn i { font-size: 1rem; }
.hm-cc-wa-btn:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ── Cours collectifs zone blanche droite ── */
.hm-cc {
  position: absolute;
  top: 60px;
  left: 38%;
  right: 5%;
  z-index: 2;
}

.hm-cc-img-col {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 460px;
}

.hm-cc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hm-cc:hover .hm-cc-img { transform: scale(1.03); }

.hm-cc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ── App Mobile — fond noir ── */
.hm-app {
  background: #0d0d0d;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hm-app-content {
  padding: 80px 5%;
}

.hm-app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hm-app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.hm-app-features li i { color: #F57706; font-size: 0.7rem; flex-shrink: 0; }

.hm-app-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 48px;
  overflow: hidden;
}

.hm-app-mockup {
  max-height: 440px;
  width: auto;
  object-fit: contain;
}

/* ── Équipements — fond blanc, scroll horizontal épuré ── */
/* ── Section unifiée : cours collectifs + équipements ── */
@keyframes club-watermark-rise {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hm-club-watermark {
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  transform: translateY(80px);
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0,0,0,0.07);
  text-align: left;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 0.92;
  z-index: 1;
  opacity: 0;
}
.hm-club-watermark.is-visible {
  animation: club-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hm-club-watermark-indent {
  display: block;
  text-align: right;
}

.hm-club {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.hm-equip {
  position: relative;
  padding: 60px 5% 80px;
  overflow: hidden;
  background: #161616;
}

.hm-equip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
}

.hm-equip-watermark {
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.055);
  letter-spacing: -0.03em;
  line-height: 0.92;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;
}
.hm-equip-watermark.is-visible {
  animation: club-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hm-equip-arrows {
  position: absolute;
  top: 30px;
  right: 5%;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hm-equip-intro {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 680px;
}

.hm-equip-arrows { display: flex; gap: 8px; }

.hm-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.hm-arrow:hover { background: #F57706; border-color: #F57706; color: #fff; }

.hm-equip-wrap {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  margin-top: 200px;
  user-select: none;
}

.hm-equip-wrap::-webkit-scrollbar { display: none; }
.hm-equip-wrap.is-grabbing { cursor: grabbing; }

.hm-equip-track {
  display: flex;
  gap: 16px;
  /* pas de transition transform — scroll natif */
}

.hm-equip-card {
  flex: 0 0 260px;
  height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hm-equip-card.is-active { flex: 0 0 380px; }

.hm-equip-card-img {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75);
  transition: transform 0.55s ease, filter 0.35s ease;
}

.hm-equip-card.is-active .hm-equip-card-img { filter: brightness(0.75); }
.hm-equip-card:hover .hm-equip-card-img { transform: scale(1.03); }

.hm-equip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}

.hm-equip-card-body {
  position: absolute;
  bottom: 18px;
  left: 16px;
  z-index: 2;
}

.hm-equip-badge {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F57706;
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.hm-equip-card.is-active .hm-equip-badge { opacity: 1; }

.hm-equip-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.hm-equip-card.is-active .hm-equip-card-name { font-size: 1.15rem; }

.hm-equip-empty { color: rgba(255,255,255,0.3); font-size: 0.9rem; }

/* ── Partenaires — fond blanc, logos épurés ── */
.hm-partners {
  background: #fff;
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}

@keyframes partners-watermark-rise {
  from { opacity: 0; transform: translate(-50%, 60px); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.hm-partners-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 60px);
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0,0,0,0.05);
  letter-spacing: -0.03em;
  line-height: 0.92;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.hm-partners-watermark.is-visible {
  animation: partners-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* ── Carousel étroit centré ── */
.hm-partners-carousel {
  width: 1400px;
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}

.hm-partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-scroll 30s linear infinite;
}

.hm-partners-track:hover { animation-play-state: paused; }

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

.hm-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hm-partner-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.9;
}

.hm-partner-logo:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hm-cc { grid-template-columns: 1fr; gap: 32px; padding: 60px 5%; }
  .hm-cc-img-col { height: 260px; }
  .hm-cc-content { align-items: flex-start; }

  .hm-app { grid-template-columns: 1fr; }
  .hm-app-content { padding: 48px 5% 24px; }
  .hm-app-visual { padding: 0 5% 40px; justify-content: flex-start; }
  .hm-app-mockup { max-height: 220px; }

  .hm-equip { padding: 60px 0 60px 5%; }
  .hm-equip-head { padding-right: 5%; }
  .hm-equip-card { flex: 0 0 200px; height: 280px; }
  .hm-equip-card.is-active { flex: 0 0 280px; }

  .hm-partners { padding: 40px 0; }
  .hm-partner-logo { height: 44px; }
}

@media (max-width: 480px) {
  .hm-title { font-size: 1.6rem; }
  .hm-equip-card { flex: 0 0 170px; height: 240px; }
  .hm-equip-card.is-active { flex: 0 0 220px; }
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE — système commun Cours Co + Équipements
   ═══════════════════════════════════════════════════════════════ */

.showcase-section {
  background: #111;
  padding: 72px 5%;
}

.showcase-section--equip {
  padding-top: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── Header ── */
.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.showcase-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.showcase-eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--brand-orange);
  flex-shrink: 0;
}

.showcase-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
  margin: 0;
}

.showcase-title-accent { color: var(--brand-orange); }

/* ── Flèches (équipements) ── */
.showcase-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-self: flex-end;
}

.showcase-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.showcase-arrow:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

/* ── Grande card Cours Co ── */
.showcase-feature {
  display: block;
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
}

.showcase-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.showcase-feature:hover .showcase-feature-img {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.showcase-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.showcase-feature-content {
  position: absolute;
  bottom: 32px;
  left: 36px;
  z-index: 2;
}

.showcase-feature-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
  max-width: 480px;
  line-height: 1.6;
}

.showcase-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  transition: gap 0.2s, border-color 0.2s, color 0.2s;
}

.showcase-feature:hover .showcase-feature-cta {
  gap: 16px;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* ── Carousel Équipements ── */
.showcase-carousel-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
}

.showcase-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Card équipement ── */
.showcase-card {
  flex: 0 0 300px;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.3s, flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-card.is-active {
  flex: 0 0 440px;
  border-color: rgba(245,119,6,0.35);
}

.showcase-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.showcase-card.is-active .showcase-card-img { filter: brightness(0.7); }
.showcase-card:hover .showcase-card-img { transform: scale(1.04); }

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

.showcase-card-body {
  position: absolute;
  bottom: 22px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-orange);
  width: fit-content;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.showcase-card.is-active .showcase-badge {
  opacity: 1;
  transform: translateY(0);
}

.showcase-badge::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}

.showcase-card-name {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  transition: font-size 0.3s;
}

.showcase-card.is-active .showcase-card-name { font-size: 1.3rem; }

.showcase-empty {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  padding: 40px 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .showcase-section { padding: 56px 5%; }
  .showcase-section--equip { padding-top: 0; }
  .showcase-feature { height: 300px; }
  .showcase-feature-content { left: 20px; bottom: 20px; }
  .showcase-card { flex: 0 0 220px; height: 300px; }
  .showcase-card.is-active { flex: 0 0 300px; }
}

@media (max-width: 480px) {
  .showcase-title { font-size: 1.8rem; }
  .showcase-feature { height: 240px; }
  .showcase-card { flex: 0 0 180px; height: 260px; }
  .showcase-card.is-active { flex: 0 0 240px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION CTA — FERMETURE DE PAGE
   ═══════════════════════════════════════════════════════════════ */

.home-cta-section {
  position: relative;
  padding: 44px 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 10%;
}

.home-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}

.home-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  padding: 0 5%;
}

.home-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.home-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: inline-block;
}

.home-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.home-cta-sub {
  font-size: 0.82rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.home-cta-btn:hover {
  background: rgba(255,255,255,0.82);
  color: #0a0a0a;
  box-shadow: none;
}

@media (max-width: 768px) {
  .home-cta-section { padding: 48px 0; }
  .home-cta-btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   BACKGROUNDS DES SLIDES (hors inline style — CSP compliance)
   ═══════════════════════════════════════════════════════════════ */
.slide-1 { background-image: url('/images/club/1.jpg'); }
.slide-2 { background-image: url('/images/club/jeanne.jpg'); background-position: center 20%; }
.slide-3 { background-image: url('/images/club/test.jpg'); background-position: center 25%;}
.slide-4 { background-image: url('/images/club/bg.jpg'); }

@media (max-width: 768px) {
  .slide-1 { background-image: url('/images/club/robert.jpg') !important; background-size: cover !important; background-position: center top !important; opacity: 1 !important; }
  .slide-2, .slide-3, .slide-4 { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BACKGROUNDS DES CARTES SERVICES (CSP compliance)
   ═══════════════════════════════════════════════════════════════ */
.svc-musculation   { background-image: url('/images/nos_pratiques/musculation/histoire-club.jpg'); }
.svc-halterophilie { background-image: url('/images/nos_pratiques/halterophilie/1.jpg'); }
.svc-cours-co      { background-image: url('/images/menu_dropdown/services_du_club/cours_collectifs/cours-co.jpg'); }
.svc-cours         { background-image: url('/images/menu_dropdown/services_du_club/cours_collectifs/cours-co.jpg'); }
.svc-sauna         { background-image: url('/images/sauna.jpg'); }

/* ═══════════════════════════════════════════════════════════════
   BACKGROUND SECTION CTA (CSP compliance)
   ═══════════════════════════════════════════════════════════════ */
.home-cta-bg { background-image: url('/images/cta-banner.jpg'); }

/* ═══════════════════════════════════════════════════════════════
   COURS COLLECTIFS — points avantages
   ═══════════════════════════════════════════════════════════════ */
.cc-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.cc-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.55);
}

.cc-point i {
  color: #F57706;
  font-size: 0.78rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION ACTUALITÉS — layout liste éditorial
   ═══════════════════════════════════════════════════════════════ */
.hm-news {
  background: #0a0a0a;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

@keyframes news-watermark-rise {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hm-news-watermark {
  position: absolute;
  top: 80px;
  left: 5%;
  right: 5%;
  transform: translateY(80px);
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 1;
  z-index: 0;
  opacity: 0;
}
.hm-news-watermark.is-visible {
  animation: news-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hm-news-head .hm-title { margin: 0; }

.hm-news .arc-grid,
.hm-news .hm-news-empty {
  position: relative;
  z-index: 1;
  margin-top: 120px;
}

.hm-news .arc-card:hover {
  box-shadow: none;
  transform: none;
}



/* ── Variante orange ── */
.hm-news .arc-card--orange,
.hm-news .arc-card--orange .arc-card-body {
  background: #F57706;
}
.hm-news .arc-card--orange .arc-card-eyebrow { color: rgba(255,255,255,0.65); }
.hm-news .arc-card--orange .arc-card-title   { color: #fff; }
.hm-news .arc-card--orange .arc-card-excerpt  { color: rgba(255,255,255,0.72); }
.hm-news .arc-card--orange .arc-card-date     { color: rgba(255,255,255,0.6); }

.hm-news-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.hm-news-cta .hm-btn {
  text-transform: uppercase;
}
.hm-news .hm-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.hm-news .hm-btn--outline:hover {
  border-color: #F57706;
  background: rgba(245,119,6,0.06);
  color: #fff;
}

/* ── Grid : featured gauche + 2 cards droite ── */
.hm-news-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 20px;
  align-items: stretch;
}

/* ── FEATURED ── */
.hm-news-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: hidden;
  min-height: 440px;
  text-decoration: none;
}

.hm-news-featured-img {
  position: absolute;
  inset: 0;
}

.hm-news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hm-news-featured:hover .hm-news-featured-img img { transform: scale(1.04); }

.hm-news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hm-news-featured-body {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}

.hm-news-featured-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 6px 0 10px;
}

.hm-news-featured-excerpt {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 18px;
}

/* ── SIDE CARDS ── */
.hm-news-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hm-news-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  border-radius: 8px;
  overflow: hidden;
  background: #eeede9;
  text-decoration: none;
  flex: 1;
  transition: transform 0.22s, box-shadow 0.22s;
}

.hm-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.hm-news-card-img {
  overflow: hidden;
}

.hm-news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hm-news-card:hover .hm-news-card-img img { transform: scale(1.07); }

.hm-news-card-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

/* ── Éléments communs ── */
.hm-news-date {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F57706;
}

.hm-news-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.35;
  margin: 0;
}

.hm-news-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  transition: gap 0.2s, color 0.2s;
  margin-top: 4px;
}

.hm-news-featured:hover .hm-news-more,
.hm-news-card:hover .hm-news-more { gap: 9px; color: #F57706; }

.hm-news-more i { font-size: 0.6rem; }

.hm-news-empty {
  color: rgba(0,0,0,0.3);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hm-news-grid { grid-template-columns: 1fr 300px; }
}

@media (max-width: 768px) {
  .hm-news-grid { grid-template-columns: 1fr; }
  .hm-news-featured { min-height: 320px; }
  .hm-news-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .hm-news { padding: 60px 5%; }
  .hm-news-card { grid-template-columns: 90px 1fr; }
  .hm-news .arc-card-media { height: 160px; }
  .hm-news .arc-grid { margin-top: 50px; }
}

/* ── Liste éditoriale ── */
.hm-news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.hm-news-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  position: relative;
  transition: padding-left 0.25s;
}

.hm-news-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #F57706;
  transition: width 0.25s;
}

.hm-news-row:hover { padding-left: 18px; }
.hm-news-row:hover::before { width: 3px; }

.hm-news-row-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hm-news-row-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
  margin: 0;
  transition: color 0.22s;
}

.hm-news-row:hover .hm-news-row-title { color: #F57706; }

.hm-news-row-excerpt {
  font-size: 0.83rem;
  color: rgba(0,0,0,0.42);
  line-height: 1.65;
  margin: 0;
}

.hm-news-row-img {
  width: 200px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.hm-news-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hm-news-row:hover .hm-news-row-img img { transform: scale(1.06); }

@media (max-width: 768px) {
  .hm-news-row { grid-template-columns: 1fr; }
  .hm-news-row-img { display: none; }
  .hm-news-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .hm-news { padding: 60px 5%; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION FAQ
   ═══════════════════════════════════════════════════════════════ */
@keyframes faq-watermark-rise {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hm-faq-watermark {
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.03em;
  line-height: 0.92;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;
}
.hm-faq-watermark.is-visible {
  animation: faq-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hm-faq {
  background: #161616;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hm-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
  max-width: 610px;
}

.hm-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hm-faq-item[open] .hm-faq-icon i {
  transform: rotate(45deg);
  color: #F57706;
}

.hm-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.hm-faq-question::-webkit-details-marker { display: none; }
.hm-faq-item[open] .hm-faq-question { color: #F57706; }

.hm-faq-q-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.hm-faq-num {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(245, 119, 6, 0.35);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: color 0.2s;
}

.hm-faq-item[open] .hm-faq-num { color: #F57706; }

.hm-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}

.hm-faq-item[open] .hm-faq-icon { border-color: rgba(245,119,6,0.5); }
.hm-faq-icon i { transition: transform 0.25s ease, color 0.2s; }

.hm-faq-answer { padding: 0 0 22px; }

.hm-faq-answer p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

.hm-faq-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #F57706;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.hm-faq-see-all:hover { color: #ff9a3c; }
.hm-faq-see-all i { font-size: 0.75rem; }

/* ── Colonne gauche ── */
.hm-faq-col-questions {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 80px;
}

/* ── Colonne droite ── */
.hm-faq-col-cta {
  align-self: center;
  margin-top: -24px;
}

.hm-faq-contact-card {
  background: #161616;
  padding: 28px 28px 28px;
  width: 100%;
}
.hm-faq-contact-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.hm-faq-contact-card .hm-btn {
  text-transform: uppercase;
}

.hm-faq-contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F57706;
  margin-bottom: 20px;
}

.hm-faq-contact-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #F57706;
  flex-shrink: 0;
}

.hm-faq-contact-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hm-faq-contact-infos {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}

.hm-faq-contact-infos li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

.hm-faq-contact-infos li i {
  color: #F57706;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hm-faq-contact-infos a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.hm-faq-contact-infos a:hover { color: #fff; }

@media (max-width: 900px) {
  .hm-faq {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hm-faq-col-cta { position: static; }
}

@media (max-width: 600px) {
  .hm-faq { padding: 60px 5%; }
  .hm-faq-question { font-size: 0.875rem; }
  .hm-faq-card { padding: 28px 24px; }
  .hm-faq-list .hm-faq-item:nth-child(n+5) { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   SECTION APP MOBILE
   ═══════════════════════════════════════════════════════════════ */

.app-section {
  background: #0a0a0a;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 60px;
  padding: 140px 8% 60px;
  min-height: 880px;
}

/* ── Vidéo brume section app ── */
.app-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 85%, transparent 100%);
}

/* ── Filigrane APPLICATION / MOBILE ── */
@keyframes app-watermark-rise {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.app-watermark {
  position: absolute;
  top: 40px;
  left: 5%;
  transform: translateY(60px);
  font-size: clamp(2rem, 14vw, 170px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.06);
  text-align: left;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 0.92;
  z-index: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.app-watermark.is-visible {
  animation: app-watermark-rise 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}


/* ── Colonne gauche ── */
.app-copy {
  position: relative; z-index: 2;
  max-width: 480px;
}

/* Label + badge "bientôt" côte à côte */
.app-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px; /* reprend le margin-bottom du .hm-label supprimé en dessous */
}

/* Neutralise display:block et margin-bottom du .hm-label global */
.app-label-row .hm-label {
  display: inline;
  margin-bottom: 0;
  line-height: 1;
}

.app-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 99px;
  padding: 4px 10px 4px 8px;
}

/* Petit dot orange pulsant */
.app-coming-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F57706;
  flex-shrink: 0;
  animation: app-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes app-dot-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.app-headline {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}

.app-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 400px;
}

/* Benefits */
.app-benefits {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column;
}
.app-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-benefit:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.app-benefit-icon { color: #F57706; font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.app-benefit strong { display: block; font-size: 0.86rem; font-weight: 700; color: #fff; margin-bottom: 1px; }
.app-benefit span { font-size: 0.76rem; color: rgba(255,255,255,0.38); line-height: 1.4; }

/* Store badges */
.app-stores { display: flex; gap: 10px; flex-wrap: wrap; }
.app-store-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 10px 18px;
  text-decoration: none; color: #fff;
  min-width: 145px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.app-store-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.app-store-badge > i { font-size: 1.5rem; }
.app-store-label { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-label span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.app-store-label strong { font-size: 0.86rem; font-weight: 700; }

/* Bouton désactivé : app non encore disponible */
.app-store-badge--disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.25);
}

.app-stores-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.32);
  margin: 0;
  font-style: italic;
}
.app-stores-note i { font-size: 0.78rem; color: rgba(255,165,0,0.55); }

/* ── Colonne droite : carousel ── */
.app-visual {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  overflow: visible;
}

/* ── Ligne du bas : note (col 1) + dots (col 2) sur la même ligne ── */
.app-bottom-row {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 0 60px;
  align-items: center;
  padding-top: 2px;
  margin-top: -130px;
  z-index: 2;
  position: relative;
}

.app-dots {
  justify-self: center;
}

.app-carousel-wrapper {
  position: relative;
  width: 100%;
  /* pas de overflow:hidden — la section clip les débordements via overflow-x:clip */
}

/*
 * Le track est un conteneur de hauteur fixe (= hauteur slide actif).
 * Les 3 slides sont positionnés en absolu à l'intérieur,
 * centrés verticalement et horizontalement via transform.
 *
 * Images mockup 1920×1440 : ratio container 0.467:1 (≈ iPhone) + object-fit:cover centré
 * → crop parfait sur le téléphone (les 32.5% de blanc de chaque côté disparaissent).
 */
.app-carousel-track {
  position: relative;
  width: 100%;
  height: 642px;
}

/* Spotlight SVG : voir section_app.html.twig */
.app-spotlight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* overflow: hidden (défaut SVG) — ne pas mettre overflow:visible,
     sinon le contenu du SVG déborde au-dessus du track dans la navbar */
}

/* Base commune à tous les slides */
.app-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 300×642 : ratio 0.467 (≈ iPhone) → object-fit:cover crop parfait sur les mockups 1920×1440 */
  width: 300px;
  height: 642px;
  overflow: hidden;
  border-radius: 4px;
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    transform  0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.52s ease,
    filter     0.52s ease;
}

/* Slide actif : centré, pleine taille */
.app-slide.is-active {
  transform: translateX(-50%) translateY(-50%) scale(1);
  opacity: 1;
  filter: none;
  z-index: 2;
  cursor: default;
}

/*
 * Slides adjacents : mêmes 300×642px, réduits à 60% → ~180×385px visibles.
 * Décalage 260px depuis le centre (= 150 + 20gap + 90 demi-adj-visuel).
 */
.app-slide.is-prev {
  transform: translateX(calc(-50% - 260px)) translateY(-50%) scale(0.6);
  opacity: 0.35;
  filter: blur(0.8px);
  z-index: 1;
  cursor: pointer;
}
.app-slide.is-next {
  transform: translateX(calc(-50% + 260px)) translateY(-50%) scale(0.6);
  opacity: 0.35;
  filter: blur(0.8px);
  z-index: 1;
  cursor: pointer;
}

.app-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Pagination dots ── */
.app-dots { display: flex; align-items: center; gap: 8px; }
.app-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: width 0.25s, border-radius 0.25s, background 0.25s;
  display: inline-block;
  cursor: pointer;
}
.app-dot--active { width: 24px; border-radius: 4px; background: #F57706; }
.app-dot:hover:not(.app-dot--active) { background: rgba(255,255,255,0.4); }

/* ── Animations d'entrée ── */
.app-copy {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.app-visual {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s;
}
.app-bottom-row {
  opacity: 0;
  transition: opacity 0.7s ease 0.3s;
}
.app-section.is-visible .app-copy,
.app-section.is-visible .app-visual {
  opacity: 1;
  transform: translateX(0);
}
.app-section.is-visible .app-bottom-row {
  opacity: 1;
}

/* Éléments mobile cachés par défaut */
.app-stores-note--mobile,
.app-dots--mobile { display: none; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .app-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
      "copy"
      "note-mobile"
      "visual"
      "dots-mobile"
      "bottom";
    padding: 160px 5% 56px;
    min-height: auto;
    overflow: hidden;
  }

  .app-copy           { grid-area: copy; order: 1; }
  .app-stores-note--mobile { grid-area: note-mobile; order: 2; }
  .app-visual         { grid-area: visual; order: 3; margin-top: 32px; }
  .app-dots--mobile   { grid-area: dots-mobile; order: 4; }
  .app-bottom-row     { grid-area: bottom; order: 5; display: none; }

  /* Éléments mobile visibles */
  .app-stores-note--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.32);
    font-style: italic;
    margin-top: 14px;
  }
  .app-stores-note--mobile i { font-size: 0.78rem; color: rgba(255,165,0,0.55); }

  .app-dots--mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
  }

  /* Boutons store côte à côte et centrés */
  .app-stores { flex-wrap: nowrap; gap: 10px; justify-content: center; }
  .app-store-badge { min-width: unset; flex: 1; justify-content: center; max-width: 180px; }

  .app-carousel-track { height: 514px; }
  .app-slide { width: 240px; height: 514px; }
  .app-slide.is-prev { opacity: 0; pointer-events: none; }
  .app-slide.is-next { opacity: 0; pointer-events: none; }
}

@media (max-width: 600px) {
  .app-carousel-track { height: 428px; }
  .app-slide { width: 200px; height: 428px; }
}

@media (max-width: 480px) {
  .app-stores { flex-direction: row; flex-wrap: nowrap; justify-content: center; align-items: center; width: 100%; }
  .app-store-badge { flex: 0 1 auto; min-width: 0; }
  .app-carousel-track { height: 375px; }
  .app-slide { width: 175px; height: 375px; }
}

/* ══════════════════════════════════════════════
   BANNIÈRE PROMO ABONNEMENT
══════════════════════════════════════════════ */
.hcb-section {
  background: #fff;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  position: relative;
}

.hcb-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .hcb-banner-img {
    max-height: 480px;
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .hcb-banner-img {
    max-height: 420px;
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .hcb-banner-img {
    max-height: 420px;
    object-position: center center;
  }
}

.hcb-overlay {
  position: absolute;
  top: 73%;
  left: 5.7%;
  width: 42%;
  line-height: 1.4;
  font-size: 1rem;
}

.hcb-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.hcb-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.hcb-btn-main:hover {
  background: #2a2a2a;
}

.hcb-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(0,0,0,0.7);
  border: 1px solid rgba(0,0,0,0.22);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.hcb-btn-ghost:hover {
  border-color: #0d0d0d;
  color: #0d0d0d;
}

.hcb-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

.hcb-legal a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

.hcb-legal a:hover {
  color: var(--brand-orange, #F57706);
}

.hcb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* ── Côté gauche ── */
.hcb-left {
  padding: 72px 6% 72px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hcb-from {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}

.hcb-price-block {
  margin-bottom: 10px;
  line-height: 1;
}

.hcb-price-line {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.hcb-price-integer,
.hcb-price-decimal {
  font-size: clamp(5rem, 12vw, 9.5rem);
  font-weight: 900;
  color: #0d0d0d;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hcb-price-currency {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--brand-orange, #F57706);
  position: relative;
  top: -1.4rem;
  line-height: 1;
}

.hcb-price-period {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}

.hcb-monthly {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.4);
  margin: 0 0 28px;
}

.hcb-monthly strong {
  color: rgba(0,0,0,0.7);
}

.hcb-strip {
  display: inline-block;
  background: var(--brand-orange, #F57706);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-bottom: 32px;
}

.hcb-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hcb-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hcb-btn-main:hover {
  background: #2a2a2a;
  color: #fff;
}

.hcb-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.hcb-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.hcb-legal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 460px;
  margin: 0;
}

.hcb-legal a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

/* ── Côté droit : photo ── */
.hcb-right {
  position: relative;
  overflow: hidden;
}

.hcb-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hcb-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, transparent 40%);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .hcb-inner {
    grid-template-columns: 1fr;
  }
  .hcb-right {
    height: 280px;
    order: -1;
  }
  .hcb-photo-overlay {
    background: linear-gradient(to bottom, #fff 0%, transparent 40%, #fff 100%);
  }
  .hcb-left {
    padding: 48px 5%;
  }
  .hcb-amount {
    font-size: clamp(5rem, 20vw, 8rem);
  }
}
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE GLOBAL HOME — TABLETTE & MOBILE
   ═══════════════════════════════════════════════════════════════ */

/* ── TABLETTE (≤ 1024px) ── */
@media (max-width: 1024px) {

  /* Filigranes : réduire taille */
  .hm-equip-watermark,
  .hm-news-watermark,
  .hm-faq-watermark,
  .disc-watermark,
  .app-watermark,
  .bg-watermark {
    font-size: clamp(2rem, 14vw, 170px);
  }

  /* FAQ : passe en colonne */
  .hm-faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 6%;
  }

  /* FAQ : retire la barre verticale */
  .hm-faq-col-questions {
    border-right: none;
    padding-right: 0;
  }

  .hm-faq-col-cta {
    margin-top: 0;
  }

  /* Actualités : grille 2 colonnes */
  .arc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Équipements */
  .hm-equip-watermark {
    top: 24px;
  }

  .hm-equip-wrap {
    margin-top: 160px;
  }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {

  /* Filigranes : encore plus petits */
  .hm-equip-watermark,
  .hm-news-watermark,
  .hm-faq-watermark,
  .disc-watermark,
  .app-watermark,
  .bg-watermark {
    font-size: clamp(2rem, 14vw, 170px);
    top: 20px;
  }

  /* FAQ : barre verticale supprimée, empilage */
  .hm-faq {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 5%;
  }

  .hm-faq-col-questions {
    border-right: none;
    padding-right: 0;
  }

  .hm-faq-list {
    max-width: 100%;
  }

  .hm-faq-col-cta {
    margin-top: 0;
    align-self: stretch;
  }

  .hm-faq-contact-card {
    padding: 24px 20px;
  }

  /* Actualités : 1 colonne */
  .arc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Équipements */
  .hm-equip-wrap {
    margin-top: 120px;
  }

  .hm-equip-watermark {
    top: 20px;
  }

  /* CTA banner */
  .hcb-section {
    min-height: 220px;
  }

  /* Boutons abonnement : overlay élargi, boutons côte à côte */
  .hcb-section { overflow-x: hidden; overflow-y: visible; }
  .hcb-overlay {
    left: 10%;
    right: 9.2%;
    width: auto;
    top: 65%;
    padding: 0;
  }
  .hcb-ctas {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  .hcb-btn-main,
  .hcb-btn-ghost {
    flex: 1;
    font-size: 0.6rem;
    padding: 8px 6px;
    white-space: nowrap;
    justify-content: center;
  }
  .hcb-legal { color: rgba(255,255,255,0.75); font-size: 0.58rem; }

  /* Section CTA fermeture */
  .home-cta-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* Partenaires */
  .hm-partner-logo {
    height: 52px;
  }
}

/* ── PETIT MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

  /* Hero section : hauteur réduite sur mobile */
  .hero-section {
    height: 75vh;
    min-height: 480px;
  }
  .slide-1 { background-size: cover !important; background-position: center top !important; }

  /* Filigranes ultra compact */
  .hm-equip-watermark,
  .hm-news-watermark,
  .hm-faq-watermark,
  .disc-watermark,
  .app-watermark,
  .bg-watermark {
    font-size: clamp(2rem, 14vw, 170px);
    top: 20px;
  }

  /* App section : padding-top pour descendre le contenu sous le filigrane */
  .app-section {
    padding-top: 140px;
  }

  /* FAQ */
  .hm-faq {
    padding: 48px 5%;
  }

  .hm-faq-contact-card {
    padding: 20px 16px;
  }

  /* Actualités */
  .arc-card-img {
    height: 160px;
  }

  /* Équipements */
  .hm-equip-wrap {
    margin-top: 100px;
  }

  /* Partenaires */
  .hm-partner-logo {
    height: 44px;
  }

  /* CTA fermeture */
  .home-cta-section {
    padding: 48px 5%;
  }
}
