/* =============================================
   SAMA PRO — HIGH CONVERSION THEME
   Website 05 — Formation SAMA
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C0392B;
  --red-dark: #962d22;
  --red-light: #e04535;
  --amber: #F39C12;
  --amber-dark: #d68910;
  --dark: #1C1C1C;
  --dark-card: #252525;
  --dark-card-2: #2e2e2e;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --text-dark: #111111;
  --text-body: #3a3a3a;
  --text-muted: #777777;
  --text-light: rgba(255,255,255,0.75);
  --border-dark: rgba(255,255,255,0.1);
  --border-light: #E0E0E0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 60px;
  --transition: 0.22s ease;
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--red); transition: color var(--transition); }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Content Wrap --- */
.content-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Eyebrow --- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  background: rgba(243,156,18,0.12);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-eyebrow.red {
  color: var(--red-light);
  background: rgba(192,57,43,0.15);
}

/* --- Section Intros --- */
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-intro.light-text { color: rgba(255,255,255,0.6); }

/* --- Text Center --- */
.text-center { text-align: center; }
.text-center h2 { color: var(--white); }
.text-center .section-eyebrow { display: block; margin-left: auto; margin-right: auto; width: fit-content; }
.text-center .section-intro { text-align: center; }

/* --- Buttons --- */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}
.btn-red.big-btn { font-size: 1.1rem; padding: 18px 40px; }

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(192,57,43,0.5);
}
.btn-hero-cta:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.6);
}
.btn-arrow { font-size: 1.3rem; }

.btn-outline-white {
  display: inline-block;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* =============================================
   FLOATING NAV
   ============================================= */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1000px;
  transition: all var(--transition);
}
.nav-pill {
  background: rgba(28,28,28,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.nav-cta-pill {
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links a.nav-cta-pill:hover { background: var(--red-dark); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   STICKY SIDE CTA
   ============================================= */
.sticky-side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.sticky-side-cta.visible { opacity: 1; pointer-events: auto; }
.sticky-side-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  min-width: 64px;
  font-size: 0.7rem;
  font-weight: 700;
  transition: all var(--transition);
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.sticky-side-cta a:hover { background: var(--red-dark); color: var(--white); transform: translateX(-4px); }
.sticky-side-cta a.side-cta-phone { background: var(--dark-card-2); }
.side-cta-icon { font-size: 1.2rem; }
.side-cta-text { text-align: center; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a0a08 40%, #200d0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(192,57,43,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

/* Urgency banner */
.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.5);
  color: #ff8070;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}
.pulse-dot.red { background: var(--red); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Hero badge row */
.hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badge-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero-section h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-sub-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Places bar */
.places-bar-wrap {
  max-width: 500px;
  margin: 0 auto 32px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.places-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.places-bar-count strong { color: var(--red-light); }
.places-bar-track {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.places-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
  border-radius: 10px;
  transition: width 1s ease;
}

.hero-cta-block {
  margin-bottom: 36px;
}
.hero-cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark);
  margin-left: -10px;
}
.proof-avatars img:first-child { margin-left: 0; }
.hero-social-proof p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }
.hero-social-proof strong { color: var(--white); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-arrow {
  animation: bounce 2s ease infinite;
  font-size: 1.1rem;
  margin-top: 4px;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   PROOF STRIP
   ============================================= */
.proof-strip {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.proof-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.proof-stat { text-align: center; }
.proof-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  font-family: var(--font);
}
.proof-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* =============================================
   SECTION PANELS
   ============================================= */
.section-dark-panel {
  background: var(--dark);
  padding: 80px 0;
}
.section-dark-panel h2 { color: var(--white); }
.section-dark-panel h3 { color: var(--white); }
.section-dark-panel p { color: rgba(255,255,255,0.65); }
.section-dark-panel .section-intro { color: rgba(255,255,255,0.55); }

.section-light-panel {
  background: var(--light);
  padding: 80px 0;
}
.section-light-panel h2 { color: var(--text-dark); }
.section-light-panel h3 { color: var(--text-dark); }
.section-light-panel h4 { color: var(--text-dark); }
.section-light-panel p { color: var(--text-body); }
.section-light-panel .section-eyebrow { color: var(--red); background: rgba(192,57,43,0.1); }
.section-light-panel .section-intro { color: var(--text-muted); }

.section-cta-block {
  text-align: center;
  margin-top: 40px;
}
.section-cta-block.light .btn-red { }

/* =============================================
   TWO PANEL GRID
   ============================================= */
.two-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}
.panel-text .lead-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 16px;
}
.panel-text strong { color: var(--white); }
.panel-image { position: relative; }
.panel-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.panel-image-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
}
.badge-big-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-big-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

/* =============================================
   ICON BULLETS
   ============================================= */
.icon-bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.icon-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.icon-bullet-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.icon-bullet-circle {
  width: 48px;
  height: 48px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.icon-bullet-content strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; font-weight: 700; }
.icon-bullet-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =============================================
   CTA INTERCALAIRES
   ============================================= */
.cta-intercalaire {
  background: linear-gradient(135deg, #1a0805 0%, #2a0e0a 100%);
  border-top: 1px solid rgba(192,57,43,0.3);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  padding: 48px 0;
  text-align: center;
}
.cta-inter-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 24px;
}
.cta-inter-text strong { color: var(--white); }

.cta-intercalaire.v2 {
  background: var(--red);
}
.cta-inter-stat {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.cta-inter-stat strong { font-size: 3rem; display: block; }
.cta-intercalaire.v2 .cta-inter-text { color: rgba(255,255,255,0.85); }
.cta-intercalaire.v2 .btn-red {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-intercalaire.v2 .btn-red:hover {
  background: var(--light);
  color: var(--red-dark);
}

.cta-intercalaire.v3 {
  background: #111111;
  padding: 60px 0;
}
.cta-intercalaire.v3 h2 { color: var(--white); margin-bottom: 12px; }
.cta-intercalaire.v3 p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 28px; }
.cta-intercalaire.v3 h2 span { color: var(--red-light); }

/* =============================================
   CHECKLISTS
   ============================================= */
.checklist-box {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checklist-box.dark-box {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
}
.checklist-box h3 { font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.check-bullets { list-style: none; }
.check-bullets li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.check-bullets li:last-child { border-bottom: none; }
.check-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.check-bullets.amber li::before { color: var(--amber); }
.prereq-callout {
  margin-top: 16px;
  background: rgba(243,156,18,0.1);
  border: 1px solid rgba(243,156,18,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--amber);
}

/* =============================================
   COMPETENCES NUMBERED
   ============================================= */
.competences-numbered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.comp-num-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.comp-num-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.comp-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  min-width: 40px;
  font-family: var(--font);
}
.comp-num-text strong { display: block; font-size: 0.92rem; color: var(--text-dark); font-weight: 700; margin-bottom: 4px; }
.comp-num-text p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* =============================================
   PROGRAMME BLOCKS
   ============================================= */
.programme-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}
.prog-block {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border-left: 4px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.prog-block:hover {
  border-left-color: var(--red);
  background: var(--dark-card-2);
}
.prog-block.highlight-prog {
  border-left-color: var(--amber);
  background: rgba(243,156,18,0.06);
}
.prog-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.prog-num {
  width: 48px;
  height: 48px;
  background: rgba(192,57,43,0.2);
  color: var(--red-light);
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(192,57,43,0.3);
}
.prog-num.stage, .prog-num.cert { background: rgba(243,156,18,0.15); color: var(--amber); border-color: rgba(243,156,18,0.3); font-size: 1.1rem; }
.prog-block-title { flex: 1; }
.prog-duration {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(192,57,43,0.15);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}
.prog-duration.highlight-dur { color: var(--amber); background: rgba(243,156,18,0.15); }
.prog-block h3 { font-size: 1rem; color: var(--white); font-weight: 700; margin: 0; }
.prog-block p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 0; }

/* =============================================
   EVAL STEPS
   ============================================= */
.eval-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 20px; }
.eval-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
}
.eval-step-num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}
.eval-step-content h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.eval-step-content p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.eval-step-content strong { color: var(--red); }

/* =============================================
   DEBOUCHES GRID
   ============================================= */
.debouches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.debouche-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  text-align: center;
}
.debouche-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  background: var(--dark-card-2);
}
.debouche-icon { font-size: 2.2rem; margin-bottom: 12px; }
.debouche-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.debouche-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.debouche-tag {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-top: 10px;
}

/* =============================================
   SALARY PROGRESSION
   ============================================= */
.salary-progression { margin-top: 2rem; display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin-left: auto; margin-right: auto; }
.salary-step {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  border: 1px solid var(--border-light);
}
.salary-step.highlight-salary { border-color: var(--red); background: rgba(192,57,43,0.04); }
.salary-step.top-salary { border-color: var(--amber); background: rgba(243,156,18,0.04); }
.salary-step-label { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.salary-step-bar-wrap { height: 8px; background: #E0E0E0; border-radius: 8px; overflow: hidden; }
.salary-step-bar { height: 100%; background: linear-gradient(90deg, var(--red) 0%, var(--amber) 100%); border-radius: 8px; }
.salary-step.top-salary .salary-step-bar { background: var(--amber); }
.salary-step-amount { font-size: 0.9rem; font-weight: 700; color: var(--red); white-space: nowrap; text-align: right; }
.salary-step-amount small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); display: block; }
.salary-source { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* =============================================
   METHODES ROWS
   ============================================= */
.methodes-rows { display: flex; flex-direction: column; gap: 16px; margin-top: 2rem; }
.methode-row-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.methode-row-item:hover { border-color: rgba(192,57,43,0.4); background: var(--dark-card-2); }
.methode-row-icon {
  width: 52px;
  height: 52px;
  background: rgba(192,57,43,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.methode-row-text h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; font-weight: 700; }
.methode-row-text p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 0; }
.methode-row-text strong { color: var(--amber); }

/* =============================================
   STEPS HORIZONTAL
   ============================================= */
.steps-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.step-h {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px 12px;
}
.step-h-num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}
.step-h h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 6px; }
.step-h p { font-size: 0.8rem; color: var(--text-muted); }
.step-connector {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  margin-top: 44px;
  border-radius: 2px;
}

.access-highlight {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-body);
  text-align: center;
}
.access-highlight strong { color: var(--red); }

/* =============================================
   VALIDATION GRID
   ============================================= */
.validation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.validation-item {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.validation-item:hover { border-color: var(--red); transform: translateY(-3px); }
.val-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.validation-item h3 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.validation-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card-header { margin-bottom: 24px; }
.pricing-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 8px; }
.pricing-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 12px 0;
  font-family: var(--font);
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-tagline { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.neutral { color: var(--text-muted); }
.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(192,57,43,0.08);
  color: var(--red);
  border: 2px solid var(--red);
  transition: all var(--transition);
}
.pricing-btn:hover { background: var(--red); color: var(--white); }
.pricing-btn.featured-btn { background: var(--red); color: var(--white); }
.pricing-btn.featured-btn:hover { background: var(--red-dark); color: var(--white); }

.featured-card {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(192,57,43,0.2);
  transform: translateY(-8px);
}
.featured-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}

.pricing-reassurance {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--text-body);
  text-align: center;
}
.pricing-reassurance strong { color: var(--red); }

/* =============================================
   FINANCEMENT CARDS DARK
   ============================================= */
.financement-cards-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.fin-card-dark {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.fin-card-dark:hover { border-color: var(--red); transform: translateY(-3px); }
.fin-logo-dark {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.fin-logo-dark.alt { background: var(--amber); color: var(--dark); }
.fin-card-dark h3 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.fin-card-dark p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.fin-card-dark strong { color: var(--white); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: #111111;
  padding: 80px 0;
}
.testimonials-section h2 { color: var(--white); text-align: center; margin-bottom: 40px; }
.testimonials-section .section-eyebrow { display: block; text-align: center; margin: 0 auto 14px; width: fit-content; }
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(192,57,43,0.3); }
.testi-card.featured-testi {
  border-color: var(--red);
  background: rgba(192,57,43,0.08);
}
.testi-quote {
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -12px;
}
.testi-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 700; }
.testi-author span { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.3; }
.testi-stars { color: var(--amber); font-size: 0.85rem; margin-top: 2px; }

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: var(--light);
  padding: 80px 0;
}
.faq-section h2 { color: var(--text-dark); text-align: center; margin-bottom: 8px; }
.faq-section .section-eyebrow { display: block; text-align: center; margin: 0 auto 14px; width: fit-content; }
.faq-grid {
  max-width: 860px;
  margin: 2rem auto 0;
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question[aria-expanded="true"] { color: var(--red); }
.faq-arrow { color: var(--red); font-size: 0.8rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 0.92rem; color: var(--text-muted); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--dark);
  padding: 80px 0;
}
.contact-headline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.contact-headline h2 { color: var(--white); margin-bottom: 14px; }
.contact-headline p { color: rgba(255,255,255,0.6); }
.contact-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.35);
  color: #ff7060;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-top: 16px;
}
.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.form-field { margin-bottom: 16px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--light);
  transition: border-color var(--transition);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.btn-submit-red {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-submit-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}
.form-success-red {
  text-align: center;
  padding: 24px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: #166534;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 16px;
}
.success-check { margin-right: 8px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* Contact benefits block */
.contact-benefits-block { padding-top: 8px; }
.contact-benefits-block h3 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
.receive-list { list-style: none; margin-bottom: 28px; }
.receive-list li {
  padding: 12px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.receive-list li:last-child { border-bottom: none; }

.contact-trust { margin-bottom: 28px; }
.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.trust-icon { color: #4ade80; font-weight: 700; }

.contact-phone-cta {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-phone-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.phone-link { display: block; font-size: 1.3rem; font-weight: 800; color: var(--red-light); margin-bottom: 4px; }
.contact-phone-cta span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e04535 100%);
  padding: 80px 0;
}
.final-cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.final-cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }
.final-cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.final-reassurance {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.final-reassurance span::before { content: ''; }

/* =============================================
   FOOTER
   ============================================= */
.footer-dark {
  background: #0d0d0d;
  padding: 60px 0 0;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--red); }
.footer-col-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red-light); }
.footer-bottom-dark {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom-dark p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* =============================================
   BACK TO TOP
   ============================================= */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192,57,43,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  pointer-events: none;
  font-weight: 700;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#backToTop:hover { background: var(--red-dark); transform: translateY(-3px); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.section-dark-panel .content-wrap,
.section-light-panel .content-wrap,
.testimonials-section .content-wrap,
.faq-section .content-wrap,
.contact-section .content-wrap,
.final-cta-section .content-wrap,
.cta-intercalaire .content-wrap,
.proof-strip-inner {
  opacity: 1;
}

/* Per-element animation */
.animate-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .two-panel-grid { grid-template-columns: 1fr; gap: 32px; }
  .panel-image-badge { bottom: -10px; right: 10px; }
  .icon-bullets-grid { grid-template-columns: 1fr; }
  .competences-numbered { grid-template-columns: 1fr; }
  .debouches-grid { grid-template-columns: repeat(2, 1fr); }
  .validation-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .featured-card { transform: none; }
  .financement-cards-dark { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .contact-grid-v2 { grid-template-columns: 1fr; gap: 32px; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .salary-step { grid-template-columns: 160px 1fr auto; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(28,28,28,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; border-radius: var(--radius); }
  .nav-links a.nav-cta-pill { text-align: center; margin-top: 8px; border-radius: var(--radius); }
  .nav-pill { position: relative; }

  .floating-nav { top: 12px; width: calc(100% - 24px); }

  .hero-section { padding: 100px 16px 60px; }
  .urgency-banner { font-size: 0.78rem; padding: 8px 14px; }
  .hero-badge-row { gap: 6px; }
  .hero-section h1 { font-size: 1.8rem; }
  .hero-sub-text { font-size: 0.95rem; }
  .places-bar-wrap { display: none; }
  .hero-social-proof { flex-direction: column; gap: 8px; }

  .proof-strip-inner { gap: 12px; }
  .proof-divider { display: none; }

  .section-dark-panel, .section-light-panel { padding: 60px 0; }
  .two-panel-grid { gap: 24px; }
  .debouches-grid { grid-template-columns: 1fr; }
  .salary-step { grid-template-columns: 1fr; gap: 8px; }
  .salary-step-bar-wrap { display: none; }
  .steps-horizontal { flex-wrap: wrap; }
  .step-connector { display: none; }
  .step-h { min-width: 140px; flex: 1 1 140px; }

  .testimonials-row { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; }
  .final-cta-group { flex-direction: column; align-items: center; }
  .final-reassurance { gap: 12px; }
  .contact-form-block { padding: 24px 16px; }
  .sticky-side-cta { display: none; }
  .cta-inter-stat strong { font-size: 2.2rem; }
  #backToTop { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .content-wrap { padding: 0 16px; }
  .hero-section h1 { font-size: 1.6rem; }
  .btn-hero-cta { font-size: 0.95rem; padding: 16px 24px; }
  .icon-bullets-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .financement-cards-dark { grid-template-columns: 1fr; }
  .cta-intercalaire.v2 .cta-inter-stat strong { font-size: 1.8rem; }
  .proof-strip-inner { flex-wrap: wrap; gap: 16px; }
  .contact-urgency { font-size: 0.78rem; padding: 8px 14px; flex-direction: column; text-align: center; }
}
