:root {
  --orange: #ff6b35;
  --orange-light: #ff8f66;
  --navy: #1a3a52;
  --navy-dark: #0f2433;
  --white: #ffffff;
  --gray-50: #f7f9fb;
  --gray-100: #eef2f6;
  --gray-600: #5a6b7a;
  --shadow: 0 12px 40px rgba(26, 58, 82, 0.12);
  --radius: 16px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding-top: env(safe-area-inset-top, 0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(26, 58, 82, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.logo img {
  height: 72px;
  width: auto;
  max-width: min(340px, 58vw);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--gray-100);
  outline: none;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  --hero-h: calc(100vw * 1024 / 1536);
  position: relative;
  min-height: var(--hero-h);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-media,
.hero-overlay,
.hero-inner {
  grid-column: 1;
  grid-row: 1;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-h);
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-h);
  background: linear-gradient(
    to top,
    rgba(15, 36, 51, 0.88) 0%,
    rgba(15, 36, 51, 0.45) 28%,
    rgba(15, 36, 51, 0.08) 55%,
    transparent 72%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: stretch;
  justify-self: center;
  width: min(1120px, 92vw);
  min-height: var(--hero-h);
  padding: calc(var(--hero-h) * 0.86) 0 2.5rem;
  box-sizing: border-box;
}

/* Desktop — bannière plein écran, sans bandes latérales */
@media (min-width: 920px) {
  .hero {
    --hero-h: 100dvh;
    min-height: 100dvh;
  }

  .hero-media {
    inset: 0;
    height: auto;
  }

  .hero-bg {
    object-fit: cover;
  }

  .hero-overlay {
    inset: 0;
    height: auto;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  max-width: 560px;
  width: 100%;
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-left: -20px;
}

.hero-content h1 {
  text-shadow: 0 2px 20px rgba(15, 36, 51, 0.5);
  margin: 0;
}

.hero-baseline {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
  margin: 0;
  max-width: none;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(15, 36, 51, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.hero-session-box {
  width: 100%;
  max-width: 420px;
  background: rgba(26, 58, 82, 0.94);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-session-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange-light);
}

.hero-session-detail {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  padding-left: 1.35rem;
}

.hero-session-cta {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 1.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.35rem;
}

.hero-session-cta strong {
  color: var(--orange-light);
  font-weight: 800;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.25);
  color: var(--orange-light);
  border: 1px solid rgba(255, 107, 53, 0.45);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (min-width: 920px) {
  .hero h1 {
    white-space: nowrap;
  }
}

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

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-hero-navy {
  background: rgba(26, 58, 82, 0.92);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-navy:hover {
  background: var(--navy);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.4);
}

.hero-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.75rem;
  background: rgba(26, 58, 82, 0.94);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  max-width: none;
}

.hero-text-bg {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  padding: 0;
  border-radius: 0;
  line-height: 1.35;
  box-shadow: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.hero-card-pulse {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.35);
}

.hero-card h3 {
  margin: 0;
  font-weight: inherit;
}

.hero-card h3 .hero-text-bg {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
  color: var(--orange-light);
}

.hero-card-rotator {
  position: relative;
  min-height: 2.75rem;
  overflow: hidden;
}

.hero-card-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
}

.hero-card-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-card-slide .hero-text-bg {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
}

.hero-card-cta {
  margin: 0;
  white-space: nowrap;
}

.hero-card-cta .hero-text-bg {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange-light);
}

.hero-card-cta strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
}

/* Animations */
@keyframes heroKenBurns {
  from {
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    transform: translate(-50%, -50%) scale(1.12);
  }
}

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

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.55);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .reveal-child:nth-child(1) { transition-delay: 0.08s; }
.reveal.visible .reveal-child:nth-child(2) { transition-delay: 0.18s; }
.reveal.visible .reveal-child:nth-child(3) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-content,
  .hero-badge,
  .hero-card-pulse {
    animation: none;
    transform: translate(-50%, -50%) scale(1);
  }

  .reveal,
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-card-slide {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .hero-card-slide:not(.active) {
    display: none;
  }

  .hero-card-rotator {
    min-height: auto;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 3rem;
}

.bg-light {
  background: var(--gray-50);
}

/* Concept */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.concept-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.concept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 58, 82, 0.14);
  border-color: rgba(255, 107, 53, 0.25);
}

.concept-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.concept-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.concept-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* FAQ — SEO & GEO */
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.faq-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.faq-item a {
  color: var(--orange);
  font-weight: 600;
}

@media (max-width: 900px) {
  #faq .container {
    text-align: center;
  }

  #faq .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  #faq .faq-list {
    margin: 0 auto;
    text-align: left;
  }
}

/* Events */
.events-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.events-pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.events-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.events-pillar-accent {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, var(--white) 100%);
}

.events-pillar-icon {
  font-size: 2.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.events-pillar h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.events-pillar-accent h3 {
  color: var(--orange);
}

.events-pillar p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

.events-format {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.events-format-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  white-space: nowrap;
}

.events-format-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.events-format-steps li {
  font-size: 0.95rem;
  opacity: 0.92;
}

.events-format-steps strong {
  color: var(--orange-light);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.event-card {
  background: linear-gradient(135deg, var(--navy) 0%, #2d5068 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}

.event-card-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.event-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(26, 58, 82, 0.25);
}

.event-card-featured:hover {
  box-shadow: 0 20px 48px rgba(255, 107, 53, 0.28);
}

.event-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
}

.event-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.event-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  position: relative;
}

.event-intro {
  opacity: 0.92;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  position: relative;
}

.event-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  position: relative;
}

.event-features li {
  padding: 0.35rem 0 0.35rem 1.35rem;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.95;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-features li:last-child {
  border-bottom: none;
}

.event-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-light);
  font-weight: 700;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.event-meta-item {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.88;
}

.event-meta-price {
  color: var(--orange-light);
}

.event-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  position: relative;
}

.event-tag-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.event-dual-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.45);
  position: relative;
}

.events-cta {
  text-align: center;
  background: var(--white);
  border: 2px dashed rgba(255, 107, 53, 0.45);
  border-radius: var(--radius);
  padding: 2rem;
}

.events-cta p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.events-cta .btn-primary {
  color: var(--white);
}

.section-lead strong {
  color: var(--navy);
  font-weight: 700;
}

/* Coach */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.coach-subtitle {
  font-size: 1.15rem;
  color: var(--orange);
  font-weight: 600;
  margin: -0.5rem 0 1rem;
}

.coach-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  opacity: 0.9;
}

.coach-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.badge {
  background: var(--gray-100);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

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

.offer-card.featured {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
  position: relative;
}

.offer-card.featured::before {
  content: "Populaire";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
}

.offer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.offer-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
}

.offer-card.featured .offer-price {
  color: var(--orange);
}

.offer-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.offer-card li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 1.2rem;
  position: relative;
}

.offer-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Contact */
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.contact-item h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 1.1rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-cta {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

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

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-logo {
  display: inline-block;
  background: var(--white);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom a {
  margin-right: 1rem;
}

/* Legal pages */
.legal-page {
  padding: 8rem 0 4rem;
  max-width: 720px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page a:hover {
  color: var(--orange);
}

/* Rendez-vous */
.rdv-page {
  padding: 8rem 0 4rem;
  max-width: 640px;
}

.rdv-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.rdv-lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.rdv-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  padding: 2rem;
  margin-bottom: 2rem;
}

.rdv-calendly-placeholder {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 2px dashed var(--gray-100);
  border-radius: 12px;
  background: var(--gray-50);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.rdv-placeholder-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.rdv-placeholder-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.55;
}

.rdv-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border-radius: 999px;
  border: 2px solid var(--orange);
  transition: background 0.3s ease, color 0.3s ease;
}

.rdv-email:hover {
  background: var(--orange);
  color: var(--white);
}

.rdv-includes {
  list-style: none;
  padding: 0;
}

.rdv-includes li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
}

.rdv-includes li:last-child {
  border-bottom: none;
}

.rdv-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Responsive — tablette */
@media (max-width: 1024px) {
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-pillars {
    grid-template-columns: 1fr;
  }

  .events-format {
    flex-direction: column;
    align-items: flex-start;
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid .offer-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .hero-lead {
    max-width: none;
  }
}

/* Responsive — bannière & hero mobile */
@media (max-width: 919px) {
  .hero-overlay {
    display: none;
  }

  .hero-inner {
    width: 100%;
    padding: calc(var(--hero-h) * 0.66) 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    margin-left: 0;
    max-width: min(420px, 92vw);
    width: 100%;
    gap: 0.85rem;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    white-space: normal;
    font-size: clamp(1.2rem, 4.8vw, 1.55rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: center;
  }

  .hero-baseline {
    font-size: clamp(0.72rem, 3.2vw, 1rem);
    line-height: 1.3;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.92rem;
  }

  .hero-session-box {
    max-width: 100%;
    width: 100%;
    padding: 0.9rem 1rem;
    gap: 0.45rem;
    text-align: center;
  }

  .hero-session-label {
    justify-content: center;
  }

  .hero-session-detail {
    font-size: 0.92rem;
    padding-left: 0;
  }

  .hero-session-cta {
    font-size: 0.88rem;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-bottom: 1.75rem;
  }

  .hero-content {
    gap: 0.75rem;
  }

  .hero h1 {
    font-size: 1.15rem;
  }

  .hero-baseline {
    font-size: clamp(0.68rem, 3vw, 0.92rem);
  }

  .hero-actions .btn {
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
  }

  .hero-session-detail,
  .hero-session-cta {
    padding-left: 0;
  }

  .hero-session-label {
    font-size: 0.72rem;
  }
}

/* Responsive — mobile / menu */
@media (max-width: 900px) {
  section {
    padding: 4rem 0;
  }

  .events-pillars,
  .events-grid,
  .coach-grid,
  .concept-grid,
  .events-grid,
  .offers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #concept .container {
    text-align: center;
  }

  #concept .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  #concept .concept-grid {
    justify-items: center;
  }

  #concept .concept-card {
    text-align: center;
    max-width: min(400px, 100%);
    width: 100%;
  }

  .offers-grid .offer-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .offer-card.featured {
    order: -1;
    margin-top: 0.75rem;
  }

  .coach-photo {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1;
    font-size: 3rem;
  }

  .coach-grid > div:last-child {
    text-align: center;
  }

  .coach-badges {
    justify-content: center;
  }

  .coach-grid .btn {
    width: 100%;
    max-width: 320px;
  }

  .section-lead {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .cta {
    padding: 4rem 0;
  }

  .cta p {
    font-size: 1rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.85rem 1.2rem !important;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    position: relative;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 0.5rem;
  }

  .legal-page {
    padding: 7rem 0 3rem;
  }
}

/* Responsive — petit mobile */
@media (max-width: 640px) {
  .container {
    width: min(1120px, 94vw);
  }

  .logo img {
    height: 56px;
    max-width: min(280px, 62vw);
  }

  .events-format-steps {
    flex-direction: column;
    gap: 0.5rem;
  }

  .events-cta {
    padding: 1.5rem;
  }

  .events-cta .btn-primary {
    width: 100%;
  }

  .concept-grid,
  .events-grid,
  .offers-grid {
    gap: 1rem;
  }

  .concept-card,
  .event-card,
  .offer-card,
  .contact-card {
    padding: 1.5rem;
  }

  .cta-social {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
  }

  .cta-social .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    white-space: normal;
    text-align: center;
  }

  .offer-card .btn {
    width: 100%;
  }

  .contact-cta {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .legal-page h1 {
    font-size: 1.65rem;
  }
}

/* Responsive — très petit écran */
@media (max-width: 380px) {
  section {
    padding: 3rem 0;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .badge {
    font-size: 0.8rem;
  }
}
