/* ==========================================
   TS TRAINING — Sport Santé à Domicile
   Design chaleureux, humain, adapté seniors
   3 couleurs logo : noir chaud / or caramel / blanc
   Typo : Lora (titres) + Nunito (corps)
   ========================================== */

/* Fonts chargees via <link> dans le HTML pour eviter le render-blocking @import */

:root {
  /* 3 couleurs du logo */
  --black: #1C1C1C;
  --gold: #C4963C;
  --white: #FFFFFF;

  /* Declinaisons */
  --gold-dark: #A67C2E;
  --gold-light: #FBF5EB;
  --gold-lighter: #FDF9F2;
  --gold-glow: rgba(196, 150, 60, 0.15);

  /* Gris chauds */
  --gray-50: #FAF9F7;
  --gray-100: #F3F1EE;
  --gray-200: #E8E5E0;
  --gray-300: #D5D0C8;
  --gray-400: #A8A198;
  --gray-500: #7A7368;
  --gray-600: #5A544B;
  --gray-700: #3D3831;
  --gray-800: #2A2622;
  --gray-900: #1C1C1C;

  --text: #2A2622;
  --text-light: #5A544B;
  --text-muted: #7A7368;
  --off-white: #FDFCFA;

  /* Aliases compatibilite autres pages */
  --green: #C4963C;
  --green-light: #FBF5EB;
  --green-dark: #A67C2E;
  --blue: #C4963C;
  --blue-light: #FBF5EB;
  --orange: #C4963C;
  --orange-light: #FBF5EB;
  --orange-dark: #A67C2E;

  --shadow-sm: 0 1px 4px rgba(28, 28, 28, 0.06);
  --shadow: 0 4px 16px rgba(28, 28, 28, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 28, 28, 0.12);
  --shadow-gold: 0 4px 20px rgba(196, 150, 60, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

/* ==========================================
   TYPOGRAPHY — Lisible, chaleureuse
   ========================================== */

h1, h2 {
  font-family: 'Lora', Georgia, serif;
  color: var(--black);
  line-height: 1.2;
  font-weight: 700;
}

h3, h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--black);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 24px; }
h2 { font-size: 2.1rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.9;
}

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.9;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ==========================================
   BUTTONS — Chaleureux, invitants
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 150, 60, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--gold);
}

/* ==========================================
   NAVIGATION — Fond blanc, sobre, lisible
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.navbar-nav a {
  display: block;
  padding: 10px 18px;
  color: var(--gray-600);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
}

.navbar-nav a:hover {
  color: var(--black);
  background: var(--gray-50);
}

.navbar-nav a.active {
  color: var(--gold);
  background: var(--gold-light);
}

.navbar-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.navbar-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-cta.active {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--black);
  background-color: #1C1C1C;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO — Lumineux, chaleureux, accueillant
   ========================================== */

.hero {
  padding: 140px 0 100px;
  background: linear-gradient(170deg, var(--white) 0%, var(--gold-lighter) 40%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 150, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 16px;
}

.hero-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-stat:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.hero-stat-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Hero image */
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  width: 100%;
  max-height: 560px;
}

/* Floating price card */
.hero-price-tag {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.hero-price-tag .old-price {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.hero-price-tag .new-price {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 4px 0;
}

.hero-price-tag .price-note {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
  padding: 100px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-green {
  background: var(--black);
  color: var(--white);
}

.section-green h2,
.section-green h3,
.section-green h4 {
  color: var(--white);
}

.section-green .section-label {
  background: rgba(196, 150, 60, 0.15);
  color: var(--gold);
}

.section-green p {
  color: rgba(255,255,255,0.7);
}

.section-green .section-title {
  color: var(--white);
}

.section-green .section-subtitle {
  color: rgba(255,255,255,0.6);
}

/* ==========================================
   CARDS
   ========================================== */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
}

/* ==========================================
   PUBLIC CIBLE (audience)
   ========================================== */

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.audience-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.audience-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.audience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
}

/* ==========================================
   CREDIT IMPOT BANNER
   ========================================== */

.credit-banner {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.credit-banner h2 {
  font-family: 'Lora', Georgia, serif;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.credit-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin: 0;
}

.credit-price-box {
  background: rgba(196, 150, 60, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  text-align: center;
  border: 1px solid rgba(196, 150, 60, 0.2);
}

.credit-price-box .original {
  font-size: 1.2rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.credit-price-box .final {
  font-family: 'Lora', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 8px 0;
}

.credit-price-box .note {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ==========================================
   STEPS / PROCESS
   ========================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ==========================================
   ZONE INTERVENTION
   ========================================== */

.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}

.zone-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.zone-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================
   COACH PROFILES
   ========================================== */

.coach-card {
  background: var(--gray-800);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.coach-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.coach-info {
  padding: 32px;
}

.coach-info h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--white);
}

.coach-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.coach-info p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

/* ==========================================
   VALUES
   ========================================== */

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.value-item:last-child {
  border-bottom: none;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 150, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--gold);
}

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

@media (max-width: 1024px) {
  h1 { font-size: 2.3rem; }
  .hero h1 { font-size: 2.6rem; }
  .section-title { font-size: 1.9rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .credit-banner { grid-template-columns: 1fr; text-align: center; }
  .credit-price-box { justify-self: center; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .navbar .container { height: 70px; }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .navbar-nav.open { display: flex; }
  .burger { display: flex !important; }

  .hero { padding: 100px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-image { order: -1; }
  .hero-price-tag { left: auto; right: 16px; bottom: 24px; }
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 14px 18px; }
  .hero-stat-number { font-size: 1.3rem; }

  section { padding: 70px 0; }
  h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .credit-banner { padding: 40px 24px; }
  .credit-price-box { padding: 28px 36px; }
  .credit-price-box .final { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}

/* ==========================================
   ANIMATIONS — Scroll Reveal
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes de direction */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Delais en cascade pour les grilles */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================
   HERO — Breathing animation organique
   ========================================== */

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 150, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50% { transform: scale(1.15) translate(10px, -10px); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-price-tag {
  animation: float 4s ease-in-out infinite;
}

/* Hero entrance animations */
.hero-badge {
  animation: slideDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero h1 {
  animation: slideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-text {
  animation: slideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both;
}

.hero-buttons {
  animation: slideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s both;
}

.hero-stats {
  animation: slideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s both;
}

.hero-image {
  animation: slideLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================
   BURGER — Animation croix
   ========================================== */

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   MICRO-INTERACTIONS
   ========================================== */

/* Ligne doree sous les titres de section */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 16px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* Steps pulse au hover */
.step-number {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(196, 150, 60, 0.35);
}

/* Zone dot pulse */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.zone-item:hover .zone-dot {
  animation: pulse 1s ease-in-out infinite;
}

/* Coach card image zoom */
.coach-card img {
  transition: transform 0.5s ease;
}

.coach-card:hover img {
  transform: scale(1.05);
}

/* Audience card icon bounce */
.audience-card:hover .audience-icon {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Credit banner glow */
.credit-banner {
  transition: box-shadow 0.4s ease;
}

.credit-banner:hover {
  box-shadow: 0 0 60px rgba(196, 150, 60, 0.15);
}

/* SVG icon styling dans les cartes */
.audience-icon svg,
.card-icon svg,
.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================
   VIDEO PLAYER — Capsules presentation
   ========================================== */

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 24px;
  background: var(--black);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin-left: 4px;
}

.video-wrapper.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
}

.video-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ==========================================
   BOUTON FLOTTANT APPELER
   ========================================== */

.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(196, 150, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.floating-call:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(196, 150, 60, 0.5);
}

.floating-call svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.floating-call .call-text {
  display: none;
}

/* Desktop : afficher le texte */
@media (min-width: 769px) {
  .floating-call .call-text {
    display: inline;
  }
}

/* Mobile : bouton rond + texte visible */
@media (max-width: 768px) {
  .floating-call {
    padding: 16px 24px;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
  }

  .floating-call .call-text {
    display: inline;
  }

  .floating-call svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================
   FOCUS & ACCESSIBILITE
   ========================================== */

/* Focus visible pour navigation clavier */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ==========================================
   PREFERS REDUCED MOTION
   ========================================== */

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

  html { scroll-behavior: auto; }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-price-tag { animation: none; }
}
