/* ─── INDEX PAGE ─────────────────────────────── */

/* ── Hero divider ── */
.hero-divider {
  width: 48px;
  border: none;
  border-top: 1.5px solid var(--border-hover);
  margin: 0.2rem auto;
}

.hero p {
  margin-bottom: 0;
}

.hero p:last-of-type {
  margin-bottom: 2.75rem;
}

/* ── Hero "comment ça marche" link ── */
.hero-how-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(135deg, #ffffff 0%, rgba(29,185,84,0.18) 100%);
  border: 1px solid rgba(29,185,84,0.3);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(29,185,84,0.10);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.hero-how-link:hover {
  background: linear-gradient(135deg, #ffffff 0%, rgba(29,185,84,0.32) 100%);
  border-color: rgba(29,185,84,0.5);
  box-shadow: 0 4px 20px rgba(29,185,84,0.18);
  transform: translateY(-1px);
}

/* ── Sparring section ── */
.sparring-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.sparring-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sparring-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sparring-inner > div > p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sparring-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sparring-chip {
  background: var(--accent-subtle);
  border: 1px solid rgba(29,185,84,0.18);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.sparring-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sparring-row {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sparring-row-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card));
  border: 1.5px solid rgba(29,185,84,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.sparring-row-info { flex: 1; }

.sparring-row-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.sparring-row-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.sparring-row-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(29,185,84,0.18);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Coach CTA section ── */
.coach-cta-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.coach-cta-card {
  background: linear-gradient(135deg, #0f2d1a 0%, #1a4d2e 100%);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(29,185,84,0.2);
}

.coach-cta-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.coach-cta-card > div > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 520px;
}

.coach-cta-perks {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.coach-cta-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.coach-cta-perk svg { flex-shrink: 0; }

/* ── Stats section ── */
.stats-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.stats-section .stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stats-section .stat-value span {
  background: linear-gradient(135deg, var(--accent), #0fa04e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-section .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.stats-section .stat { text-align: center; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .sparring-inner { grid-template-columns: 1fr; gap: 2rem; }
  .coach-cta-card { grid-template-columns: 1fr; padding: 2rem; }
  .stats-section { gap: 2.5rem; flex-wrap: wrap; }
}
