/* ═══════════════════════════════════════════
   ASCENDANCE PARAPENTE — STYLESHEET
   Palette : #ffffff · #1a2e4a · #2a7a5c · #5ab8d8 · #f5a623
   Type    : Outfit (300/400/500/600/700/800)
═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2e4a;
  --green:   #2a7a5c;
  --lagon:   #5ab8d8;
  --sun:     #f5a623;
  --white:   #ffffff;
  --off:     #f8f9fa;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --radius:  14px;
  --radius-sm: 8px;
  --shadow:  0 4px 24px rgba(26,46,74,.08);
  --shadow-lg: 0 12px 40px rgba(26,46,74,.14);
  --transition: .22s ease;
  --font: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
details { cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sun);
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn-primary:hover { background: #e09518; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 40px;
  border: 1.5px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-white:hover { background: #f0f4f8; transform: translateY(-1px); }

.btn-card {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off);
  padding: 9px 18px;
  border-radius: 30px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.btn-card:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,46,74,.08);
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.navbar.scrolled .nav-logo .logo-text { color: var(--navy); }
.navbar.scrolled .nav-logo .logo-sub { color: var(--muted); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  transition: color var(--transition);
}
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--sun);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 30px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: #e09518; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-burger span { background: var(--navy); }

.nav-mobile {
  display: none;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .mobile-cta {
  margin-top: 12px;
  background: var(--sun);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-radius: 40px;
  border: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,74,.72) 0%,
    rgba(26,46,74,.45) 50%,
    rgba(42,122,92,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 70px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-accent { color: var(--sun); }

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: .8;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--navy);
  padding: 28px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.intro-stat {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.intro-stat:last-child { border-right: none; }
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-unit { font-size: 16px; font-weight: 500; }
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-light { background: var(--off); }
.section-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a3a 100%);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header.light .section-eyebrow,
.section-header.light .section-title,
.section-header.light .section-desc { color: white; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,.6) !important; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.title-light { color: var(--white) !important; }

.section-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
}
.desc-light { color: rgba(255,255,255,.7) !important; }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-featured {
  border-color: var(--green);
  border-width: 2px;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img { transform: scale(1.04); }

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
}
.tag-family  { background: rgba(90,184,216,.2); color: #0c4d6e; backdrop-filter: blur(6px); }
.tag-intro   { background: rgba(42,122,92,.2);  color: #0f4a35; backdrop-filter: blur(6px); }
.tag-popular { background: var(--sun); color: var(--navy); }
.tag-premium { background: rgba(26,46,74,.65); color: var(--white); backdrop-filter: blur(6px); }
.tag-summit  { background: var(--navy); color: var(--white); }

.card-body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.02em;
}
.card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-gift {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}
.card-gift svg { flex-shrink: 0; }

/* ── STEPS — COMMENT ÇA MARCHE ── */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
  opacity: .6;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.step-arrow {
  font-size: 28px;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  padding: 0 8px;
}

/* ── ÉCOLE GRID ── */
.ecole-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ecole-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.ecole-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.ecole-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  text-align: right;
}
.ecole-content .section-title { text-align: left; margin-bottom: 20px; }
.ecole-content .section-eyebrow { display: block; text-align: left; }
.ecole-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ecole-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.etag {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(42,122,92,.1);
  padding: 6px 14px;
  border-radius: 30px;
}

/* ── STAGES ── */
.stages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.stage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition);
}
.stage-card:hover { box-shadow: var(--shadow); }
.stage-card-accent {
  border-color: var(--green);
  border-width: 2px;
}
.stage-icon { font-size: 32px; }
.stage-name { font-size: 20px; font-weight: 700; color: var(--navy); }
.stage-desc { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.stage-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}
.stages-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
}
.stages-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--green); }
.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
  content: '−';
}
.faq-answer {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.section-cta-final {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
}
.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,74,.8) 0%, rgba(42,122,92,.6) 100%);
}
.cta-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.cta-final-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.cta-final-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}
.cta-final-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.footer-logo span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  color: rgba(255,255,255,.5);
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.1); color: var(--white); }

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ecole-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .navbar.scrolled .nav-burger span { background: var(--navy); }

  .hero-title { font-size: clamp(36px, 10vw, 52px); }

  .intro-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .intro-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .intro-stat:nth-last-child(-n+2) { border-bottom: none; }

  .cards-grid { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; gap: 12px; }
  .step-arrow { transform: rotate(90deg); }

  .ecole-grid { grid-template-columns: 1fr; gap: 40px; }
  .ecole-content .section-title { font-size: 28px; }

  .stages-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .section { padding: 64px 0; }
  .cta-final-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badges { gap: 6px; }
  .badge { font-size: 11px; }
  .container { padding: 0 16px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── LOGO IMAGE ── */
.nav-logo-img { height: 54px; width: auto; display: block; transition: opacity .2s; }
.nav-logo-img:hover { opacity: .85; }
.footer-logo-img { height: 90px; width: auto; display: block; margin-bottom: 14px; }

/* ── CARD OPTION ── */
.card-option { font-size: 12px; color: var(--green); background: rgba(42,122,92,.08); border-left: 3px solid var(--green); padding: 8px 12px; border-radius: 0 6px 6px 0; margin-top: -8px; margin-bottom: 12px; line-height: 1.5; }

/* ══════════════════════════════════════
   SOUS-PAGES
══════════════════════════════════════ */

/* Page header */
.page-header {
  padding: 120px 0 60px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}
.page-header-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a3a 100%);
}
.page-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.page-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
}

/* Reassurance strip */
.reassurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  padding: 28px;
  background: var(--off);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.ri-icon {
  color: var(--green);
  font-weight: 700;
}

/* Gift box section */
.gift-box {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.gift-steps {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.gift-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.gift-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--sun);
}
.gift-cta-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.gift-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.gift-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.gift-important {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(42,122,92,.08);
  border: 1px solid rgba(42,122,92,.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
}
.gift-important svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }

/* Bapteme hero */
.bapteme-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 70px;
}
.bapteme-hero-img-wrap {
  position: absolute;
  inset: 0;
}
.bapteme-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bapteme-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,74,.85) 0%, rgba(26,46,74,.3) 50%, transparent 100%);
}
.bapteme-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--white); }
.bapteme-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.bapteme-price-hero {
  font-size: 32px;
  font-weight: 800;
  color: var(--sun);
  letter-spacing: -.02em;
}

/* Bapteme detail layout */
.bapteme-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.bapteme-info-block {
  background: var(--off);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 24px;
}
.bapteme-info-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.bapteme-info-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bapteme-info-block ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.bapteme-info-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.option-block {
  border-left: 3px solid var(--sun);
  background: rgba(245,166,35,.06);
}
.option-block h3 { color: var(--sun); }

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}
.sidebar-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  margin-bottom: 2px;
}
.sidebar-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0;
}
.sidebar-infos {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.sidebar-info-item svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }
.sidebar-reassure {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--off);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-reassure p {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}

/* Stages detail */
.stage-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stage-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stage-detail-card-accent { border-color: var(--green); border-width: 2px; }
.stage-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 28px 0;
}
.stage-detail-title { font-size: 24px; font-weight: 700; color: var(--navy); margin-top: 4px; }
.stage-detail-price { font-size: 28px; font-weight: 800; color: var(--green); white-space: nowrap; }
.stage-detail-img { width: 100%; height: 200px; object-fit: cover; margin-top: 20px; }
.stage-detail-body { padding: 24px 28px 28px; }
.stage-detail-body p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.stage-programme { margin-top: 20px; }
.stage-programme h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 10px; }
.stage-programme ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.stage-programme ul li { font-size: 14px; color: var(--muted); padding-left: 16px; position: relative; }
.stage-programme ul li::before { content: '→'; position: absolute; left: 0; color: var(--green); }
.stage-note { font-size: 13px; color: var(--navy); background: rgba(245,166,35,.1); border-left: 3px solid var(--sun); padding: 10px 14px; border-radius: 0 6px 6px 0; margin-top: 20px; line-height: 1.5; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; background: var(--off); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 600; color: var(--navy); display: block; }
a.contact-value:hover { color: var(--green); }
.contact-hint { font-size: 13px; color: var(--muted); margin-top: 2px; }
.contact-map-wrap { border-radius: var(--radius); overflow: hidden; }

/* Legal pages */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }

/* ── RESPONSIVE SOUS-PAGES ── */
@media (max-width: 768px) {
  .bapteme-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .gift-box { grid-template-columns: 1fr; }
  .stage-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-header { padding: 100px 0 48px; }
  .bapteme-hero { height: 320px; }
}

/* ── PRODUCT HERO (bapteme pages) ── */
.product-hero {
  padding: 100px 0 56px;
  background: var(--white);
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.product-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  display: block;
}
.product-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin: 12px 0 4px;
  line-height: 1.1;
}
.product-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}
.product-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 16px;
}
.product-reassure {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}

/* Specs block */
.specs-block {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--off);
}
.spec-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}
.spec-item:last-child { border-right: none; }
.spec-icon { font-size: 18px; flex-shrink: 0; }
.spec-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 768px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-hero { padding: 90px 0 40px; }
  .specs-block { flex-direction: column; }
  .spec-item { border-right: none; border-bottom: 1px solid var(--border); }
  .spec-item:last-child { border-bottom: none; }
  .product-actions { flex-direction: column; }
}

/* ── CARD DUREE ── */
.card-duree {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: .02em;
}

/* ── NAVBAR ALWAYS READABLE on white bg ──
   When page header is white (subpages), navbar links must be dark from start */
.navbar.scrolled .nav-links a { color: var(--navy) !important; }
.navbar.scrolled .nav-links a:hover {
  color: var(--green);
}
/* For non-hero pages that start with scrolled class */
.navbar.scrolled .logo-text { color: var(--navy); }
.navbar.scrolled .logo-sub { color: var(--muted); }

/* ── NAVBAR FIX: subpages start with .scrolled, need dark links ── */
.navbar.scrolled .nav-links a {
  color: var(--navy) !important;
}
.navbar.scrolled .nav-links a:hover {
  color: var(--green) !important;
}
.navbar.scrolled .logo-text {
  color: var(--navy) !important;
}
.navbar.scrolled .logo-sub {
  color: var(--muted) !important;
}
.navbar.scrolled .nav-burger span {
  background: var(--navy) !important;
}
/* Home: before scroll, links are white (on hero image) */
.navbar:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,.85);
}
.navbar:not(.scrolled) .logo-text {
  color: var(--white);
}

/* ── STAGE BLOC (layout image + content côte à côte) ── */
.stage-bloc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.stage-bloc-reverse {
  direction: rtl;
}
.stage-bloc-reverse > * {
  direction: ltr;
}
.stage-bloc-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.stage-bloc-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  border-radius: var(--radius);
}
.stage-bloc-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stage-niveau-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--navy);
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
}
.stage-price-tag {
  font-size: 14px;
  font-weight: 800;
  background: var(--sun);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 30px;
}
.stage-bloc-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 8px 0 16px;
}
.stage-bloc-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.stage-infos {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.stage-info-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.stage-info-row:last-child { border-bottom: none; }
.stage-info-label {
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
  min-width: 80px;
}
.stage-info-val {
  color: var(--muted);
  text-align: right;
}
.stage-programme {
  background: var(--off);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.stage-programme h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.stage-programme ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.stage-programme ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.stage-programme ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.stage-programme ul li strong {
  color: var(--navy);
  font-weight: 600;
}
.stages-grid { grid-template-columns: repeat(3,1fr) !important; }

@media (max-width: 768px) {
  .stage-bloc { grid-template-columns: 1fr; gap: 32px; }
  .stage-bloc-reverse { direction: ltr; }
  .stage-bloc-img img { aspect-ratio: 16/9; }
  .stages-grid { grid-template-columns: 1fr !important; }
}

/* ── STAGE BLOC OVERFLOW FIX ── */
.stage-bloc {
  overflow: hidden;
}
.stage-bloc-img {
  min-width: 0;
  overflow: hidden;
}
.stage-bloc-content {
  min-width: 0;
  overflow: hidden;
}
.stage-infos {
  overflow: hidden;
}
.stage-info-row {
  min-width: 0;
}
.stage-info-val {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Stage price on homepage cards */
.stage-card .stage-price {
  display: block;
  margin-bottom: 8px;
}

/* ── STAGE BLOC BADGE FIX : ne déborde plus sur le texte ── */
.stage-bloc-img {
  display: flex;
  flex-direction: column;
}
.stage-bloc-img img {
  flex-shrink: 0;
}
.stage-bloc-badge {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 0;
  flex-wrap: wrap;
}

/* ── NAVBAR SCROLLED : TOUJOURS LISIBLE (règle finale, priorité max) ── */
.navbar.scrolled {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(26,46,74,.08) !important;
}
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:visited {
  color: var(--navy) !important;
}
.navbar.scrolled .logo-text {
  color: var(--navy) !important;
}
.navbar.scrolled .logo-sub {
  color: var(--muted) !important;
}
.navbar.scrolled .nav-burger span {
  background: var(--navy) !important;
}
.navbar.scrolled .nav-mobile a {
  color: var(--navy) !important;
}

/* ── STAGES HOME : centrage et équilibre ── */
.section-light .stages-grid {
  margin-left: auto;
  margin-right: auto;
}
.stages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.stage-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── HERO BADGES : plus lisibles ── */
.badge {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: rgba(255,255,255,.28) !important;
  border: 1.5px solid rgba(255,255,255,.6) !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  backdrop-filter: blur(10px) !important;
  letter-spacing: .02em !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.4) !important;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  transform: translateY(0);
  transition: transform .3s ease;
  flex-wrap: wrap;
}
.cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}
.cookie-text a {
  color: var(--sun);
  text-decoration: underline;
}
.cookie-btn {
  background: var(--sun);
  color: var(--navy);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.cookie-btn:hover { background: #e09518; }

@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btn { width: 100%; text-align: center; }
}
