/* ============================================================
   OPALE AUDIT — main.css
   Version 1.0 — Juin 2026
   Feuille de style commune à toutes les pages du site.
   ============================================================ */

/* ── 1. VARIABLES ──────────────────────────────────────────── */
:root {
  /* Couleurs texte */
  --ink:        #0C1420;
  --ink-mid:    #2A3340;
  --muted:      #6B7280;

  /* Couleurs interface */
  --line:       #E4E0D6;
  --bg:         #F9F7F2;
  --bg-warm:    #F0EEE6;
  --white:      #FFFFFF;

  /* Palette marque */
  --navy:       #0C2340;
  --accent:     #0C2340;   /* alias v3 — fonds sections sombres */
  --accent-l:   #E8EEF5;   /* alias v3 — fonds icônes clairs */
  --navy-m:     #1A3A5C;
  --navy-l:     #E8EEF5;
  --navy-ll:    #F0F4F9;
  --gold:       #A67C3A;
  --gold-m:     #C9973F;
  --gold-l:     #FBF4E8;
  --emerald:    #0F5132;
  --emerald-l:  #D1FAE5;
  --red:        #991B1B;
  --red-l:      #FEF2F2;

  /* Typographie */
  --ff-serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;
  --ff-sans:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max:        1200px;
  --max-text:   860px;

  /* Bordures */
  --r-sm:       5px;
  --r-md:       10px;
  --r-lg:       16px;
  --r-xl:       24px;

  /* Animation */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ff-sans); }

/* ── 3. TYPOGRAPHIE ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { color: var(--ink-mid); line-height: 1.7; }
em { font-style: italic; }
strong { font-weight: 600; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.eyebrow-line {
  width: 24px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow-text {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.muted-text { color: var(--muted); }

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-text {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section       { padding: 5.5rem 0; }
.section-sm    { padding: 3.5rem 0; }
.divider {
  height: 1px;
  background: var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

/* ── 5. TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 7px 0;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tb-left { display: flex; align-items: center; gap: .5rem; }
.tb-shield { width: 14px; height: 14px; flex-shrink: 0; }
.tb-text {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-right { display: flex; gap: 16px; flex-shrink: 0; }
.tb-item {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}

/* ── 6. NAVIGATION ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,247,242,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  color: var(--muted);
  transition: color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; gap: .625rem; flex-shrink: 0; align-items: center; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: .65rem;
  opacity: .5;
  margin-top: 1px;
  transition: transform .2s var(--ease);
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after { transform: rotate(180deg); }
.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 8px;
  left: -1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  padding: .5rem 0;
  min-width: 230px;
  z-index: 200;
  animation: fadeDown .15s var(--ease);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-submenu a {
  display: block;
  padding: .55rem 1.25rem;
  font-size: .82rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: var(--bg-warm);
  color: var(--ink);
  font-weight: 500;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu { display: block; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all .25s;
}

/* ── 7. BOUTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 500;
  padding: .75rem 1.625rem;
  border-radius: var(--r-md);
  cursor: pointer;
  border: none;
  transition: all .2s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-m); }
.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-m); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--bg-warm); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.btn-sm  { font-size: .8rem; padding: .55rem 1.1rem; }
.btn-lg  { font-size: .95rem; padding: .9rem 2rem; }

/* ── 8. TAGS / BADGES ──────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 100px;
  background: var(--navy-ll);
  color: var(--navy);
}
.tag-gold { background: var(--gold-l); color: var(--gold); }
.tag-green { background: var(--emerald-l); color: var(--emerald); }

/* ── 9. CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
}
.card-hover {
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card-hover:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

/* ── 10. FORMULAIRES ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--ff-sans);
  font-size: .875rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,35,64,.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-error {
  font-size: .78rem;
  color: var(--red);
  margin-top: .25rem;
  display: none;
}
.form-error.visible { display: block; }
.form-success {
  background: var(--emerald-l);
  color: var(--emerald);
  border: 1px solid rgba(15,81,50,.15);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  display: none;
}
.form-success.visible { display: flex; gap: .5rem; align-items: flex-start; }

/* Consentement RGPD */
.rgpd-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-top: .75rem;
}
.rgpd-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
}
.rgpd-consent label {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.rgpd-consent a { color: var(--navy); text-decoration: underline; }

/* ── 11. FAQ ACCORDÉONS ────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--ff-sans);
}
.faq-question .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-ll);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--navy);
  transition: transform .25s var(--ease), background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── 12. ENGAGEMENTS / REASSURANCE ────────────────────────── */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.reassurance-item {
  text-align: center;
  padding: 1.75rem 1.5rem;
}
.r-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-ll);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.r-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reassurance-item h3 {
  font-family: var(--ff-sans) !important;
  font-weight: 500 !important;
  font-size: .95rem;
  margin-bottom: .5rem;
}
.reassurance-item p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── 13. TOPBAR MOBILE / RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 1rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .7rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
  }
  .nav-dropdown > a::after { display: none; }
  .nav-submenu {
    display: block !important;
    position: static;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: var(--bg-warm);
    margin-left: 1rem;
    padding: 0;
    animation: none;
  }
  .nav-submenu a { padding: .55rem 1rem; font-size: .82rem; }
  .nav-burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .tb-right { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }
  .btn-lg { font-size: .875rem; padding: .8rem 1.5rem; }
}

/* ── 14. FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  margin-bottom: .75rem;
}
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-tagline {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  max-width: 280px;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── 15. ANIMATIONS UTILITAIRES ────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { opacity: 1; animation: none; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── 16. ACCESSIBILITÉ ─────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ── Fix hover sous-menu : pont invisible + fond sur contenu ── */
.nav-submenu {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 0 0 0 !important;
  top: 100% !important;
}
.nav-submenu li:first-child a { border-radius: 10px 10px 0 0; }
.nav-submenu li:last-child a  { border-radius: 0 0 10px 10px; }
.nav-submenu li a {
  background: var(--white);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.nav-submenu li:first-child a { border-top: 1px solid var(--line); }
.nav-submenu li:last-child a  { border-bottom: 1px solid var(--line); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.nav-submenu li a:hover { background: var(--bg-warm); }

/* Transition douce à l'ouverture */
@media (hover: hover) {
  .nav-dropdown .nav-submenu { 
    display: block; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    pointer-events: none;
  }
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ── Lisibilité renforcée — conformité WCAG AA ── */
:root {
  --muted: #565E6B;          /* était #6B7280 — contraste 4.6:1 → 7:1 sur blanc */
}
p { color: var(--ink-mid); }
.tb-text  { color: rgba(255,255,255,.78) !important; }
.tb-item  { color: rgba(255,255,255,.62) !important; }
footer, footer p { color: rgba(255,255,255,.66); }
.footer-tagline   { color: rgba(255,255,255,.6) !important; }
.footer-col-title { color: rgba(255,255,255,.5) !important; }
.footer-links a   { color: rgba(255,255,255,.68) !important; }
.footer-links a:hover { color: #fff !important; }
.footer-copy      { color: rgba(255,255,255,.52) !important; }
.footer-legal a   { color: rgba(255,255,255,.52) !important; }
.footer-legal a:hover { color: rgba(255,255,255,.85) !important; }

/* Logo : lisibilité mobile */
@media (max-width: 768px) {
  .nav-logo img { height: 34px !important; }
  .nav-inner { height: 60px; padding: 0 1rem; }
}

/* Focus visible renforcé (accessibilité clavier) */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}


/* ── FAQ : support des classes .faq-q / .faq-a ── */
.faq-a { display: none; padding-bottom: 1.25rem; font-size: .9rem; color: var(--ink-mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-q-icon { transition: transform .25s var(--ease); }

/* ── Boutons hero visibles sans hover ── */
.hero .btn-secondary, .hero-cta .btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.hero .btn-secondary:hover, .hero-cta .btn-secondary:hover {
  background: var(--navy-ll);
}

/* ── Logo footer : fond blanc arrondi (le logo JPG a un fond blanc) ── */
.footer-logo img {
  filter: none !important;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  height: 48px !important;
  width: auto;
}

/* ── Logo nav : mise en valeur (+20%) ── */
.nav-logo img { height: 48px; }
.nav-inner { height: 76px; }
@media (max-width: 768px) {
  .nav-logo img { height: 38px !important; }
  .nav-inner { height: 64px; }
}

/* ── Tuiles missions hero ── */
.hero-missions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hm-tile {
  display: flex; flex-direction: column; gap: .3rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.1rem 1.25rem; text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.hm-tile:hover { border-color: var(--navy); box-shadow: 0 6px 18px rgba(12,35,64,.08); transform: translateY(-2px); }
.hm-num { font-size: .68rem; font-weight: 600; letter-spacing: .08em; color: var(--gold); }
.hm-title { font-size: .92rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.hm-link { font-size: .78rem; color: var(--navy); margin-top: .15rem; }
@media (max-width: 900px) { .hero-missions { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════
   FILET DE SÉCURITÉ — VISIBILITÉ GARANTIE
   Aucun contenu ne doit jamais être invisible au chargement.
   ═══════════════════════════════════════════════════════ */
section, section *, .btn, .hero-cta, .cta-final-btns, .reassurance-item,
.mission-card, .process-step, .audience-card, .cas-card, .hm-tile {
  opacity: 1 !important;
}
section { transform: none !important; }

/* Boutons : couleurs garanties en dur (indépendantes des variables) */
.btn-primary  { background: #0C2340 !important; color: #FFFFFF !important; }
.btn-primary:hover { background: #1A3A5C !important; }
.btn-gold     { background: #A67C3A !important; color: #FFFFFF !important; }
.btn-white    { background: #FFFFFF !important; color: #0C2340 !important; border: 1px solid #E4E0D6 !important; }
.btn-ghost    { color: #2A3340 !important; border: 1px solid #C9C4B8 !important; background: transparent !important; }
.btn-secondary { background: #FFFFFF !important; color: #0C2340 !important; border: 1.5px solid #0C2340 !important; }
/* Exception : boutons sur fonds sombres (process, CTA final) */
.process-section .btn-secondary, .cta-final .btn-secondary {
  background: transparent !important; color: rgba(255,255,255,.92) !important;
  border: 1.5px solid rgba(255,255,255,.55) !important;
}
.cta-final .btn-white, .audience-entrepreneurs .btn-white {
  background: #FFFFFF !important; color: #0C2340 !important;
}

/* Icônes de réassurance : cercle + pictogramme garantis */
.r-icon {
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  background: #E8EEF5 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  margin: 0 auto 1rem !important;
}
.r-icon svg {
  width: 20px !important; height: 20px !important;
  stroke: #0C2340 !important; fill: none !important;
  stroke-width: 1.5 !important; stroke-linecap: round !important; stroke-linejoin: round !important;
  display: block !important;
}
.reassurance-item { text-align: center !important; }


/* ═══ FONDS SOMBRES GARANTIS (sections à texte blanc) ═══ */
.process-section      { background: #0C2340 !important; }
.cta-final            { background: #0C2340 !important; }
.audience-entrepreneurs { background: #0C2340 !important; }
.process-section h2, .cta-final h2 { color: #FFFFFF !important; }
.process-section .step-title, .process-section .step-num { color: #FFFFFF !important; }
.process-section .step-desc { color: rgba(255,255,255,.78) !important; }
.process-section .section-lead, .cta-final .cta-final-sub { color: rgba(255,255,255,.75) !important; }
.cta-final .cta-trust-item { color: rgba(255,255,255,.6) !important; }
.audience-entrepreneurs h3, .audience-entrepreneurs p,
.audience-entrepreneurs .audience-list li { color: #FFFFFF !important; }
.audience-entrepreneurs p { color: rgba(255,255,255,.82) !important; }

/* ═══ Vérification inverse : si un parent clair, garantir texte sombre ═══ */
.audience-pros h3 { color: #0C1420 !important; }
.audience-pros p, .audience-pros .audience-list li { color: #2A3340 !important; }

/* ═══ Footer : pas d'encadré blanc parasite ═══ */
.footer-legal, .footer-legal a {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
footer ::selection { background: rgba(255,255,255,.25); }


/* ═══ FONDS DE SECTIONS GARANTIS (indépendants des variables) ═══ */
.process-section { background: #0C2340 !important; }
.process-section h2, .process-section .step-title { color: #FFFFFF !important; }
.process-section .step-desc, .process-section .section-lead,
.process-section .muted-text { color: rgba(255,255,255,.78) !important; }
.process-section .step-num { color: rgba(255,255,255,.5) !important; }
.process-section .step-connector { color: rgba(255,255,255,.35) !important; }

.audience-entrepreneurs { background: #0C2340 !important; }
.audience-entrepreneurs h3 { color: #FFFFFF !important; }
.audience-entrepreneurs p, .audience-entrepreneurs li { color: rgba(255,255,255,.85) !important; }
.audience-entrepreneurs .check-icon { background: rgba(255,255,255,.22) !important; color: #FFFFFF !important; }

.cta-final { background: #0C2340 !important; padding: 5rem 0; text-align: center; }
.cta-final h2 { color: #FFFFFF !important; }
.cta-final .cta-final-sub { color: rgba(255,255,255,.78) !important; }
.cta-final .cta-trust-item { color: rgba(255,255,255,.6) !important; }

/* Footer : aucun encadré blanc possible sur les liens légaux */
.footer-legal, .footer-legal a, .footer-bottom nav, .footer-bottom a {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}


/* ═══ PROCESS : 5 étapes alignées sur une ligne (desktop) ═══ */
@media (min-width: 901px) {
  .process-steps { grid-template-columns: repeat(5, 1fr) !important; }
  .process-step { padding: 1.5rem 1.25rem !important; }
  .process-step .step-title { font-size: .9rem; }
  .process-step .step-desc { font-size: .8rem; line-height: 1.6; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .process-steps { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr !important; }
}
/* PROCESS 5 COLONNES */
