/* ============================================================
   KMS Street Workout — Exact Figma Design
   Basé sur les frames Figma MLy5JaG3UH8CudYkRb0ia6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Loading Screen ─── */
.kms-loader {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.kms-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.kms-loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(41,121,255,0.5);
  box-shadow: 0 0 30px rgba(41,121,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loader-pulse 1.8s ease-in-out infinite;
}

.kms-loader-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(41,121,255,0.25); }
  50% { transform: scale(1.06); box-shadow: 0 0 40px rgba(41,121,255,0.5); }
}

.kms-loader-text {
  font-family: Michroma, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: loader-fade 1.8s ease-in-out infinite;
}

@keyframes loader-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.kms-loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.kms-loader-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #2266cc, #4d9aff);
  border-radius: 2px;
  width: 0;
  transition: width 0.4s ease;
}



/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #101216;
  --bg-dark:   #0d0d0d;
  --bg-card:   rgba(255,255,255,0.04);
  --accent:    #4d9aff;
  --accent-2:  #2266cc;
  --border:    rgba(255,255,255,0.07);
  --border-accent: rgba(77,154,255,0.3);
  --text:      rgba(255,255,255,0.75);
  --text-dim:  rgba(255,255,255,0.58);
  --text-low:  rgba(255,255,255,0.45);
  --text-head: #ffffff;
  --nav-h:     90px;
  --max-w:     1324px;
  --pad-x:     80px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: 'Michroma', sans-serif; color: inherit; }
ul, ol { list-style: none; }

/* ─── Layout ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(77,154,255,0.28);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:hover {
  background: rgba(77,154,255,0.12);
  border-color: rgba(77,154,255,0.45);
}

/* Logo */
.nav-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 2px solid #2979ff;
  box-shadow: 0 0 18px rgba(41,121,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.nav-logo:hover {
  box-shadow: 0 0 28px rgba(41,121,255,0.5);
  transform: scale(1.05);
}

.nav-logo-kms {
  font-family: 'Michroma', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Michroma', sans-serif;
  font-size: 6.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 2px;
  text-decoration: none;
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.4px;
  text-align: center;
  white-space: nowrap;
  line-height: 21px;
}

.nav-link + .nav-link { margin-left: 32px; }
.nav-link:first-child { margin-left: 32px; }

.nav-link.active { color: var(--accent); }

.nav-links .nav-link:hover {
  color: #fff;
}

.nav-links .nav-link:hover .nav-link-underline {
  display: block;
  animation: underline-grow 0.2s ease;
}

@keyframes underline-grow {
  from { width: 0; }
  to { width: 100%; }
}

.nav-link-underline {
  display: none;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, #2266cc, #4d9aff);
}

.nav-link.active .nav-link-underline { display: block; }

/* Dropdown nav items */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 2px;
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.4px;
  line-height: 21px;
  cursor: pointer;
  margin-left: 32px;
  white-space: nowrap;
}

.nav-dropdown-toggle .nav-link-underline { display: none; }
.nav-dropdown.open .nav-dropdown-toggle .nav-link-underline { display: block; }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--accent); }

.nav-dropdown-toggle:hover {
  color: #fff !important;
}

.nav-dropdown-toggle:hover .nav-link-underline {
  display: block;
  animation: underline-grow 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  background: #0d1017;
  border: 1px solid rgba(46,64,97,0.8);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-family: 'Michroma', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(77,154,255,0.1);
  color: var(--accent);
}

.nav-dropdown-menu .dd-sep {
  height: 1px;
  background: rgba(46,64,97,0.6);
  margin: 4px 8px;
  transition: background 0.15s;
}

.nav-dropdown-menu .dd-sep:hover {
  background: rgba(77,154,255,0.3);
}

.nav-dropdown-menu .dd-label {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 8px 16px 4px;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  height: 48px;
  width: 279px;
}

.btn-coach {
  flex: 1;
  height: 48px;
  border-radius: 40px;
  background: linear-gradient(177deg, rgb(34,102,204) 7%, rgb(14,61,133) 93%);
  box-shadow: 0 4px 22px rgba(34,102,204,0.5);
  font-family: 'Michroma', sans-serif;
  font-size: 13.5px;
  color: #fff;
  letter-spacing: 0.3px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.btn-coach:hover {
  opacity: 0.9;
  box-shadow: 0 6px 28px rgba(34,102,204,0.7);
  transform: translateY(-1px);
}
.btn-coach:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(34,102,204,0.4);
}

.btn-profile {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(130,130,130,0.55);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.15s;
}

.btn-profile:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(77,154,255,0.3);
}

.btn-profile img { width: 22px; height: 22px; }

/* Light mode toggle */
.btn-toggle {
  position: fixed;
  top: 13px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 15px;
  background: rgba(20,26,36,0.85);
  border: 1px solid rgba(77,154,255,0.5);
  font-size: 14px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1001;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-toggle:hover {
  background: rgba(77,154,255,0.2);
  box-shadow: 0 0 12px rgba(77,154,255,0.3);
  transform: scale(1.1);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  padding: 16px 0;
}

.breadcrumb a {
  color: var(--accent);
  transition: color 0.15s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: rgba(255,255,255,0.4); }

/* ============================================================
   PAGE HERO (Accueil)
   ============================================================ */
.page-hero {
  position: relative;
  height: 833px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-gradient-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(117deg,
    rgba(10,10,10,0.92) 13%,
    rgba(10,10,10,0.78) 39%,
    rgba(10,10,10,0.45) 58%,
    rgba(10,10,10,0.15) 87%);
}

.hero-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(0,0,0,0));
}

.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding-left: var(--pad-x);
}

.hero-text {
  width: 600px;
  position: relative;
}

.hero-h1 {
  font-family: 'Michroma', sans-serif;
  font-size: 35px;
  color: #fff;
  line-height: 47px;
  margin-bottom: 24px;
}

.hero-h1 .accent { color: var(--accent); font-size: 39px; }

.hero-sub {
  font-family: 'Michroma', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 25.4px;
  margin-bottom: 40px;
  width: 538px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-hero-primary {
  width: 274px; height: 76px;
  border-radius: 40px;
  background: linear-gradient(175deg, rgb(34,102,204) 8%, rgb(14,61,133) 92%);
  box-shadow: 0 6px 26px rgba(34,102,204,0.55);
  font-family: 'Michroma', sans-serif;
  font-size: 14.5px;
  color: #fff;
  letter-spacing: 0.2px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 21.75px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.btn-hero-primary:hover {
  opacity: 0.9;
  box-shadow: 0 8px 32px rgba(34,102,204,0.7);
  transform: translateY(-2px) scale(1.01);
}
.btn-hero-primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 12px rgba(34,102,204,0.4);
}

.btn-hero-secondary {
  flex: 1;
  height: 76px;
  border-radius: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.28);
  font-family: 'Michroma', sans-serif;
  font-size: 14.5px;
  color: #fff;
  letter-spacing: 0.2px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 21.75px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-hero-secondary:hover {
  background: rgba(77,154,255,0.12);
  border-color: rgba(77,154,255,0.5);
}

/* Explorer arrow */
.explorer-link {
  position: absolute;
  bottom: 16px;
  left: 50%; transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(77,154,255,0.85);
  text-align: center;
  text-decoration: none;
  white-space: pre;
  transition: color 0.2s, transform 0.2s;
}

.explorer-link:hover {
  color: #fff;
  transform: translateX(-50%) translateY(3px);
}

.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  min-width: 150px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(8,12,18,0.82);
  border: 1px solid rgba(77,154,255,0.28);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.86);
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  z-index: 998;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  animation: scroll-cue-float 1.8s ease-in-out infinite;
}

.scroll-cue:hover {
  background: rgba(20,30,44,0.92);
  border-color: rgba(77,154,255,0.5);
}

.scroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

.scroll-cue-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--accent);
}

@keyframes scroll-cue-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid #000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-contact-label {
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer-icons {
  display: flex;
  gap: 10px;
}

.footer-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.footer-icon img { width: 18px; height: 18px; }

.footer-icon-mail {
  background: linear-gradient(135deg, rgb(234,67,53), rgb(181,36,25));
  box-shadow: 0 3px 14px rgba(234,67,53,0.4);
}

.footer-icon-ig {
  background: linear-gradient(135deg, rgb(240,148,51), rgb(220,39,67) 50%, rgb(188,24,136));
  box-shadow: 0 3px 14px rgba(220,39,67,0.35);
}

.footer-icon-phone {
  background: linear-gradient(135deg, rgb(34,102,204), rgb(14,61,133));
  box-shadow: 0 3px 14px rgba(34,102,204,0.4);
  flex: 1;
}

.footer-copy {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 1.2px;
  white-space: nowrap;
}

/* ============================================================
   PAGE CONTENT WRAPPER
   ============================================================ */
.page-content {
  padding-top: var(--nav-h);
  background: var(--bg-dark);
  min-height: 100vh;
}

.page-inner {
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   SECTION HERO (À propos style)
   ============================================================ */
.section-hero {
  position: relative;
  height: 720px;
  overflow: hidden;
}

.section-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.section-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(136deg,
    rgba(10,10,10,0.97) 15%,
    rgba(10,10,10,0.82) 37%,
    rgba(10,10,10,0.5) 56%,
    rgba(10,10,10,0.22) 70%,
    rgba(10,10,10,0.35) 85%);
}

.section-hero-content {
  position: absolute;
  inset: 0;
  padding-left: var(--pad-x);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 680px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  padding: 0 20px;
  background: rgba(34,102,204,0.2);
  border: 1px solid rgba(77,154,255,0.45);
  border-radius: 24px;
  margin-bottom: 40px;
  width: fit-content;
}

.section-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-badge-text {
  font-family: 'Michroma', sans-serif;
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-hero-h1 {
  font-family: 'Michroma', sans-serif;
  font-size: 50px;
  color: #fff;
  line-height: 57.5px;
  margin-bottom: 24px;
}

.section-hero-h1 .accent { color: var(--accent); }

.section-hero-sub {
  font-family: 'Michroma', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-hero-desc {
  font-family: 'Michroma', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 25px;
  max-width: 470px;
  margin-bottom: 32px;
}

.section-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.section-tag {
  height: 30px;
  padding: 0 18.67px;
  background: rgba(34,102,204,0.18);
  border: 1px solid rgba(77,154,255,0.38);
  border-radius: 20px;
  font-family: 'Michroma', sans-serif;
  font-size: 10.5px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; align-items: center;
  white-space: nowrap;
}

.section-hero-btns {
  display: flex;
  gap: 24px;
}

.btn-pill-primary {
  height: 56px;
  padding: 0 52px;
  border-radius: 40px;
  background: linear-gradient(179deg, rgb(34,102,204) 11%, rgb(14,61,133) 89%);
  box-shadow: 0 6px 26px rgba(34,102,204,0.55);
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.btn-pill-primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 24px rgba(34,102,204,0.6);
  transform: translateY(-1px);
}
.btn-pill-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(34,102,204,0.4);
}

.btn-pill-secondary {
  height: 56px;
  padding: 0 52px;
  border-radius: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.28);
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.btn-pill-secondary:hover {
  background: rgba(77,154,255,0.12);
  border-color: rgba(77,154,255,0.5);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: rgba(34,102,204,0.05);
  border-top: 1px solid rgba(77,154,255,0.14);
  border-bottom: 1px solid rgba(77,154,255,0.14);
  height: 110px;
  display: flex;
  align-items: center;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  padding: 0 80px;
}

.stat-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-left: 40px;
}

.stat-col:first-child { padding-left: 0; }
.stat-col:last-child { border-right: none; }

.stat-number {
  font-family: 'Michroma', sans-serif;
  font-size: 30px;
  color: var(--accent);
  line-height: 30px;
  margin-bottom: 4px;
}

.stat-number span { color: #fff; }
.stat-number.white { color: #fff; }
.stat-number.white span { color: var(--accent); }

.stat-label {
  font-family: 'Michroma', sans-serif;
  font-size: 9.5px;
  color: rgba(255,255,255,0.39);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stat-label.white { color: #fff; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 80px;
  position: relative;
}

.section-label {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Michroma', sans-serif;
  font-size: 34px;
  color: #fff;
  line-height: 44px;
  margin-bottom: 24px;
}

.section-title .accent { color: var(--accent); }

/* ============================================================
   VALEURS GRID (3 colonnes séparées)
   ============================================================ */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.valeur-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 34.67px 26.67px 34.67px;
  min-height: 258px;
}

.valeur-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(34,102,204), rgb(14,61,133));
  box-shadow: 0 4px 18px rgba(34,102,204,0.38);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.valeur-icon img { width: 22px; height: 22px; }

.valeur-title {
  font-family: 'Michroma', sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
  line-height: normal;
}

.valeur-desc {
  font-family: 'Michroma', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
  line-height: 21.5px;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  background: rgba(34,102,204,0.08);
  border-left: 2.667px solid #2266cc;
  border-radius: 0 12px 12px 0;
  padding: 18px 26.67px;
  margin: 32px 0;
}

.quote-block p {
  font-family: 'Michroma', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 24.75px;
}

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 72px;
  align-items: flex-start;
}

.two-col.reverse { grid-template-columns: 1fr 460px; }

.photo-frame {
  position: relative;
  width: 460px; height: 540px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

.photo-frame-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(0,0,0,0));
}

.photo-caption {
  position: absolute;
  bottom: 22px; left: 22px;
  width: 416px;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(77,154,255,0.3);
  border-radius: 12px;
  padding: 14.67px 18.67px;
}

.photo-caption-role {
  font-family: 'Michroma', sans-serif;
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.photo-caption-name {
  font-family: 'Michroma', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.82);
}

/* ============================================================
   PHOTO STRIP (parallax section)
   ============================================================ */
.photo-strip {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.photo-strip-img {
  position: absolute;
  width: 100%; height: 120%;
  object-fit: cover;
  top: -10%;
}

.photo-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(10,10,10,0.05) 0%,
    rgba(10,10,10,0.35) 40%,
    rgba(10,10,10,0.88) 65%,
    rgba(10,10,10,0.97) 100%);
}

.photo-strip-content {
  position: absolute;
  right: 80px;
  top: 50%; transform: translateY(-50%);
  text-align: right;
  width: 398px;
}

.photo-strip-label {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: right;
}

.photo-strip-quote {
  font-family: 'Michroma', sans-serif;
  font-size: 28px;
  color: #fff;
  line-height: 39.2px;
  text-align: right;
  margin-bottom: 18px;
}

.photo-strip-quote .accent { color: var(--accent); }

.photo-strip-attr {
  font-family: 'Michroma', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: right;
}

/* ============================================================
   INFO ROWS (Où, quand, pour qui)
   ============================================================ */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.info-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(34,102,204,0.14);
  border: 1px solid rgba(77,154,255,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.info-icon img { width: 19px; height: 19px; }

.info-text-label {
  font-family: 'Michroma', sans-serif;
  font-size: 9.5px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-text-value {
  font-family: 'Michroma', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left,
    rgba(20,19,19,0.99) 0%,
    rgba(10,10,10,0.88) 35%,
    rgba(10,10,10,0.35) 65%,
    rgba(10,10,10,0.05) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 50px var(--pad-x);
}

/* ============================================================
   SECTION BORDERS
   ============================================================ */
.border-y {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 22px;
  background: rgba(16,18,22,0.9);
  border: 1px solid rgba(46,64,97,0.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, background 0.2s, box-shadow 0.2s;
  z-index: 999;
  text-decoration: none;
}

.back-top:hover {
  background: rgba(77,154,255,0.15);
  box-shadow: 0 4px 16px rgba(77,154,255,0.3);
}

.back-top.visible { opacity: 1; visibility: visible; }

/* ============================================================
   GENERIC PAGE SECTIONS
   ============================================================ */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card-std {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 26.67px;
}

.card-std:hover {
  border-color: rgba(77,154,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(77,154,255,0.15);
}
.card-std:active {
  transform: translateY(-1px);
}

.card-num {
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Michroma', sans-serif;
  font-size: 24px;
  color: var(--accent);
  line-height: 28.8px;
  margin-bottom: 4px;
}

.card-title-white {
  font-family: 'Michroma', sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 28.8px;
}

.card-desc {
  font-family: 'Michroma', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 23.66px;
  margin-top: 16px;
}

/* Accordion FAQ */
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  font-family: 'Michroma', sans-serif;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}

.faq-btn:hover {
  background: rgba(77,154,255,0.08);
  color: #fff;
}

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(77,154,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.faq-btn:hover .faq-icon {
  background: rgba(77,154,255,0.2);
  box-shadow: 0 0 8px rgba(77,154,255,0.3);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-family: 'Michroma', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
  line-height: 21.5px;
}

.faq-item.open .faq-answer { display: block; }

/* Form */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: 'Michroma', sans-serif;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77,154,255,0.15);
  background: rgba(77,154,255,0.04);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(77,154,255,0.3);
}

.form-textarea { min-height: 120px; resize: vertical; }

/* Table */
.table-wrap {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow-x: auto;
}

.table-wrap table tbody tr {
  transition: background 0.15s;
  position: relative;
}

.table-wrap table tbody tr td:first-child {
  position: relative;
  transition: padding-left 0.15s;
}

.table-wrap table tbody tr:hover td {
  background: rgba(77,154,255,0.04);
}

.table-wrap table tbody tr:hover td:first-child::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}

.table-wrap table tbody tr:hover td:first-child {
  padding-left: calc(20px + 3px);
}


table { width: 100%; border-collapse: collapse; }

thead th {
  background: rgba(255,255,255,0.04);
  padding: 14px 20px;
  text-align: left;
  font-family: 'Michroma', sans-serif;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'Michroma', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

tbody tr:last-child td { border-bottom: none; }
.faq-item tbody tr:hover td {
  background: rgba(77,154,255,0.05);
}

/* Étapes navigation */
.etapes-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 48px;
}

.etapes-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.etape-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.etape-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(77,154,255,0.5);
}

.btn-etape {
  height: 44px;
  padding: 0 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: 'Michroma', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-etape:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(77,154,255,0.08);
}
.btn-etape:disabled { opacity: 0.3; pointer-events: none; }


/* ============================================================
   PAGE IMAGE HOVER EFFECTS
   ============================================================ */
.ap-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ap-hero-img:hover { transform: scale(1.03); }

.ap-strip-img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ap-strip-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.ap-cta-img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.ap-cta-img:hover { transform: scale(1.03); }


/* ============================================================
   INFO IMAGE HOVER
   ============================================================ */
.info-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.page-banner-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.page-banner-img:hover { transform: scale(1.02); }

.coach-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coach-card-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.step-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  margin: 24px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}

/* ============================================================
   FOOTER LINK HOVER
   ============================================================ */
.footer a {
  transition: color 0.15s;
}
.footer a:hover {
  color: var(--accent);
}

/* ─── Loading Screen — Light Mode ─── */
body.light-mode .kms-loader {
  background: #f3f5f8;
}

body.light-mode .kms-loader-logo {
  background: rgba(255,255,255,0.95);
  border-color: rgba(41,121,255,0.4);
  box-shadow: 0 0 30px rgba(41,121,255,0.15);
}

body.light-mode .kms-loader-text {
  color: rgba(34,48,71,0.5);
}

body.light-mode .scroll-cue {
  background: rgba(255,255,255,0.9);
  border-color: rgba(28,47,76,0.12);
  color: #223047;
  box-shadow: 0 10px 30px rgba(30,60,90,0.08);
}

/* ============================================================
   LIGHT MODE
   ============================================================ */
body.light-mode {
  background: #f3f5f8 !important;
  color: #223047;
}

body.light-mode .navbar {
  background: rgba(245,247,250,0.96);
  border-bottom: 1px solid rgba(28,47,76,0.12);
}

body.light-mode .nav-logo {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 18px rgba(41,121,255,0.12);
}

body.light-mode .nav-toggle {
  background: rgba(255,255,255,0.9);
  border-color: rgba(28,47,76,0.14);
}

body.light-mode .nav-toggle span {
  background: #223047;
}

body.light-mode .nav-logo-kms,
body.light-mode .nav-dropdown-toggle,
body.light-mode .nav-link,
body.light-mode .footer-copy,
body.light-mode .footer-contact-label,
body.light-mode .faq-question,
body.light-mode .form-input,
body.light-mode .form-select,
body.light-mode .form-textarea,
body.light-mode .btn-profile,
body.light-mode .btn-toggle,
body.light-mode .back-top {
  color: #223047;
}

body.light-mode .nav-logo-sub,
body.light-mode .faq-answer,
body.light-mode .form-label,
body.light-mode tbody td,
body.light-mode thead th {
  color: rgba(34,48,71,0.72);
}

body.light-mode .nav-dropdown-menu,
body.light-mode .footer,
body.light-mode .faq-item,
body.light-mode .faq-btn,
body.light-mode .btn-profile,
body.light-mode .btn-toggle,
body.light-mode .back-top,
body.light-mode .form-input,
body.light-mode .form-select,
body.light-mode .form-textarea,
body.light-mode .card-std,
body.light-mode .table-wrap {
  background: rgba(255,255,255,0.9);
  border-color: rgba(28,47,76,0.12);
  box-shadow: 0 10px 30px rgba(30,60,90,0.05);
}

body.light-mode .nav-dropdown-menu a,
body.light-mode .dd-label,
body.light-mode .breadcrumb,
body.light-mode .breadcrumb .current,
body.light-mode .breadcrumb .sep,
body.light-mode .card-desc,
body.light-mode .info-text-value {
  color: rgba(34,48,71,0.74);
}

body.light-mode [style*="background:#0d0d0d"],
body.light-mode [style*="background:#141414"],
body.light-mode [style*="background:#0a0a0a"] {
  background: transparent !important;
}

body.light-mode [style*="background:rgba(255,255,255,0.03)"],
body.light-mode [style*="background:rgba(255,255,255,0.04)"],
body.light-mode [style*="background:rgba(255,255,255,0.07)"],
body.light-mode [style*="background:rgba(34,102,204,0.08)"],
body.light-mode [style*="background:rgba(34,102,204,0.05)"] {
  background: rgba(255,255,255,0.88) !important;
}

body.light-mode [style*="border:1px solid rgba(255,255,255"],
body.light-mode [style*="border-bottom:1px solid rgba(255,255,255"],
body.light-mode [style*="border-right:1px solid rgba(255,255,255"],
body.light-mode [style*="border-top:1px solid rgba(255,255,255"] {
  border-color: rgba(28,47,76,0.12) !important;
}

body.light-mode [style*="color:#fff"],
body.light-mode [style*="color:rgba(255,255,255,0.8)"],
body.light-mode [style*="color:rgba(255,255,255,0.82)"],
body.light-mode [style*="color:rgba(255,255,255,0.78)"],
body.light-mode [style*="color:rgba(255,255,255,0.75)"],
body.light-mode [style*="color:rgba(255,255,255,0.7)"],
body.light-mode [style*="color:rgba(255,255,255,0.65)"],
body.light-mode [style*="color:rgba(255,255,255,0.62)"],
body.light-mode [style*="color:rgba(255,255,255,0.6)"],
body.light-mode [style*="color:rgba(255,255,255,0.58)"],
body.light-mode [style*="color:rgba(255,255,255,0.55)"],
body.light-mode [style*="color:rgba(255,255,255,0.5)"],
body.light-mode [style*="color:rgba(255,255,255,0.45)"],
body.light-mode [style*="color:rgba(255,255,255,0.4)"] {
  color: #223047 !important;
}

body.light-mode [style*="background:linear-gradient(135deg,#050a14,#0a1628)"],
body.light-mode [style*="background:linear-gradient(135deg,#060d1a,#0a1628)"],
body.light-mode [style*="background:linear-gradient(135deg,#0a1628,#0d1f3c)"] {
  background: rgba(255,255,255,0.88) !important;
}

@media (max-width: 1180px) {
  :root {
    --pad-x: 40px;
  }

  .navbar {
    padding: 0 28px;
  }

  .nav-panel {
    gap: 24px;
  }

  .nav-link + .nav-link,
  .nav-link:first-child,
  .nav-dropdown-toggle {
    margin-left: 20px;
  }

  .nav-actions {
    width: auto;
  }

  .btn-coach {
    padding: 0 24px;
  }

  .stats-bar-inner {
    padding: 0 40px;
  }

  .section,
  .cta-content {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .page-inner {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 84px;
    --pad-x: 20px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .navbar {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo {
    width: 60px;
    height: 60px;
  }

  .nav-logo-kms {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .nav-logo-sub {
    font-size: 5.5px;
    letter-spacing: 1.2px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: 0;
    padding: 16px;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-panel.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.light-mode .nav-panel {
    background: rgba(245,247,250,0.98);
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-link,
  .nav-dropdown-toggle {
    margin-left: 0 !important;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    line-height: 1.45;
  }

  body.light-mode .nav-link,
  body.light-mode .nav-dropdown-toggle {
    background: rgba(255,255,255,0.9);
    border-color: rgba(28,47,76,0.12);
  }

  .nav-link-underline {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  body.light-mode .nav-dropdown-menu {
    background: rgba(255,255,255,0.82);
  }

  .nav-actions {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 12px;
  }

  .btn-coach,
  .btn-profile {
    width: 100%;
  }

  .btn-profile {
    height: 52px;
    border-radius: 14px;
  }

  .btn-toggle {
    top: 22px;
    right: 74px;
    width: 36px;
    height: 36px;
    border-radius: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .page-content {
    padding-top: var(--nav-h);
  }

  .section,
  .cta-content {
    padding: 56px var(--pad-x);
  }

  .page-inner {
    padding: 0 var(--pad-x);
  }

  .stats-bar {
    height: auto;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 var(--pad-x);
  }

  .stat-col {
    padding: 24px 0 20px;
    padding-left: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .stat-col:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .section-hero {
    height: auto;
    min-height: 640px;
  }

  .section-hero-content {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    padding: calc(var(--nav-h) + 40px) var(--pad-x) 64px;
  }

  .section-hero-overlay {
    background: linear-gradient(180deg,
      rgba(10,10,10,0.84) 0%,
      rgba(10,10,10,0.72) 42%,
      rgba(10,10,10,0.5) 100%);
  }

  .section-hero-h1 {
    font-size: clamp(32px, 8vw, 42px);
    line-height: 1.15;
  }

  .section-hero-sub {
    font-size: 14px;
    letter-spacing: 2.5px;
  }

  .section-hero-desc,
  .hero-sub {
    width: 100%;
    max-width: 100%;
  }

  .section-hero-btns,
  .hero-btns {
    flex-direction: column;
  }

  .btn-pill-primary,
  .btn-pill-secondary,
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;
    white-space: normal;
    text-align: center;
  }

  .valeurs-grid,
  .two-col,
  .two-col.reverse,
  .cols-3,
  .cols-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .photo-frame {
    width: 100%;
    height: 420px;
  }

  .photo-caption {
    width: calc(100% - 44px);
  }

  .photo-strip {
    height: auto;
    min-height: 520px;
  }

  .photo-strip-overlay {
    background: linear-gradient(180deg,
      rgba(10,10,10,0.18) 0%,
      rgba(10,10,10,0.52) 48%,
      rgba(10,10,10,0.94) 100%);
  }

  .photo-strip-content {
    right: var(--pad-x);
    left: var(--pad-x);
    bottom: 32px;
    top: auto;
    transform: none;
    width: auto;
    text-align: left;
  }

  .photo-strip-label,
  .photo-strip-quote,
  .photo-strip-attr {
    text-align: left;
  }

  .footer {
    height: auto;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-contact {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    white-space: normal;
    line-height: 1.7;
  }

  .back-top {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px var(--pad-x);
  }

  .section-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .page-hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-content {
    position: relative;
    inset: auto;
    display: block;
    padding: calc(var(--nav-h) + 48px) var(--pad-x) 120px;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(32px, 10vw, 50px);
    line-height: 1.18;
    margin-bottom: 20px;
  }

  .hero-h1 .accent {
    font-size: inherit;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .hero-btns {
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-pill-primary,
  .btn-pill-secondary {
    height: auto;
  }

  .section-badge-text,
  .section-label,
  .stat-label,
  .footer-copy {
    letter-spacing: 1.6px;
  }
}
