/* ═══════════════════════════════════════════════════════════
   SITE CARINE PAVARD V2 - STYLES
   Minimalist, beige background (#EEEADE), orange accent (#EC663C)
   Gill Sans Typography
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

@font-face {
  font-family: 'Brother 1816';
  src: url('Brother-1816-Extra-Bold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Brother 1816 Black';
  src: url('Brother-1816-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans';
  src: local('Gill Sans'), local('GillSans'), url('GillSans.ttc') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans';
  src: local('Gill Sans Bold'), local('GillSans-Bold'), url('GillSans.ttc') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg-beige: #F9F9F2;
  --accent-orange: #EC663C;
  --text-black: #000000;
  --text-grey: #5A5550;
  --white: #FFFFFF;

  /* Palette Carine Pavard */
  --anthracite: #333333;
  --prune: #841F4A;
  --orange: #EC663C;
  --corail: #F49748;
  --vert-foret: #2C4826;
  --creme: #EEEADE;
  --gris-texte: #6b6b6b;

  --font-main: 'Gill Sans', 'Gill Sans MT', Lato, Helvetica, Arial, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.accent-color {
  color: var(--accent-orange);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-beige);
}

/* Accrochage du défilement (Scroll Snap) uniquement sur la page d'accueil */
html:has(#home) {
  scroll-snap-type: y mandatory;
}

/* Si la modale est active dans la section roue, la section devient très haute.
   On passe en accrochage de proximité pour que le contenu reste accessible. */
html:has(#home):has(.modal-active) {
  scroll-snap-type: y proximity;
}

body {
  background-color: var(--bg-beige);
  color: var(--text-black);
  font-family: var(--font-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Page Layout */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Body class to prevent scrolling when mobile menu is open */
body.no-scroll {
  overflow: hidden;
}

/* Fixed Navigation Menu (Upper Left and Upper Right) */
.nav-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1000;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* If the page has #home, it starts hidden */
body:has(#home) .nav-header-fixed {
  opacity: 0;
  transform: translateY(-10px);
}

/* And becomes visible when JS adds the class */
body:has(#home) .nav-header-fixed.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-header-fixed.menu-open {
  height: 100vh;
  background-color: var(--bg-beige);
  pointer-events: auto;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.nav-logo-top {
  pointer-events: auto;
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
  z-index: 1010;
}

.nav-logo-top .logo-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  transition: opacity 0.4s ease;
}

.nav-vertical-column {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  z-index: 1005;
}

.nav-link-item {
  font-family: var(--font-main);
  font-size: 0.76rem; /* Réduit d'environ 10% pour un aspect plus fin */
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-orange);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link-item:hover {
  color: var(--accent-orange) !important;
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-link-item.nav-active {
  color: var(--accent-orange) !important;
  font-weight: 700;
}

.nav-link-item.nav-active::after {
  width: 100%;
}

/* Toggle Menu Mobile Burger */
.nav-mobile-toggle {
  display: none;
  pointer-events: auto;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
  color: inherit;
}

.nav-mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.nav-mobile-toggle.active .bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-mobile-toggle.active .bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Thèmes de couleurs adaptatives */
.nav-header-fixed.nav-clair {
  color: var(--text-black);
}

.nav-header-fixed.nav-clair .nav-link-item {
  color: var(--text-black);
}

.nav-header-fixed.nav-clair .logo-orange {
  opacity: 1;
}

.nav-header-fixed.nav-clair .logo-blanc {
  opacity: 0;
}

.nav-header-fixed.nav-clair .logo-bordeaux {
  opacity: 0;
}

.nav-header-fixed.nav-fonce {
  color: var(--white);
}

.nav-header-fixed.nav-fonce .nav-link-item {
  color: var(--white);
}

.nav-header-fixed.nav-fonce .logo-orange {
  opacity: 0;
}

.nav-header-fixed.nav-fonce .logo-blanc {
  opacity: 1;
}

.nav-header-fixed.nav-fonce .logo-bordeaux {
  opacity: 0;
}

.nav-header-fixed.nav-bordeaux {
  color: #6E2348;
}

.nav-header-fixed.nav-bordeaux .nav-link-item {
  color: #6E2348;
}

.nav-header-fixed.nav-bordeaux:not(.menu-open) .nav-link-item:hover {
  color: #ffffff !important;
}

.nav-header-fixed.nav-bordeaux:not(.menu-open) .nav-link-item:hover::after {
  background-color: #ffffff;
}

.nav-header-fixed.nav-bordeaux .logo-orange {
  opacity: 0;
}

.nav-header-fixed.nav-bordeaux .logo-blanc {
  opacity: 0;
}

.nav-header-fixed.nav-bordeaux .logo-bordeaux {
  opacity: 1;
}

.nav-header-fixed.nav-orange-blanc {
  color: var(--accent-orange);
}

.nav-header-fixed.nav-orange-blanc .nav-link-item {
  color: var(--accent-orange);
}

.nav-header-fixed.nav-orange-blanc:not(.menu-open) .nav-link-item:hover {
  color: #ffffff !important;
}

.nav-header-fixed.nav-orange-blanc:not(.menu-open) .nav-link-item:hover::after {
  background-color: #ffffff;
}

.nav-header-fixed.nav-orange-blanc .logo-orange {
  opacity: 1;
}

.nav-header-fixed.nav-orange-blanc .logo-blanc {
  opacity: 0;
}

.nav-header-fixed.nav-orange-blanc .logo-bordeaux {
  opacity: 0;
}

.nav-header-fixed.nav-orange {
  color: var(--accent-orange);
}

.nav-header-fixed.nav-orange .nav-link-item {
  color: var(--accent-orange);
}

.nav-header-fixed.nav-orange:not(.menu-open) .nav-link-item:hover {
  color: var(--text-black) !important;
}

.nav-header-fixed.nav-orange:not(.menu-open) .nav-link-item:hover::after {
  background-color: var(--text-black);
}

.nav-header-fixed.nav-orange .logo-orange {
  opacity: 1;
}

.nav-header-fixed.nav-orange .logo-blanc {
  opacity: 0;
}

.nav-header-fixed.nav-orange .logo-bordeaux {
  opacity: 0;
}

/* Force orange logo when mobile drawer is open because its background is light beige */
.nav-header-fixed.menu-open .logo-orange {
  opacity: 1 !important;
}

.nav-header-fixed.menu-open .logo-blanc {
  opacity: 0 !important;
}

.nav-header-fixed.menu-open .logo-bordeaux {
  opacity: 0 !important;
}

/* Content wrapper to offset from navigation */
main {
  /* No global offset so #home is centered relative to screen */
}

/* Home Section */
#home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 100px 40px;
}

.home-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-logo {
  max-width: 320px;
  /* Logo plus grand et bien visible */
  height: auto;
  margin-bottom: 0;
  transition: transform var(--transition);
}

.home-logo:hover {
  transform: scale(1.02);
}

.home-content {
  margin-top: 180px;
  /* Descend le titre plus bas sur la page, augmentant le vide */
}

.home-title {
  font-family: var(--font-main);
  font-size: clamp(2.0rem, 4.5vw, 3.2rem);
  /* Titre plus modéré */
  font-weight: 400;
  /* Traits fins et élégants, utilise la police Gill Sans */
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 40px;
  /* Rapproche le titre et les textes du dessous */
  color: var(--text-black);

  /* Révélation au chargement */
  opacity: 0;
  animation: heroTitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.home-title .line {
  display: block;
}

.home-subtitle {
  font-size: clamp(0.7rem, 1.3vw, 0.8rem);
  font-weight: 400;
  color: var(--text-grey);
  letter-spacing: 0.15em;
  line-height: 2.2;
  text-transform: uppercase;
  max-width: 780px;
  margin: 0 auto;

  /* Révélation au chargement */
  opacity: 0;
  animation: heroSubtitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

.home-subtitle p:first-child {
  margin-bottom: 16px;
  font-weight: 400;
  /* Graisse normale (pas en gras) */
  color: var(--text-black);
}

/* Section Shared Styles */
section:not(#home) {
  padding: 160px 180px 160px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Accrochage du défilement (Scroll Snap) sur la page d'accueil */
#home,
#constat,
#qui-je,
#public,
#roue,
#temoignage,
#contact {
  scroll-snap-align: start;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text-black);
  margin-bottom: 48px;
}

.section-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-grey);
  max-width: 760px;
  margin-bottom: 60px;
}

/* LE CADRE Section */
.cadre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.cadre-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cadre-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  opacity: 0.6;
}

.cadre-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-black);
}

.cadre-item p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.75;
}

/* VALEURS Section */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
}

.valeur-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.valeur-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-black);
}

.valeur-item p {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.7;
}

/* QUI-JE Section */
.qui-je-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.qui-je-conviction {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--text-black);
  border-left: 3px solid var(--accent-orange);
  padding-left: 28px;
  max-width: 800px;
}

.qui-je-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-grey);
  max-width: 800px;
}

/* L'OFFRE Section */
.offre-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.offre-promesse {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 700;
  color: var(--text-black);
}

.offre-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.offre-block h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.offre-block p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.75;
}

.adresse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 24px;
}

.adresse-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.adresse-bullet {
  color: var(--accent-orange);
  font-weight: 700;
}

.adresse-item p {
  font-size: 0.925rem;
  color: var(--text-grey);
  line-height: 1.7;
}

.adresse-not {
  margin-top: 40px;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.02);
  border-left: 2px solid var(--text-grey);
}

.adresse-not-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-black);
  margin-bottom: 8px;
}

.adresse-not p {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.7;
}

/* CONTACT Section */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-grey);
}

.contact-email {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
  transition: border-color var(--transition);
}

.contact-email:hover {
  border-color: var(--accent-orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-black);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent-orange);
  background-color: transparent;
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-bottom-color: #D9522A;
}

/* Style des placeholders en gris clair */
::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
  opacity: 1;
  /* Firefox */
}

.btn-submit {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--text-black);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color var(--transition), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-submit:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-notice {
  font-size: 0.9rem;
  min-height: 20px;
}

.form-notice.success {
  color: #2E5B46;
  font-weight: 700;
}

.form-notice.error {
  color: #D9522A;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 60px 180px 60px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.01);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-monogram {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-black);
  letter-spacing: 0.05em;
}

.footer-email {
  font-size: 0.9rem;
  color: var(--text-grey);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--accent-orange);
}

.footer-qualiopi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.qualiopi-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-grey);
  letter-spacing: 0.05em;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Rules */
@media (max-width: 900px) {
  main {
    padding-right: 0;
  }

  .nav-header-fixed {
    padding: 30px 40px;
    height: auto;
    pointer-events: auto;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-vertical-column {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-beige);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transform: translateY(-100%);
    z-index: 1005;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: auto;
  }

  .nav-vertical-column.active {
    transform: translateY(0);
  }

  .nav-vertical-column .nav-link-item {
    font-size: 1.44rem; /* Réduit d'environ 10% */
    color: var(--text-black) !important;
  }

  .nav-vertical-column .nav-link-item:hover {
    color: var(--accent-orange) !important;
  }

  .nav-header-fixed.menu-open .nav-logo-top {
    color: var(--text-black) !important;
  }

  .nav-header-fixed.menu-open .nav-mobile-toggle {
    color: var(--text-black) !important;
  }

  #home {
    padding-top: 60px;
    min-height: calc(100vh - 80px);
  }

  section:not(#home) {
    padding: 100px 40px;
  }

  .site-footer {
    padding: 60px 40px;
  }

  .cadre-grid,
  .valeurs-grid,
  .offre-details,
  .adresse-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Interactive Wheel Styles ── */
.hero-wheel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 40px auto;
  max-width: 100%;
}

#wheelSVG {
  display: block;
  max-width: 100%;
  height: auto;
  overflow: visible;
  filter: url(#segBlur);
  transition: filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: filter;
}

.wheel-interactive-layout.layout-revealed #wheelSVG {
  filter: none;
  transition: filter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 1.2s;
  /* La transition vers la netteté débute après 1.2s */
}

/* ═══════════════════════════════════════════
   SUCCESSION DE SECTIONS COLORÉES (V2)
   ═══════════════════════════════════════════ */

.color-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  /* Caler le contenu en haut */
  align-items: center;
  padding: 100px 180px 100px 40px !important;
  /* Décale pour éviter le menu fixe */
  width: 100%;
  min-height: 100vh !important;
  border-top: none !important;
}

.color-section .container {
  max-width: 1000px !important;
  /* Grille resserrée style suisse */
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Palette de couleurs */
.bg-berry {
  background-color: #831f4a;
  color: #FFFFFF;
}

.bg-peach {
  background-color: #f39648;
  color: #333333;
}

.bg-rust {
  background-color: #eb663c;
  color: #FFFFFF;
}

.bg-forest {
  background-color: #2c4826;
  color: #FFFFFF;
}

.bg-olive {
  background-color: #b1b328;
  color: #333333;
}

.bg-lightblue {
  background-color: #cbdbf0;
  color: #333333;
}

.bg-charcoal {
  background-color: #333333;
  color: #FFFFFF;
}

.bg-neutral {
  background-color: #F9F9F2;
  color: #333333;
}

.bg-white {
  background-color: #FFFFFF !important;
  color: #333333;
}

/* Typographie & Label de section */
.section-label {
  font-family: var(--font-main);
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--accent-orange) !important;
  margin-bottom: 12px !important;
  /* Resserre l'écart avec le titre */
  display: inline-block;
  font-style: normal !important;
}

/* Forcer l'orange sur le label des sections sombres pour que ça ressorte comme sur l'image */
.dark-section .section-label {
  color: var(--accent-orange) !important;
}

.light-section .section-label {
  color: var(--accent-orange) !important;
}

/* ── Entête de Section Split (Style Suisse) ── */
.split-header {
  width: 100%;
  text-align: left;
  margin-bottom: 40px;
}

.split-header h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  /* Taille de titre plus contenue pour style maquette */
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.25 !important;
  margin-bottom: 0 !important;
  text-align: left !important;
  text-transform: uppercase !important;
  max-width: 550px;
  /* Force le titre sur 2 lignes */
}

/* ── Disposition 1 : Double Colonne (Sections avec listes / Style Suisse) ── */
.split-layout {
  display: grid;
  grid-template-columns: 34% 35%;
  /* Largeurs de colonnes fixes en % */
  gap: 5%;
  /* Écart régulier d'environ 5% */
  justify-content: center;
  /* Centre le groupe pour avoir ~13% de marge latérale de chaque côté */
  width: 100%;
  text-align: left;
  align-items: start;
}

.split-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: none !important;
  /* Pas de cadre */
  padding: 0 !important;
  /* Pas d'encadré */
  width: 100%;
  max-width: 100% !important;
  /* Occupe toute sa colonne de 34% */
  padding-top: 9px !important;
  /* Aligne le haut du paragraphe sur le premier item de droite (1px border + 8px padding) */
}

.split-left p {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  /* Grille de base partagée */
  line-height: 1.6 !important;
  /* Grille de base partagée */
  margin-bottom: 1.6em !important;
  /* Marge équivalente à une ligne */
  text-align: left !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}

.split-left p:last-child {
  margin-bottom: 0 !important;
}

/* Liste à puces de la colonne de droite */
.split-right-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 0 !important;
  /* Aligné en haut naturellement */
}

.split-right-list li {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  /* Grille de base partagée */
  line-height: 1.6 !important;
  /* Grille de base partagée */
  padding: 8px 0 8px 0 !important;
  /* Pas de padding gauche pour aligner le texte et les bordures sur le repère vertical */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  position: relative;
  text-align: left;
}

.split-right-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding-top: 4px !important;
  /* Compense le rendu du navigateur pour remonter le texte de droite */
}

.split-right-list li:first-child::before {
  top: 5px !important;
  /* Ajusté pour le padding-top de 4px */
}

.split-right-list li::before {
  content: "•" !important;
  position: absolute !important;
  left: -20px !important;
  /* Puce suspendue (hanging bullet) dans la gouttière */
  color: var(--accent-orange) !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  top: 9px !important;
  /* Calé sur le padding de 8px */
}

/* Ajustements pour les sections claires */
.light-section .split-right-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.light-section .split-right-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding-top: 4px !important;
  /* Compense également sur les sections claires */
}

/* ── Disposition 2 : Alignement à Gauche (Sections sans listes) ── */
.wide-layout {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wide-layout h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.25 !important;
  margin-bottom: 40px !important;
  text-align: left !important;
  text-transform: uppercase !important;
  margin-left: 0 !important;
}

.wide-layout p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important;
  line-height: 1.8 !important;
  max-width: 920px !important;
  /* Utilise bien la largeur disponible */
  margin: 0 0 24px 0 !important;
  text-align: left !important;
}

.wide-layout p:last-child {
  margin-bottom: 0 !important;
}

/* ── Section de la Roue ── */
.wheel-section {
  background-color: #F9F9F2 !important;
  padding: 60px 40px 40px !important;
  /* Espace fixe en haut de la section */
  min-height: 100vh;
  /* Permet d'occuper tout l'écran */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Aligne le contenu vers le haut de la section */
  overflow-x: hidden;
  /* Empêche le défilement horizontal pendant l'animation */
}

.wheel-header {
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
  margin-top: 0;
  /* Plus de décalage négatif car le conteneur est aligné en haut */
}

.wheel-header .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange) !important;
  margin-bottom: 6px;
  /* Rapproche du haut */
}

.wheel-header h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  /* Rétablit le grand titre sur deux lignes */
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
  color: var(--text-black) !important;
  margin-bottom: 8px !important;
  text-align: center !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wheel-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem) !important;
  color: var(--text-grey) !important;
  font-weight: 500;
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto !important;
  transition: font-size 0.3s ease, color 0.3s ease;
}

.wheel-header:has(.active-intro) h2 {
  margin-bottom: 0 !important;
  /* Supprime l'espace sous le titre quand la question du profil est active */
}

.wheel-subtitle.active-intro {
  font-size: 19px !important;
  /* Question d'introduction réduite (était 25px) */
  font-family: var(--font-main) !important;
  font-weight: 400 !important;
  color: var(--text-black) !important;
  text-transform: none !important;
  margin-top: 0 !important;
  /* Aucun espace (était 10px) */
}

.wheel-interactive-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  /* Élargi pour accueillir les éléments agrandis */
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  position: relative;
}

.wheel-left-side {
  flex: 0 0 440px !important;
  /* Agrandit la roue */
  width: 440px !important;
  max-width: 440px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-right-side {
  flex: 0 0 440px !important;
  /* Agrandit le bloc d'explication */
  width: 440px !important;
  max-width: 440px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-wheel {
  width: 100%;
  max-width: 440px !important;
  margin: 0 auto;
}

/* Forcer les contrastes généraux */
.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section li,
.dark-section span {
  color: #FFFFFF !important;
}

.light-section h2,
.light-section h3,
.light-section p,
.light-section li,
.light-section span {
  color: #333333 !important;
}

/* Thème sombre spécifique de la section Contact */
#contact.dark-section {
  background-color: #333333;
  color: #ffffff;
  padding: 140px 180px 140px 40px;
  border-top: none;
}

#contact.dark-section h2 {
  color: #ffffff !important;
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-align: left !important;
  margin-bottom: 40px !important;
}

#contact.dark-section .contact-info p {
  color: rgba(255, 255, 255, 0.85) !important;
}

#contact.dark-section .contact-email {
  color: var(--accent-orange);
  border-bottom: 2px solid transparent;
}

#contact.dark-section .contact-email:hover {
  border-color: var(--accent-orange);
}

#contact.dark-section .form-group label {
  color: #ffffff !important;
}

#contact.dark-section .form-group input,
#contact.dark-section .form-group textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: #ffffff;
  padding: 12px 0;
  transition: border-color var(--transition);
}

#contact.dark-section .form-group input:focus,
#contact.dark-section .form-group textarea:focus {
  border-bottom-color: var(--accent-orange);
  background-color: transparent;
}

#contact.dark-section .form-group input.invalid,
#contact.dark-section .form-group textarea.invalid {
  border-bottom-color: #EC663C;
}

#contact.dark-section ::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

#contact.dark-section .btn-submit {
  background-color: #ffffff;
  color: #333333;
  font-weight: 700;
}

#contact.dark-section .btn-submit:hover {
  background-color: var(--accent-orange);
  color: #ffffff;
}

/* Version responsive tablette et mobile */
@media (max-width: 900px) {
  html:has(#home) {
    scroll-snap-type: y proximity !important;
  }

  .color-section {
    padding: 100px 40px !important;
  }

  .color-section .container {
    padding: 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-left {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .split-right-list {
    margin-top: 0 !important;
    /* Annule le décalage d'alignement vertical sur mobile */
  }

  .split-right-list li {
    padding-left: 20px !important;
    /* Ajoute du padding pour ne pas couper les puces sur mobile */
  }

  .split-right-list li::before {
    left: 0 !important;
    /* Repositionne les puces à l'intérieur sur mobile */
  }

  .wheel-section {
    padding: 60px 20px !important;
    min-height: auto !important;
  }

  #contact.dark-section {
    padding: 100px 40px !important;
  }

  /* Règles responsive pour la section coach */
  .coach-section-full {
    min-height: auto !important;
    padding: 0 !important;
  }

  .coach-full-container {
    padding: 80px 30px !important;
  }

  .coach-full-content {
    transform: none !important; /* Pas de décalage vertical sur mobile */
  }

  .coach-full-overlay {
    display: none !important;
  }

  .coach-full-img {
    object-position: 75% center !important;
  }
}

/* ── Section de la Coach (Plein Cadre / Superposée) ── */
.coach-section-full {
  position: relative;
  width: 100% !important;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-top: none !important;
  background-color: #F9F9F2;
}

.coach-full-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.coach-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  /* Cadrage sur Carine à droite */
  display: block;
}

.coach-full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  pointer-events: none;
}

.coach-full-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px 180px 60px 120px;
  /* Décale pour éviter le menu fixe à droite */
}

.coach-full-content {
  max-width: 580px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-75px); /* Remonte le bloc de texte de 2 cm (environ 75px) */
}

.coach-full-content h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  margin-top: 15px;
  margin-bottom: 30px;
  color: var(--text-black) !important;
  line-height: 1.25 !important;
}

.coach-full-content .section-label {
  color: #EC663C !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
}

.coach-quote {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
  color: var(--text-black) !important;
  margin-bottom: 28px !important;
  border-left: none !important;
  padding-left: 0 !important;
}

.coach-full-content p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem) !important;
  line-height: 1.8 !important;
  margin-bottom: 24px !important;
  color: #333333 !important;
}

.coach-full-content p:last-of-type {
  margin-bottom: 32px !important;
  /* Espace confortable pour le bouton */
}

/* Bouton Contour Orange */
.btn-outline-orange {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #EC663C !important;
  background-color: transparent;
  border: 1.5px solid #EC663C;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin-top: 36px;
}

.btn-outline-orange:hover {
  background-color: #EC663C;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 102, 60, 0.15);
}

/* ── Page Biographie (carine.html) ── */
.bio-page {
  background-color: #F9F9F2;
  min-height: 100vh;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-header {
  margin-bottom: 60px;
  text-align: center;
}

.bio-logo {
  max-width: 220px;
  height: auto;
}

.bio-container {
  max-width: 860px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 180px;
  /* Dégage la navigation verticale fixe */
}

.bio-container h1 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.25 !important;
  color: var(--text-black);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.bio-content {
  margin-bottom: 48px;
  width: 100%;
}

.bio-content p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  line-height: 1.8 !important;
  color: #333333;
  margin-bottom: 24px;
}

.bio-content p.lead-text {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem) !important;
  font-weight: 700 !important;
  color: var(--text-black) !important;
}

.bio-content p.placeholder-text {
  font-style: italic;
  color: var(--text-grey);
  border-left: 2px solid var(--accent-orange);
  padding-left: 20px;
  background-color: rgba(236, 102, 60, 0.03);
  padding: 16px 20px;
}

@media (max-width: 900px) {
  .bio-page {
    padding: 40px 24px;
  }

  .bio-container {
    padding-right: 0;
  }

  .bio-header {
    margin-bottom: 40px;
  }
}

/* --- Réglages bloc par bloc spécifiques (Contraste et Lisibilité) --- */



/* 1. Le constat (#constat) : fond orange, kicker bordeaux, texte blanc */
#constat .section-label {
  color: #6E2348 !important;
}

#constat h2,
#constat p {
  color: #ffffff !important;
}

/* 2. Une conviction fondatrice (#conviction) : fond bordeaux, kicker orange, texte blanc */
#conviction .section-label {
  color: #f39648 !important;
}

#conviction h2,
#conviction p,
#conviction li {
  color: #ffffff !important;
}

/* 3. Vision (#vision) : fond blanc, texte foncé, kicker orange */
#vision h2,
#vision p,
#vision span {
  color: #333333 !important;
}

#vision .section-label {
  color: #EC663C !important;
}

/* 4. Mission (#mission) : fond orange, texte foncé, kicker bordeaux */
#mission h2,
#mission p,
#mission span {
  color: #333333 !important;
}

#mission .section-label {
  color: #831f4a !important;
}

/* 5. La promesse (#offre) : fond blanc, texte foncé, kicker orange, puces orange, bordures foncées */
#offre h2,
#offre p,
#offre li,
#offre span {
  color: #333333 !important;
}

#offre .section-label {
  color: #EC663C !important;
}

#offre .split-right-list li::before {
  color: #EC663C !important;
}

#offre .split-right-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#offre .split-right-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* 6. L'approche (#approche) : fond bleu, kicker orange */
#approche p {
  color: #333333 !important;
}

#approche .section-label {
  color: #EC663C !important;
}

/* 7. Les engagements (#engagements) : fond blanc, texte foncé, kicker orange, puces orange, bordures foncées */
#engagements h2,
#engagements p,
#engagements li,
#engagements span {
  color: #333333 !important;
}

#engagements .section-label {
  color: #EC663C !important;
}

#engagements .split-right-list li::before {
  color: #EC663C !important;
}

#engagements .split-right-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#engagements .split-right-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Annuler la hauteur minimale sur mobile pour éviter les espaces vides */
@media (max-width: 900px) {
  .color-section {
    min-height: auto !important;
  }

  .wheel-section {
    min-height: auto !important;
  }
}

/* Citation / Témoignage */
.testimonial {
  margin-top: 40px;
  border-left: 2px solid var(--accent-orange);
  padding-left: 30px;
  max-width: 800px;
}

.testimonial-text {
  font-size: clamp(1.20rem, 2vw, 1.60rem) !important;
  line-height: 1.6 !important;
  font-style: italic;
  color: var(--text-black) !important;
  margin-bottom: 20px !important;
}

.testimonial-author {
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-grey);
  display: block;
}

/* Centrage des grands titres de section et de leurs labels sur la page d'accueil */
#constat h2,
#public h2,
#roue h2,
#contact h2 {
  text-align: center !important;
  width: 100% !important;
  max-width: none !important;
}

#constat .section-label,
#public .section-label,
#roue .section-label {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

/* Alignement horizontal et vertical pour les sections de la page d'accueil */
#constat .wide-layout,
#public .wide-layout {
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#constat p,
#public p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Alignement vertical en haut des sections de 100vh sur la page d'accueil pour cohérence de départ vertical */
#constat,
#public,
#temoignage {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

#roue {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

/* Padding symétrique pour centrer les sections par rapport à la page entière (sans décalage du menu fixe à droite) */
#constat,
#public,
#temoignage {
  padding: 60px 40px 100px !important;
  /* Même départ vertical que #roue */
}

/* Centrage vertical du bloc titre et paragraphe de la section Le constat sur grand écran */
@media (min-width: 901px) {

  #constat .container,
  #constat .wide-layout,
  #public .container,
  #public .wide-layout {
    height: 100%;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
  }

  #constat h2,
  #public h2 {
    margin-top: auto !important;
  }

  #constat p,
  #public p:last-of-type {
    margin-bottom: auto !important;
  }
}

#approche {
  padding: 100px 40px !important;
}

#roue {
  padding: 60px 40px 40px !important;
}

@media (max-width: 900px) {
  #roue {
    padding: 60px 20px !important;
  }
}

#contact.dark-section {
  padding: 140px 40px !important;
}

#approche .container {
  max-width: 1200px !important;
}

/* Page L'Approche - Header et Grille 3 Colonnes */
.approche-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approche-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--accent-orange) !important;
  /* Orange */
  margin-bottom: 24px !important;
  text-align: center !important;
}

#approche .approche-subtitle {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.5 !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  /* White */
  max-width: 800px;
  margin: 0 auto !important;
  text-align: center !important;
}

.approche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  width: 100%;
  margin-top: 100px;
}

.approche-block {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
}

.approche-block h2 {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem) !important;
  font-weight: 400 !important;
  /* Normal weight (not bold) */
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--accent-orange) !important;
  /* Orange */
  margin-bottom: 24px !important;
  text-align: center !important;
}

.approche-block p {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  line-height: 1.5 !important;
  color: #333333 !important;
  margin: 0 !important;
  text-align: center !important;
  max-width: 340px;
}

@media (max-width: 900px) {
  .approche-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approche-block p {
    max-width: 100% !important;
  }
}

/* ── Panneau d'explication du profil ── */
.profile-info-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 30px 30px 25px;
  /* Augmente la marge intérieure en haut */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Aligne le contenu vers le haut */
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  min-height: 380px;
  /* Plus grand pour s'accorder avec la roue agrandie */
  text-align: left;
}

.panel-placeholder {
  text-align: center;
  color: var(--text-grey);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-grow: 1;
}

.panel-placeholder .section-label {
  text-align: center;
  display: block;
  margin-top: 0;
  margin-bottom: 6px;
  font-style: normal !important;
  /* surtout pas en italique */
}

.panel-placeholder .panel-instruction {
  text-align: center;
}

.panel-default-title {
  font-family: var(--font-main);
  font-size: 1.15rem;
  /* légèrement plus petit pour s'harmoniser */
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  color: var(--text-black);
  line-height: 1.4;
  font-style: normal !important;
  /* surtout pas en italique */
}

.panel-instruction {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-grey);
  font-style: italic;
  margin: 0;
  text-align: left;
}

.panel-divider {
  border: none;
  border-top: 2px solid var(--accent-orange);
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.profile-question {
  font-size: clamp(0.9rem, 1.2vw, 1rem) !important;
  /* Réduit la taille (était clamp(1.05rem, 1.4vw, 1.2rem)) */
  line-height: 1.65 !important;
  color: var(--text-black) !important;
  font-weight: 500 !important;
  margin: 0 !important;
  text-align: left !important;
}

.profile-info-panel h3 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  /* Ré-agrandi pour s'accorder au bloc */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 15px;
}

.panel-detail-item {
  margin-bottom: 12px;
  /* Plus compact */
}

.panel-detail-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-top: 0;
  margin-bottom: 4px;
  /* Plus compact */
}

.panel-detail-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-black) !important;
  margin: 0 !important;
  text-align: left !important;
}

/* Bouton mobile/tablette dans le panneau */
.btn-open-modal-mobile {
  display: none;
  margin-top: 24px;
  padding: 14px 24px;
  background-color: var(--accent-orange);
  color: #FFFFFF !important;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  border-radius: 4px;
}

.btn-open-modal-mobile:hover {
  background-color: #d9522a;
}

/* Fenêtre modale */
/* Fenêtre modale intégrée à la section Roue */
.profile-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  /* Supprime le fond gris sombre */
  backdrop-filter: none;
  /* Supprime le flou */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Positionne le bloc plus haut */
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Cache la roue et le panneau latéral lorsque le bloc de questions est actif */
.wheel-interactive-layout.modal-active .wheel-left-side,
.wheel-interactive-layout.modal-active .wheel-right-side {
  display: none !important;
}

/* Place la modale active dans le flux de la page pour permettre un défilement naturel */
.wheel-interactive-layout.modal-active .profile-modal {
  position: relative;
  height: auto;
  opacity: 1;
  pointer-events: all;
  animation: modalFadeIn 0.4s ease-out forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-modal-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  /* Arrondis davantage les angles */
  width: 100%;
  /* Large et grand */
  height: auto;
  /* Taille ajustée au contenu */
  max-height: none;
  /* Laisse le bloc s'étendre naturellement sous l'en-tête */
  max-width: 1200px;
  /* Agrandit et rend plus large */
  padding: 40px;
  /* Plus d'espace */
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: visible;
  /* Pas de barre de défilement interne */
  margin-top: 0;
  /* Positionné directement sous l'en-tête de section */
}

.profile-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-black);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.profile-modal-close:hover {
  color: var(--accent-orange);
}

.modal-profile-title {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-black);
  margin-top: 0;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 8px;
  width: fit-content;
}

.modal-intro {
  font-family: var(--font-main);
  font-size: 25px;
  /* Environ 25 pixels */
  font-weight: 400;
  color: var(--text-black);
  margin-bottom: 24px !important;
  text-align: left !important;
  line-height: 1.35;
}

.modal-questions-container {
  display: flex;
  flex-direction: column;
  /* Questions empilées verticalement */
  gap: 20px;
  margin-bottom: 24px;
}

.modal-questions-container .form-group {
  margin-bottom: 0;
  text-align: left;
}

.modal-questions-container label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 8px;
  line-height: 1.45;
  text-transform: none !important;
  /* Pas en majuscules */
}

.modal-questions-container textarea {
  width: 100%;
  resize: none;
  height: 80px;
  /* Agrandit légèrement les champs */
}

.modal-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 25px;
  text-align: left;
}

.modal-submit-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.required-mark {
  color: var(--accent-orange);
  margin-left: 2px;
}

.btn-submit-profile {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--text-black);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color var(--transition), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin-top: 10px;
  width: fit-content;
}

.btn-submit-profile:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-success-state {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: heroSubtitleReveal 0.5s ease;
}

.modal-success-state .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(236, 102, 60, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.modal-success-state .success-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-black);
  margin-top: 0;
  margin-bottom: 16px;
}

.modal-success-state .success-message {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-black) !important;
  max-width: 700px;
  margin: 0 auto;
}

/* Modale responsive */
@media (max-width: 800px) {
  .modal-questions-container {
    gap: 16px;
  }

  .profile-modal-card {
    padding: 24px;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

/* ── Animation d'entrée de la section Profil ── */
.wheel-interactive-layout {
  overflow: visible;
  /* Permet au flou de s'étendre sans être coupé */
}

.wheel-left-side {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.wheel-right-side {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Déclenchement de l'apparition en cascade */
.wheel-interactive-layout.layout-revealed .wheel-left-side {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.wheel-interactive-layout.layout-revealed .wheel-right-side {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
  /* Effet de cascade posé après la roue */
}

/* Layout réactif de la section Roue */
@media (max-width: 900px) {
  .wheel-header {
    margin-top: 0 !important;
  }

  .wheel-interactive-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .wheel-left-side,
  .wheel-right-side {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: 1 1 auto !important;
  }

  .profile-info-panel {
    min-height: auto;
    padding: 24px;
  }

  .btn-open-modal-mobile {
    display: block;
    /* Affiche le bouton uniquement sur mobile */
  }
}

/* ── Révélation de l'accroche hero (page d'accueil) ── */
@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Animations au scroll (Scroll Reveal) ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.scroll-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Préférence Reduced Motion (Accessibilité) ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
  }

  .home-title,
  .home-subtitle,
  .scroll-reveal,
  .wheel-left-side,
  .wheel-right-side,
  #wheelSVG {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .nav-link-item::after {
    display: none !important;
  }

  .btn-outline-orange,
  .btn-submit {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
  }
}

/* Styles spécifiques pour le quiz dans la modale */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.quiz-question-title {
  letter-spacing: normal !important;
  /* Pas d'espacement des lettres */
}

.quiz-option-label {
  display: flex;
  align-items: center !important;
  /* Alignement vertical au centre */
  padding-left: 60px !important;
  /* Retrait de 60px pour décaler le carré vers la droite */
  gap: 0 !important;
  /* Mis à 0 pour utiliser margin-left sur le span à la place */
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text-black);
  cursor: pointer;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  /* Pas d'espacement des lettres */
}

.quiz-option-label span {
  margin-left: 16px !important;
  /* Marge à gauche pour l'espacement garanti */
}

.quiz-option-input {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 26px !important;
  height: 26px !important;
  border: 2px solid rgba(0, 0, 0, 0.15) !important;
  /* Gris clair, 2px */
  border-radius: 4px !important;
  /* Légèrement arrondi */
  outline: none !important;
  background-color: transparent !important;
  /* Transparent par défaut */
  padding: 0 !important;
  margin: 0 !important;
  align-self: center !important;
  /* Force le centrage vertical parfait */
  transform: translateY(8px) !important;
  /* Décale le carré de 8px vers le bas pour l'aligner parfaitement */
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: none !important;
  /* Supprime l'effet d'ombre de focus */
}

.quiz-option-input:hover {
  border-color: var(--accent-orange) !important;
}

.quiz-option-input:checked {
  background-color: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
}

.quiz-option-input:checked::after {
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  top: 3px !important;
  width: 8px !important;
  height: 15px !important;
  border: solid #ffffff !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

.quiz-question-group {
  padding: 12px 0;
  transition: all 0.3s ease;
}

.quiz-question-group.invalid {
  border-left: 3px solid #EC663C;
  padding-left: 15px;
  background-color: rgba(236, 102, 60, 0.02);
}

/* ==========================================================================
   THEME DE NAVIGATION ET MISE EN PAGE DES PAGES D'OFFRES
   ========================================================================= */

/* 1. Theme de navigation nav-offre */
.nav-header-fixed.nav-offre {
  color: var(--accent-orange);
}

.nav-header-fixed.nav-offre .nav-link-item {
  color: var(--accent-orange);
}

.nav-header-fixed.nav-offre:not(.menu-open) .nav-link-item:hover {
  color: #831f4a !important;
}

.nav-header-fixed.nav-offre:not(.menu-open) .nav-link-item:hover::after {
  background-color: #831f4a;
}

/* Lien de navigation actif */
.nav-header-fixed.nav-offre .nav-link-item.nav-active {
  color: #831f4a !important;
}

.nav-header-fixed.nav-offre .nav-link-item.nav-active::after {
  background-color: #831f4a;
  width: 100%;
}

.nav-header-fixed.nav-offre .logo-orange {
  opacity: 0;
}

.nav-header-fixed.nav-offre .logo-blanc {
  opacity: 0;
}

.nav-header-fixed.nav-offre .logo-bordeaux {
  opacity: 1;
}

/* Surtitre central L'OFFRE dans l'en-tete */
.nav-title-center {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #831f4a;
  pointer-events: none;
}

@media (max-width: 828px) {
  .nav-title-center {
    top: 30px;
  }
}

/* Offre / Coaching / Formation : l'en-tête (logo + menu + surtitre) N'EST PLUS fixe.
   Il reste en haut de la page et défile avec le contenu (il ne suit pas le scroll).
   Un bouton rond « retour en haut » (injecté par main.js) permet de revenir au menu. */
.page-offre .nav-header-fixed,
.page-offre-formation .nav-header-fixed,
.page-coaching .nav-header-fixed {
  position: absolute;
  transform: none;
}

/* 2. Boutons specifiques */
.btn-orange {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff !important;
  background-color: var(--accent-orange);
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-orange:hover {
  background-color: #831f4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 102, 60, 0.15);
}

.btn-bordeaux {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff !important;
  background-color: #831f4a;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-bordeaux:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(131, 31, 74, 0.15);
}

/* 3. Mise en page en 11 blocs des pages d'offres */

/* Titre principal centre, grande taille, sans gras */
.offer-main-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  text-align: center;
  color: #333333;
  line-height: 1.2;
  margin-top: 60px;
  margin-bottom: 80px;
  text-transform: none;
}

/* Bloc d'introduction (moitie gauche, aligne a gauche) */
.offer-intro-block p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem) !important;
  line-height: 1.8 !important;
  color: var(--text-black) !important;
}

/* Bloc de texte court aligne a gauche sous le split-layout */
.offer-short-text-block {
  text-align: left;
  max-width: 600px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.offer-short-text-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-grey);
}

/* Titre secondaire sur deux lignes, aligne a gauche avec espacement */
.offer-secondary-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-align: left;
  color: #333333;
  line-height: 1.2;
  margin-top: 80px;
  margin-bottom: 40px;
}

/* Bloc de texte aligne a droite */
.offer-right-text-block {
  text-align: right;
  max-width: 600px;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 60px;
}

.offer-right-text-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-grey);
}

/* Conteneur pour centrer les boutons */
.offer-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* =========================================================================
   PAGE OFFRE DIRIGEANT (STYLE INDIVIDUEL)
   ========================================================================= */

/* Fond beige de la page */
.page-offre-dirigeant {
  background-color: var(--bg-beige);
}

/* Élargissement du conteneur principal pour étendre le texte à droite */
.page-offre-dirigeant .container {
  max-width: 100%;
  margin-left: 0;
}

/* En-tête avec les couleurs spécifiques (vert foncé #2E4A2C et orange #DB6F48) */
.page-offre-dirigeant .nav-header-fixed {
  color: #2E4A2C;
}

/* Logo vert foncé de l'offre dirigeant */
.page-offre-dirigeant .nav-header-fixed .logo-vert {
  opacity: 1;
}

.page-offre-dirigeant .nav-header-fixed .logo-orange,
.page-offre-dirigeant .nav-header-fixed .logo-blanc,
.page-offre-dirigeant .nav-header-fixed .logo-bordeaux {
  opacity: 0;
}

/* Liens du menu de navigation */
.page-offre-dirigeant .nav-header-fixed .nav-link-item {
  color: #2E4A2C !important;
  font-family: var(--font-main);
  letter-spacing: 0.25em;
  font-weight: 600;
}

.page-offre-dirigeant .nav-header-fixed .nav-link-item:hover {
  color: #DB6F48 !important;
  /* Orange au survol */
}

.page-offre-dirigeant .nav-header-fixed .nav-link-item::after {
  display: none !important; /* Aucun soulignement pour coller exactement à la maquette */
}

/* Lien actif */
.page-offre-dirigeant .nav-header-fixed .nav-link-item.nav-active {
  color: #2E4A2C !important;
  font-weight: 700;
}

/* Surtitre central */
.page-offre-dirigeant .nav-title-center {
  color: #DB6F48 !important;
  /* Orange */
  font-weight: 700;
}

/* Titre principal Coaching Individuel */
.offre-dirigeant-title {
  text-align: left;
  margin-top: 60px;
  margin-bottom: 50px;
  margin-left: 15%;
  /* Marge à gauche de 15% pour décalage depuis le bord gauche */
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.offre-dirigeant-title .title-line-1 {
  font-family: 'Brother 1816', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.2;
  color: #0a0a0f;
  /* Noir #0a0a0f */
  text-transform: uppercase;
  letter-spacing: 0.072em;
}

.offre-dirigeant-title .title-line-2 {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-weight: 300;
  /* Light */
  font-style: italic;
  font-size: 47px;
  line-height: 1.17;
  color: #EC663C !important;
  /* Orange #EC663C (forcé pour surcharger les styles généraux) */
  text-transform: uppercase;
  align-self: flex-start;
  margin-left: 6.4em;
  /* Décalage pour commencer sous l'espace entre COACHING et INDIVIDUEL */
  white-space: nowrap; /* Ligne insécable */
  max-width: 1050px;
  margin-top: 10px;
  letter-spacing: 0.058em;
}

/* Texte d'introduction */
.offre-dirigeant-intro {
  margin-left: 15%;
  /* Alignement vertical sur le même bord gauche que le titre */
  max-width: 1060px;
  /* Élargi pour s'étendre presque jusqu'au menu de navigation à droite sur grand écran */
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.offre-dirigeant-intro .intro-line {
  display: block;
  white-space: nowrap; /* Empêche tout retour à la ligne automatique sur grand écran */
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-size: 28px;
  /* 21 points soit 28px */
  line-height: 1.4;
  color: var(--text-black);
  text-align: left;
}

/* Liste à puces décalée vers le centre droit et alignée sur le mot "pour" de la troisième ligne d'intro */
.offre-dirigeant-list-container {
  display: block;
  width: 100%;
  margin-bottom: 90px;
}

.offre-dirigeant-list {
  margin-left: calc(15% + 369px); /* Aligne le début des puces (puce à left: 5px) sous la fin du premier mot "vous" */
  list-style: none; /* Puces personnalisées */
  padding: 0;
  text-align: left;
}

.offre-dirigeant-list li {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-weight: 300;
  /* Light */
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 32px;
  /* Interligne de 24 points (soit 32px) */
  color: var(--text-black);
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  /* Resserre l'espacement vertical */
}

/* Puce ronde orange alignée verticalement au centre de la première ligne */
.offre-dirigeant-list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #DB6F48;
  /* Orange */
  position: absolute;
  left: 5px;
  top: 12px;
  /* Centré verticalement avec le texte de line-height 32px (12px top + 4px demi-hauteur = 16px centre) */
}

.offre-dirigeant-list li strong {
  font-weight: 400;
  /* Regular */
  color: var(--text-black);
}

.offre-dirigeant-list li.nowrap-item {
  white-space: nowrap; /* Empêche le retour à la ligne sur ordinateur */
}

/* Citation avec guillemets grands et positionnés */
.offre-dirigeant-quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 110px 0 90px;
}

.offre-dirigeant-quote {
  display: inline-flex;
  align-items: center;
  gap: 20px; /* Espace entre les guillemets et le texte */
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}

.offre-dirigeant-quote p {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-size: clamp(0.75rem, 2vw, 1.55rem); /* Taille fluide pour rester sur une seule ligne */
  white-space: nowrap; /* Empêche le retour à la ligne */
  font-style: italic;
  color: #DB6F48; /* Orange */
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.offre-dirigeant-quote .quote-mark {
  width: 38px;
  height: 26px;
  flex-shrink: 0; /* Empêche le rétrécissement */
  object-fit: contain;
}

.offre-dirigeant-quote .quote-mark-right {
  transform: rotate(180deg); /* Oriente le guillemet fermant */
}

/* Bouton pilule vert foncé centré */
.offre-dirigeant-btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 60px;
}

.btn-pilule-vert {
  display: inline-block;
  font-family: 'Brother 1816', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF !important;
  /* Texte clair */
  background-color: #2E4A2C;
  /* Vert foncé */
  padding: 18px 52px;
  border-radius: 50px;
  /* Forme de pilule */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(46, 74, 44, 0.15);
  transition: background-color var(--transition), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-pilule-vert:hover {
  background-color: #DB6F48;
  /* Orange au survol */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(219, 111, 72, 0.25);
}

/* Responsive pour la page de l'offre */
@media (max-width: 900px) {
  .page-offre-dirigeant .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .offre-dirigeant-title {
    margin-left: 0;
  }

  .offre-dirigeant-title .title-line-1 {
    font-size: clamp(1.8rem, 5vw, 36px);
    /* Taille réduite sur mobile */
  }

  .offre-dirigeant-title .title-line-2 {
    font-size: clamp(1.2rem, 4vw, 30px);
    /* Taille réduite sur mobile */
    margin-left: 20px;
    /* Moins de décalage sur tablette/mobile */
  }

  .offre-dirigeant-intro {
    margin-left: 0;
    max-width: 100%;
    /* Largeur complète sur mobile */
  }

  .offre-dirigeant-intro .intro-line {
    white-space: normal; /* Permet le retour à la ligne sur mobile */
    font-size: clamp(1.1rem, 3.5vw, 20px); /* Taille réduite sur mobile */
  }

  .offre-dirigeant-list {
    margin-left: 0;
    width: 100%;
  }

  .offre-dirigeant-list li.nowrap-item {
    white-space: normal; /* Autorise le retour à la ligne sur mobile */
  }

  .offre-dirigeant-quote {
    padding: 0;
    gap: 10px; /* Plus compact sur mobile */
  }

  .offre-dirigeant-quote p {
    white-space: normal; /* Permet le retour à la ligne sur mobile si trop étroit */
    font-size: clamp(0.7rem, 2.5vw, 1.1rem);
  }

  .offre-dirigeant-quote .quote-mark {
    width: 24px;
    height: 18px;
  }
}

/* ============================================================
   COMPOSANT CARROUSEL « LES FORMATIONS »
   ============================================================ */
.formations {
  padding: 5rem 0;
  background-color: var(--bg-beige); /* Fond beige clair du site */
}

.formations__container {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding-left: 80px;
  padding-right: 80px;
}

/* ---------- En tete ---------- */
.formations__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Aligne le bas de la colonne de gauche (le lien) et les flèches */
  margin-bottom: 3.5rem;
}

.formations__head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.formations__title {
  font-family: var(--font-main);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--anthracite);
}

@media (min-width: 768px) {
  .formations__title { font-size: 2.75rem; }
}

.formations__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--prune);
  transition: color 0.2s ease;
  font-family: var(--font-main);
}

.formations__cta:hover { color: var(--orange); }
.formations__cta svg { transition: transform 0.2s ease; }
.formations__cta:hover svg { transform: translate(2px, -2px); }

/* ---------- Grille des formations ---------- */
.formations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
  margin-top: 2rem;
}

/* ---------- Carte ---------- */
.formation-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
}

/* Bloc coloré : tout le contenu texte de la carte y prend place (plus de photo) */
.formation-card__block {
  position: relative;
  background: var(--accent, var(--orange));
  color: var(--card-ink, #ffffff);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.formation-card:hover .formation-card__block {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.formation-card__badge {
  align-self: flex-end;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent, var(--orange));
  background: #ffffff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.formation-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 0.7rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.formation-card__summary {
  font-size: 1rem;
  line-height: 1.55;
  color: #ffffff;
  opacity: 0.92;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.formation-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: auto;
}

.formation-card__more svg { transition: transform 0.2s ease; }
.formation-card:hover .formation-card__more svg { transform: translateX(4px); }

/* ---------- Vue Détail des formations ---------- */
.formation-detail__back-container {
  margin-bottom: 2.5rem;
}

.formation-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--prune);
  transition: color 0.2s ease;
}

.formation-detail__back:hover {
  color: var(--orange);
}

.formation-detail__back svg {
  transition: transform 0.2s ease;
}

.formation-detail__back:hover svg {
  transform: translateX(-4px);
}

/* Titre principal centré reprenant le style de l'Offre Dirigeant */
.formation-detail__title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.formation-detail__title .title-line-1 {
  font-family: 'Brother 1816', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.2;
  color: #0a0a0f;
  text-transform: uppercase;
  letter-spacing: 0.072em;
}

.formation-detail__title .title-line-2 {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4vw, 47px);
  line-height: 1.17;
  color: #EC663C !important;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Phrase d'accroche centrée */
.formation-detail__intro {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.formation-detail__intro-line {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--text-black);
  display: inline-block;
  font-style: italic;
}

/* Blocs de texte centrés */
.formation-detail__body-container {
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.formation-detail__section {
  text-align: center;
}

.formation-detail__section-title {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  color: var(--prune);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.formation-detail__section-text {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--gris-texte);
  max-width: 680px;
  margin: 0 auto;
}

/* Métadonnées */
.formation-detail__meta {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.formation-detail__meta p {
  font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--anthracite);
  margin: 0;
}

/* Bouton télécharger */
.formation-detail__btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

/* ---------- Adaptations Responsive de la Grille ---------- */
@media (max-width: 900px) {
  .formations__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 601px) {
  .formations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) {
  .formations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .formations__grid > .formation-card:last-child {
    grid-column: 1; /* Aligne la 7ème formation à gauche (sous CODIR / Changer de perspective) */
  }
}

/* ============================================================
   SECTION QUI SUIS-JE (AVEC ZOOM PHOTO AU SCROLL)
   ============================================================ */
.quisuisje {
  display: grid;
  grid-template-columns: 48% 52%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-main);
  position: relative;
}

.left {
  position: relative;
}

.left-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  padding-right: 40px;
  box-sizing: border-box;
  overflow: visible;
}

.qsj-title {
  position: absolute;
  left: 80px; /* Aligné sur le bord gauche du logo */
  top: calc(24vh + 30px); /* Aligné avec la première ligne de texte de droite */
  color: var(--accent-orange);
  font-family: var(--font-main);
  font-size: 34.8px; /* Réduit de 12% (39.6px * 0.88) */
  font-weight: 300;
  letter-spacing: .06em;
  white-space: nowrap;
  z-index: 1;
}

.photo-frame {
  position: absolute;
  right: 40px;
  top: 60px; /* Aligné avec le haut du logo CP */
  z-index: 2;
  width: 261px; /* Ajusté pour conserver le ratio avec la hauteur de 290px */
  height: 290px; /* Ajusté pour s'aligner en bas visuellement avec la ligne "aujourd'hui" */
  will-change: transform;
  transform-origin: right top; /* Coin supérieur droit fixe au zoom */
}

.qsj-photo {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.right {
  padding: 24vh 8% 24vh 4%;
  font-family: var(--font-main);
}

.right p {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.6;
  color: var(--text-grey);
}

.right .sous-titre {
  color: var(--prune);
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 36px 0 16px;
}

@media (prefers-reduced-motion: reduce) {
  .photo-frame {
    transform: none !important;
  }
}

@media (max-width: 820px) {
  .quisuisje {
    grid-template-columns: 1fr;
  }
  .left-inner {
    height: auto;
    min-height: 58vh;
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .qsj-title {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 18px;
    bottom: auto;
  }
  .photo-frame {
    position: relative;
    right: auto;
    top: auto !important;
    width: 260px;
    height: auto; /* Hauteur fluide sur mobile */
    transform-origin: center center;
  }
  .right {
    padding: 6vh 8%;
  }
}

/* ── Bouton Retour Adaptatif ── */
.adaptive-back-container {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
}

.adaptive-back-btn {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-orange);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.adaptive-back-btn:hover {
  opacity: 0.7;
}

.adaptive-back-btn::before {
  content: "←";
  font-size: 13px;
  font-weight: 700;
}

/* ── Section Témoignages (Circular Testimonials) ── */
.temoignages-section {
  width: 100%;
  min-height: 100vh;
  background-color: #EEEADE;
  padding: 60px 40px 100px;
  font-family: var(--font-main, "Gill Sans", sans-serif);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.temoignages-section .container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
}

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

.temoignages-section .section-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EC663C;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.temoignages-section .section-title {
  font-size: 2.75rem;
  font-weight: 400;
  color: #333333;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.temoignages-section .testimonial-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.temoignages-section .testimonial-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.temoignages-section .image-container {
  position: relative;
  width: 100%;
  height: 26rem;
  perspective: 1000px;
}

.temoignages-section .testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(51, 51, 51, 0.18);
  transition: all 0.8s cubic-bezier(.4, 2, .3, 1);
}

.temoignages-section .testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 26rem;
}

.temoignages-section .name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #841F4A;
  margin: 0 0 0.35rem 0;
  line-height: 1.2;
}

.temoignages-section .designation {
  font-size: 0.9rem;
  color: #2C4826;
  margin: 0 0 2rem 0;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.temoignages-section .quote {
  font-size: 1.0625rem;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.temoignages-section .arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 2.5rem;
}

.temoignages-section .arrow-button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #333333;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.temoignages-section .arrow-button:hover {
  background-color: #EC663C;
  transform: scale(1.05);
}

@media (max-width: 899px) {
  .temoignages-section {
    padding: 80px 24px;
  }
  .temoignages-section .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .temoignages-section .section-title {
    font-size: 2rem;
  }
  .temoignages-section .image-container {
    height: 20rem;
  }
  .temoignages-section .testimonial-content {
    min-height: auto;
  }
}

/* Vue CODIR : contenu pleine largeur ET pleine hauteur, comme les sections
   de la home (« le constat »). On neutralise le gouttière du conteneur pour
   que le bloc soit à la largeur du body, sans marges beiges. */
/* La règle globale « section:not(#home) » impose padding:160px 180px 160px 40px
   + un border-top (spécificité (1,0,1) à cause du #home dans :not) : d'où la
   bande beige/bordure en haut. On la neutralise ici avec !important. */
.formations.codir-view {
  padding: 0 !important;
  border-top: none !important;
}
.formations.codir-view .formations__container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100%;
}
.formations.codir-view #formations-detail-content > .codir-rich { margin: 0; }
.formations.codir-view .formation-detail__back-container {
  position: absolute;
  top: 128px;
  left: 80px;
  margin: 0;
  z-index: 1001;
}
/* Lien « Retour » : couleurs pilotées par la palette de la fiche (JS), défaut CODIR */
.formations.codir-view .formation-detail__back { color: var(--codir-back, #f4efe4); }
.formations.codir-view .formation-detail__back:hover { color: var(--codir-back-hover, #f0b64b); }
@media (max-width: 768px) {
  .formations.codir-view .formation-detail__back-container { top: 96px; left: 22px; }
}

/* En-tête fixe par-dessus le héros d'une fiche riche.
   Couleurs adaptées à la palette (variables posées par le JS) ; logo choisi via
   la classe codir-logo-orange/blanc/bordeaux. Défauts = palette bordeaux CODIR. */
.nav-header-fixed.codir-hero-light .logo-orange,
.nav-header-fixed.codir-hero-light .logo-blanc,
.nav-header-fixed.codir-hero-light .logo-bordeaux { opacity: 0; }
.nav-header-fixed.codir-hero-light.codir-logo-orange .logo-orange { opacity: 1; }
.nav-header-fixed.codir-hero-light.codir-logo-blanc .logo-blanc { opacity: 1; }
.nav-header-fixed.codir-hero-light.codir-logo-bordeaux .logo-bordeaux { opacity: 1; }
.nav-header-fixed.codir-hero-light .nav-link-item { color: var(--codir-nav, #f0b64b); }
.nav-header-fixed.codir-hero-light:not(.menu-open) .nav-link-item:hover { color: var(--codir-nav-hover, #f4efe4) !important; }
.nav-header-fixed.codir-hero-light:not(.menu-open) .nav-link-item:hover::after { background-color: var(--codir-nav-hover, #f4efe4); }
.nav-header-fixed.codir-hero-light .nav-mobile-toggle .bar { background: var(--codir-nav-hover, #f4efe4); }

/* =========================================================
   Vue enrichie « Créer un CODIR » (maquette dédiée)
   Scopée sous .codir-rich — n'affecte pas le reste du site
   ========================================================= */
.codir-rich {
  --accent: #841F4A;
  --heroBg: #841F4A;
  --heroInk: #f4efe4;
  --heroAccent: #f0b64b;
  --vert: #2C4826;
  color: #2b2b2b;
  font-family: 'Gill Sans', 'Gill Sans MT', 'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.codir-rich a { color: inherit; text-decoration: none; }
.codir-rich a:hover { opacity: .85; }
/* Sous-titre / pitch optionnels : masqués si la formation n'en fournit pas */
.codir-rich__subtitle:empty, .codir-rich__pitch:empty { display: none; }

/* La règle globale « section:not(#home) » (spécificité 1,0,1) impose à toutes
   les <section> un padding asymétrique 160/180/160/40 + un border-top, ce qui
   décentrait le contenu vers la gauche. On la neutralise ici (padding horizontal
   symétrique + suppression du filet) pour que les blocs soient bien centrés. */
.codir-rich > section {
  border-top: none !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (max-width: 768px) {
  .codir-rich > section { padding-left: 22px !important; padding-right: 22px !important; }
}

/* HERO — bloc aligné en haut, comme « le constat » (surtitre en haut, centré) */
.codir-rich__hero {
  background: var(--heroBg);
  color: var(--heroInk);
  padding-top: 60px !important;
  padding-bottom: 80px !important;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* Surtitre : valeurs EXACTES du « section-label » de « le constat » (rendu desktop)
   — 0.85rem / 700 / 0.25em / line-height 1.8 / uppercase / margin-bottom 12px.
   Couleur adaptée au fond bordeaux (le #6E2348 d'origine serait invisible). */
.codir-rich__kicker {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--heroAccent);
  margin: 0 0 12px;
}
/* Bloc surtitre + titre + texte : centré horizontalement sur la largeur de la page.
   Flex colonne qui remplit le héros → permet, comme « le constat », de garder le
   surtitre en haut et de centrer le groupe titre+texte dans l'espace restant. */
.codir-rich__hero-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 80px;   /* décale le groupe titre+texte de 40px vers le bas (padding/2), surtitre inchangé */
}
/* Titre : identique au h2 de « le constat » (Gill Sans, léger, majuscules) */
.codir-rich__title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: auto 0 16px;   /* margin-top:auto → pousse le groupe titre+texte au centre, comme #constat h2 */
  color: var(--heroInk);
}
.codir-rich__subtitle {
  font-family: var(--font-main);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--heroAccent);
  margin: 0 0 32px;
}
/* Texte : identique au paragraphe de « le constat » */
.codir-rich__intro {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  color: var(--heroInk);
  margin: 0 auto;
  max-width: 920px;
}
.codir-rich__pitch {
  font-family: var(--font-main);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--heroAccent);
  margin: 28px auto auto;   /* margin-bottom:auto → centre le groupe titre+texte, comme #constat p */
  max-width: 920px;
}

/* Titres de section */
.codir-rich__h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--accent);
  margin: 0 0 22px;
}

/* POUR QUI + MODALITÉS */
.codir-rich__two {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 60px !important;
  padding-bottom: 80px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.codir-rich__lead { font-size: 19px; line-height: 1.55; color: #3a3a3a; margin: 0 0 26px; }
.codir-rich__mini-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 8px;
}
.codir-rich__mini-text { font-size: 17px; line-height: 1.5; color: #555; margin: 0; }
.codir-rich__modal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(43,43,43,.14);
}
.codir-rich__modal-label { font-weight: 600; color: #777; font-size: 16px; }
.codir-rich__modal-value { font-weight: 600; color: #2b2b2b; font-size: 16px; text-align: right; }

/* OBJECTIFS — grille 2 colonnes comme le fichier d'origine : titre à gauche, liste à droite */
.codir-rich__objectifs {
  background: #e4dfd0;
  padding-top: 60px !important;
  padding-bottom: 80px !important;
}
.codir-rich__obj-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 36px;
  align-items: start;
}
.codir-rich__obj-title { margin: 0; white-space: nowrap; }
.codir-rich__obj-list {
  list-style: none; padding: 0; margin: 0; margin-top: 34px;
  display: grid; gap: 20px; grid-column: 2;
}
.codir-rich__obj-item {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 22px; line-height: 1.45; color: #2b2b2b;
}
.codir-rich__obj-dot {
  flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); margin-top: 12px;
}

/* PROGRAMME */
.codir-rich__programme {
  padding-top: 80px !important;
  padding-bottom: 64px !important;
}
.codir-rich__programme > .codir-rich__h2,
.codir-rich__mods { max-width: 960px; margin-left: auto; margin-right: auto; }
.codir-rich__programme > .codir-rich__h2 { margin-bottom: 40px; }
.codir-rich__mod {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid rgba(43,43,43,.16);
}
.codir-rich__mod-n { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 40px; line-height: 1; color: var(--accent); }
.codir-rich__mod-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 24px; color: #2b2b2b; margin-bottom: 6px; }
.codir-rich__mod-desc { font-size: 18px; line-height: 1.5; color: #555; }
.codir-rich__mod-duree { font-weight: 600; font-size: 15px; color: var(--accent); white-space: nowrap; }
.codir-rich__mod-end { border-top: 1px solid rgba(43,43,43,.16); }

/* TÉLÉCHARGER + JAUGE — hauteur naturelle (comme le fichier d'origine) */
.codir-rich__closing {
  padding-top: 40px !important;
  padding-bottom: 64px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.codir-rich__dl { display: flex; justify-content: center; }
.codir-rich__dl-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  border: 2px solid var(--accent); color: var(--accent);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px;
}
.codir-rich__dl-btn:hover { opacity: 1; background: var(--accent); color: #fff; }

/* GAUGE SATISFACTION */
.codir-rich__gauge-card {
  background: #e4dfd0; border-radius: 22px;
  padding: 38px 44px; max-width: 760px; width: 100%; margin: 0 auto; text-align: center;
}
.codir-rich__gauge-title {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: .14em; color: var(--accent); margin-bottom: 22px;
}
.codir-rich__gauge-track {
  position: relative; height: 26px; border-radius: 999px;
  background: #d3cdba; overflow: hidden;
}
.codir-rich__gauge-fill {
  position: absolute; inset: 0; background: var(--accent);
  border-radius: 999px; animation: codirGauge 1.4s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes codirGauge { from { width: 0; } }
.codir-rich__gauge-note { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-top: 20px; }
.codir-rich__gauge-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 40px; color: #2b2b2b; }
.codir-rich__gauge-den { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: #999; }
.codir-rich__gauge-avis { font-size: 16px; color: #777; margin-left: 6px; }

/* CTA — hauteur naturelle */
.codir-rich__cta {
  padding-top: 80px !important;
  padding-bottom: 90px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.codir-rich__cta-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 40px; line-height: 1.1; margin: 0 0 14px; color: #2b2b2b; }
.codir-rich__cta-text { font-size: 19px; color: #555; margin: 0 auto 34px; max-width: 560px; line-height: 1.5; }
.codir-rich__cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.codir-rich__cta-btn { padding: 16px 34px; border-radius: 999px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .04em; }
.codir-rich__cta-btn--vert { background: var(--vert); color: #f4efe4; }
.codir-rich__cta-btn--accent { background: var(--accent); color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .codir-rich__hero { padding: 96px 22px 64px; }
  .codir-rich__title { font-size: 42px; }
  .codir-rich__subtitle { font-size: 22px; }
  .codir-rich__intro { font-size: 18px; }
  .codir-rich__pitch { font-size: 18px; }
  .codir-rich__two { grid-template-columns: 1fr; gap: 40px; }
  .codir-rich__obj-grid { grid-template-columns: 1fr; }
  .codir-rich__obj-list { grid-column: 1; margin-top: 16px; }
  .codir-rich__obj-item { font-size: 19px; }
  .codir-rich__mod { grid-template-columns: 64px 1fr; gap: 16px; }
  .codir-rich__mod-n { font-size: 30px; }
  .codir-rich__mod-title { font-size: 20px; }
  .codir-rich__mod-duree { grid-column: 2; }
  .codir-rich__cta-title { font-size: 30px; }
  .codir-rich__gauge-card { padding: 30px 24px; }
}
