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

:root {
  --navy:        #0a0d1a;
  --navy-2:      #0d1020;
  --navy-card:   #111827;
  --navy-warm:   #0c0a14;
  --navy-border: #1f2937;
  --gold:        #c9a84c;
  --gold-glow:   rgba(201,168,76,0.18);
  --text:        #f9fafb;
  --text-soft:   #d1d5db;
  --text-muted:  #9ca3af;
  --text-dim:    #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT ────────────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY UTILITIES ──────────────────────── */
.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gold);
  color: #0a0d1a;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-gold:hover {
  opacity: 0.9;
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--navy-border);
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--text);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

/* ── NAVIGATION ────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  background: rgba(10,13,26,0.95);
  border-bottom: 1px solid var(--navy-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-cta { display: none; }

/* ── HERO ──────────────────────────────────────── */
.s-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-cta-mention {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(201,168,76,0.6);
  text-transform: uppercase;
}

.hero-cta-secondary {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* ── SCROLL INDICATOR ──────────────────────────── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
  text-decoration: none;
  cursor: pointer;
}

.scroll-chevron {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 0.8;
  transform: rotate(90deg);
  animation: chevron-pulse 1.5s ease-in-out infinite;
}
.scroll-chevron:nth-child(1) { animation-delay: 0s; }
.scroll-chevron:nth-child(2) { animation-delay: 0.2s; }
.scroll-chevron:nth-child(3) { animation-delay: 0.4s; }

@keyframes chevron-pulse {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.85; }
}

.scroll-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ── BLOCAGES ──────────────────────────────────── */
.s-blocages {
  padding: 5rem 1.5rem;
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.blocages-intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

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

.blocage-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s;
}
.blocage-card:hover { border-color: rgba(201,168,76,0.2); }

.blocage-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

.blocage-quote {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  font-style: italic;
}

.blocages-bascule {
  font-size: 0.9375rem;
  color: var(--text-soft);
  font-weight: 600;
}

/* ── MÉTHODE ───────────────────────────────────── */
.s-methode { padding: 5rem 1.5rem; }

.methode-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.methode-arrow {
  display: none;
  align-self: center;
  font-size: 1.5rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.methode-step {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.methode-num {
  display: block;
  font-size: 1.375rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.methode-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.methode-step-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.methode-rupture {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.methode-rupture-line {
  flex: 1;
  border-top: 1px dashed rgba(201,168,76,0.2);
}

.methode-rupture-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 0 0.25rem;
}

.methode-accompagnement {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 460px;
}

.methode-acc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.methode-acc-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.methode-acc-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.methode-acc-link:hover { opacity: 0.65; }

/* ── PLAN B ────────────────────────────────────── */
.s-planb {
  padding: 5rem 1.5rem;
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.planb-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.planb-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.planb-cover {
  display: flex;
  justify-content: center;
}

.planb-cover-placeholder {
  width: 160px;
  aspect-ratio: 2/3;
  background: var(--navy-card);
  border: 1px dashed var(--navy-border);
  border-radius: 8px;
}

.planb-parcours-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.planb-steps {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 2rem;
}

.planb-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.planb-step-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

.planb-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.planb-step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── RAPPORT ───────────────────────────────────── */
.s-rapport {
  padding: 4.5rem 1.5rem;
  border-bottom: 1px solid var(--navy-border);
}

.rapport-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
}

/* ── TÉMOIGNAGES (inactifs) ────────────────────── */
.s-temoignages[data-state="inactive"] { display: none; }

.s-temoignages {
  padding: 5rem 1.5rem;
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.temoignage-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.temoignage-texte {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.temoignage-auteur {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.temoignage-nom { font-weight: 600; color: var(--text-muted); }

/* ── BIFURCATION ───────────────────────────────── */
.s-bifurcation {
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--navy-border);
}

.bifurcation-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.bifurcation-paths {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.bifurcation-path {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  text-align: left;
}

.bifurcation-path-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.bifurcation-path-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bifurcation-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.bifurcation-link:hover { opacity: 0.65; }

.bifurcation-divider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.25rem 0;
}

/* ── BUSINESS COACHING ─────────────────────────── */
.s-coaching {
  padding: 5rem 1.5rem;
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.coaching-intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.coaching-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.coaching-desc-pretitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.coaching-desc-body {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.coaching-desc-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

.coaching-loop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1875rem;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.5rem;
  align-self: flex-start;
  min-width: 200px;
}

.loop-step {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.35rem 1rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  width: 168px;
  text-align: center;
}

.loop-arrow {
  font-size: 0.875rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1.1;
}

.loop-arrow-cycle {
  font-size: 1rem;
  opacity: 0.35;
}

/* ── MUSIC ─────────────────────────────────────── */
.s-music {
  padding: 5rem 1.5rem;
  background: var(--navy-warm);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.label-music { letter-spacing: 0.25em; }

.music-title {
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.music-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.music-divider {
  width: 240px;
  border-top: 1px dashed rgba(201,168,76,0.18);
  margin: 0 0 1.75rem;
}

.music-signature {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(201,168,76,0.35);
  max-width: 440px;
}

.music-album-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 440px;
}

.music-album-cover {
  width: 100px;
  height: 100px;
  background: var(--navy-2);
  border: 1px dashed var(--navy-border);
  border-radius: 8px;
  flex-shrink: 0;
}

.music-album-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.music-album-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.music-album-tracks {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.music-distrib {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.music-platforms {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── CLÔTURE ───────────────────────────────────── */
.s-cloture {
  padding: 6rem 1.5rem;
  text-align: center;
}

.cloture-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cloture-promise {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cloture-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.cloture-sep {
  width: 48px;
  height: 1px;
  background: var(--navy-border);
  margin: 0 auto 2rem;
}

.cloture-dispo {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.cloture-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cloture-wa-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

/* ── FOOTER ────────────────────────────────────── */
.s-footer {
  border-top: 1px solid var(--navy-border);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.88;
}

.footer-emblem-img {
  height: 120px;
  width: auto;
  display: none;
  opacity: 0.88;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.8rem;
  padding: 0.45rem 0.875rem;
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  background: var(--navy-card);
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--gold); border-color: rgba(201,168,76,0.35); }
.social-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (min-width: 600px) {
  .blocages-grid { grid-template-columns: repeat(3, 1fr); }
  .blocage-card { flex-direction: column; gap: 0.75rem; }
}

@media (min-width: 640px) {
  .nav-cta { display: inline-flex; }

  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-cta-mention {
    align-self: flex-end;
    margin-bottom: 0.875rem;
    margin-left: 0.25rem;
  }

  .methode-steps {
    flex-direction: row;
    align-items: stretch;
  }
  .methode-step { flex: 1; }
  .methode-arrow { display: flex; }
  .methode-accompagnement { margin: 0; }

  .planb-inner { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .planb-cover { justify-content: flex-start; }
  .planb-cover-placeholder { width: 200px; }
  .planb-parcours { flex: 1; }

  .temoignages-grid { grid-template-columns: repeat(3, 1fr); }

  .bifurcation-paths { flex-direction: row; gap: 1.25rem; }
  .bifurcation-path { flex: 1; }
  .bifurcation-divider {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    align-self: center;
    padding: 0.75rem 0;
  }

  .coaching-inner { flex-direction: row; gap: 3rem; align-items: flex-start; }
  .coaching-desc { flex: 1; }

  .music-album-card { flex-direction: row; max-width: 520px; }

  .cloture-ctas { flex-direction: row; justify-content: center; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-logo-img { display: none; }
  .footer-emblem-img { display: block; }
}

@media (min-width: 768px) {
  .s-hero { padding: 9rem 1.5rem 6rem; }
}
