@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --teal: #00B5A3;
  --teal-dark: #009688;
  --red: #E8294A;
  --green: #8DC63F;
  --green-dark: #6fa32e;
  --blue: #2196F3;
  --blue-dark: #1976D2;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --dark: #1C2331;
  --dark2: #232D3F;
  --text: #2D3748;
  --text-light: #718096;
  --bg-light: #F7F5F0;
  --white: #ffffff;
  --border: #E2E8F0;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.logo-box {
  background: var(--red);
  color: white;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-text {
  background: var(--dark);
  color: white;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a.active {
  color: var(--teal);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-links a.active-red { color: var(--red); }
.nav-links a.active-red::after { background: var(--red); }
.nav-links a.active-green { color: var(--orange-dark); }
.nav-links a.active-green::after { background: var(--orange); }
.nav-links a.active-blue { color: var(--blue); }
.nav-links a.active-blue::after { background: var(--blue); }
.nav-links a.active-orange { color: var(--orange-dark); }
.nav-links a.active-orange::after { background: var(--orange); }

.btn-inscrit {
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-inscrit:hover { background: #c9203b; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  padding: 120px 24px 80px;
  text-align: center;
  background: linear-gradient(160deg, #f0fdf9 0%, #fef7f0 50%, #f0f9fd 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner { max-width: 700px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero h1 .line1 { color: var(--red); display: block; }
.hero h1 .line2 { color: var(--teal); display: block; }

.hero-subtitle {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
  font-style: italic;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.hero-meta-item span { font-size: 15px; }

.hero-desc {
  color: var(--text-light);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary:hover { background: #c9203b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,41,74,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--border);
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon { font-size: 22px; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== SECTION BASE ===== */
section { padding: 80px 24px; }

.container { max-width: 1140px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ESPACES GRID ===== */
.espaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.espace-card {
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: white;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.espace-card.teal     { background: linear-gradient(160deg, var(--teal) 0%, #e8faf8 100%); }
.espace-card.red      { background: linear-gradient(160deg, var(--red) 0%, #fde8ec 100%); }
.espace-card.orange-c { background: linear-gradient(160deg, var(--orange) 0%, #fff0e5 100%); }
.espace-card.blue     { background: linear-gradient(160deg, var(--blue) 0%, #e8f4fe 100%); }

.espace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  filter: brightness(1.05);
}

.espace-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.espace-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.espace-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: white;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.espace-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
  font-weight: 400;
}

.espace-link {
  display: inline-block;
  background: white;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  align-self: flex-start;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.espace-link:hover { opacity: 0.9; transform: translateX(2px); }

.espace-card.teal .espace-link  { color: var(--teal-dark); }
.espace-card.red .espace-link   { color: var(--red); }
.espace-card.orange-c .espace-link { color: var(--orange-dark); }
.espace-card.blue .espace-link  { color: var(--blue-dark); }

/* ===== POURQUOI ===== */
.section-bg { background: var(--bg-light); }

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

.pourquoi-item {
  text-align: center;
  padding: 24px 16px;
}

.pourquoi-item .pi-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.pourquoi-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--dark);
}

.pourquoi-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== MAP ===== */
.map-section { text-align: center; }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0 20px;
  border: 2px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

.map-address {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.map-infos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

/* ===== PARTNERS ===== */
.partners-section { background: white; }

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  margin-top: 12px;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.partner-item:hover { opacity: 1; }

.partner-logo {
  width: 100px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--text);
  padding: 6px;
  text-align: center;
}

.partner-name { font-size: 11px; color: var(--text-light); text-align: center; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--teal);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: white;
  color: var(--teal);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 24px;
}

.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-partners-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== SUB-PAGE HERO WITH PARALLAX ===== */
.page-hero {
  margin-top: 64px;
  padding: 100px 24px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  text-align: center;
  overflow: hidden;
  /* fallback solid color overridden per variant */
  background: var(--teal);
}

/* Parallax image layer — sits behind everything */
.page-hero .parallax-bg {
  position: absolute;
  inset: -40px -10px;          /* oversized so parallax doesn't show edges */
  background-image: url('assets/images/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.05s linear;
  z-index: 0;
}

/* Color overlay — tinted gradient on top of the image */
.page-hero .parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* default teal — overridden per variant */
  background: linear-gradient(135deg,
    rgba(0,181,163,0.82) 0%,
    rgba(0,123,110,0.88) 100%);
  mix-blend-mode: multiply;
}

/* Extra dark vignette at bottom for text legibility */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: white;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.page-hero p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* Variant color overlays */
.page-hero.teal-hero .parallax-overlay {
  background: linear-gradient(135deg,
    rgba(0,181,163,0.80) 0%,
    rgba(0,107,96,0.88) 100%);
}
.page-hero.red-hero .parallax-overlay {
  background: linear-gradient(135deg,
    rgba(232,41,74,0.80) 0%,
    rgba(176,29,53,0.90) 100%);
}
.page-hero.green-hero .parallax-overlay {
  background: linear-gradient(135deg,
    rgba(141,198,63,0.78) 0%,
    rgba(90,138,30,0.90) 100%);
}
.page-hero.blue-hero .parallax-overlay {
  background: linear-gradient(135deg,
    rgba(33,150,243,0.80) 0%,
    rgba(13,71,161,0.90) 100%);
}
.orange-hero .parallax-overlay { background: rgba(249,115,22,0.58); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--teal); }

/* ===== CONTENT SECTION ===== */
.content-section { padding: 64px 24px; }

.feature-list { max-width: 820px; margin: 0 auto; }

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.feature-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check.teal { background: rgba(0,181,163,0.1); color: var(--teal); }
.feature-check.red { background: rgba(232,41,74,0.1); color: var(--red); }
.feature-check.green { background: rgba(141,198,63,0.15); color: var(--green-dark); }
.feature-check.blue { background: rgba(33,150,243,0.1); color: var(--blue); }
.feature-check.orange { background: rgba(249,115,22,0.10); color: var(--orange-dark); }

.feature-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== TIPS / CARDS GRIDS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tip-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
}

.tip-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.tip-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.tip-icon.red { background: var(--red); color: white; }
.tip-icon.teal { background: var(--teal); color: white; }
.tip-icon.green { background: var(--green); color: white; }
.tip-icon.blue { background: var(--blue); color: white; }

.tip-card p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
}

/* ===== SAVOIR BOX ===== */
.savoir-box {
  max-width: 700px;
  margin: 32px auto 0;
  background: white;
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.savoir-box.red-border { border-color: var(--red); }
.savoir-box.green-border { border-color: var(--green); }
.savoir-box.blue-border { border-color: var(--blue); }

.savoir-box h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.savoir-box p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== TAGS / BADGES ===== */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.tag-badge {
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid;
}

.tag-badge.red { border-color: var(--red); color: var(--red); }
.tag-badge.teal { border-color: var(--teal); color: var(--teal); }
.tag-badge.green { border-color: var(--green-dark); color: var(--green-dark); }
.tag-badge.blue { border-color: var(--blue); color: var(--blue); }

/* ===== SECTORS ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sector-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}

.sector-card:hover { border-color: var(--teal); transform: translateY(-2px); cursor: pointer; }
a.sector-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; }

.sector-icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  color: white;
}

.sector-card p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.4;
}

/* ===== CTA VARIANTS ===== */
.cta-section.red-cta { background: var(--red); }
.cta-section.orange-cta { background: var(--orange); }
.cta-section.orange-cta .btn-white { color: var(--orange-dark); }
.cta-section.green-cta { background: var(--green-dark); }
.cta-section.blue-cta { background: var(--blue); }

.btn-white.red-text { color: var(--red); }
.btn-white.green-text { color: var(--green-dark); }
.btn-white.blue-text { color: var(--blue); }

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}

.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.benefit-icon.blue { background: rgba(33,150,243,0.1); color: var(--blue); }
.benefit-icon.teal { background: rgba(0,181,163,0.1); color: var(--teal); }
.benefit-icon.green { background: rgba(141,198,63,0.15); color: var(--green-dark); }
.benefit-icon.red { background: rgba(232,41,74,0.1); color: var(--red); }

.benefit-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}


/* ===== BURGER + MENU MOBILE ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 110;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animation croix */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 99;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu a.active { color: var(--teal); }
.mobile-menu a.active-red { color: var(--red); }
.mobile-menu a.active-orange { color: var(--orange-dark); }
.mobile-menu a.active-blue { color: var(--blue); }

.mobile-menu .btn-inscrit-mobile {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--red);
  color: white;
  padding: 13px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-menu .btn-inscrit-mobile:hover { background: #c9203b; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .espaces-grid { grid-template-columns: 1fr; }
  .espace-card { min-height: 170px; }
  .pourquoi-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .pourquoi-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .btn-inscrit { display: none; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }
