/**
 * Perflang V4 — Formations Page CSS (Lot A)
 * ────────────────────────────────────────
 * Hero + 3 scènes immersives (Zoom / Slack / Interview)
 *
 * Conventions :
 *   - Toutes les classes préfixées `pf-fv4-` pour isolation
 *   - Tokens hérités du CSS global Perflang (var(--navy), etc.)
 *   - Mobile-first responsive
 *   - Compatible WP Rocket (CSS pur, pas de inline JS)
 */

/* ═════════════════════════════════════════════════
   ATOMS — eyebrow, italic, buttons, trust
   ═════════════════════════════════════════════════ */
.pf-fv4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #F26A1F;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.pf-fv4-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #F26A1F;
  border-radius: 50%;
}
.pf-fv4-italic {
  font-family: 'Tiempos Headline', 'Charter', 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  color: #F26A1F;
  font-weight: 400;
}

/* ═════════════════════════════════════════════════
   UTILITY — FULLBLEED
   ─────────────────────────────────────────────────
   Force toute section formations à s'étendre edge-to-edge
   même si elle est enfermée dans un container Elementor avec
   une largeur max. Technique du "negative margin break-out" :
   width: 100vw + margin lateral négatif compensateur.

   Bonus : on retire les paddings horizontaux que les containers
   Elementor parents pourraient appliquer, le contenu interne
   se centre avec son propre .pf-fv4-tr-inner / .pf-fv4-ba-inner.
   ═════════════════════════════════════════════════ */
.pf-fv4-fullbleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
}
/* Safety : si jamais un parent Elementor (Boxed) contraint la largeur
   du widget shortcode, on neutralise sa contrainte uniquement pour
   les sections fullbleed Perflang. */
.elementor-widget-shortcode:has(.pf-fv4-fullbleed),
.elementor-widget-shortcode:has(> .pf-fv4-fullbleed),
.elementor-element:has(> .elementor-widget-container > .pf-fv4-fullbleed) {
  max-width: 100% !important;
}

/* ═════════════════════════════════════════════════
   PAGE FORMATIONS — Paper-light top-to-bottom
   ─────────────────────────────────────────────────
   Le thème Shelly applique sur cette page :
     1) body bg #F5FCFF (blanc-bleuté)
     2) section.pager-section bg #F2FCFE (~420px de haut)
        → breadcrumb "Home / Formations" + H1 "Formations" auto
   Ce double fond bleu clair crée une cassure visuelle juste
   au-dessus du hero qui démarre en paper-light. Résultat : le
   hero semble découpé.

   Fix : sur la page /formations/ uniquement (page-id-473) :
     • body forcé en paper-light #F7F5F0
     • pager-section masquée (le hero contient déjà l'identité
       de la page — "Formations" en H1 serait redondant)
     • cohérence cross-page assurée avec le reste du site
     • padding-top sur body pour réserver l'espace du header
       sticky (sinon le hero démarre sous le header transparent
       et son contenu remonte derrière)

   Note : on cible page-id-473 ET le slug Elementor 473 pour
   robustesse au cas où l'ID changerait via Elementor.
   ═════════════════════════════════════════════════ */
body.page-id-473,
body.elementor-page-473 {
  background-color: #F7F5F0 !important;
  /* Réserve l'espace pour le header sticky (~59px) + respiration
     premium (~40px). Compense la suppression de section.pager-section
     qui servait d'espacement avant. Sans ce padding, le contenu du
     hero remonte derrière le header transparent. */
  padding-top: 100px !important;
}
body.page-id-473 section.pager-section,
body.elementor-page-473 section.pager-section {
  display: none !important;
}
/* Si jamais d'autres éléments du thème injectent un fond bleu
   clair au top de la page formations, on les neutralise. */
body.page-id-473 > main,
body.page-id-473 #content,
body.page-id-473 .site-content,
body.elementor-page-473 > main,
body.elementor-page-473 #content,
body.elementor-page-473 .site-content {
  background-color: transparent !important;
}

.pf-fv4-btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 16px 28px !important;
  background: #F26A1F !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 15.5px !important;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), background .2s cubic-bezier(.2,.8,.2,1), box-shadow .25s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 4px 16px rgba(242, 106, 31, 0.20);
  border: none !important;
}
.pf-fv4-btn-primary:hover {
  transform: translateY(-1px);
  background: #D85913 !important;
  box-shadow: 0 8px 24px rgba(242, 106, 31, 0.32);
  color: #ffffff !important;
}
.pf-fv4-btn-ghost {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 16px 28px !important;
  background: transparent !important;
  color: #0B1F4A !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 15.5px !important;
  border: 1.5px solid rgba(11, 31, 74, 0.12) !important;
  transition: border-color .2s cubic-bezier(.2,.8,.2,1), background .2s cubic-bezier(.2,.8,.2,1);
}
.pf-fv4-btn-ghost:hover {
  border-color: rgba(11, 31, 74, 0.32) !important;
  background: rgba(11, 31, 74, 0.02) !important;
  color: #0B1F4A !important;
}
.pf-fv4-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 13.5px;
  color: #5A6378;
}
.pf-fv4-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pf-fv4-trust-item::before {
  content: '✓';
  color: #10B981;
  font-weight: 700;
}

/* ═════════════════════════════════════════════════
   SECTION 1 — HERO (V5 EDITORIAL PREMIUM)
   ═════════════════════════════════════════════════ */
.pf-fv4-hero {
  padding: 120px 32px 100px;
  background: #F7F5F0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
/* Sur la page formations, body a déjà padding-top: 100px qui réserve
   l'espace header. On réduit donc le top du hero pour éviter
   "100px (body) + 120px (hero) = 220px" trop spacieux avant H1. */
body.page-id-473 .pf-fv4-hero,
body.elementor-page-473 .pf-fv4-hero {
  padding-top: 56px !important;
}
/* Halo orange très diffus à droite — chaleur premium subtile */
.pf-fv4-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.pf-fv4-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pf-fv4-hero-copy {
  max-width: 580px;
}
.pf-fv4-hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0B1F4A;
  margin: 0 0 26px 0;
}
.pf-fv4-hero-title .pf-fv4-italic { font-size: 1em; }
.pf-fv4-hero-sub {
  font-size: 18.5px;
  color: #5A6378;
  margin: 0 0 36px 0;
  line-height: 1.55;
  max-width: 540px;
}
.pf-fv4-hero-sub strong {
  color: #0B1F4A;
  font-weight: 600;
}
.pf-fv4-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────────────────────────────────
   HERO ASIDE — Composition Voice Note
   ───────────────────────────────────── */
.pf-fv4-hero-aside {
  position: relative;
  padding: 20px;
  min-height: 340px;
}

/* Voice note card (carte principale) */
.pf-fv4-vn-card {
  background: #ffffff;
  border: 1px solid rgba(11, 31, 74, 0.06);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow:
    0 1px 2px rgba(11, 31, 74, 0.04),
    0 12px 32px rgba(11, 31, 74, 0.06),
    0 32px 64px rgba(11, 31, 74, 0.04);
  position: relative;
  z-index: 2;
  max-width: 420px;
}
.pf-fv4-vn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11, 31, 74, 0.06);
}
.pf-fv4-vn-dot {
  width: 6px;
  height: 6px;
  background: #F26A1F;
  border-radius: 50%;
  flex-shrink: 0;
}
.pf-fv4-vn-label {
  font-size: 11px;
  font-weight: 700;
  color: #0B1F4A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pf-fv4-vn-time {
  margin-left: auto;
  font-size: 12px;
  color: #8B92A4;
  font-family: 'SF Mono', 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 500;
}
.pf-fv4-vn-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
  margin-bottom: 16px;
}
.pf-fv4-vn-wave span {
  flex: 1;
  background: rgba(11, 31, 74, 0.18);
  border-radius: 2px;
  min-height: 4px;
  display: block;
}
/* Premier tiers de la waveform en orange (lue) */
.pf-fv4-vn-wave span:nth-child(-n+8) {
  background: #F26A1F;
}
.pf-fv4-vn-transcript {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-size: 16px;
  color: #0B1F4A;
  line-height: 1.5;
  font-style: italic;
}
.pf-fv4-vn-transcript p {
  margin: 0 0 4px 0;
}

/* Coach note card (overlap) */
.pf-fv4-cn-card {
  background: #0B1F4A;
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  position: absolute;
  bottom: 24px;
  right: 0;
  z-index: 3;
  max-width: 340px;
  box-shadow:
    0 8px 24px rgba(11, 31, 74, 0.20),
    0 20px 48px rgba(11, 31, 74, 0.12);
  transform: rotate(-1.5deg);
}
.pf-fv4-cn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.pf-fv4-cn-icon {
  color: #F26A1F;
  font-size: 14px;
}
.pf-fv4-cn-label {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pf-fv4-cn-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.4;
}
.pf-fv4-cn-before {
  color: rgba(255, 255, 255, 0.40);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.50);
}
.pf-fv4-cn-arrow {
  color: #F26A1F;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.pf-fv4-cn-after {
  color: #ffffff;
  font-weight: 500;
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
}


/* ═════════════════════════════════════════════════
   SECTIONS SCÈNES — base
   ═════════════════════════════════════════════════ */
.pf-fv4-scene {
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.pf-fv4-scene-dark {
  background: #061639;
  color: #ffffff;
}
.pf-fv4-scene-light {
  background: #F7F5F0;
  color: #0B1F4A;
}
.pf-fv4-scene-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pf-fv4-scene-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F26A1F;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-fv4-scene-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #F26A1F;
  border-radius: 50%;
}
.pf-fv4-voiceover {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
}
.pf-fv4-voiceover p {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.pf-fv4-scene-dark .pf-fv4-voiceover p {
  color: rgba(255, 255, 255, 0.92);
}
.pf-fv4-scene-light .pf-fv4-voiceover p {
  color: #0B1F4A;
}
.pf-fv4-voiceover p:last-of-type {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}
.pf-fv4-scene-dark .pf-fv4-voiceover p:last-of-type {
  color: rgba(255, 255, 255, 0.55);
}
.pf-fv4-scene-light .pf-fv4-voiceover p:last-of-type {
  color: #5A6378;
}
.pf-fv4-transition {
  text-align: center;
  margin-top: 32px;
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: #F26A1F;
}

/* ═════════════════════════════════════════════════
   ZOOM MOCKUP (Scène 02)
   ═════════════════════════════════════════════════ */
.pf-fv4-zoom {
  max-width: 880px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.pf-fv4-zoom-header {
  background: #2d2d2d;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pf-fv4-zoom-header-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.pf-fv4-zoom-header-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.pf-fv4-zoom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: #1a1a1a;
  padding: 4px;
}
.pf-fv4-zoom-tile {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a3a52 0%, #1a2438 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.pf-fv4-zoom-tile.is-you {
  border: 2px solid #F26A1F;
  box-shadow: 0 0 24px rgba(242, 106, 31, 0.3);
  animation: pf-fv4-pulse-orange 4s cubic-bezier(.2,.8,.2,1) infinite;
}
@keyframes pf-fv4-pulse-orange {
  0%, 100% { box-shadow: 0 0 24px rgba(242, 106, 31, 0.3); }
  50% { box-shadow: 0 0 36px rgba(242, 106, 31, 0.5); }
}
.pf-fv4-zoom-tile-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5a7a, #2a3a52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 18px;
}
.pf-fv4-zoom-tile-name {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.pf-fv4-zoom-tile.is-speaker .pf-fv4-zoom-tile-name {
  background: rgba(16, 185, 129, 0.3);
  border: 1px solid #10B981;
}
.pf-fv4-zoom-dialog {
  background: #2d2d2d;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pf-fv4-zoom-msg {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.pf-fv4-zoom-msg-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5a7a, #2a3a52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.pf-fv4-zoom-msg-content { flex: 1; }
.pf-fv4-zoom-msg-author {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pf-fv4-zoom-msg-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
}
.pf-fv4-zoom-msg-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.5;
}
.pf-fv4-zoom-silence {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 0;
  text-transform: uppercase;
}

/* ═════════════════════════════════════════════════
   SLACK MOCKUP (Scène 03)
   ═════════════════════════════════════════════════ */
.pf-fv4-slack {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 31, 74, 0.18);
  border: 1px solid rgba(11, 31, 74, 0.08);
}
.pf-fv4-slack-header {
  background: #350d36;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pf-fv4-slack-header-name {
  font-size: 15px;
  font-weight: 600;
}
.pf-fv4-slack-header-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-left: auto;
}
.pf-fv4-slack-msg {
  padding: 16px 24px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #f3f3f3;
}
.pf-fv4-slack-msg-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1e6091, #4dabf7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}
.pf-fv4-slack-msg-content { flex: 1; }
.pf-fv4-slack-msg-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.pf-fv4-slack-msg-author {
  font-size: 14.5px;
  font-weight: 700;
  color: #1d1c1d;
}
.pf-fv4-slack-msg-time {
  font-size: 12px;
  color: #696769;
}
.pf-fv4-slack-msg-text {
  font-size: 14.5px;
  color: #1d1c1d;
  line-height: 1.5;
}
.pf-fv4-slack-draft {
  background: #f8f8f8;
  border: 1.5px solid #e1e1e1;
  border-radius: 8px;
  padding: 16px 18px;
  margin: 16px 24px 20px;
  position: relative;
}
.pf-fv4-slack-draft-label {
  font-size: 11px;
  color: #696769;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}
.pf-fv4-slack-draft-text {
  color: #1d1c1d;
  font-size: 14px;
  line-height: 1.6;
}
.pf-fv4-strikethrough {
  text-decoration: line-through;
  color: #999;
}
.pf-fv4-slack-draft-cursor {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #F26A1F;
  vertical-align: middle;
  margin-left: 2px;
  animation: pf-fv4-blink 0.8s infinite;
}
@keyframes pf-fv4-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.pf-fv4-slack-draft-timer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e1e1e1;
  font-size: 12px;
  color: #F26A1F;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═════════════════════════════════════════════════
   INTERVIEW MOCKUP (Scène 04)
   ═════════════════════════════════════════════════ */
.pf-fv4-interview {
  max-width: 880px;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.pf-fv4-interview-header {
  background: #1a1a1a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-fv4-interview-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff4444;
  font-size: 12px;
  font-weight: 600;
}
.pf-fv4-interview-rec::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pf-fv4-pulse-red 1.2s infinite;
}
@keyframes pf-fv4-pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pf-fv4-interview-title-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.pf-fv4-interview-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-left: auto;
}
.pf-fv4-interview-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: #0d0d0d;
}
.pf-fv4-interview-tile {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2a3a52 0%, #1a2438 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.pf-fv4-interview-tile.is-you {
  border: 2px solid #F26A1F;
}
.pf-fv4-interview-tile-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5a7a, #2a3a52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 22px;
}
.pf-fv4-interview-tile-label {
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.pf-fv4-role {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-left: 4px;
}
.pf-fv4-interview-transcript {
  background: #1a1a1a;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-fv4-interview-transcript-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.pf-fv4-interview-line {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.55;
}
.pf-fv4-interview-line-speaker {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 12.5px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pf-fv4-interview-line.is-you .pf-fv4-interview-line-speaker {
  color: #F26A1F;
}
.pf-fv4-interview-line.is-you {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.pf-fv4-interview-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
  margin-top: 10px;
}
.pf-fv4-interview-waveform span {
  width: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.pf-fv4-interview-waveform span:nth-child(odd) { height: 4px; }
.pf-fv4-interview-waveform span:nth-child(even) { height: 6px; }
.pf-fv4-interview-waveform span:nth-child(3n) { height: 3px; }

/* ═════════════════════════════════════════════════
   INTERVIEW V5 — Amplification cinéma
   (transcript hésitant, pauses, curseur thinking,
    silence marker, waveform zones mortes)
   ═════════════════════════════════════════════════ */

/* Scène cinéma : padding plus généreux pour respirer */
.pf-fv4-scene-cinema {
  padding: 120px 32px 110px;
  background: linear-gradient(180deg, #061639 0%, #050E2E 100%);
  position: relative;
}
.pf-fv4-scene-cinema::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Status muted sur la tile You */
.pf-fv4-interview-tile-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 100, 100, 0.18);
  color: #ff8888;
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 3;
  border: 1px solid rgba(255, 100, 100, 0.3);
}

/* Transcript hésitant : style typo + couleur grisée */
.pf-fv4-interview-line-hesitant {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 17px !important;
  line-height: 1.9 !important;
  letter-spacing: 0.005em;
}
.pf-fv4-hesitant {
  display: inline;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 4px 0 0;
}
.pf-fv4-pause {
  display: inline-block;
  color: rgba(242, 106, 31, 0.55);
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
  font-style: normal;
  letter-spacing: 0.15em;
  font-size: 14px;
  margin: 0 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.pf-fv4-cursor-thinking {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #F26A1F;
  vertical-align: middle;
  margin-left: 4px;
  animation: pf-fv4-cursor-pulse 1.1s ease-in-out infinite;
}
@keyframes pf-fv4-cursor-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Waveform avec zones mortes (silences entre hésitations) */
.pf-fv4-interview-waveform-dead {
  margin-top: 18px !important;
  height: 30px !important;
  gap: 4px !important;
}
.pf-fv4-interview-waveform-dead span {
  width: 4px !important;
  background: rgba(255, 255, 255, 0.30) !important;
  border-radius: 2px;
}
.pf-fv4-interview-waveform-dead span.is-dead {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Indicateur silence prolongé */
.pf-fv4-interview-silence-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 100, 100, 0.18);
  border-radius: 8px;
  width: fit-content;
}
.pf-fv4-silence-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pf-fv4-silence-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pf-fv4-silence-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5); }
  50%      { opacity: 0.4; box-shadow: 0 0 0 6px rgba(255, 68, 68, 0); }
}
.pf-fv4-silence-text {
  font-size: 12px;
  color: rgba(255, 100, 100, 0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ═════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .pf-fv4-hero { padding: 70px 20px 60px; }
  .pf-fv4-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pf-fv4-hero-aside {
    max-width: 480px;
    margin: 0 auto;
    min-height: auto;
  }
  .pf-fv4-cn-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -8px;
    margin-left: auto;
    transform: rotate(-1deg);
  }
  .pf-fv4-scene-cinema { padding: 70px 20px; }
  .pf-fv4-interview-line-hesitant { font-size: 15px !important; line-height: 1.8 !important; }
  .pf-fv4-scene { padding: 70px 20px; }
  .pf-fv4-zoom { max-width: 100%; }
  .pf-fv4-zoom-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-fv4-slack { max-width: 100%; }
  .pf-fv4-interview-tiles { grid-template-columns: 1fr; }
  .pf-fv4-voiceover p { font-size: 19px; }
  .pf-fv4-voiceover p:last-of-type { font-size: 16px; }
}
@media (max-width: 560px) {
  .pf-fv4-zoom-grid { grid-template-columns: 1fr; }
  .pf-fv4-zoom-tile { aspect-ratio: 16/10; }
  .pf-fv4-voiceover p { font-size: 17px; }
  .pf-fv4-transition { font-size: 17px; }
  .pf-fv4-hero-sub { font-size: 17px; }
  .pf-fv4-hero-ctas { flex-direction: column; align-items: stretch; }
  .pf-fv4-hero-ctas .pf-fv4-btn-primary,
  .pf-fv4-hero-ctas .pf-fv4-btn-ghost { justify-content: center; }
}

/* ═════════════════════════════════════════════════
   LOT B — composants v3.49.0
   ═════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────
   SECTION TRANSFORMATION V3 (v3.49.3)
   ─────────────────────────────────────────────────
   Direction validée : LAYOUT HORIZONTAL
     - Carte gauche : tension / retrait / silence
     - Carte droite : leadership / présence / progression carrière

   Tokens couleurs Perflang :
     navy  : #0B1F4A
     orange: #F26A1F
     paper : #F7F5F0

   Tonalité émotionnelle :
     - Tense card  : froid, dense, comprimé, low-contrast
     - Bright card : lumineux, ouvert, glow orange subtil
   ───────────────────────────────────────────────── */

.pf-fv4-tr3 {
  background: #F7F5F0;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 110px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #0B1F4A;
}
/* Halo orange diffus derrière la carte droite — gradient asymétrique */
.pf-fv4-tr3::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.pf-fv4-tr3-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── Header ── */
.pf-fv4-tr3-header {
  text-align: center;
  margin-bottom: 72px;
}
.pf-fv4-tr3-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 54px);
  color: #0B1F4A;
  letter-spacing: -0.028em;
  line-height: 1.06;
  margin: 0;
}
.pf-fv4-tr3-title .pf-fv4-italic { font-size: 1em; }

/* ── Grid horizontal 2 cards ── */
.pf-fv4-tr3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ── Card (commun) ── */
.pf-fv4-tr3-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;

  /* Reveal subtle */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.pf-fv4-tr3-card.pf-fv4-tr3-in {
  opacity: 1;
  transform: translateY(0);
}
/* Delays — droite arrive après gauche pour effet de progression */
.pf-fv4-tr3-card--tense.pf-fv4-tr3-in     { transition-delay: 0ms; }
.pf-fv4-tr3-card--confident.pf-fv4-tr3-in { transition-delay: 220ms; }

/* ── Card label ── */
.pf-fv4-tr3-card-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8B92A4;
  margin-bottom: 24px;
}
.pf-fv4-tr3-card-label--accent {
  color: #F26A1F;
}

/* ════════════════════════════════════════════
   CARTE GAUCHE — TENSION
   ════════════════════════════════════════════ */
.pf-fv4-tr3-card--tense {
  /* Fond plus froid, plus comprimé, ombre nulle */
  background: linear-gradient(180deg, #FDFCF8 0%, #F8F6F0 100%);
  border: 1px solid rgba(11, 31, 74, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 1px 0 rgba(11, 31, 74, 0.03);
}
/* Voile froid subtil par-dessus pour densifier */
.pf-fv4-tr3-card--tense::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 74, 0.02) 0%, transparent 40%);
  pointer-events: none;
  border-radius: inherit;
}

/* ════════════════════════════════════════════
   CARTE DROITE — LEADERSHIP
   ════════════════════════════════════════════ */
.pf-fv4-tr3-card--confident {
  background: linear-gradient(180deg, #ffffff 0%, #FFFAF5 100%);
  border: 1px solid rgba(242, 106, 31, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 60px -16px rgba(242, 106, 31, 0.12),
    0 4px 12px -4px rgba(11, 31, 74, 0.04);
}
/* Glow chaud par-dessus, très subtil */
.pf-fv4-tr3-card--confident::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════
   INTERFACE (mockup digital)
   ══════════════════════════════════════ */
.pf-fv4-tr3-iface {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 74, 0.07);
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pf-fv4-tr3-iface--meeting-tense {
  background: #FBFAF6;
  border-color: rgba(11, 31, 74, 0.08);
}
.pf-fv4-tr3-iface--meeting-bright {
  background: #ffffff;
  border-color: rgba(242, 106, 31, 0.14);
  box-shadow: 0 4px 14px rgba(242, 106, 31, 0.04);
}

/* ── Top bar interface ── */
.pf-fv4-tr3-iface-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(11, 31, 74, 0.03);
  border-bottom: 1px solid rgba(11, 31, 74, 0.05);
  font-size: 12.5px;
}
.pf-fv4-tr3-iface--meeting-bright .pf-fv4-tr3-iface-bar {
  background: rgba(242, 106, 31, 0.04);
  border-bottom-color: rgba(242, 106, 31, 0.10);
}
.pf-fv4-tr3-iface-title {
  font-weight: 600;
  color: #0B1F4A;
  letter-spacing: -0.005em;
}
.pf-fv4-tr3-iface-time {
  margin-left: auto;
  color: #8B92A4;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* ── REC dot (live / idle) ── */
.pf-fv4-tr3-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.pf-fv4-tr3-rec-dot--idle {
  background: #C9CCD4;
  box-shadow: 0 0 0 0 rgba(201, 204, 212, 0);
}
.pf-fv4-tr3-rec-dot--live {
  background: #F26A1F;
  animation: pf-tr3-live 1.8s ease-in-out infinite;
}
@keyframes pf-tr3-live {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(242, 106, 31, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(242, 106, 31, 0);
  }
}

/* ── Body interface ── */
.pf-fv4-tr3-iface-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* ── Bulle dialogue ── */
.pf-fv4-tr3-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  max-width: 90%;
}
.pf-fv4-tr3-bubble--other {
  align-self: flex-start;
  background: rgba(11, 31, 74, 0.04);
  border: 1px solid rgba(11, 31, 74, 0.05);
}
.pf-fv4-tr3-bubble--you {
  align-self: flex-start;
  background: linear-gradient(180deg, rgba(242, 106, 31, 0.06) 0%, rgba(242, 106, 31, 0.03) 100%);
  border: 1px solid rgba(242, 106, 31, 0.20);
  box-shadow: 0 2px 8px rgba(242, 106, 31, 0.06);
}
.pf-fv4-tr3-bubble--handoff {
  /* Petit léger délai visuel pour montrer que le manager poursuit */
  margin-top: 4px;
}
.pf-fv4-tr3-bubble-author {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B92A4;
  margin-bottom: 2px;
}
.pf-fv4-tr3-bubble-author--you {
  color: #F26A1F;
}
.pf-fv4-tr3-bubble-text {
  margin: 0;
  font-family: 'Tiempos Headline', 'Charter', 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  color: #0B1F4A;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.pf-fv4-tr3-bubble--you .pf-fv4-tr3-bubble-text {
  color: #0B1F4A;
  font-weight: 500;
}

/* ── Indicateur "Vous muted" — bloc de tension ── */
.pf-fv4-tr3-you-muted {
  align-self: flex-start;
  width: 90%;
  padding: 12px 14px;
  background: rgba(11, 31, 74, 0.025);
  border: 1px dashed rgba(11, 31, 74, 0.10);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pf-fv4-tr3-you-muted-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-fv4-tr3-you-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B92A4;
}
.pf-fv4-tr3-muted-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px 3px 6px;
  background: rgba(212, 80, 80, 0.10);
  color: #C44545;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pf-fv4-tr3-muted-pill svg {
  display: block;
}
.pf-fv4-tr3-silence {
  font-size: 11.5px;
  color: #8B92A4;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ── Waveform (flat = silence / active = parlant) ── */
.pf-fv4-tr3-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
  padding-top: 2px;
}
.pf-fv4-tr3-wave span {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Flat = silence, barres très basses + grises */
.pf-fv4-tr3-wave--flat span {
  background: #D4D7DD;
  height: 3px;
}
.pf-fv4-tr3-wave--flat span:nth-child(7),
.pf-fv4-tr3-wave--flat span:nth-child(13) {
  height: 5px;
}

/* Active = parlant, barres animées en orange */
.pf-fv4-tr3-wave--active {
  margin-top: 8px;
  height: 26px;
}
.pf-fv4-tr3-wave--active span {
  background: #F26A1F;
  height: 4px;
  animation: pf-tr3-wave 1.6s ease-in-out infinite;
  opacity: 0.85;
}
.pf-fv4-tr3-wave--active span:nth-child(1)  { animation-delay: 0.00s; }
.pf-fv4-tr3-wave--active span:nth-child(2)  { animation-delay: 0.08s; }
.pf-fv4-tr3-wave--active span:nth-child(3)  { animation-delay: 0.16s; }
.pf-fv4-tr3-wave--active span:nth-child(4)  { animation-delay: 0.24s; }
.pf-fv4-tr3-wave--active span:nth-child(5)  { animation-delay: 0.32s; }
.pf-fv4-tr3-wave--active span:nth-child(6)  { animation-delay: 0.40s; }
.pf-fv4-tr3-wave--active span:nth-child(7)  { animation-delay: 0.48s; }
.pf-fv4-tr3-wave--active span:nth-child(8)  { animation-delay: 0.56s; }
.pf-fv4-tr3-wave--active span:nth-child(9)  { animation-delay: 0.64s; }
.pf-fv4-tr3-wave--active span:nth-child(10) { animation-delay: 0.72s; }
.pf-fv4-tr3-wave--active span:nth-child(11) { animation-delay: 0.80s; }
.pf-fv4-tr3-wave--active span:nth-child(12) { animation-delay: 0.88s; }
.pf-fv4-tr3-wave--active span:nth-child(13) { animation-delay: 0.96s; }
.pf-fv4-tr3-wave--active span:nth-child(14) { animation-delay: 1.04s; }
.pf-fv4-tr3-wave--active span:nth-child(15) { animation-delay: 1.12s; }
.pf-fv4-tr3-wave--active span:nth-child(16) { animation-delay: 1.20s; }
.pf-fv4-tr3-wave--active span:nth-child(17) { animation-delay: 1.28s; }
.pf-fv4-tr3-wave--active span:nth-child(18) { animation-delay: 1.36s; }
.pf-fv4-tr3-wave--active span:nth-child(19) { animation-delay: 1.44s; }
.pf-fv4-tr3-wave--active span:nth-child(20) { animation-delay: 1.52s; }
@keyframes pf-tr3-wave {
  0%, 100% { height: 4px; opacity: 0.6; }
  20%      { height: 14px; opacity: 1; }
  50%      { height: 8px;  opacity: 0.9; }
  70%      { height: 18px; opacity: 1; }
}

/* ══════════════════════════════════════
   DM Card — invitation Friday leadership
   ══════════════════════════════════════ */
.pf-fv4-tr3-dm {
  margin-top: 4px;
  padding: 14px 14px;
  background: #ffffff;
  border: 1px solid rgba(242, 106, 31, 0.16);
  border-radius: 12px;
  box-shadow:
    0 4px 12px rgba(242, 106, 31, 0.06),
    0 1px 0 rgba(11, 31, 74, 0.02);
  position: relative;
}
/* Discreet badge "new" en haut à droite */
.pf-fv4-tr3-dm::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F26A1F;
  box-shadow: 0 0 0 4px rgba(242, 106, 31, 0.10);
}
.pf-fv4-tr3-dm-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pf-fv4-tr3-dm-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B1F4A 0%, #1a3a78 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.pf-fv4-tr3-dm-author {
  font-size: 13px;
  font-weight: 600;
  color: #0B1F4A;
  letter-spacing: -0.005em;
}
.pf-fv4-tr3-dm-meta {
  font-size: 11px;
  color: #8B92A4;
  letter-spacing: 0.01em;
}
.pf-fv4-tr3-dm-msg {
  margin: 0;
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: #0B1F4A;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* ── Phrase émotionnelle ── */
.pf-fv4-tr3-emotion {
  margin: 28px 0 0;
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-align: center;
}
.pf-fv4-tr3-emotion--tense {
  color: #5A6378;
}
.pf-fv4-tr3-emotion--confident {
  color: #0B1F4A;
}

/* ── Footnote ── */
.pf-fv4-tr3-footnote {
  text-align: center;
  margin: 72px auto 0;
  max-width: 600px;
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #0B1F4A;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

/* ── Reduced motion (a11y) ── */
@media (prefers-reduced-motion: reduce) {
  .pf-fv4-tr3-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pf-fv4-tr3-wave--active span {
    animation: none;
    height: 8px;
  }
  .pf-fv4-tr3-rec-dot--live {
    animation: none;
  }
}


/* ─────────────────────────────────────────────────
   COMPAT — Ancienne classe Before/After
   ─────────────────────────────────────────────────
   On garde ces règles minimales au cas où une autre page
   utilise encore l'ancien partial `before-after.php`.
   La page /formations/ utilise désormais le nouveau partial
   `transformation.php` via le même shortcode [pf_before_after].
   ───────────────────────────────────────────────── */
.pf-fv4-ba {
  padding: 120px 32px;
  background: #F7F5F0;
  font-family: 'Inter', sans-serif;
}
.pf-fv4-ba-inner { max-width: 1100px; margin: 0 auto; }
.pf-fv4-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }





/* ─────────────────────────────────────────────────
   SECTION TÉMOIGNAGES V4.1 (v3.49.5)
   ─────────────────────────────────────────────────
   - Vidéo featured = bouton qui ouvre une lightbox YouTube
     (perf + RGPD : iframe chargée à la demande)
   - 3 mini-cards en style Hormozi : UNE phrase, pas de
     labels AVANT/APRÈS
   ───────────────────────────────────────────────── */
.pf-fv4-testi {
  padding: 110px 32px;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.pf-fv4-testi-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pf-fv4-testi-header {
  text-align: center;
  margin-bottom: 56px;
}
.pf-fv4-testi-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  color: #0B1F4A;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
}
.pf-fv4-testi-title .pf-fv4-italic { font-size: 1em; }

/* ── Featured video + content ── */
.pf-fv4-testi-featured {
  background: #061639;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  box-shadow: 0 24px 60px -16px rgba(11, 31, 74, 0.25);
}

/* ── Video button (real button, not a div) ── */
.pf-fv4-testi-video {
  /* Force button to fill the grid cell — aspect-ratio alone unreliable on <button> */
  width: 100%;
  min-height: 380px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #102B5C 0%, #000814 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: filter 400ms ease;
  /* Defensive : ensure button doesn't shrink to content */
  flex-shrink: 0;
  align-self: stretch;
}
.pf-fv4-testi-video:hover {
  filter: brightness(1.08);
}
.pf-fv4-testi-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(242, 106, 31, 0.20) 0%, transparent 70%);
  pointer-events: none;
}
/* Subtle film grain pattern via radial gradients */
.pf-fv4-testi-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.04), transparent 50%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.03), transparent 50%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}

/* Halo pulsing behind play */
.pf-fv4-testi-video-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.30) 0%, transparent 70%);
  z-index: 1;
  animation: pf-fv4-testi-halo 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pf-fv4-testi-halo {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1;   }
}

/* Play button — SVG icon centered (absolute over halo) */
.pf-fv4-testi-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F26A1F;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 32px rgba(242, 106, 31, 0.45),
    0 0 0 0 rgba(242, 106, 31, 0.20);
  z-index: 2;
  padding-left: 4px;
  transition:
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; /* button parent handles click */
}
.pf-fv4-testi-play svg {
  display: block;
}
.pf-fv4-testi-video:hover .pf-fv4-testi-play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 16px 40px rgba(242, 106, 31, 0.55),
    0 0 0 8px rgba(242, 106, 31, 0.12);
}
.pf-fv4-testi-video:focus-visible {
  outline: 2px solid #F26A1F;
  outline-offset: 4px;
}

.pf-fv4-testi-video-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  z-index: 2;
}

.pf-fv4-testi-content {
  padding: 48px 44px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-fv4-testi-quote {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 28px 0;
  letter-spacing: -0.01em;
}
.pf-fv4-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pf-fv4-testi-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F26A1F, #D85913);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.pf-fv4-testi-author-name {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}
.pf-fv4-testi-author-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  margin-top: 2px;
}
.pf-fv4-testi-author-program {
  color: #F26A1F;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Mini-testimonials grid (Hormozi single-sentence) ── */
.pf-fv4-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pf-fv4-testi-card {
  background: linear-gradient(180deg, #F8F6F0 0%, #F2EFE6 100%);
  border: 1px solid rgba(11, 31, 74, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-fv4-testi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(11, 31, 74, 0.08);
}
/* Petit accent orange en haut à gauche */
.pf-fv4-testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: #F26A1F;
  border-bottom-right-radius: 4px;
}

.pf-fv4-testi-card-text {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 17.5px;
  color: #0B1F4A;
  line-height: 1.5;
  letter-spacing: -0.008em;
  margin: 0 0 28px 0;
  flex: 1;
}

.pf-fv4-testi-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 31, 74, 0.08);
}
.pf-fv4-testi-card-mini-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #102B5C, #061639);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.pf-fv4-testi-card-author-name {
  font-size: 14px;
  color: #0B1F4A;
  font-weight: 600;
  line-height: 1.3;
}
.pf-fv4-testi-card-author-role {
  font-size: 12.5px;
  color: #5A6378;
  margin-top: 1px;
}
.pf-fv4-testi-card-author-program {
  font-size: 11px;
  color: #F26A1F;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pf-fv4-testi-cta-row {
  text-align: center;
  margin-top: 48px;
}
.pf-fv4-testi-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #F26A1F 0%, #E55A14 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow:
    0 8px 20px -4px rgba(242, 106, 31, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition:
    transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.005em;
}
.pf-fv4-testi-cta-link:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px -4px rgba(242, 106, 31, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

/* ══════════════════════════════════════
   YOUTUBE LIGHTBOX MODAL (premium)
   ══════════════════════════════════════ */
.pf-fv4-yt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(6, 22, 57, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 350ms;
}
.pf-fv4-yt-lightbox.pf-fv4-yt-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pf-fv4-yt-frame {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.96);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-fv4-yt-lightbox.pf-fv4-yt-open .pf-fv4-yt-frame {
  transform: scale(1);
}
.pf-fv4-yt-iframe-holder {
  width: 100%;
  height: 100%;
}
.pf-fv4-yt-iframe-holder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.pf-fv4-yt-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 250ms, transform 250ms;
  z-index: 2;
}
.pf-fv4-yt-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}
.pf-fv4-yt-close:focus-visible {
  outline: 2px solid #F26A1F;
  outline-offset: 3px;
}
.pf-fv4-yt-close svg { display: block; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pf-fv4-testi-video-halo { animation: none; }
  .pf-fv4-testi-card { transition: none; }
  .pf-fv4-yt-lightbox,
  .pf-fv4-yt-lightbox .pf-fv4-yt-frame {
    transition: none;
  }
}


/* ─────────────────────────────────────────────────
   SECTION SIGNATURE — SPEAK LIKE A HERO
   ───────────────────────────────────────────────── */
.pf-fv4-sig {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.pf-fv4-sig-hero {
  background: #000814;
  color: #ffffff;
  padding: 130px 32px;
  position: relative;
  overflow: hidden;
}
.pf-fv4-sig-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.pf-fv4-sig-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pf-fv4-sig-content {
  max-width: 720px;
}
.pf-fv4-sig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #F26A1F;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}
.pf-fv4-sig-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #F26A1F;
  border-radius: 50%;
}
.pf-fv4-sig-hero-title {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(56px, 7.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0 0 28px 0;
}
.pf-fv4-sig-hero-line1 {
  color: #ffffff;
}
.pf-fv4-sig-hero-line2 {
  color: #F26A1F;
}
.pf-fv4-sig-tagline {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0 0 28px 0;
  max-width: 560px;
}
.pf-fv4-sig-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.pf-fv4-sig-tag {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.pf-fv4-sig-tag-sep {
  color: rgba(242, 106, 31, 0.6);
}
.pf-fv4-sig-desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 36px 0;
}
/* Waveform animée Speak Like a Hero */
.pf-fv4-sig-hero-waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100px;
  margin-top: 40px;
  width: 100%;
  max-width: 560px;
}
.pf-fv4-sig-bar {
  flex: 1;
  background: #F26A1F;
  border-radius: 3px;
  min-height: 8px;
  display: block;
  animation: pf-fv4-sig-wave 1.6s cubic-bezier(.4,0,.2,1) infinite;
  transform-origin: center;
}
@keyframes pf-fv4-sig-wave {
  0%, 100% { transform: scaleY(0.35); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}


/* ─────────────────────────────────────────────────
   SECTION SIGNATURE — INTERVIEW ACCELERATOR
   ───────────────────────────────────────────────── */
.pf-fv4-sig-interview {
  background: #061639;
  color: #ffffff;
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.pf-fv4-sig-interview::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.pf-fv4-sig-inner-reverse {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.pf-fv4-sig-interview-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 24px 0;
}
.pf-fv4-sig-interview .pf-fv4-sig-tagline {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
}
.pf-fv4-sig-interview .pf-fv4-sig-desc {
  color: rgba(255, 255, 255, 0.72);
}

/* Stack d'emails */
.pf-fv4-emails-stack {
  position: relative;
  padding: 40px 20px;
  perspective: 1400px;
  min-height: 400px;
}
.pf-fv4-email {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  color: #0B1F4A;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  position: absolute;
  width: calc(100% - 40px);
  max-width: 460px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s cubic-bezier(.2,.8,.2,1);
}
.pf-fv4-email-1 {
  top: 0;
  left: 20px;
  transform: rotate(-4deg);
  z-index: 4;
}
.pf-fv4-email-2 {
  top: 70px;
  left: 40px;
  transform: rotate(2.5deg);
  z-index: 3;
}
.pf-fv4-email-3 {
  top: 140px;
  left: 20px;
  transform: rotate(-2deg);
  z-index: 2;
}
.pf-fv4-email-4 {
  top: 210px;
  left: 40px;
  transform: rotate(4deg);
  z-index: 1;
}
.pf-fv4-emails-stack:hover .pf-fv4-email-1 { transform: rotate(-6deg) translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.32); }
.pf-fv4-emails-stack:hover .pf-fv4-email-2 { transform: rotate(3deg) translateY(-4px); }
.pf-fv4-emails-stack:hover .pf-fv4-email-3 { transform: rotate(-3deg) translateY(2px); }
.pf-fv4-emails-stack:hover .pf-fv4-email-4 { transform: rotate(5deg) translateY(8px); }

.pf-fv4-email-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11, 31, 74, 0.08);
}
.pf-fv4-email-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.pf-fv4-email-logo-stripe { background: #635BFF; }
.pf-fv4-email-logo-notion { background: #000000; }
.pf-fv4-email-logo-figma  { background: #F24E1E; }
.pf-fv4-email-logo-vercel { background: #000000; }
.pf-fv4-email-logo-generic { background: #5A6378; }
.pf-fv4-email-meta-from {
  font-size: 12.5px;
  color: #5A6378;
}
.pf-fv4-email-meta-from strong {
  color: #0B1F4A;
  font-weight: 600;
}
.pf-fv4-email-subject {
  font-size: 14.5px;
  font-weight: 600;
  color: #0B1F4A;
  margin-bottom: 6px;
  line-height: 1.4;
}
.pf-fv4-email-preview {
  font-size: 13px;
  color: #5A6378;
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────
   STICKY CTA MOBILE
   ───────────────────────────────────────────────── */
.pf-fv4-sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s cubic-bezier(.2,.8,.2,1), transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.pf-fv4-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pf-fv4-sticky-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 20px !important;
  font-size: 15.5px !important;
  box-shadow: 0 12px 32px rgba(242, 106, 31, 0.32) !important;
}
@media (max-width: 768px) {
  .pf-fv4-sticky-cta { display: block; }
}


/* ═════════════════════════════════════════════════
   SECTION PROGRAMMES PRINCIPAUX (v3.49.5)
   ─────────────────────────────────────────────────
   Elite (paper-light, ghost CTA) + Executive (navy
   aspirationnel, filled CTA, badge "Réservé profils
   ambitieux"). Stripe/Linear-grade pricing cards.
   ═════════════════════════════════════════════════ */

.pf-fv4-pgm {
  background: #F7F5F0;
  padding: 120px 24px 110px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #0B1F4A;
}
.pf-fv4-pgm-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.pf-fv4-pgm-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pf-fv4-pgm-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 56px);
  color: #0B1F4A;
  letter-spacing: -0.028em;
  line-height: 1.06;
  margin: 0 0 18px 0;
}
.pf-fv4-pgm-title .pf-fv4-italic { font-size: 1em; }
.pf-fv4-pgm-intro {
  font-size: 17px;
  line-height: 1.55;
  color: #5A6378;
  margin: 0;
}

/* ── Grid 2 cards ── */
.pf-fv4-pgm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* ── Card commune ── */
.pf-fv4-pgm-card {
  position: relative;
  border-radius: 22px;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Reveal */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.pf-fv4-pgm-card.pf-fv4-pgm-in { opacity: 1; transform: translateY(0); }
.pf-fv4-pgm-card--elite.pf-fv4-pgm-in { transition-delay: 0ms; }
.pf-fv4-pgm-card--exec.pf-fv4-pgm-in  { transition-delay: 200ms; }

/* ════════════════════════
   CARD ELITE — paper-light
   ════════════════════════ */
.pf-fv4-pgm-card--elite {
  background: linear-gradient(180deg, #ffffff 0%, #FDFCF8 100%);
  border: 1px solid rgba(11, 31, 74, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 4px 12px rgba(11, 31, 74, 0.03);
}

/* ════════════════════════
   CARD EXECUTIVE — navy aspirationnel
   ════════════════════════ */
.pf-fv4-pgm-card--exec {
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 106, 31, 0.10) 0%, transparent 50%),
    linear-gradient(160deg, #0B1F4A 0%, #061639 70%, #02091F 100%);
  border: 1px solid rgba(242, 106, 31, 0.30);
  color: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px -16px rgba(11, 31, 74, 0.30),
    0 0 0 0 rgba(242, 106, 31, 0.18);
}
/* Décoration gold subtile en haut droit Exec */
.pf-fv4-pgm-card--exec::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Badge Executive ── */
.pf-fv4-pgm-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  background: linear-gradient(135deg, rgba(242, 106, 31, 0.18) 0%, rgba(242, 106, 31, 0.06) 100%);
  border: 1px solid rgba(242, 106, 31, 0.45);
  color: #F26A1F;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pf-fv4-pgm-card-badge-star {
  display: inline-flex;
  color: #F26A1F;
}
/* Elite badge — variant paper-light (gold accent) */
.pf-fv4-pgm-card-badge--elite {
  background: linear-gradient(135deg, rgba(242, 106, 31, 0.10) 0%, rgba(242, 106, 31, 0.03) 100%);
  border-color: rgba(242, 106, 31, 0.30);
}

/* ── Head : name + headline + tagline ── */
.pf-fv4-pgm-card-head {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.pf-fv4-pgm-card-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F26A1F;
  margin-bottom: 14px;
}
.pf-fv4-pgm-card-name--exec {
  color: #F26A1F;
}
.pf-fv4-pgm-card-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  color: #0B1F4A;
  letter-spacing: -0.012em;
  margin: 0 0 10px 0;
}
.pf-fv4-pgm-card-headline--exec {
  color: #ffffff;
}
.pf-fv4-pgm-card-tagline {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  color: #5A6378;
  margin: 0;
  line-height: 1.5;
}
.pf-fv4-pgm-card-tagline--exec {
  color: rgba(255, 255, 255, 0.70);
}

/* ── Prix ── */
.pf-fv4-pgm-card-price {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  margin: 0 0 26px 0;
  border-top: 1px solid rgba(11, 31, 74, 0.10);
  border-bottom: 1px solid rgba(11, 31, 74, 0.10);
}
.pf-fv4-pgm-card-price--exec {
  border-top-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.pf-fv4-pgm-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pf-fv4-pgm-card-price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 52px;
  color: #0B1F4A;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pf-fv4-pgm-card--exec .pf-fv4-pgm-card-price-amount {
  color: #ffffff;
}
.pf-fv4-pgm-card-price-period {
  font-size: 18px;
  color: #5A6378;
  font-weight: 500;
}
.pf-fv4-pgm-card--exec .pf-fv4-pgm-card-price-period {
  color: rgba(255, 255, 255, 0.55);
}
.pf-fv4-pgm-card-price-meta {
  font-size: 12.5px;
  color: #5A6378;
  margin-top: 6px;
}
.pf-fv4-pgm-card--exec .pf-fv4-pgm-card-price-meta {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Features ── */
.pf-fv4-pgm-card-features-label {
  position: relative;
  z-index: 1;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B92A4;
  margin-bottom: 14px;
}
.pf-fv4-pgm-card-features-label--exec {
  color: rgba(255, 255, 255, 0.5);
}
.pf-fv4-pgm-card-features {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.pf-fv4-pgm-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: #0B1F4A;
}
.pf-fv4-pgm-card-features--exec li {
  color: rgba(255, 255, 255, 0.90);
}
.pf-fv4-pgm-check {
  flex-shrink: 0;
  color: #F26A1F;
  margin-top: 3px;
}
.pf-fv4-pgm-check--exec {
  color: #F26A1F;
}

/* ── CTA ── */
.pf-fv4-pgm-card-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.pf-fv4-pgm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition:
    transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
    background 250ms;
}
.pf-fv4-pgm-btn--ghost {
  background: transparent;
  color: #0B1F4A !important;
  border: 1.5px solid #0B1F4A;
}
.pf-fv4-pgm-btn--ghost:hover {
  background: #0B1F4A;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.pf-fv4-pgm-btn--filled {
  background: linear-gradient(135deg, #F26A1F 0%, #E55A14 100%);
  color: #ffffff !important;
  border: 1px solid transparent;
  box-shadow:
    0 8px 20px -4px rgba(242, 106, 31, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.pf-fv4-pgm-btn--filled:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px -4px rgba(242, 106, 31, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.pf-fv4-pgm-card-secondary {
  text-align: center;
  color: #5A6378 !important;
  font-size: 13.5px;
  text-decoration: none;
}
.pf-fv4-pgm-card-secondary:hover {
  color: #F26A1F !important;
  text-decoration: underline;
}
.pf-fv4-pgm-card-secondary--exec {
  color: rgba(255, 255, 255, 0.55) !important;
}
.pf-fv4-pgm-card-secondary--exec:hover {
  color: #F26A1F !important;
}

/* ── Reassurance bottom ── */
.pf-fv4-pgm-reassurance {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.pf-fv4-pgm-reassurance li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #5A6378;
}

/* ── Bridge vers spécialisations (sous les cards Elite/Exec) ── */
.pf-fv4-pgm-bridge {
  margin: 88px auto 0;
  max-width: 720px;
  text-align: center;
  padding: 48px 32px 0;
  border-top: 1px solid rgba(11, 31, 74, 0.10);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1) 300ms,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) 300ms;
}
.pf-fv4-pgm-bridge.pf-fv4-pgm-in {
  opacity: 1;
  transform: translateY(0);
}
.pf-fv4-pgm-bridge .pf-fv4-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.pf-fv4-pgm-bridge-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 36px);
  color: #0B1F4A;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px 0;
}
.pf-fv4-pgm-bridge-desc {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #5A6378;
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .pf-fv4-pgm-card,
  .pf-fv4-pgm-bridge {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pf-fv4-pgm-btn {
    transition: none;
  }
}

/* ── Subtitle Speak Like a Hero (sous le H2 Speak / Like a Hero) ── */
.pf-fv4-sig-hero-subtitle {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
  margin: 14px 0 24px 0;
  line-height: 1.4;
}


/* ═════════════════════════════════════════════════
   SPRINT v3.50.0 — Méthode + FAQ + CTA Final + Hero additions
   ═════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────
   HERO — Social proof + Scroll hint (additions)
   ───────────────────────────────────────────────── */
.pf-fv4-hero-social-proof {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(242, 106, 31, 0.07);
  border: 1px solid rgba(242, 106, 31, 0.18);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: #5A6378;
  letter-spacing: 0.005em;
}
.pf-fv4-hero-social-proof-icon {
  display: inline-flex;
  color: #F26A1F;
  flex-shrink: 0;
}
.pf-fv4-hero-social-proof-text {
  letter-spacing: 0.01em;
}

/* Scroll hint — discrete, contextually-placed */
.pf-fv4-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #5A6378;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 250ms ease, transform 250ms ease;
}
.pf-fv4-hero-scroll:hover {
  opacity: 1;
  color: #F26A1F;
}
.pf-fv4-hero-scroll-arrow {
  display: inline-flex;
  animation: pf-fv4-hero-scroll-bounce 2.4s ease-in-out infinite;
}
@keyframes pf-fv4-hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}


/* ─────────────────────────────────────────────────
   SECTION MÉTHODE (v3.50.0)
   ───────────────────────────────────────────────── */
.pf-fv4-method {
  background: #ffffff;
  padding: 110px 24px 100px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #0B1F4A;
  position: relative;
  overflow: hidden;
}
.pf-fv4-method-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pf-fv4-method-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pf-fv4-method-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  color: #0B1F4A;
  letter-spacing: -0.028em;
  line-height: 1.07;
  margin: 0 0 18px 0;
}
.pf-fv4-method-title .pf-fv4-italic { font-size: 1em; }
.pf-fv4-method-intro {
  font-size: 17px;
  line-height: 1.55;
  color: #5A6378;
  margin: 0;
}

/* ── Grid 2x2 des 4 piliers ── */
.pf-fv4-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}
.pf-fv4-method-card {
  background: linear-gradient(180deg, #FDFCF8 0%, #F7F5F0 100%);
  border: 1px solid rgba(11, 31, 74, 0.06);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  /* Reveal */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms ease,
    border-color 350ms ease;
}
.pf-fv4-method-card.pf-fv4-method-in {
  opacity: 1;
  transform: translateY(0);
}
.pf-fv4-method-card:nth-child(1).pf-fv4-method-in { transition-delay: 0ms; }
.pf-fv4-method-card:nth-child(2).pf-fv4-method-in { transition-delay: 120ms; }
.pf-fv4-method-card:nth-child(3).pf-fv4-method-in { transition-delay: 240ms; }
.pf-fv4-method-card:nth-child(4).pf-fv4-method-in { transition-delay: 360ms; }
.pf-fv4-method-card:hover {
  border-color: rgba(242, 106, 31, 0.25);
  box-shadow: 0 12px 30px -10px rgba(11, 31, 74, 0.08);
}

.pf-fv4-method-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.pf-fv4-method-card-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F26A1F;
  letter-spacing: 0.12em;
}
.pf-fv4-method-card-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(242, 106, 31, 0.08);
  color: #F26A1F;
  border: 1px solid rgba(242, 106, 31, 0.15);
}
.pf-fv4-method-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: #0B1F4A;
  letter-spacing: -0.018em;
  margin: 0 0 12px 0;
}
.pf-fv4-method-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #5A6378;
  margin: 0;
}

/* ── Stats d'impact ── */
.pf-fv4-method-stats {
  border-top: 1px solid rgba(11, 31, 74, 0.10);
  padding-top: 48px;
  text-align: center;
}
.pf-fv4-method-stats-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F26A1F;
  margin-bottom: 28px;
}
.pf-fv4-method-stats-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pf-fv4-method-stats-grid li {
  list-style: none !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.pf-fv4-method-stats-grid li::marker {
  content: '' !important;
  display: none !important;
}
.pf-fv4-method-stat-value {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 500;
  color: #0B1F4A;
  letter-spacing: -0.025em;
  line-height: 1;
}
.pf-fv4-method-stat-label {
  font-size: 13px;
  color: #5A6378;
  letter-spacing: 0;
  line-height: 1.4;
  max-width: 220px;
}


/* ─────────────────────────────────────────────────
   SECTION FAQ (v3.50.0)
   ───────────────────────────────────────────────── */
.pf-fv4-faq {
  background: #F7F5F0;
  padding: 110px 24px 110px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #0B1F4A;
}
.pf-fv4-faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.pf-fv4-faq-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pf-fv4-faq-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 50px);
  color: #0B1F4A;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 16px 0;
}
.pf-fv4-faq-title .pf-fv4-italic { font-size: 1em; }
.pf-fv4-faq-intro {
  font-size: 16.5px;
  line-height: 1.5;
  color: #5A6378;
  margin: 0;
}

/* ── Accordion list ── */
.pf-fv4-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Override theme's default li bullets — Shelly forces display:list-item + disc */
.pf-fv4-faq-list li,
.pf-fv4-faq-item {
  list-style: none !important;
  display: block !important;
  padding-left: 0;
}
.pf-fv4-faq-list li::marker,
.pf-fv4-faq-item::marker {
  content: '' !important;
  display: none !important;
}
.pf-fv4-faq-item {
  border-bottom: 1px solid rgba(11, 31, 74, 0.10);
}
.pf-fv4-faq-item:first-child {
  border-top: 1px solid rgba(11, 31, 74, 0.10);
}
.pf-fv4-faq-item details {
  /* Reset */
}
.pf-fv4-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  user-select: none;
  transition: color 200ms ease;
}
.pf-fv4-faq-item summary::-webkit-details-marker {
  display: none;
}
.pf-fv4-faq-item summary:hover {
  color: #F26A1F;
}
.pf-fv4-faq-item summary:focus-visible {
  outline: 2px solid #F26A1F;
  outline-offset: 2px;
  border-radius: 4px;
}
.pf-fv4-faq-q {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #0B1F4A;
  letter-spacing: -0.008em;
}
.pf-fv4-faq-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #8B92A4;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), color 200ms ease;
}
.pf-fv4-faq-item details[open] .pf-fv4-faq-icon {
  transform: rotate(180deg);
  color: #F26A1F;
}
.pf-fv4-faq-a {
  padding: 0 4px 24px 4px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #5A6378;
  letter-spacing: 0;
  max-width: 720px;
  animation: pf-fv4-faq-fade 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pf-fv4-faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pf-fv4-faq-contact {
  margin: 56px 0 0 0;
  text-align: center;
  font-size: 15px;
  color: #5A6378;
}
.pf-fv4-faq-contact-link {
  color: #F26A1F !important;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}
.pf-fv4-faq-contact-link:hover {
  text-decoration: underline;
}


/* ─────────────────────────────────────────────────
   SECTION CTA FINAL CINÉMA (v3.50.0)
   ───────────────────────────────────────────────── */
.pf-fv4-final {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(242, 106, 31, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #061639 0%, #02091F 100%);
  color: #ffffff;
  padding: 140px 24px 140px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
/* Halo orange diffus en arrière-plan */
.pf-fv4-final-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(242, 106, 31, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: pf-fv4-final-pulse 8s ease-in-out infinite;
}
@keyframes pf-fv4-final-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}
/* Grain pattern overlay */
.pf-fv4-final-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.04), transparent 50%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.03), transparent 50%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.04), transparent 50%),
    radial-gradient(1px 1px at 40% 90%, rgba(255,255,255,0.03), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.pf-fv4-final-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.pf-fv4-final-eyebrow {
  color: #F26A1F;
  margin-bottom: 28px;
  display: inline-block;
}
.pf-fv4-final-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 18px 0;
}
.pf-fv4-final-title .pf-fv4-italic {
  font-size: 1em;
  color: #F26A1F;
}
.pf-fv4-final-statement {
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 44px 0;
}
.pf-fv4-final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.pf-fv4-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition:
    transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
    background 250ms ease;
}
.pf-fv4-final-btn--primary {
  background: linear-gradient(135deg, #F26A1F 0%, #E55A14 100%);
  color: #ffffff !important;
  box-shadow:
    0 12px 30px -6px rgba(242, 106, 31, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.pf-fv4-final-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 38px -6px rgba(242, 106, 31, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.pf-fv4-final-btn--secondary {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.pf-fv4-final-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}
.pf-fv4-final-reassurance {
  margin: 24px 0 0 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.02em;
}


/* ── Reduced motion (a11y) ── */
@media (prefers-reduced-motion: reduce) {
  .pf-fv4-method-card,
  .pf-fv4-hero-scroll-arrow,
  .pf-fv4-final-halo,
  .pf-fv4-faq-a {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}


/* ─────────────────────────────────────────────────
   RESPONSIVE LOT B
   ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .pf-fv4-ba { padding: 70px 20px; }
  .pf-fv4-ba-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Méthode — mobile : grid 1 col + stats 2x2 */
  .pf-fv4-method { padding: 80px 18px 70px; }
  .pf-fv4-method-header { margin-bottom: 48px; }
  .pf-fv4-method-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
  .pf-fv4-method-card { padding: 28px 24px 26px; }
  .pf-fv4-method-card-title { font-size: 19px; }
  .pf-fv4-method-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  /* FAQ — mobile */
  .pf-fv4-faq { padding: 80px 18px 80px; }
  .pf-fv4-faq-header { margin-bottom: 40px; }
  .pf-fv4-faq-q { font-size: 16px; }
  .pf-fv4-faq-a { font-size: 14.5px; }

  /* CTA final — mobile */
  .pf-fv4-final { padding: 100px 20px 100px; }
  .pf-fv4-final-ctas { flex-direction: column; gap: 12px; }
  .pf-fv4-final-btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .pf-fv4-final-halo { width: 600px; height: 600px; }

  /* Hero — social proof + scroll mobile */
  .pf-fv4-hero-social-proof { font-size: 11.5px; padding: 7px 12px 7px 11px; }
  .pf-fv4-hero-scroll { display: none; } /* on cache la flèche mobile (peu utile) */

  /* Programmes principaux — tablette/mobile : stack */
  .pf-fv4-pgm { padding: 80px 18px 70px; }
  .pf-fv4-pgm-header { margin-bottom: 48px; }
  .pf-fv4-pgm-grid { grid-template-columns: 1fr; gap: 22px; }
  .pf-fv4-pgm-card { padding: 36px 26px 30px; }
  .pf-fv4-pgm-card-headline { font-size: 21px; }
  .pf-fv4-pgm-card-price-amount { font-size: 44px; }
  .pf-fv4-pgm-reassurance { gap: 18px; }
  .pf-fv4-pgm-reassurance li { font-size: 12.5px; }

  /* Transformation V3 — tablette / mobile : stack vertical */
  .pf-fv4-tr3 { padding: 80px 18px 70px; }
  .pf-fv4-tr3-header { margin-bottom: 48px; }
  .pf-fv4-tr3-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pf-fv4-tr3-card { padding: 28px 22px; }
  .pf-fv4-tr3-bubble-text { font-size: 14.5px; }
  .pf-fv4-tr3-dm-msg { font-size: 14px; }
  .pf-fv4-tr3-emotion { font-size: 15.5px; margin-top: 22px; }
  .pf-fv4-tr3-footnote { font-size: 18px; margin-top: 56px; }

  .pf-fv4-testi { padding: 70px 20px; }
  .pf-fv4-testi-featured { grid-template-columns: 1fr; }
  .pf-fv4-testi-content { padding: 32px 26px; }
  .pf-fv4-testi-quote { font-size: 19px; }
  .pf-fv4-testi-grid { grid-template-columns: 1fr; }

  .pf-fv4-sig-hero { padding: 80px 20px; }
  .pf-fv4-sig-interview { padding: 80px 20px; }
  .pf-fv4-sig-inner-reverse { grid-template-columns: 1fr; gap: 48px; }
  .pf-fv4-sig-tagline { font-size: 18px; }
  .pf-fv4-sig-desc { font-size: 15.5px; }

  .pf-fv4-emails-stack { padding: 20px 10px; min-height: 360px; }
  .pf-fv4-email { max-width: 100%; }

  .pf-fv4-sig-hero-waveform { height: 70px; max-width: 100%; gap: 4px; }
}
@media (max-width: 560px) {
  .pf-fv4-ba-title { font-size: 28px; }
  .pf-fv4-tr3-title { font-size: 28px; }
  .pf-fv4-tr3-card { padding: 24px 18px; }
  .pf-fv4-tr3-iface-body { padding: 16px 14px 18px; gap: 12px; }
  .pf-fv4-tr3-bubble { padding: 9px 12px; }
  .pf-fv4-tr3-bubble-text { font-size: 14px; }
  .pf-fv4-tr3-you-muted { padding: 10px 12px; width: 100%; }
  .pf-fv4-tr3-bubble { max-width: 100%; }
  .pf-fv4-tr3-dm { padding: 12px 12px; }
  .pf-fv4-tr3-dm-msg { font-size: 13.5px; }
  .pf-fv4-testi-title { font-size: 28px; }
  .pf-fv4-sig-hero-title { font-size: 48px; }
  .pf-fv4-sig-interview-title { font-size: 30px; }
  .pf-fv4-email { padding: 14px 18px; }
  .pf-fv4-email-subject { font-size: 13.5px; }
  .pf-fv4-email-preview { font-size: 12px; }
}

/* ═════════════════════════════════════════════════════
   SPRINT v3.50.2 — Mobile audit fixes
   ───────────────────────────────────────────────────── */

/* Fix 1 — Cacher Voice Note + Coach Note du hero en mobile.
   Sur desktop : composition narrative essentielle (split-screen avant/après).
   Sur mobile : prend trop de place sous le H1, perd contexte sans desktop. */
@media (max-width: 768px) {
  .pf-fv4-hero-aside {
    display: none !important;
  }
  /* Réajuster le hero mobile pour qu'il respire sans la composition droite */
  .pf-fv4-hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Fix 2 — Padding-bottom safe sur les sections mobiles pour que le
   sticky CTA ne chevauche jamais une dernière ligne de texte. */
@media (max-width: 768px) {
  /* Le sticky CTA fait ~85px de hauteur incluant son padding bottom 16px.
     On laisse un safe-zone de 90px en bas de chaque section critique. */
  .pf-fv4-method,
  .pf-fv4-scene-light,
  .pf-fv4-scene-dark,
  .pf-fv4-tr3,
  .pf-fv4-testi,
  .pf-fv4-sig-hero,
  .pf-fv4-sig-interview,
  .pf-fv4-faq {
    padding-bottom: 90px !important;
  }
}

/* Fix 3 — Transitions plus douces sur le sticky CTA (apparition/disparition)
   pour éviter les flashs entre zones cachées et visibles. */
.pf-fv4-sticky-cta {
  transition:
    opacity 380ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ═════════════════════════════════════════════════════
   SPRINT v3.50.4 — Section Profils
   ───────────────────────────────────────────────────── */
.pf-fv4-profiles {
  background: #ffffff;
  padding: 110px 24px 100px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #0B1F4A;
}
.pf-fv4-profiles-inner { max-width: 1180px; margin: 0 auto; }
.pf-fv4-profiles-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pf-fv4-profiles-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  color: #0B1F4A;
  letter-spacing: -0.028em;
  line-height: 1.07;
  margin: 0 0 18px 0;
}
.pf-fv4-profiles-title .pf-fv4-italic { font-size: 1em; }
.pf-fv4-profiles-intro {
  font-size: 17px;
  line-height: 1.55;
  color: #5A6378;
  margin: 0;
}
.pf-fv4-profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pf-fv4-profiles-card {
  background: linear-gradient(180deg, #FDFCF8 0%, #F7F5F0 100%);
  border: 1px solid rgba(11, 31, 74, 0.06);
  border-radius: 16px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 250ms ease,
    box-shadow 250ms ease;
}
.pf-fv4-profiles-card.pf-fv4-profiles-in { opacity: 1; transform: translateY(0); }
.pf-fv4-profiles-card[data-pf-profiles-idx="0"].pf-fv4-profiles-in { transition-delay: 0ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="1"].pf-fv4-profiles-in { transition-delay: 60ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="2"].pf-fv4-profiles-in { transition-delay: 120ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="3"].pf-fv4-profiles-in { transition-delay: 180ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="4"].pf-fv4-profiles-in { transition-delay: 240ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="5"].pf-fv4-profiles-in { transition-delay: 300ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="6"].pf-fv4-profiles-in { transition-delay: 360ms; }
.pf-fv4-profiles-card[data-pf-profiles-idx="7"].pf-fv4-profiles-in { transition-delay: 420ms; }
.pf-fv4-profiles-card:hover {
  border-color: rgba(242, 106, 31, 0.25);
  box-shadow: 0 8px 22px -8px rgba(11, 31, 74, 0.08);
}
.pf-fv4-profiles-card-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(242, 106, 31, 0.08);
  color: #F26A1F;
  border: 1px solid rgba(242, 106, 31, 0.15);
  margin-bottom: 8px;
}
.pf-fv4-profiles-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.3;
  color: #0B1F4A;
  letter-spacing: -0.012em;
  margin: 0;
}
.pf-fv4-profiles-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #5A6378;
  margin: 0;
}
.pf-fv4-profiles-footnote {
  margin: 48px auto 0;
  max-width: 720px;
  padding: 24px 28px 0;
  text-align: center;
  font-family: 'Tiempos Headline', 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 17.5px;
  color: #5A6378;
  line-height: 1.55;
  border-top: 1px solid rgba(11, 31, 74, 0.10);
  position: relative;
  /* Smart line balancing — évite l'orphelin moche */
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.pf-fv4-profiles-footnote::before {
  content: "+";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: #ffffff;
  color: #F26A1F;
  border: 1px solid rgba(242, 106, 31, 0.30);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 960px) {
  .pf-fv4-profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pf-fv4-profiles { padding: 80px 18px 70px; }
}
@media (max-width: 768px) {
  .pf-fv4-profiles { padding-bottom: 90px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .pf-fv4-profiles-card { opacity: 1 !important; transform: none !important; transition: none !important; }
}
