/* ═══════════════════════════════════════════════════════════════
   La Station Formation — Static CSS
   Converted from Next.js / Tailwind source
═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #FAFAFA;
  color: #111111;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, button { font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #FAFAFA; }
::-webkit-scrollbar-thumb { background: #D0D0D0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FFCC00; }

/* ── Layout container ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem;   padding-right: 2rem;   } }

.section-padding { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .section-padding { padding-top: 7rem; padding-bottom: 7rem; } }

/* ── Card ───────────────────────────────────────────────────── */
.card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

/* ── Image frame ────────────────────────────────────────────── */
.img-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 20px 60px rgba(0,0,0,.06);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Section chip ───────────────────────────────────────────── */
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(255,204,0,.15);
  color: #111111;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}

/* ── Yellow highlight ───────────────────────────────────────── */
.hl {
  position: relative;
  display: inline-block;
}
.hl::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 6px;
  background: #FFCC00;
  border-radius: 2px;
  z-index: -1;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: .875rem 1.75rem; border-radius: .75rem;
  background: #FFCC00; color: #111111; font-weight: 700; font-size: 1rem;
  box-shadow: 0 2px 12px rgba(255,204,0,.35);
  transition: background .2s, box-shadow .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-primary:hover  { background: #FFD633; box-shadow: 0 6px 24px rgba(255,204,0,.45); }
.btn-primary:active { transform: scale(.96); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: .875rem 1.75rem; border-radius: .75rem;
  border: 1px solid #EAEAEA; background: #FFFFFF;
  color: #111111; font-weight: 600; font-size: 1rem;
  transition: background .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.btn-secondary:hover  { background: #F5F5F5; border-color: #D0D0D0; }
.btn-secondary:active { transform: scale(.96); }

/* ═══════════════════════════════════════════════════════════════
   LOGO
═══════════════════════════════════════════════════════════════ */
.logo {
  display: inline-flex; align-items: center;
  user-select: none; cursor: pointer; flex-shrink: 0;
}
.logo-img {
  height: 2rem; width: auto; display: block;
}
@media (min-width: 1024px) {
  .logo-img { height: 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #FFFFFF; border-bottom: 1px solid #EAEAEA;
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.07); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .nav-inner { height: 5.5rem; } }

.nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { color: #555555; font-size: .875rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #111111; }

.nav-cta {
  display: none; align-items: center; gap: .5rem;
  padding: .625rem 1.25rem; border-radius: .75rem;
  background: #FFCC00; color: #111111;
  font-weight: 700; font-size: .875rem;
  box-shadow: 0 2px 8px rgba(255,204,0,.3);
  transition: background .15s, box-shadow .15s, transform .1s;
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover  { background: #FFD633; box-shadow: 0 4px 16px rgba(255,204,0,.4); }
.nav-cta:active { transform: scale(.96); }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  padding: .5rem; color: #555555; transition: color .15s;
}
.nav-toggle:hover { color: #111111; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem; background: #FFFFFF;
  border-top: 1px solid #EAEAEA;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .75rem 1rem; color: #555555; font-size: .875rem;
  font-weight: 500; border-radius: .75rem; transition: background .15s, color .15s;
}
.nav-mobile a:hover { background: #F5F5F5; color: #111111; }
.nav-mobile-cta {
  margin-top: .5rem; padding: .75rem 1rem; text-align: center;
  border-radius: .75rem; background: #FFCC00;
  color: #111111 !important; font-weight: 700 !important;
}
.nav-mobile-cta:hover { background: #FFD633 !important; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #FAFAFA; overflow: hidden;
}
.hero-bloom {
  position: absolute; top: 0; right: 0;
  width: 40rem; height: 40rem;
  background: #FFCC00; opacity: .05; border-radius: 50%;
  filter: blur(120px); transform: translate(25%,-33%); pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(circle, #D8D8D8 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner { position: relative; padding-top: 8.5rem; padding-bottom: 5rem; width: 100%; }

.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.hero-h1 {
  font-size: 2.4rem; font-weight: 800; color: #111111;
  line-height: 1.06; letter-spacing: -.03em; margin-bottom: 1.5rem;
  animation: fadeUp .4s .07s ease both;
}
@media (min-width: 640px)  { .hero-h1 { font-size: 3rem;   } }
@media (min-width: 1024px) { .hero-h1 { font-size: 3.2rem; } }
@media (min-width: 1280px) { .hero-h1 { font-size: 3.6rem; } }

.hero-eyebrow { margin-bottom: 1.5rem; animation: fadeUp .4s ease both; }
.hero-subtitle {
  font-size: 1.125rem; color: #555555; line-height: 1.7;
  margin-bottom: 2rem; max-width: 36rem;
  animation: fadeUp .4s .14s ease both;
}
.hero-subtitle strong { color: #111111; font-weight: 600; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2.5rem; animation: fadeUp .4s .21s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .375rem .75rem; border-radius: .5rem;
  font-size: .75rem; font-weight: 500;
}
.hero-badge.muted  { background: #F5F5F5; color: #555555; }
.hero-badge.accent { background: #FFCC00; color: #111111; font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: nowrap; gap: 1rem; animation: fadeUp .4s .28s ease both; }
.hero-ctas .btn-primary,
.hero-ctas .btn-secondary { white-space: nowrap; }

.hero-image-wrap { display: none; animation: fadeUp .5s .18s ease both; }
@media (min-width: 1024px) { .hero-image-wrap { display: block; } }

.hero-image-card {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 20px 60px rgba(0,0,0,.06);
  background: #F0EDE5; aspect-ratio: 5/4;
}
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .375rem;
  animation: fadeIn .5s 1.6s ease both;
}
.hero-scroll .scroll-label {
  font-size: 10px; color: #BBBBBB; text-transform: uppercase; letter-spacing: .2em;
}
.hero-scroll svg { animation: chevBounce 1.5s ease-in-out infinite; }
@keyframes chevBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ═══════════════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 3rem 0; background: #FFFFFF;
  border-top: 1px solid #EAEAEA; border-bottom: 1px solid #EAEAEA;
}
@media (min-width: 1024px) { .stats-section { padding: 4rem 0; } }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; } }

.stat-card { padding: 1.5rem; border-radius: 1rem; text-align: center; }
@media (min-width: 1024px) { .stat-card { padding: 2rem; } }

.stat-icon {
  width: 2.5rem; height: 2.5rem; border-radius: .75rem;
  background: #FFCC00; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
}
.stat-value { font-size: 1.875rem; font-weight: 800; color: #111111; line-height: 1; margin-bottom: .375rem; }
@media (min-width: 1024px) { .stat-value { font-size: 2.25rem; } }
.stat-unit { font-size: 1rem; font-weight: 600; color: #888888; margin-left: .125rem; }
.stat-label { font-size: .875rem; color: #888888; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT (OBJECTIFS)
═══════════════════════════════════════════════════════════════ */
.two-col { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-image { aspect-ratio: 4/3; }

.section-h2 {
  font-size: 1.875rem; font-weight: 800; color: #111111;
  line-height: 1.2; margin-bottom: .75rem;
}
@media (min-width: 1024px) { .section-h2 { font-size: 2.25rem; } }

.objectives-intro { color: #555555; line-height: 1.7; margin-bottom: 1.5rem; }

.objectives-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .objectives-grid { grid-template-columns: 1fr 1fr; } }

.objective-card { padding: 1.25rem; border-radius: 1rem; }
.objective-icon {
  width: 2.25rem; height: 2.25rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.objective-icon.yellow { background: #FFCC00; }
.objective-icon.dark   { background: #111111; }
.objective-title { color: #111111; font-weight: 700; font-size: .875rem; margin-bottom: .5rem; line-height: 1.4; }
.objective-desc  { color: #888888; font-size: .75rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   PROGRAM
═══════════════════════════════════════════════════════════════ */
.program-header { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .program-header { grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 5rem; } }

.program-image { aspect-ratio: 16/9; }

.program-desc { color: #555555; line-height: 1.7; }

.program-timeline {
  position: relative; display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 1024px) { .program-timeline { gap: 3rem; } }

@media (min-width: 1024px) {
  .program-timeline::before {
    content: ''; display: block; position: absolute;
    left: calc(50% - .5px); top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, #FFCC00, #EAEAEA, #FFCC00);
  }
}

.week-row { position: relative; }
@media (min-width: 1024px) {
  .week-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
  }
  .week-row.alt .week-card    { order: 2; }
  .week-row.alt .week-spacer  { order: 1; }
}

.week-dot { display: none; }
@media (min-width: 1024px) {
  .week-dot {
    display: flex; position: absolute;
    left: 50%; transform: translateX(-50%); top: 1.5rem;
    width: 1rem; height: 1rem; border-radius: 50%; z-index: 1;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #EAEAEA;
  }
  .week-dot.yellow { background: #FFCC00; }
  .week-dot.dark   { background: #111111; }
}

.week-card { padding: 1.75rem; border-radius: 1rem; width: 100%; }
@media (min-width: 1024px) { .week-card { padding: 2rem; } }
.week-spacer { display: none; }
@media (min-width: 1024px) { .week-spacer { display: block; } }

.week-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.week-icon {
  width: 2.5rem; height: 2.5rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.week-icon.yellow { background: #FFCC00; }
.week-icon.dark   { background: #111111; }
.week-meta { flex: 1; min-width: 0; }
.week-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: #888888; margin-bottom: .125rem;
}
.week-title { font-size: 1.25rem; font-weight: 800; color: #111111; }
.week-num { font-size: 3rem; font-weight: 900; color: #EAEAEA; line-height: 1; flex-shrink: 0; }
.week-desc { color: #888888; font-size: .875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.week-items { display: flex; flex-direction: column; gap: .625rem; }
.week-item { display: flex; align-items: flex-start; gap: .75rem; color: #555555; font-size: .875rem; }
.week-item svg { flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   TRAINER
═══════════════════════════════════════════════════════════════ */
.trainer-photo-wrap { display: flex; justify-content: center; }
.trainer-photo-inner { position: relative; max-width: 22.5rem; width: 100%; }
.trainer-photo {
  aspect-ratio: 3/4; border-radius: 1.5rem; overflow: hidden;
  background: #F5F5F5; border: 1px solid #EAEAEA;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 20px 60px rgba(0,0,0,.05);
  position: relative;
}
.trainer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.trainer-corner {
  position: absolute; width: 3rem; height: 3rem; pointer-events: none; z-index: 1;
}
.trainer-corner.tl {
  top: 1.25rem; left: 1.25rem;
  border-left: 2px solid #FFCC00; border-top: 2px solid #FFCC00;
  border-radius: .75rem 0 0 0;
}
.trainer-corner.br {
  bottom: 1.25rem; right: 1.25rem;
  border-right: 2px solid #FFCC00; border-bottom: 2px solid #FFCC00;
  border-radius: 0 0 .75rem 0;
}
.trainer-name  { font-size: 1.875rem; font-weight: 800; color: #111111; margin-bottom: .5rem; }
@media (min-width: 1024px) { .trainer-name { font-size: 2.25rem; } }
.trainer-role  { font-weight: 700; font-size: 1.125rem; color: #A08800; margin-bottom: 1.5rem; }
.trainer-bio   { color: #555555; line-height: 1.7; margin-bottom: 2rem; font-style: italic; }

.trainer-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.trainer-stat  { padding: 1rem; border-radius: 1rem; text-align: center; transition: border-color .2s; }
.trainer-stat:hover { border-color: rgba(255,204,0,.4); }
.trainer-stat-icon  { margin: 0 auto .5rem; color: #A08800; }
.trainer-stat-val   { font-size: 1.25rem; font-weight: 800; color: #111111; line-height: 1; margin-bottom: .25rem; }
.trainer-stat-label { font-size: 11px; color: #AAAAAA; }

/* ═══════════════════════════════════════════════════════════════
   VENUE
═══════════════════════════════════════════════════════════════ */
.venue-header { text-align: center; margin-bottom: 3.5rem; }
.venue-h2     { font-size: 1.875rem; font-weight: 800; color: #111111; }
@media (min-width: 1024px) { .venue-h2 { font-size: 2.25rem; } }

.venue-photo { aspect-ratio: 16/9; margin-bottom: 1.75rem; }
.venue-title { font-size: 1.25rem; font-weight: 700; color: #111111; margin-bottom: .75rem; }
.venue-desc  { color: #555555; line-height: 1.7; margin-bottom: 1.5rem; }

.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
.amenity   { display: flex; align-items: center; gap: .625rem; padding: .75rem; border-radius: .75rem; }
.amenity-icon {
  width: 1.75rem; height: 1.75rem; border-radius: .5rem;
  background: #FFCC00; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.amenity span { color: #555555; font-size: .875rem; font-weight: 500; }

.venue-addr { display: flex; align-items: center; gap: .75rem; padding: 1rem; border-radius: 1rem; }
.venue-addr-icon {
  width: 2.25rem; height: 2.25rem; border-radius: .75rem;
  background: #FFCC00; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.venue-addr-text { flex: 1; }
.venue-addr-name { color: #111111; font-weight: 700; font-size: .875rem; }
.venue-addr-sub  { color: #888888; font-size: .875rem; }
.venue-addr-link {
  display: flex; align-items: center; gap: .25rem;
  color: #111111; font-size: .75rem; font-weight: 600;
  transition: color .15s; flex-shrink: 0;
}
.venue-addr-link:hover { color: #A08800; }

.venue-map-wrap {
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid #EAEAEA; box-shadow: 0 4px 24px rgba(0,0,0,.07);
  height: 27.5rem;
}
@media (min-width: 1024px) { .venue-map-wrap { height: 32.5rem; } }
.venue-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-wrap   { max-width: 42rem; margin: 0 auto; }
.pricing-card   {
  background: #FFFFFF; border-radius: 1.5rem;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 32px rgba(0,0,0,.07), 0 20px 60px rgba(0,0,0,.04);
  overflow: hidden;
}
.pricing-bar  { height: 6px; background: #FFCC00; }
.pricing-body { padding: 2rem; }
@media (min-width: 1024px) { .pricing-body { padding: 3rem; } }

.pricing-top {
  display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .pricing-top { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.pricing-label {
  color: #888888; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem;
}
.pricing-amount { display: flex; align-items: flex-end; gap: .375rem; }
.pricing-number { font-size: 3rem; font-weight: 800; color: #111111; line-height: 1; }
@media (min-width: 1024px) { .pricing-number { font-size: 3.75rem; } }
.pricing-currency { font-size: 1.5rem; font-weight: 700; color: #111111; margin-bottom: .25rem; }
.pricing-note    { color: #AAAAAA; font-size: .875rem; margin-top: .5rem; }
.pricing-badges  { display: flex; flex-direction: column; gap: .625rem; }
@media (min-width: 640px) { .pricing-badges { align-items: flex-end; } }

.badge-limited {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .5rem 1rem; border-radius: 99px;
  background: #FFCC00; color: #111111; font-size: .75rem; font-weight: 700;
}
.badge-max {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; color: #888888;
}
.pricing-divider { height: 1px; background: #EAEAEA; margin-bottom: 2rem; }
.pricing-inc-title {
  color: #111111; font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1.25rem;
}
.pricing-includes {
  display: grid; gap: .875rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .pricing-includes { grid-template-columns: 1fr 1fr; } }
.pricing-include {
  display: flex; align-items: flex-start; gap: .75rem;
  color: #555555; font-size: .875rem;
}
.pricing-check {
  margin-top: 2px; flex-shrink: 0; width: 1.25rem; height: 1.25rem;
  border-radius: 50%; background: #FFCC00;
  display: flex; align-items: center; justify-content: center;
}
.btn-pricing {
  width: 100%; padding: 1rem; border-radius: 1rem;
  background: #FFCC00; color: #111111; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  box-shadow: 0 2px 12px rgba(255,204,0,.35);
  transition: background .2s, box-shadow .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-pricing:hover  { background: #FFD633; box-shadow: 0 6px 24px rgba(255,204,0,.45); }
.btn-pricing:active { transform: scale(.98); }
.pricing-footer     { text-align: center; color: #AAAAAA; font-size: .75rem; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT / FORM
═══════════════════════════════════════════════════════════════ */
.contact-h2   { font-size: 1.875rem; font-weight: 800; color: #111111; line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 1024px) { .contact-h2 { font-size: 2.25rem; } }
.contact-desc { color: #555555; line-height: 1.7; margin-bottom: 2rem; }
.contact-desc strong { color: #111111; }

.contact-badges { display: flex; flex-direction: column; gap: .75rem; }
.contact-badge  { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem; border-radius: 1rem; }
.contact-badge-icon {
  width: 2.25rem; height: 2.25rem; border-radius: .75rem;
  background: #FFCC00; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-badge-lbl { color: #888888; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .125rem; }
.contact-badge-val { color: #111111; font-size: .875rem; font-weight: 600; }

.form-card { border-radius: 1.5rem; padding: 2rem; box-shadow: 0 4px 32px rgba(0,0,0,.07); }
@media (min-width: 1024px) { .form-card { padding: 2.5rem; } }
.form-title { font-size: 1.25rem; font-weight: 800; color: #111111; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: #111111; margin-bottom: .375rem; }
.form-label span { color: #A08800; }
.form-input-wrap { position: relative; }
.form-input-icon {
  position: absolute; left: .875rem; top: 50%; transform: translateY(-50%);
  color: #BBBBBB; pointer-events: none; display: flex; align-items: center;
}
.form-input {
  width: 100%; padding: .75rem 1rem .75rem 2.5rem;
  border-radius: .75rem; border: 1px solid #EAEAEA;
  background: #FFFFFF; color: #111111; font-size: .875rem;
  font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input::placeholder { color: #BBBBBB; }
.form-input:focus { border-color: #FFCC00; box-shadow: 0 0 0 3px rgba(255,204,0,.2); }
.form-input.has-error { border-color: #F87171; }
.form-input.has-error:focus { border-color: #F87171; box-shadow: 0 0 0 3px rgba(248,113,113,.2); }
.field-error { margin-top: .25rem; color: #EF4444; font-size: .75rem; min-height: 1rem; }

.form-error-box {
  border-radius: .75rem; border: 1px solid #FECACA; background: #FEF2F2;
  padding: .75rem 1rem; color: #DC2626; font-size: .875rem;
  margin-bottom: 1rem; display: none;
}
.form-error-box.show { display: block; }

.form-submit {
  width: 100%; padding: .875rem; border-radius: .75rem;
  background: #FFCC00; color: #111111; font-weight: 700; font-size: .875rem;
  display: flex; align-items: center; justify-content: center; gap: .625rem;
  box-shadow: 0 2px 12px rgba(255,204,0,.3);
  transition: background .15s, box-shadow .15s, transform .1s, opacity .15s;
  border: none; cursor: pointer; margin-top: 1.25rem;
}
.form-submit:hover   { background: #FFD633; box-shadow: 0 6px 24px rgba(255,204,0,.4); }
.form-submit:active  { transform: scale(.98); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-note { text-align: center; color: #BBBBBB; font-size: .75rem; margin-top: .75rem; }

.form-success { text-align: center; padding: 2rem 0; display: none; }
.form-success.show { display: block; }
.form-success-icon {
  width: 5rem; height: 5rem; border-radius: 50%; background: #FFCC00;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-title { font-size: 1.5rem; font-weight: 800; color: #111111; margin-bottom: .75rem; }
.form-success-text  { color: #555555; line-height: 1.6; max-width: 20rem; margin: 0 auto; }
.form-success-text strong { color: #111111; }

.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(17,17,17,.3); border-top-color: #111111;
  border-radius: 50%; animation: spin .7s linear infinite; display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer { background: #F5F5F5; border-top: 1px solid #EAEAEA; }
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 2rem 0;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }

.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .375rem 1.5rem; }
.footer-legal a { color: #888888; font-size: .75rem; transition: color .15s; }
.footer-legal a:hover { color: #111111; }
.footer-sep { color: #DDDDDD; font-size: .75rem; display: none; }
@media (min-width: 640px) { .footer-sep { display: inline; } }

.footer-right  { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.footer-ig {
  width: 2rem; height: 2rem; border-radius: .75rem;
  border: 1px solid #EAEAEA; background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  color: #888888; transition: color .15s, border-color .15s, background .15s;
}
.footer-ig:hover { color: #111111; border-color: #FFCC00; background: #FFFBEB; }
.footer-copy { color: #AAAAAA; font-size: .75rem; }

/* ═══════════════════════════════════════════════════════════════
   FOCUS VISIBILITY (keyboard navigation)
═══════════════════════════════════════════════════════════════ */

/* Remove browser outline for mouse/touch users, keep for keyboard */
:focus:not(:focus-visible) { outline: none; }

/* Yellow focus ring for all keyboard-navigable elements */
:focus-visible {
  outline: 2px solid #FFCC00;
  outline-offset: 3px;
  border-radius: 3px;
}

/* Form inputs: border+shadow is the indicator — no extra outline ring */
.form-input:focus-visible { outline: none; }

/* Yellow-background elements: dark ring for visibility */
.btn-primary:focus-visible,
.btn-pricing:focus-visible,
.nav-cta:focus-visible,
.form-submit:focus-visible,
.nav-mobile-cta:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 2px;
  border-radius: .75rem;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.anim { opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease; }
.anim.from-left  { transform: translateX(-20px); }
.anim.from-right { transform: translateX(20px);  }
.anim.visible    { opacity: 1; transform: translateY(0) translateX(0); }

.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; }
.d5 { transition-delay: .30s; }
.d6 { transition-delay: .36s; }

/* ── Program bullet list ────────────────────────────────────── */
.program-list { display: flex; flex-direction: column; gap: .875rem; }
.program-list-item {
  display: flex; align-items: center; gap: .875rem;
  color: #555555; font-size: .9375rem; line-height: 1.6;
}
.program-list-item svg { flex-shrink: 0; }

/* ── Trainer bio multi-paragraph spacing ────────────────────── */
.trainer-bio p + p { margin-top: .875rem; }

/* ── WhatsApp floating button ───────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,.55), 0 4px 10px rgba(0,0,0,.15);
}
.whatsapp-btn:active { transform: scale(.96); }

/* ── Venue simplified layout ───────────────────────────────── */
.venue-simple-info {
  display: flex; align-items: center; justify-content: center;
  min-height: 12rem;
}
.venue-address-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; text-align: center;
}
.venue-addr-pin {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #FFCC00;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,204,0,.35);
}
.venue-simple-addr {
  font-size: 1.125rem; font-weight: 600;
  color: #111111; letter-spacing: -.01em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE — ajustements complémentaires
══════════════════════════════════════════════════════════════ */

/* Nav mobile = 4rem → réduire padding-top hero */
@media (max-width: 1023px) {
  .hero-inner { padding-top: 5.5rem; padding-bottom: 3rem; }
}

/* Petits mobiles ≤ 639px : boutons hero en colonne pleine largeur */
@media (max-width: 639px) {
  .hero-ctas {
    flex-wrap: wrap;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }

  /* Formulaire : réduire le padding sur mobile */
  .form-card { padding: 1.25rem; }
  .pricing-body { padding: 1.25rem; }

  /* Titres */
  .section-h2 { font-size: 1.625rem; }
  .contact-h2 { font-size: 1.625rem; }
  .trainer-name { font-size: 1.5rem; }
  .venue-h2 { font-size: 1.5rem; }
}

/* Très petits écrans ≤ 380px (iPhone SE, Galaxy S) */
@media (max-width: 380px) {
  .hero-h1 { font-size: 1.75rem; }
  .hero-badge { font-size: .7rem; padding: .3rem .55rem; }
  .stat-value { font-size: 1.625rem; }
  .trainer-stats { gap: .5rem; }
  .trainer-stat-val { font-size: 1.125rem; }
  .week-card { padding: 1.25rem; }
  .venue-addr { flex-wrap: wrap; }
  .venue-addr-link { margin-left: 3rem; }
}
