/* ================================================================
   Raly Conseils — Management de Transition Finance
   Thème WordPress sur mesure
   Extrait de la maquette interactive
================================================================ */


:root {
  --green:      #789f90;
  --green-pale: #eef5f2;
  --orange:     #f67728;
  --orange-pale:#fff3eb;
  --dark:       #1a2422;
  --cream:      #f5f4f0;   /* fond dominant — légèrement chaud */
  --white:      #ffffff;
  --ink:        #1a1a1a;   /* texte principal */
  --muted:      #6b7278;   /* texte secondaire */
  --border:     #e8e8e4;
  --font:       'Syne', system-ui, sans-serif;
  --r:          12px;
  --r-lg:       20px;
  --r-pill:     100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(44px, 6vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4vw, 60px); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
p  { line-height: 1.75; color: var(--muted); font-size: 16px; }
strong { color: var(--ink); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(245,244,240,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; cursor: pointer; }
.logo-main { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.logo-sub  { font-size: 9px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .18em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 700; color: var(--muted);
  text-decoration: none; cursor: pointer; transition: color .18s; letter-spacing: .01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 10px 22px; border-radius: var(--r-pill) !important;
  font-weight: 700 !important; transition: background .18s, transform .15s !important;
  font-size: 13.5px !important;
}
.nav-cta:hover { background: #d95f1a !important; color: white !important; transform: translateY(-1px); }

/* ── SHARED ── */
.wrap  { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap-sm { max-width: 960px; margin: 0 auto; padding: 0 40px; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--green); margin-bottom: 24px;
}
.label::before {
  content: ''; display: block; width: 22px; height: 2px;
  background: var(--green); border-radius: 1px; flex-shrink: 0;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14.5px; font-family: var(--font);
  cursor: pointer; border: none; text-decoration: none;
  transition: all .18s; letter-spacing: .01em;
}
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: #d95f1a; transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #2c3a38; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,.08); }

/* ══════════════════════════
   HOME — HERO
══════════════════════════ */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero-inner {
  padding: 80px 40px 72px;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 7px 16px 7px 10px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  margin-bottom: 36px; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.hero-pill-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title { color: var(--ink); margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 17px; color: var(--muted); max-width: 460px;
  line-height: 1.72; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; gap: 40px; align-items: flex-start;
}
.hero-stat-n {
  font-size: 36px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1; display: block;
}
.hero-stat-n em { color: var(--orange); font-style: normal; }
.hero-stat-l { font-size: 12px; color: var(--muted); margin-top: 5px; display: block; font-weight: 700; }

/* ── DASHBOARD WIDGET ── */
.hero-dashboard {
  background: white;
  border-radius: 20px;
  box-shadow: 0 28px 72px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden;
}
.dash-header {
  background: var(--dark); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-dots { display: flex; gap: 6px; align-items: center; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #ff5f57; } .dash-dot.y { background: #ffbd2e; } .dash-dot.g { background: #28c940; }
.dash-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .12em; text-transform: uppercase; position: absolute; left: 50%; transform: translateX(-50%); }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; color: var(--green); letter-spacing: .08em;
}
.dash-live-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(1.5)} }

.dash-body { padding: 0; }

/* Sections du dashboard */
.dash-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.dash-section:last-child { border-bottom: none; }
.dash-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.dash-section-title {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--muted);
}
.dash-section-badge {
  font-size: 9.5px; font-weight: 700; padding: 2px 8px;
  border-radius: 20px; background: var(--green-pale); color: var(--green);
}
.dash-section-update {
  font-size: 9.5px; color: var(--muted); font-weight: 700; font-variant-numeric: tabular-nums;
}

/* Section 1 - Timeline */
.dash-section-tl { background: white; }
.dash-tl { display: flex; align-items: flex-start; gap: 0; }
.dash-step { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; position: relative; }
.dash-step:not(:last-child)::after {
  content: ''; position: absolute; top: 13px; left: calc(50% + 13px);
  width: calc(100% - 26px); height: 2px; background: var(--border); transition: background .6s;
}
.dash-step.done:not(:last-child)::after { background: var(--green); }
.dash-step-ico {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 11px; background: var(--border); color: var(--muted);
  position: relative; z-index: 1; font-weight: 700; transition: all .4s;
}
.dash-step.done .dash-step-ico { background: var(--green); color: white; }
.dash-step.active .dash-step-ico { background: var(--orange); color: white; box-shadow: 0 0 0 3px rgba(246,119,40,.2); }
.dash-step-txt { text-align: center; }
.dash-step-name { font-size: 10px; font-weight: 700; color: var(--muted); line-height: 1.3; display: block; transition: color .4s; }
.dash-step.done .dash-step-name { color: var(--green); }
.dash-step.active .dash-step-name { color: var(--orange); }
.dash-step-time { font-size: 9px; color: var(--muted); font-weight: 700; display: block; margin-top: 1px; }
.dash-step.active .dash-step-time { color: var(--orange); }

/* Section 2 - Missions */
.dash-section-missions { background: var(--cream); }
.dash-missions { display: flex; flex-direction: column; gap: 6px; }
.dash-m {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; background: white;
  border-radius: 8px; border: 1px solid var(--border);
  transition: opacity .4s, transform .4s;
}
.dash-m.entering { animation: slideIn .4s ease forwards; }
.dash-m.exiting  { animation: slideOut .3s ease forwards; }
@keyframes slideIn  { from { opacity:0; transform:translateY(-6px) } to { opacity:1; transform:translateY(0) } }
@keyframes slideOut { from { opacity:1; transform:translateY(0) } to { opacity:0; transform:translateY(6px) } }
.dash-m-ico {
  width: 28px; height: 28px; min-width: 28px; border-radius: 6px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.dash-m-info { flex: 1; min-width: 0; }
.dash-m-title { font-size: 11.5px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-m-meta { font-size: 10px; color: var(--muted); margin-top: 1px; }
.dash-m-badge { font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.b-active { background: rgba(120,159,144,.15); color: var(--green); }
.b-new    { background: rgba(246,119,40,.12); color: var(--orange); }
.b-search { background: rgba(0,0,0,.05); color: var(--muted); }

/* Section 3 - Réseau */
.dash-section-network { background: var(--dark); border-bottom: none !important; }
.dash-network-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dash-net-label { font-size: 12px; font-weight: 700; color: white; }
.dash-net-sub { font-size: 10.5px; color: rgba(255,255,255,.4); margin-top: 2px; }
.dash-net-profiles { display: flex; align-items: center; gap: 14px; }
.dash-net-stat { text-align: center; }
.dash-net-n { font-size: 24px; font-weight: 700; color: white; letter-spacing: -0.03em; line-height: 1; display: block; }
.dash-net-n em { color: var(--orange); font-style: normal; }
.dash-net-nl { font-size: 9.5px; color: rgba(255,255,255,.4); font-weight: 700; display: block; margin-top: 2px; }
.dash-net-divider { width: 1px; height: 32px; background: rgba(255,255,255,.1); }
.dash-section-network .dash-section-title { color: rgba(255,255,255,.3); }

/* ── SITUATIONS SECTION ── */
.situations-section {
  background: var(--dark);
  padding: 96px 40px;
}
.situations-inner { max-width: 1280px; margin: 0 auto; }
.situations-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; align-items: end; margin-bottom: 52px;
}
.situations-header h2 { color: white; }
.situations-header .label { color: rgba(255,255,255,.4); grid-column: 1 / -1; margin-bottom: 0; }
.situations-header .label::before { background: rgba(255,255,255,.25); }
.situations-header p { color: rgba(255,255,255,.5); font-size: 16px; align-self: end; }

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.sit-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(120,159,144,.5);
  transform: translateY(-3px);
}
.sit-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sit-card-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--green);
}
.sit-card-ico { font-size: 22px; }
.sit-card h4 {
  font-size: 16px; font-weight: 700;
  color: white; margin-bottom: 10px; line-height: 1.3;
}
.sit-card p {
  font-size: 13.5px; color: rgba(255,255,255,.5);
  line-height: 1.68; flex: 1;
}
.sit-card-cta {
  display: inline-block; margin-top: 20px;
  font-size: 12.5px; font-weight: 700;
  color: var(--green); letter-spacing: .02em;
  transition: color .18s;
}
.sit-card:hover .sit-card-cta { color: var(--orange); }

.sit-card-cta-block {
  background: rgba(246,119,40,.08);
  border-color: rgba(246,119,40,.2);
}
.sit-card-cta-block:hover {
  background: rgba(246,119,40,.13);
  border-color: rgba(246,119,40,.4);
}
.sit-cta-q {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--orange) !important; margin-bottom: 10px;
}
.sit-card-cta-block h4 { color: white; }
.sit-card-cta-block p { color: rgba(255,255,255,.5); }

/* ── LOGOS ── */
.logos {
  background: var(--dark);
  padding: 32px 40px;
}
.logos-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.logos-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3); white-space: nowrap; }
.logos-sep { width: 1px; height: 28px; background: rgba(255,255,255,.1); }
.logos-row { display: flex; align-items: center; gap: 44px; flex: 1; }
.logo-c { font-size: 13.5px; font-weight: 800; letter-spacing: .08em; color: rgba(255,255,255,.35); transition: color .18s; cursor: default; }
.logo-c:hover { color: rgba(255,255,255,.75); }

/* ── PROFILS SECTION ── */
.section-profils { padding: 120px 40px; background: var(--cream); }
.profils-header { max-width: 1280px; margin: 0 auto 64px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.profils-header h2 { max-width: 600px; color: var(--ink); }
.profils-header p { max-width: 340px; text-align: right; }

.profils-scroll { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.profil-tile {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.profil-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.09); }
.profil-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0; transition: opacity .2s;
}
.profil-tile:hover::before { opacity: 1; }
.profil-n { font-size: 64px; font-weight: 800; color: var(--border); line-height: 1; letter-spacing: -0.05em; margin-bottom: 20px; display: block; }
.profil-tile h4 { color: var(--ink); margin-bottom: 10px; font-size: 20px; }
.profil-tile p { font-size: 14px; line-height: 1.7; }
.profil-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.profil-tag {
  font-size: 11.5px; font-weight: 700; color: var(--green);
  background: var(--green-pale); padding: 5px 12px; border-radius: var(--r-pill);
}

/* ── ENJEUX (fusionnés) ── */
.section-enjeux { padding: 96px 40px; background: var(--white); }
.enjeux-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch; /* ← les deux colonnes à la même hauteur */
}
.enjeux-left h2 { color: var(--ink); }
.enjeux-left > p { margin-top: 16px; margin-bottom: 0; }

.enjeux-list { margin-top: 32px; display: flex; flex-direction: column; }
.enjeu {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  border-radius: 0;
  transition: background .18s, padding-left .2s, border-radius .18s;
}
.enjeu:first-child { border-top: 1px solid var(--border); }
.enjeu:hover {
  background: var(--cream);
  padding-left: 18px;
  border-radius: var(--r);
  border-color: transparent;
  margin-bottom: 1px;
}
.enjeu-ico {
  font-size: 18px;
  width: 40px; height: 40px; min-width: 40px;
  background: var(--cream); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
  flex-shrink: 0;
}
.enjeu:hover .enjeu-ico { background: var(--green-pale); }
.enjeu-body { flex: 1; }
.enjeu-body h4 { font-size: 15px; color: var(--ink); line-height: 1.25; margin-bottom: 4px; }
.enjeu-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.enjeu-arrow {
  font-size: 16px; color: var(--border);
  transition: color .18s, transform .18s; flex-shrink: 0;
}
.enjeu:hover .enjeu-arrow { color: var(--orange); transform: translateX(5px); }

/* urgence box */
.urgence-box {
  background: var(--dark); border-radius: var(--r-lg);
  padding: 48px;
  height: 100%;
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
}
.urgence-box::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(246,119,40,.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.urgence-box h3 { color: white; margin-bottom: 14px; font-size: 26px; flex-shrink: 0; }
.urgence-box > p { color: rgba(255,255,255,.6); margin-bottom: 55px; font-size: 15px; flex-shrink: 0; }
.urgence-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-bottom: 0; flex-shrink: 0; }
.u-num strong { display: block; font-size: 44px; font-weight: 700; color: white; letter-spacing: -0.04em; line-height: 1; }
.u-num strong em { color: var(--orange); font-style: normal; }
.u-num span { font-size: 12.5px; color: rgba(255,255,255,.45); display: block; margin-top: 6px; font-weight: 700; }
.urgence-note {
  margin-top: 120px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 13px 18px;
  font-size: 13px; font-weight: 700;
  color: white; letter-spacing: .02em;
  flex-shrink: 0;
}
.urgence-note::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; min-width: 20px;
  background: var(--green); border-radius: 50%;
  font-size: 11px; color: white; font-weight: 700;
}

/* ── POURQUOI ── */
.section-pourquoi { padding: 120px 40px; background: var(--cream); }
.pourquoi-inner { max-width: 1280px; margin: 0 auto; }
.pourquoi-header { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; margin-bottom: 72px; align-items: end; }
.pourquoi-header h2 { color: var(--ink); }
.pourquoi-header p { font-size: 16px; }
.pourquoi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.pourquoi-item {
  background: var(--white); padding: 36px 28px;
  transition: background .2s;
}
.pourquoi-item:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.pourquoi-item:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.pourquoi-item:hover { background: var(--green-pale); }
.pourquoi-ico { font-size: 28px; margin-bottom: 20px; }
.pourquoi-item h4 { color: var(--ink); margin-bottom: 10px; font-size: 16px; }
.pourquoi-item p { font-size: 13.5px; }

/* Raly card */
.raly-strip {
  margin-top: 48px; background: var(--dark); border-radius: var(--r-lg);
  padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.raly-strip-left { }
.raly-strip-logo { font-size: 26px; font-weight: 800; color: white; letter-spacing: -0.02em; }
.raly-strip-sub { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--green); margin-top: 3px; }
.raly-strip p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 480px; margin-top: 16px; }
.raly-strip-services { display: flex; flex-wrap: wrap; gap: 8px; }
.raly-srv {
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06); padding: 8px 16px; border-radius: var(--r-pill);
}
.raly-srv.active { background: var(--green); color: white; }

/* ── TEMOIGNAGES ── */
.section-temo { padding: 120px 40px; background: var(--white); }
.temo-inner { max-width: 1280px; margin: 0 auto; }
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.temo-card {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 40px 36px;
}
.temo-q { font-size: 56px; font-weight: 800; color: var(--green); line-height: .6; margin-bottom: 20px; display: block; opacity: .5; }
.temo-text { font-size: 15px; font-style: italic; line-height: 1.75; color: var(--ink); margin-bottom: 28px; }
.temo-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.temo-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.temo-co { display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--green); margin-top: 8px; }

/* ── CTA FINALE ── */
.section-cta {
  padding: 120px 40px; background: var(--dark);
  text-align: center; position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(120,159,144,.1) 0%, transparent 65%);
  pointer-events: none;
}
.section-cta .label { justify-content: center; color: rgba(255,255,255,.45); }
.section-cta .label::before { background: rgba(255,255,255,.3); }
.section-cta h2 { color: white; max-width: 700px; margin: 0 auto 20px; }
.section-cta > .wrap > p { max-width: 520px; margin: 0 auto 48px; font-size: 17px; color: rgba(255,255,255,.55); }
.cta-btns { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #111817; padding: 64px 40px 36px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px; }
.footer-logo { font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.02em; }
.footer-logo-sub { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--green); margin-top: 2px; margin-bottom: 20px; }
.footer-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.35); max-width: 260px; }
.footer-raly { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.25); }
.footer-raly a { color: var(--green); text-decoration: none; }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: white; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; cursor: pointer; transition: color .18s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.2); }
.footer-bottom a { color: rgba(255,255,255,.2); text-decoration: none; }

/* ══════════════════════════
   PAGE PROFILS
══════════════════════════ */
.page-header {
  padding-top: 68px; background: var(--dark);
  padding-bottom: 80px; padding-left: 40px; padding-right: 40px;
}
.page-header-inner { max-width: 1280px; margin: 0 auto; padding-top: 72px; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; font-weight: 700; letter-spacing: .04em; }
.breadcrumb a { color: rgba(255,255,255,.3); text-decoration: none; cursor: pointer; }
.breadcrumb a:hover { color: white; }
.page-header h1 { color: white; margin-bottom: 20px; }
.page-header p { color: rgba(255,255,255,.55); font-size: 18px; max-width: 600px; line-height: 1.7; }

.profils-full-section { padding: 96px 40px; background: var(--cream); }
.profils-full-inner { max-width: 1200px; margin: 0 auto; }
.profil-row {
  display: grid; grid-template-columns: 280px 1fr; gap: 72px;
  padding: 64px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.profil-row:last-child { border-bottom: none; }
.profil-row-left { position: sticky; top: 88px; }
.profil-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--green); background: var(--green-pale);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.profil-row-left h3 { color: var(--ink); margin-bottom: 14px; font-size: 26px; }
.profil-row-left p { font-size: 14.5px; color: var(--muted); line-height: 1.72; }
.profil-delay {
  margin-top: 24px; background: white; border-radius: var(--r);
  padding: 20px 22px; border: 1px solid var(--border);
}
.profil-delay-lbl { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); margin-bottom: 6px; }
.profil-delay-val { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.missions-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 20px; }
.missions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.mission { background: white; padding: 16px 18px; border-radius: var(--r); border: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.mission-arrow { color: var(--green); font-weight: 800; font-size: 14px; }
.mission p { font-size: 13px; color: var(--ink); font-weight: 700; margin: 0; line-height: 1.5; }
.context-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ctx { font-size: 12px; font-weight: 700; color: var(--muted); background: white; border: 1px solid var(--border); padding: 6px 14px; border-radius: var(--r-pill); }

/* ── Secteurs dans le header profils ── */
.profils-sectors-header {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.psh-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: rgba(255,255,255,.4);
  white-space: nowrap; flex-shrink: 0;
}
.psh-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.psh-tag {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 18px; border-radius: var(--r-pill);
  cursor: pointer; transition: all .18s;
}
.psh-tag:hover, .psh-tag.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}


/* ── Page Comment ça marche ── */
.process-step { text-align:center;position:relative;z-index:1;padding:0 16px; }
.ps-num { width:72px;height:72px;border-radius:50%;background:var(--off-white);border:2px solid var(--grey-light);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:20px;font-weight:700;color:var(--muted);position:relative;z-index:1;transition:all .2s; }
.process-step.done .ps-num { background:var(--ink);border-color:var(--ink);color:white; }
.process-step.active .ps-num { background:white;border-color:var(--orange);color:var(--orange);box-shadow:0 0 0 6px rgba(246,119,40,.1); }
.process-step h4 { font-size:16px;font-weight:700;color:var(--ink);margin-bottom:10px;line-height:1.3; }
.process-step p { font-size:13px;color:var(--muted);line-height:1.65;margin-bottom:14px; }
.ps-tag { font-size:11px;font-weight:700;padding:5px 14px;border-radius:var(--r-pill);display:inline-block; }
.ps-done { background:var(--ink);color:white; }
.ps-active { background:rgba(246,119,40,.12);color:var(--orange); }
.ps-pending { background:var(--off-white);color:var(--muted); }
.exch-item-full { display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--ink);line-height:1.6;margin-bottom:12px; }
.exch-item-full::before { content:'→';color:var(--green);font-size:12px;flex-shrink:0;margin-top:3px; }
.faq-list { display:flex;flex-direction:column;gap:0; }
.faq-item-full { padding:24px 0;border-bottom:1px solid var(--border); }
.faq-item-full:first-child { border-top:1px solid var(--border); }
.faq-q-full { font-size:17px;font-weight:700;color:var(--ink);margin-bottom:10px;line-height:1.3; }
.faq-a-full { font-size:14px;color:var(--muted);line-height:1.75; }

/* ── Références nouvelle mise en page ── */
.ref-sec-label { font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--muted);padding:20px 0 12px;display:flex;align-items:center;gap:10px; }
.ref-sec-label::after { content:'';flex:1;height:1px;background:var(--border); }
.ref-feat-card { background:var(--white);border-radius:var(--r-lg);border:0.5px solid var(--grey-light);padding:22px;cursor:pointer;position:relative;overflow:hidden;transition:transform .2s,box-shadow .2s; }
.ref-feat-card::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--green);opacity:0;transition:opacity .2s;border-radius:var(--r-lg) var(--r-lg) 0 0; }
.ref-feat-card:hover { transform:translateY(-3px);box-shadow:0 12px 36px rgba(0,0,0,.08); }
.ref-feat-card:hover::before { opacity:1; }
.ref-feat-top { display:flex;align-items:center;justify-content:space-between;margin-bottom:10px; }
.ref-feat-logo { font-size:13px;font-weight:700;color:var(--ink);letter-spacing:.04em; }
.ref-feat-sect { font-size:9px;padding:2px 8px;border-radius:6px;background:var(--off-white);color:var(--muted);font-weight:700; }
.ref-feat-type { font-size:10px;font-weight:700;color:var(--green);margin-bottom:6px; }
.ref-feat-title { font-size:13px;color:var(--ink);line-height:1.45;font-weight:700;margin-bottom:10px; }
.ref-feat-metas { display:flex;gap:5px;flex-wrap:wrap;margin-bottom:10px; }
.ref-feat-m { font-size:9px;color:var(--muted);background:var(--off-white);padding:2px 8px;border-radius:6px;font-weight:700; }
.ref-feat-results { display:grid;grid-template-columns:repeat(3,1fr);gap:4px;padding-top:10px;border-top:0.5px solid var(--border); }
.ref-feat-res { text-align:center;padding:8px 4px; }
.ref-feat-res strong { font-size:15px;font-weight:700;color:var(--ink);display:block;line-height:1;letter-spacing:-.02em; }
.ref-feat-res span { font-size:8.5px;color:var(--muted);display:block;margin-top:3px; }
.ref-feat-cta { font-size:11px;color:var(--orange);font-weight:700;margin-top:12px;display:block;text-align:right; }
.ref-fp { font-size:12px;padding:5px 14px;border-radius:var(--r-pill);border:1px solid var(--border);color:var(--muted);background:var(--off-white);cursor:pointer;font-family:var(--font);transition:all .18s; }
.ref-fp.on { background:var(--ink);color:white;border-color:var(--ink); }
.ref-table { width:100%;border-collapse:collapse;background:var(--white);border-radius:var(--r-lg);overflow:hidden;border:0.5px solid var(--grey-light); }
.ref-table th { font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);padding:12px 18px;border-bottom:1px solid var(--border);background:#f9f9f8;text-align:left; }
.ref-table td { font-size:13px;padding:13px 18px;border-bottom:0.5px solid var(--border);color:var(--ink);vertical-align:middle; }
.ref-table tbody tr:last-child td { border-bottom:none; }
.ref-table tbody tr:hover td { background:#f9faf9;cursor:pointer; }
.ref-td-logo { font-size:13px;font-weight:700;color:var(--ink);letter-spacing:.04em; }
.ref-table td:first-child { font-size:14px;font-weight:700;color:var(--ink);line-height:1.5; }
.ref-table td:first-child .ref-td-sect { display:block;background:none;padding:0;border-radius:0;font-size:11px;font-weight:500;color:var(--muted);white-space:normal;margin-top:2px;letter-spacing:0; }
.ref-td-sect { font-size:10px;padding:2px 9px;border-radius:6px;background:var(--off-white);color:var(--muted);display:inline-block;white-space:nowrap;font-weight:700; }
.ref-td-profil { font-size:12px;color:var(--green);font-weight:700;white-space:nowrap; }
.ref-td-ctx { font-size:12px;color:var(--muted);line-height:1.4; }
.ref-td-dur { font-size:12px;color:var(--ink);font-weight:700;white-space:nowrap; }
.ref-td-link { font-size:11px;color:var(--orange);font-weight:700;text-decoration:underline;cursor:pointer;white-space:nowrap; }
#stories-drawer { max-height:0;overflow:hidden;flex-direction:column;transition:max-height .4s ease; }
#stories-drawer.open { max-height:2000px;display:flex; }
.dr-section-lbl { font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--muted);margin-bottom:10px;display:flex;align-items:center;gap:6px; }
.dr-section-lbl::after { content:'';flex:1;height:1px;background:var(--border); }
.dr-section { margin-bottom:22px; }
.dr-ctx-box { background:#f9f9f8;border-radius:8px;border:0.5px solid var(--border);padding:14px 16px;font-size:13px;color:var(--ink);line-height:1.7; }
.dr-results { display:grid;grid-template-columns:repeat(3,1fr);gap:8px; }
.dr-res { background:var(--off-white);border-radius:8px;padding:14px 10px;text-align:center; }
.dr-res strong { font-size:22px;font-weight:700;color:var(--ink);display:block;line-height:1;letter-spacing:-.02em; }
.dr-res strong em { color:var(--orange);font-style:normal; }
.dr-res span { font-size:9px;color:var(--muted);display:block;margin-top:5px;line-height:1.3; }
.dr-profil { background:var(--green-pale);border-radius:8px;border:1px solid rgba(120,159,144,.25);padding:14px 16px;display:flex;align-items:flex-start;gap:12px; }
.dr-profil-ico { width:40px;height:40px;min-width:40px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0; }
.dr-profil h5 { font-size:13px;font-weight:700;color:#1a3530;margin-bottom:4px; }
.dr-profil p { font-size:12px;color:#5a8478;line-height:1.55; }
.dr-quote { background:#f9f9f8;border-left:3px solid var(--orange);border-radius:0 8px 8px 0;padding:14px 16px; }
.dr-quote p { font-size:12.5px;font-style:italic;color:var(--ink);line-height:1.7;margin-bottom:8px; }
.dr-quote cite { font-size:11px;font-weight:700;color:var(--muted);font-style:normal; }
.dr-badge { font-size:10px;font-weight:700;padding:4px 12px;border-radius:20px;background:rgba(255,255,255,.08);color:rgba(255,255,255,.65);border:1px solid rgba(255,255,255,.1); }
.dr-badge-orange { background:rgba(246,119,40,.15);color:var(--orange);border-color:rgba(246,119,40,.25); }

.profil-tile-new { background:var(--white);border-radius:var(--r-lg);padding:32px 28px;position:relative;overflow:hidden;border:0.5px solid var(--grey-light);box-shadow:0 1px 4px rgba(0,0,0,.04);display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s; }
.profil-tile-new::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--green);border-radius:var(--r-lg) var(--r-lg) 0 0;opacity:0;transition:opacity .2s; }
.profil-tile-new:hover { transform:translateY(-3px);box-shadow:0 12px 36px rgba(0,0,0,.08); }
.profil-tile-new:hover::before { opacity:1; }
.profil-tile-n { font-size:52px;font-weight:700;color:var(--grey-light);line-height:1;letter-spacing:-.04em;margin-bottom:12px;display:block; }
.profil-tile-badge { display:inline-block;font-size:9.5px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--green);background:var(--green-pale);padding:3px 10px;border-radius:var(--r-pill);margin-bottom:10px; }
.profil-tile-new h4 { font-size:18px;font-weight:700;color:var(--ink);margin-bottom:8px; }
.profil-tile-new > p { font-size:13.5px;color:var(--muted);line-height:1.65;margin-bottom:16px; }
.profil-tile-missions { display:flex;flex-direction:column;gap:5px;margin-bottom:16px;flex:1; }
.ptm { display:flex;align-items:flex-start;gap:7px;font-size:12px;color:var(--ink);font-weight:700;line-height:1.45; }
.ptm::before { content:'→';color:var(--green);font-size:10px;flex-shrink:0;margin-top:2px; }
.profil-tile-footer { margin-top:auto;padding-top:14px;border-top:0.5px solid var(--grey-light); }
.profil-tile-secteurs-lbl { font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);margin-bottom:7px; }
.profil-tile-stags { display:flex;flex-wrap:wrap;gap:4px;margin-bottom:7px; }
.pstag { font-size:9.5px;padding:3px 9px;border-radius:var(--r-pill);border:0.5px solid var(--grey-light);color:var(--muted);background:var(--off-white); }
.pstag.on { background:var(--green-pale);color:#2d524a;border-color:rgba(120,159,144,.3); }
.profil-stag-ref { font-size:11px;color:var(--orange);font-weight:700;text-decoration:underline;cursor:pointer; }
.profil-sf { font-size:12px;padding:5px 14px;border-radius:var(--r-pill);border:1px solid var(--grey-light);color:var(--muted);background:var(--off-white);cursor:pointer;font-family:var(--font);transition:all .18s; }
.profil-sf.on { background:var(--ink);color:white;border-color:var(--ink); }
.profil-sec-tile { background:var(--white);border:0.5px solid var(--grey-light);border-radius:var(--r-lg);padding:20px;transition:box-shadow .2s; }
.profil-sec-tile:hover { box-shadow:0 4px 16px rgba(0,0,0,.06); }
.profil-sec-tile h4 { font-size:14px;font-weight:700;color:var(--ink);margin-bottom:6px; }
.profil-sec-tile p { font-size:12px;color:var(--muted);line-height:1.6; }
.profil-sec-tag { display:inline-block;font-size:10px;font-weight:700;color:var(--green);background:var(--green-pale);padding:3px 9px;border-radius:var(--r-pill);margin-top:8px; }
.reass-logo { font-size:11px;font-weight:700;color:#2d524a;background:white;padding:4px 10px;border-radius:6px;border:0.5px solid rgba(120,159,144,.3);letter-spacing:.04em; }

/* ══════════════════════════
   PAGE BLOG
══════════════════════════ */
.blog-header { padding-top: 68px; background: var(--cream); padding-bottom: 0; }
.blog-header-inner { max-width: 1280px; margin: 0 auto; padding: 72px 40px 0; border-bottom: 1px solid var(--border); }
.blog-header h1 { color: var(--ink); max-width: 700px; margin-bottom: 20px; }
.blog-header p { font-size: 17px; max-width: 540px; margin-bottom: 44px; }
.blog-filters { display: flex; gap: 10px; padding-bottom: 0; }
.bfp { font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: var(--r-pill) var(--r-pill) 0 0; cursor: pointer; border: 1px solid var(--border); border-bottom: none; background: white; color: var(--muted); transition: all .18s; font-family: var(--font); }
.bfp.active, .bfp:hover { background: var(--ink); color: white; border-color: var(--ink); }

.blog-body { padding: 0 40px 96px; max-width: 1280px; margin: 0 auto; }
.blog-featured { display: grid; grid-template-columns: 3fr 2fr; gap: 20px; padding: 48px 0 40px; }
.blog-feat-card { text-decoration:none;
  background: var(--dark); border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.blog-feat-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(0,0,0,.15); }
.blog-feat-img {
  height: 240px; background: linear-gradient(135deg, var(--green) 0%, #2a4a42 100%);
  display: flex; align-items: center; justify-content: center; font-size: 72px;
  position: relative;
}
.blog-feat-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,36,34,.7) 0%, transparent 60%); }
.blog-feat-body { padding: 32px 36px; }
.art-cat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--orange); margin-bottom: 12px; display: block; }
.blog-feat-body h3 { color: white; font-size: 22px; margin-bottom: 12px; line-height: 1.35; }
.blog-feat-body p { color: rgba(255,255,255,.55); font-size: 13.5px; line-height: 1.7; }
.art-meta { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 24px; font-weight: 700; }

.blog-side { display: flex; flex-direction: column; gap: 16px; }
.blog-side-card { text-decoration:none;
  background: white; border-radius: var(--r); padding: 24px 28px;
  cursor: pointer; border: 1px solid var(--border);
  transition: border-color .18s, transform .18s; flex: 1;
}
.blog-side-card:hover { border-color: var(--green); transform: translateY(-2px); }
.blog-side-card .art-cat { color: var(--orange); }
.blog-side-card h4 { font-size: 15px; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.blog-side-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.blog-side-card .art-meta { color: var(--muted); margin-top: 14px; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-grid-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-bottom: 24px; }
.bgc { background: white; border-radius: var(--r); overflow: hidden; cursor: pointer; border: 1px solid var(--border); transition: border-color .18s, transform .18s; }
.bgc:hover { border-color: var(--green); transform: translateY(-2px); }
.bgc-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.bgc-thumb.gp { background: var(--green-pale); }
.bgc-thumb.op { background: var(--orange-pale); }
.bgc-thumb.dk { background: var(--dark); }
.bgc-body { padding: 18px 22px 24px; }
.bgc-body .art-cat { color: var(--orange); }
.bgc-body h4 { font-size: 14.5px; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.bgc-body p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }
.bgc-body .art-meta { color: var(--muted); margin-top: 10px; font-size: 11.5px; }

.newsletter-strip {
  background: var(--green-pale); border-radius: var(--r-lg);
  padding: 48px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
  margin-top: 56px;
}
.newsletter-strip h3 { color: var(--ink); font-size: 26px; max-width: 420px; line-height: 1.2; }
.newsletter-strip p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  padding: 13px 20px; border: 1.5px solid var(--border); border-radius: var(--r-pill);
  font-family: var(--font); font-size: 14px; outline: none;
  background: white; color: var(--ink); width: 260px;
  transition: border-color .18s;
}
.newsletter-form input:focus { border-color: var(--green); }

/* ══════════════════════════
   PAGE STORIES
══════════════════════════ */
.stories-kpis {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  margin-top: 56px;
}
.kpi { border-top: 2px solid rgba(255,255,255,.12); padding-top: 20px; }
.kpi strong { font-size: 48px; font-weight: 800; color: white; display: block; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.kpi strong em { color: var(--orange); font-style: normal; }
.kpi span { font-size: 12.5px; color: rgba(255,255,255,.4); font-weight: 700; }

.stories-section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
.story {
  display: grid; grid-template-columns: 260px 1fr; gap: 72px;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.story:last-child { border-bottom: none; }
.story-left-name { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.story-left-sec { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; margin: 4px 0 24px; }
.story-ctx { background: var(--cream); border-radius: var(--r); padding: 18px 20px; margin-bottom: 14px; }
.story-ctx-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--muted); margin-bottom: 5px; }
.story-ctx p { font-size: 13px; color: var(--ink); line-height: 1.65; margin: 0; }
.story-profil-tag { display: flex; align-items: center; gap: 10px; background: var(--green-pale); padding: 12px 16px; border-radius: var(--r); }
.story-profil-tag p { font-size: 13px; color: var(--ink); font-weight: 700; margin: 0; line-height: 1.35; }
.story-right h3 { color: var(--ink); margin-bottom: 16px; }
.story-right > p { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 28px; }
.story-results { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 28px; }
.story-res { background: var(--cream); padding: 20px; border-radius: var(--r); text-align: center; }
.story-res strong { font-size: 36px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; display: block; line-height: 1; margin-bottom: 6px; }
.story-res span { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.story-quote { border-left: 2px solid var(--green); padding-left: 22px; margin-top: 24px; }
.story-quote p { font-size: 15px; font-style: italic; color: var(--ink); line-height: 1.78; margin-bottom: 8px; }
.story-quote cite { font-size: 12.5px; color: var(--muted); font-style: normal; font-weight: 700; }

/* ══════════════════════════
   PAGE CONTACT
══════════════════════════ */
.contact-page { padding-top: 68px; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.contact-left-panel { background: var(--dark); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-left-panel::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(120,159,144,.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.contact-left-panel h2 { color: white; margin-bottom: 18px; position: relative; }
.contact-left-panel > p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.75; margin-bottom: 52px; max-width: 400px; position: relative; }
.contact-engages { display: flex; flex-direction: column; gap: 26px; position: relative; }
.ce { display: flex; align-items: flex-start; gap: 18px; }
.ce-ico {
  width: 42px; height: 42px; min-width: 42px; border-radius: var(--r);
  background: rgba(120,159,144,.15); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ce h4 { font-size: 15px; color: white; margin-bottom: 4px; }
.ce p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; }

.contact-right-panel { background: var(--cream); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-right-panel h3 { color: var(--ink); margin-bottom: 6px; font-size: 28px; }
.contact-right-panel > p { color: var(--muted); margin-bottom: 36px; font-size: 14.5px; }
.urgence-tick { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.urgence-tick input { width: 18px; height: 18px; accent-color: var(--orange); }
.urgence-tick label { font-size: 14px; font-weight: 700; color: var(--orange); cursor: pointer; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.fg input, .fg select, .fg textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--font); font-size: 14px; color: var(--ink); background: white;
  outline: none; transition: border-color .18s; resize: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); }
.fg textarea { rows: 4; }

/* ── demo note ── */
.demo-note {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(26,36,34,.92); color: rgba(255,255,255,.8);
  font-size: 12px; font-weight: 700; padding: 9px 24px; border-radius: var(--r-pill);
  backdrop-filter: blur(12px); z-index: 9999;
  pointer-events: none; letter-spacing: .04em; font-family: var(--font);
  white-space: nowrap;
}



.wb-radio {
  display:flex;align-items:center;
  padding:6px 12px;border-radius:20px;
  border:1px solid var(--border);background:var(--off-white);
  font-size:11px;font-weight:700;color:var(--muted);
  cursor:pointer;transition:all .15s;
  font-family:var(--font);
}
.wb-radio.on {
  background:var(--green-pale);border-color:var(--green);color:#2d524a;
}

/* ── SECTION ARTICLES EXTERNES ─────────────────────────────────────── */
.blog-ext-wrap { padding:64px 0 80px;border-top:1px solid var(--border);margin-top:48px; }
.blog-ext-header { max-width:var(--max-w);margin:0 auto 40px;padding:0 var(--gap); }
.blog-ext-header h2 { font-size:clamp(1.5rem,3vw,2rem);font-weight:800;letter-spacing:-.03em;color:var(--ink);margin:8px 0 12px; }
.blog-ext-header p { font-size:1rem;color:var(--muted); }
a.bgc-link { text-decoration:none;color:inherit;display:flex;transition:transform .2s,box-shadow .2s; }
a.bgc-link:hover { transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.08); }
a.bgc-link .art-meta { color:var(--orange);font-weight:700;font-size:12px; }

/* ── CARTES ARTICLES CLIQUABLES ─────────────────────────────────────── */
a.bgc { text-decoration:none;color:inherit;cursor:pointer; }
a.bgc:hover { transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.08); }
a.bgc h4 { color:var(--ink); }

/* ══ PAGE ARTICLE ══════════════════════════════════════════════════════ */
.art-page { display:flex;gap:40px;max-width:1100px;margin:0 auto;padding:60px var(--gap) 80px;padding-top:calc(68px + 28px); }
.art-main { flex:1;min-width:0; }
.art-sidebar { width:240px;flex-shrink:0;padding-top:4px;position:sticky;top:calc(68px + 20px);align-self:flex-start; }

.art-back { display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--orange);text-decoration:none;margin-bottom:20px; }
.art-back:hover { text-decoration:underline; }

.art-cat-badge { display:flex;align-items:center;gap:6px;background:#fef3ec;border:0.5px solid #f5c4a0;color:#c45a1e;font-size:11px;font-weight:700;padding:4px 10px;border-radius:4px;margin-bottom:14px;letter-spacing:.05em;width:fit-content; }
.art-cat-dot { width:5px;height:5px;border-radius:50%;background:var(--orange);flex-shrink:0; }

.art-title { font-size:clamp(1.6rem,3.5vw,2.2rem);font-weight:800;color:var(--ink);line-height:1.2;letter-spacing:-.03em;margin-bottom:14px; }
.art-meta-bar { font-size:12px;color:var(--muted);margin-bottom:24px; }
.art-divider { height:1px;background:var(--border);margin-bottom:32px; }

/* Contenu */
.art-content { font-size:15px;line-height:1.85;color:var(--ink); }
.art-content h2 { font-size:1.15rem;font-weight:800;color:var(--ink);margin:36px 0 12px;padding-left:14px;border-left:3px solid var(--orange);border-radius:0;line-height:1.3; }
.art-content h3 { font-size:1rem;font-weight:700;color:var(--ink);margin:24px 0 10px; }
.art-content p { margin-bottom:18px; }
.art-content ul,
.art-content ol { margin:0 0 18px 24px; }
.art-content li { margin-bottom:6px;line-height:1.7; }
.art-content strong { font-weight:700; }
.art-content blockquote,
.art-content .highlight { background:#fef8f4;border-left:3px solid var(--orange);border-radius:0 6px 6px 0;padding:16px 20px;margin:24px 0;font-style:italic;color:var(--ink);line-height:1.75; }
.art-content a { color:var(--orange);text-decoration:underline; }
.art-content hr { border:none;border-top:1px solid var(--border);margin:32px 0; }

/* CTA bas de page */
.art-cta-bottom { display:flex;align-items:center;justify-content:space-between;gap:24px;background:#f5f0eb;border-radius:10px;padding:22px 28px;margin-top:40px;margin-bottom:60px;flex-wrap:wrap; }
.art-cta-b-title { font-size:14px;font-weight:700;color:var(--ink);margin-bottom:4px; }
.art-cta-b-sub { font-size:12px;color:var(--muted); }

/* Sidebar */
.art-cta-card { background:var(--ink);border-radius:10px;padding:20px 18px;color:#fff;margin-bottom:20px; }
.art-cta-card .btn { white-space:nowrap;display:block;text-align:center; }
.art-cta-icon { font-size:24px;margin-bottom:10px; }
.art-cta-title { font-size:13px;font-weight:700;color:#fff;margin-bottom:6px; }
.art-cta-text { font-size:12px;color:#aaa;line-height:1.6;margin-bottom:14px; }

.art-related-title { font-size:11px;font-weight:700;color:var(--muted);letter-spacing:.07em;margin-bottom:12px; }
.art-related-card { display:block;background:#fff;border:0.5px solid var(--border);border-radius:8px;padding:12px 14px;margin-bottom:8px;text-decoration:none;transition:box-shadow .15s; }
.art-related-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.07); }
.art-related-cat { font-size:10px;font-weight:700;color:var(--orange);letter-spacing:.05em;margin-bottom:4px; }
.art-related-ttl { font-size:12px;font-weight:600;color:var(--ink);line-height:1.4; }

@media (max-width:768px) {
  .art-page { flex-direction:column; }
  .art-sidebar { width:100%; }
}



.art-content img { max-width:60%;height:auto;border-radius:6px;cursor:zoom-in;display:block;margin:24px 0;transition:opacity .15s; }
.art-content img:hover { opacity:.9; }

/* Lightbox */
.img-lightbox-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,.85);z-index:9999;align-items:center;justify-content:center;cursor:zoom-out; }
.img-lightbox-overlay.active { display:flex; }
.img-lightbox-overlay img { max-width:90vw !important;max-height:90vh !important;width:auto !important;height:auto !important;border-radius:8px;box-shadow:0 20px 60px rgba(0,0,0,.5);margin:0 !important;cursor:zoom-out; }

/* Mention "Cliquer pour agrandir" sous les images d'articles */
.art-img-wrap { display:inline-block;position:relative;margin:24px 0; }
.art-img-wrap img { display:block;margin:0 !important; }
.art-img-caption { display:block;font-size:11px;color:var(--muted);margin-top:5px;letter-spacing:.03em; }
.art-img-caption::before { content:'🔍 '; }

.ref-seo-intro { max-width:780px;margin:0 0 28px;font-size:15px;line-height:1.75;color:var(--muted); }
.blog-seo-intro { max-width:var(--max-w);margin:0 auto;padding:0 var(--gap) 32px; }
.blog-seo-intro p { font-size:15px;line-height:1.75;color:var(--muted); }
.page-label { display:block;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--orange);margin-bottom:12px; }

/* ── Page label (au-dessus des H1) ─────────────────────────────────── */
.page-label { display:block;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--orange);margin-bottom:12px; }

/* ── Baseline fiches profils ────────────────────────────────────────── */
.profil-baseline { font-size:12px;font-style:italic;color:var(--muted);margin-top:4px;margin-bottom:8px;line-height:1.5; }

.ref-intro { font-size:15px;color:var(--muted);line-height:1.75;max-width:100%;margin-bottom:32px; }

.blog-header-sub { font-size:15px;color:rgba(255,255,255,.75);line-height:1.7;margin-top:12px;max-width:620px; }

/* ── Hamburger button ──────────────────────────────────────────────── */
.nav-burger { display:none;background:none;border:none;cursor:pointer;padding:6px;flex-direction:column;gap:5px; }
.nav-burger span { display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:transform .3s,opacity .3s; }
.nav-burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity:0; }
.nav-burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ── Responsive nav (tablette + mobile) ────────────────────────────── */
@media (max-width:1024px) {
  .nav-burger { display:flex; }
  .nav-inner { padding:0 20px; }
  .nav-links {
    display:none;
    position:fixed;top:68px;left:0;right:0;
    background:rgba(245,244,240,.98);
    backdrop-filter:blur(20px);
    flex-direction:column;
    padding:24px 20px 32px;
    gap:0;
    border-bottom:1px solid var(--border);
    box-shadow:0 12px 40px rgba(0,0,0,.08);
  }
  .nav-links.open { display:flex; }
  .nav-links li { width:100%; }
  .nav-links a { display:block;padding:14px 0;font-size:15px;border-bottom:1px solid var(--border); }
  .nav-links li:last-child a { border-bottom:none; }
  .nav-cta { display:block;text-align:center;margin-top:16px;padding:14px 22px !important; }
}

@media (max-width:480px) {
  .nav-inner { padding:0 16px; }
  .logo-main { font-size:15px; }
  .logo-sub { font-size:8px; }
}



/* =====================================================================
   RESPONSIVE — Raly Transition
   =====================================================================
   Ce bloc remplace TOUT le code responsive precedent.
   A coller apres la section "Responsive nav (tablette + mobile)"
   qui se termine par:  .logo-sub { font-size:8px; }  }
   
   Structure :
   1. Global (toutes tailles)
   2. Tablet (max 1100px)
   3. Mobile (max 768px)
   4. Petit mobile (max 480px)
   ===================================================================== */


/* =====================================================================
   1. GLOBAL — toutes tailles d'ecran
   ===================================================================== */

/* Masquer le bandeau maquette interactive */
.demo-note { display: none; }

/* Masquer le fil d'ariane */
.breadcrumb { display: none; }

/* Masquer #page-process qui leak sur la page References */
#page-process {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Securite anti-debordement */
img, video, iframe { max-width: 100%; height: auto; }


/* =====================================================================
   2. TABLET — max 1100px
   ===================================================================== */

@media (max-width: 1100px) {

  .hero-inner  { gap: 2rem; }
  .hero-title  { font-size: clamp(1.9rem, 4vw, 2.8rem); }
  .hero-dashboard { max-width: 46%; }

  .pourquoi-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .temo-grid     { grid-template-columns: repeat(2, 1fr) !important; }
  .stories-kpis  { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-grid     { grid-template-columns: repeat(2, 1fr) !important; }
}


/* =====================================================================
   3. MOBILE — max 768px
   ===================================================================== */

@media (max-width: 768px) {

  /* -----------------------------------------------------------------
     3.1  NAVIGATION — menu plein ecran
     ----------------------------------------------------------------- */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: #1a2422;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 9500;
    padding: 5rem 2rem 3rem;
    list-style: none;
    margin: 0;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li   { text-align: center; width: 100%; }
  .nav-links a    {
    font-size: 1.2rem; font-weight: 500; color: #fff;
    padding: .6rem 1.5rem; display: block;
    text-decoration: none; transition: opacity .2s;
  }
  .nav-links a:hover { opacity: .7; }
  .nav-links .nav-cta {
    margin-top: .5rem;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 4px;
    padding: .75rem 2rem;
    display: inline-block;
    background: transparent;
  }
  .nav-dark  .nav-burger span { background: #fff; }
  .nav-cream .nav-burger span { background: #1a2422; }
  .nav-burger { z-index: 10000; }


  /* -----------------------------------------------------------------
     3.2  CONTENEURS + TYPOGRAPHIE
     ----------------------------------------------------------------- */
  .wrap,
  .hero-inner, .logos-inner, .enjeux-inner,
  .pourquoi-inner, .temo-inner, .footer-inner,
  .page-header-inner, .contact-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  section { padding-top: 3rem; padding-bottom: 3rem; }

  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.2; }
  h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); line-height: 1.25; }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  p  { font-size: 1rem; line-height: 1.65; }

  .btn {
    padding: .75rem 1.5rem; font-size: .95rem;
    white-space: normal; text-align: center;
  }

  /* Label centré sur mobile (pages intérieures) */
  .label { justify-content: center; }

  /* Nav mobile : lien actif en blanc (pas noir sur charcoal) */
  .nav-links a.active { color: #fff !important; }


  /* -----------------------------------------------------------------
     3.3  HOME — Hero
     ----------------------------------------------------------------- */
  .hero { min-height: auto; padding: 4rem 1.25rem 2.5rem; }
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-left    { max-width: 100%; }
  .hero-title   { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .hero-sub     { font-size: 1rem; max-width: 520px; margin: 0 auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: .75rem; }
  .hero-stats   { justify-content: center; flex-wrap: wrap; gap: 1.25rem 2rem; }
  .hero-dashboard { display: none; }


  /* -----------------------------------------------------------------
     3.4  HOME — Logos references
     ----------------------------------------------------------------- */
  .logos       { padding: 2.5rem 1.25rem; }
  .logos-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0.5rem 0;
  }
  .logos-lbl { text-align: center; }
  .logos-sep { display: none; }
  .logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1rem;
  }
  .logo-c { font-size: 12px; }

  /* Bloc "référencé auprès des plus grands" (green-pale, inline styles) */
  body > div[style*="background:var(--green-pale)"] {
    padding: 2rem 1.25rem !important;
  }
  body > div[style*="background:var(--green-pale)"] > div {
    gap: 1rem !important;
    padding: 0.5rem 0 !important;
  }
  .reass-logo {
    margin: 0.25rem !important;
  }


  /* -----------------------------------------------------------------
     3.5  HOME — Section enjeux
     ----------------------------------------------------------------- */
  .section-enjeux { padding: 2.5rem 1.25rem; }
  .enjeux-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .enjeux-left  { max-width: 100%; text-align: center; }
  .enjeux-left h2,
  .enjeux-left > p,
  .enjeux-left .label { text-align: center; }
  .enjeu { text-align: left; }

  /* Urgence box (colonne droite) → pleine largeur */
  .urgence-box { padding: 2rem 1.25rem; border-radius: 12px; }
  .urgence-nums { grid-template-columns: 1fr 1fr !important; gap: 16px; }


  /* -----------------------------------------------------------------
     3.6  HOME — Section profils scroll
     ----------------------------------------------------------------- */
  .section-profils { padding: 2.5rem 1.25rem; }
  .profils-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .profils-header p { text-align: center; }
  .profils-scroll {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }


  /* -----------------------------------------------------------------
     3.7  HOME — Section pourquoi + Raly strip
     ----------------------------------------------------------------- */
  .section-pourquoi { padding: 2.5rem 1.25rem; }
  .pourquoi-header {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .pourquoi-header h2 { margin-bottom: .5rem; }
  .pourquoi-header p  { margin-top: 0; }
  .pourquoi-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
  .pourquoi-item { padding: 1.25rem; border-radius: 12px; }
  .pourquoi-item:first-child,
  .pourquoi-item:last-child { border-radius: 12px; }

  .raly-strip {
    flex-direction: column;
    padding: 2rem 1.25rem;
    text-align: center;
    gap: 1.5rem;
  }
  .raly-strip p { max-width: 100%; }
  .raly-strip-services {
    justify-content: center;
    gap: .5rem;
  }
  .raly-srv { font-size: 11px; padding: 6px 12px; }


  /* -----------------------------------------------------------------
     3.8  HOME — Temoignages + CTA
     ----------------------------------------------------------------- */
  .section-temo { padding: 2.5rem 1.25rem; }
  .temo-grid  { grid-template-columns: 1fr !important; gap: 1.25rem; margin-top: 2rem; }
  .temo-card  { padding: 1.25rem; }

  .section-cta { padding: 2.5rem 1.25rem; }
  .section-cta .wrap { text-align: center; padding: 2rem 0; }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cta-btns .btn { width: 100%; max-width: 280px; text-align: center; }


  /* -----------------------------------------------------------------
     3.9  HOME — Situations (si visible)
     ----------------------------------------------------------------- */
  .situations-section { padding: 3rem 1.25rem; }
  .situations-header { grid-template-columns: 1fr !important; gap: 1rem; }
  .situations-grid   { grid-template-columns: 1fr !important; gap: 1rem; }
  .sit-card { padding: 1.5rem; }


  /* -----------------------------------------------------------------
     3.10  PAGE HEADER — toutes pages interieures
     ----------------------------------------------------------------- */
  .page-header {
    padding: calc(68px + 1rem) 1.25rem 2rem;
  }
  .page-header-inner {
    text-align: center;
    padding-top: 2rem;
  }
  .page-header .label {
    display: none;
  }
  .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .page-header p   { font-size: 1rem; text-align: center; }
  /* Page-header pleine hauteur (Nos profils) : remonter le H1 sur mobile */
  section.page-header[style*="min-height:100vh"] {
    min-height: auto !important;
    align-items: flex-start !important;
  }


  /* -----------------------------------------------------------------
     3.11  PAGE PROFILS
     ----------------------------------------------------------------- */
  .profils-sectors-header {
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
  }
  .psh-tags {
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
  }
  .psh-tag { font-size: .8rem; }

  /* Masquer la carte SVG D3 */
  #profils-map svg { display: block !important; max-width: 280px !important; height: auto !important; margin: 0 auto !important; }
  #profils-map {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  /* Cartes profils : forcer affichage en liste centree */
  .profil-tile-new,
  .profil-sec-tile {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: calc(100% - 2.5rem) !important;
    max-width: 400px !important;
    margin: 0 auto 1rem !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .profil-tile-stags { flex-wrap: wrap; gap: .3rem; }
  .profil-tile-missions { flex-wrap: wrap; gap: .3rem; }
  .pstag, .ptm { font-size: .75rem; }

  /* Containers parents des tiles : flux normal */
  .page-header ~ div:not(.section-cta):not(footer):not(#wb-container):not(.img-lightbox-overlay):not([style*="border-top:1px solid"]) {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
    width: 100% !important;
    padding: 0 1.25rem !important;
  }

  /* Profils complets (page profils-full) */
  .profil-row {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 2rem 0;
  }
  .profil-row-left { position: static; }
  .missions-grid { grid-template-columns: 1fr !important; }


  /* -----------------------------------------------------------------
     3.12  PAGE REFERENCES
     ----------------------------------------------------------------- */

  /* Chiffres cles KPI */
  .stories-kpis {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }

  /* Cas emblematiques : 1 par ligne */
  .ref-feat-card { width: 100%; margin-bottom: 1.5rem; }
  .ref-feat-top  { flex-wrap: wrap; gap: .5rem; }
  .ref-feat-metas { flex-wrap: wrap; gap: .5rem; }
  /* KPIs des cartes : rester en ligne pour compacite */
  .ref-feat-results {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  /* Filtres : masquer "Type", afficher "Secteur" avec label au-dessus */
  .ref-fp ~ span { display: none !important; }
  .ref-fp ~ span ~ .ref-fp { display: none !important; }
  .ref-fp {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 11px;
    padding: 6px 12px !important;
  }
  /* Container filtres : wrap + label Secteur en pleine largeur */
  body [style*="border-top:1px solid"] {
    flex-wrap: wrap !important;
    padding: 12px 1.25rem !important;
    gap: 8px !important;
  }
  body [style*="border-top:1px solid"] > span:first-child {
    width: 100% !important;
    display: block !important;
    margin-bottom: 4px !important;
  }

  /* Tableau : scroll horizontal natif (ne pas casser le layout table) */
  .ref-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* FAQ */
  .faq-list      { gap: .75rem; }
  .faq-item-full { padding: 1rem; }
  .faq-q-full    { font-size: 1rem; }
  .faq-a-full    { font-size: .95rem; }

  /* Stories section */
  .story {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 2rem 0;
  }
  .story-results { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }


  /* -----------------------------------------------------------------
     3.13  PAGE COMMENT CA MARCHE
     ----------------------------------------------------------------- */

  /* Etapes : 1 par ligne (parent grid/flex → block) */
  /* Parent a des inline styles JS: style="display:grid;grid-template-columns:repeat(4,1fr)" */
  /* On cible via attribute selector + !important pour surcharger l'inline */
  body [style*="grid-template-columns:repeat(4"] {
    display: block !important;
  }
  .process-step {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    padding: 0 1rem !important;
  }
  .ps-num { margin: 0 auto 1rem; }
  .process-step img,
  .process-step svg {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Echanges + Coût : parents ont inline style="display:grid;grid-template-columns:1fr 1fr" */
  body [style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
  body [style*="grid-template-columns:1fr 1fr"] > div {
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }
  /* "Déployé partout en France" : inline grid 1fr 320px → block */
  body [style*="grid-template-columns:1fr 320px"] {
    display: block !important;
  }
  body [style*="grid-template-columns:1fr 320px"] > div {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  /* Profil-sec-tile : espacement interne */
  .profil-sec-tile {
    padding: 1.25rem !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .profil-sec-tile h4 { margin-bottom: .5rem; }
  .profil-sec-tile p { line-height: 1.65; }

  .exch-item-full {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }


  /* -----------------------------------------------------------------
     3.14  PAGE PROBLEMATIQUES DAF / BLOG
     ----------------------------------------------------------------- */

  /* Onglets / filtres : pills wrapping (pas de scroll) */
  .blog-filters,
  [role="tablist"],
  nav[class*="tab"],
  div[class*="tab-nav"],
  div[class*="tab-bar"],
  div[class*="tabs-nav"] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding-bottom: .5rem;
  }
  .bfp,
  [role="tab"],
  [class*="tab-item"],
  [class*="tab-btn"] {
    font-size: .8rem;
    padding: 8px 14px;
    border-radius: 20px;
  }

  /* Articles : 1 par ligne */
  .blog-grid       { grid-template-columns: 1fr !important; gap: 1rem; }
  .blog-featured   { grid-template-columns: 1fr !important; gap: 1rem; }
  .blog-body       { padding: 0 1.25rem 3rem; }

  /* Espacement filtres / "Tous nos articles" / grille */
  .blog-filters { margin-bottom: 2rem; }
  .blog-section-label,
  .blog-grid-lbl {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
  }

  /* Newsletter : champ email + bouton en colonne */
  .newsletter-strip {
    flex-direction: column;
    padding: 2rem 1.25rem;
    text-align: center;
    gap: 1.5rem;
  }
  .newsletter-strip h3 { max-width: 100%; }
  .newsletter-form {
    flex-direction: column;
    gap: .75rem;
    width: 100%;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }

  /* Article page */
  .art-page { padding: 80px 1.25rem 3rem; }
  .art-content img { max-width: 100%; }


  /* -----------------------------------------------------------------
     3.15  PAGE CONTACT
     ----------------------------------------------------------------- */
  .contact-page {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .contact-left-panel {
    width: 100%;
    padding: 3rem 1.25rem;
  }
  .contact-left-panel h1,
  .contact-left-panel h2 {
    color: #ffffff;
  }
  .contact-right-panel {
    width: 100%;
    padding: 2rem 1.25rem;
  }
  .contact-engages { gap: 1rem; }
  .frow { grid-template-columns: 1fr; gap: 1rem; }
  .fg   { width: 100%; }
  .fg input, .fg select, .fg textarea { width: 100%; font-size: 1rem; }
  .fg textarea { min-height: 120px; }
  .urgence-tick { flex-wrap: wrap; gap: .5rem; }


  /* -----------------------------------------------------------------
     3.16  FOOTER — toutes pages
     ----------------------------------------------------------------- */
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer-col    { text-align: center; }
  .footer-col ul { padding-left: 0; list-style: none; }
  .footer-logo   { text-align: center; }
  .footer-logo-sub { text-align: center; }
  .footer-raly   { text-align: center; }
  .footer-desc {
    text-align: center;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
  }


  /* -----------------------------------------------------------------
     3.17  WIDGET "ETRE RAPPELE"
     ----------------------------------------------------------------- */
  #wb-container {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    max-width: calc(100vw - 2rem);
    width: min(300px, calc(100vw - 2rem));
  }
  #wb-panel { padding: 1rem; }


  /* -----------------------------------------------------------------
     3.18  DEBORDEMENT HORIZONTAL
     ----------------------------------------------------------------- */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}


/* =====================================================================
   4. PETIT MOBILE — max 480px
   ===================================================================== */

@media (max-width: 480px) {

  .wrap,
  .hero-inner, .logos-inner, .enjeux-inner,
  .pourquoi-inner, .temo-inner, .footer-inner,
  .page-header-inner, .contact-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 { font-size: clamp(1.5rem, 9vw, 1.9rem); }
  h2 { font-size: clamp(1.2rem, 6vw, 1.5rem); }

  .hero       { padding: 3.5rem 1rem 2rem; }
  .hero-title { font-size: clamp(1.5rem, 9vw, 2rem); }
  .hero-stats { gap: 1rem 1.5rem; }

  .btn { padding: .7rem 1.25rem; font-size: .9rem; }
  .cta-btns .btn { max-width: 100%; }

  .logos-row { gap: .5rem .75rem; }
  .logo-c    { font-size: 10px; }

  .raly-srv { font-size: 10px; padding: 5px 10px; }

  .stories-kpis { grid-template-columns: 1fr !important; }

  footer { padding: 2rem 1rem 1rem; }

  #wb-container {
    width: calc(100vw - 2rem);
    right: 1rem;
    left: 1rem;
  }
}

/* =====================================================================
   CORRECTIFS CIBLES — basés sur inspection PHP templates
   ===================================================================== */

@media (max-width: 768px) {

  /* Cas emblematiques : 3 colonnes inline → 1 colonne */
  div[style*="repeat(3,1fr)"] {
    display: block !important;
    padding: 0 1.25rem 1.5rem !important;
  }
  .ref-feat-card { margin-bottom: 1.5rem; }

  /* Filtres ref : cacher Type, garder Secteur */
  span[style*="margin-left:12px"] { display: none !important; }
  button[onclick*="type"] { display: none !important; }

  /* Drawer : pleine largeur mobile */
  #stories-drawer {
    width: 100vw !important;
    top: 0 !important;
  }
  /* Header drawer : espace sous la nav */
  #stories-drawer > div:first-child {
    padding-top: 48px !important;
  }

  /* Profil-sec-tile (autres profils) : texte en lignes */
  .profil-sec-tile {
    display: block !important;
    width: calc(100% - 2.5rem) !important;
    max-width: 400px !important;
    margin: 0 auto 1rem !important;
    padding: 1.5rem !important;
  }
  .profil-sec-tag {
    display: block !important;
    margin-bottom: 0.25rem !important;
  }

  /* Deploye partout en France : block + centre */
  div[style*="1fr 320px"] {
    display: block !important;
    padding: 2rem 1.25rem 2.5rem !important;
  }
  div[style*="1fr 320px"] > div {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  /* Bloc reassurance green-pale : espacement interne */
  div[style*="background:var(--green-pale)"] {
    padding: 2.5rem 1.25rem 2rem !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    text-align: left !important;
  }
  div[style*="background:var(--green-pale)"] > div {
    text-align: left !important;
  }
  div[style*="background:var(--green-pale)"] > a {
    margin: 0.5rem 0 1rem !important;
  }
  .reass-logo { margin: 0.25rem !important; }

  /* Problematiques DAF : espacement filtres / articles */
  .blog-filters { margin-bottom: 2rem !important; }
  .blog-section-label {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    padding-top: 1rem !important;
  }

  /* Section profils home : centrer intro */
  .profils-header p { text-align: center !important; }

  /* Comment ca marche : grids inline → block */
  div[style*="repeat(4,1fr)"] { display: block !important; }
  div[style*="grid-template-columns:1fr 1fr"] { display: block !important; }
  div[style*="grid-template-columns:1fr 1fr"] > div {
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }



  /* Deploye : cacher la liste des villes, montrer la carte */
  div[style*="1fr 320px"] > div:first-child > div:last-child {
    display: none !important;
  }
  #profils-map {
    text-align: center !important;
    padding: 1.5rem 0 2rem !important;
  }

  /* Reassurance : bulles sous leur categorie */
  div[style*="green-pale"] div[style*="align-items:center;gap:8px"] {
    flex-wrap: wrap !important;
  }
  div[style*="green-pale"] div[style*="align-items:center;gap:8px"] > span:first-child {
    width: 100% !important;
    margin-bottom: 4px !important;
    text-align: left !important;
  }

}


/* === ESPACEMENT BLOCS PROFILS === */
@media (max-width: 768px) {
  /* Deploye : espace haut (avant label Couverture) */
  div[style*="1fr 320px"] .label {
    margin-top: 2rem !important;
  }
  /* Deploye : espace bas (apres carte France) */
  #profils-map {
    margin-bottom: 2rem !important;
  }

  /* Reassurance : espace haut (avant titre) */
  div[style*="green-pale"] > div:first-child {
    padding-top: 1.5rem !important;
  }
  /* Reassurance : espace bas (apres lien) */
  div[style*="green-pale"] > a:last-child {
    margin-bottom: 2rem !important;
    display: block !important;
    padding-bottom: 0.5rem !important;
  }

  /* Reassurance : bulles en flux continu wrapping */
  div[style*="green-pale"] div[style*="flex-direction:column"] {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
  }
  /* Les sous-divs deviennent transparentes, bulles remontent dans le flux parent */
  div[style*="green-pale"] div[style*="align-items:center"] {
    display: contents !important;
  }

  /* Cacher les labels categorie (Industrie, Luxe, Energie) mais garder les bulles */
  div[style*="green-pale"] div[style*="align-items:center"] > span:not(.reass-logo) {
    display: none !important;
  }

  /* Comment ca marche : centrer les bulles secteurs (structure plate, sans flex-direction:column) */
  div[style*="green-pale"] > div[style*="flex-wrap:wrap"] {
    justify-content: center !important;
  }
}


/* === REFERENCES PAGE FIXES === */
@media (max-width: 768px) {
  .ref-feat-top { display: block !important; }
  .ref-feat-card { text-align: left !important; }
  .ref-feat-sect { text-align: left !important; display: block !important; }
  .ref-feat-sect { padding: 0 !important; background: transparent !important; }
  .ref-feat-type { text-align: left !important; }
  .ref-feat-title { text-align: left !important; }
  .ref-feat-metas { justify-content: flex-start !important; }
  div[style*="border-top:1px solid"] { padding: 2rem 1.25rem 2rem !important; gap: 8px !important; margin-bottom: 1.5rem !important; }
  #stories-drawer { width: 100vw !important; left: 0 !important; right: 0 !important; }
  #stories-drawer > div:first-child { padding-top: 100px !important; padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  #stories-drawer #dr-body { padding: 1.5rem 1.25rem !important; }
}


/* === FIXES FINAUX REFERENCES === */
@media (max-width: 768px) {
  /* Bouton retour drawer : style blog */
  .drawer-back {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #f67728 !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    margin-bottom: 16px !important;
  }

  /* Cas emblematiques : forcer text-align left sur tout le contenu */
  div[style*="repeat(3,1fr)"] .ref-feat-card,
  div[style*="repeat(3,1fr)"] .ref-feat-card * {
    text-align: left !important;
  }
  div[style*="repeat(3,1fr)"] .ref-feat-results,
  div[style*="repeat(3,1fr)"] .ref-feat-results * {
    text-align: center !important;
  }
  div[style*="repeat(3,1fr)"] .ref-feat-cta {
    text-align: right !important;
  }
}


/* === CTA flottant : bulle ronde icone seule === */
#wb-btn > span {
  display: none !important;
}
#wb-btn {
  padding: 12px !important;
  gap: 0 !important;
}

@media (max-width: 768px) {
  #wb-container {
    width: auto !important;
    right: 1rem !important;
    left: auto !important;
  }
}
/* ================================================================
   RESPONSIVE STANDARDS — Ajout 2026-05-19
   ----------------------------------------------------------------
   Alignement sur les breakpoints standards 2026 (Tailwind / Bootstrap 5).
   Couvre 320px → grands écrans (≥1536px / 2K / 4K).

   À placer EN FIN du fichier assets/css/style.css uniquement.
   ================================================================ */


/* ──────────────────────────────────────────────────────────────
   @. VARIABLES CSS MANQUANTES (bug du thème)
   --gap et --max-w utilisées dans .art-page, .blog-ext-header,
   .blog-seo-intro mais jamais définies → padding latéral nul sur
   les pages articles. Définies ici.
   ────────────────────────────────────────────────────────────── */
:root {
  --gap: 1.25rem;
  --max-w: 780px;
}


/* ──────────────────────────────────────────────────────────────
   A. POLICES GLOBALES — Tailles lisibles minimum (toutes largeurs)
   ────────────────────────────────────────────────────────────── */
.logo-sub        { font-size: 11px !important; }
.hero-pill       { font-size: 13px !important; }
.nav-cta         { font-size: 14px !important; }
.hero-stat-l     { font-size: 13px !important; }
.profil-baseline { font-size: 13px !important; }
.footer-logo-sub { font-size: 11px !important; }

/* Contact page : H1 du panel noir reste blanc à toutes largeurs +
   taille calibrée (le H1 standard à 44-88px est trop gros pour la
   phrase "Une situation urgente mérite une réponse rapide") */
.contact-left-panel h1 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  line-height: 1.2 !important;
}

/* Contact page (desktop) : ne pas centrer verticalement le contenu
   du panel gauche (sinon trop d'espace au-dessus du label).
   Le contenu commence en haut, juste sous le padding du panel.
   L'iframe Typeform créée par défaut à 500px doit prendre toute la
   hauteur dispo pour matcher la colonne gauche. */
@media (min-width: 1025px) {
  .contact-left-panel {
    justify-content: flex-start !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }
  .contact-right-panel [data-tf-live] {
    height: 100% !important;
    min-height: 700px;
  }
  .contact-right-panel [data-tf-live] iframe {
    height: 100% !important;
    min-height: 700px !important;
  }
}

/* Tablet (768-1024) : iframe Typeform 700px de haut */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-right-panel [data-tf-live] {
    min-height: 700px;
  }
  .contact-right-panel [data-tf-live] iframe {
    height: 700px !important;
    min-height: 700px !important;
  }
}

/* Mobile (< 768) : iframe Typeform 600px */
@media (max-width: 767px) {
  .contact-right-panel [data-tf-live] {
    min-height: 600px;
  }
  .contact-right-panel [data-tf-live] iframe {
    height: 600px !important;
    min-height: 600px !important;
  }
}



/* ──────────────────────────────────────────────────────────────
   B. FIX BUG — .logos-row déborde entre 769 et 1100px
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .logos-row {
    flex-wrap: wrap !important;
    gap: 1rem 1.5rem !important;
  }
}


/* ──────────────────────────────────────────────────────────────
   C. MOBILE + TABLETTE (≤ 1024px = jusqu'à iPad Pro portrait)
   - Widget hero dashboard caché
   - Hero/page-header : auto-height (pas de 100vh forcé)
   - Hero : 1 colonne centré, espacements aérés
   - Polices remontées
   - Page Contact : 1 colonne, formulaire pleine largeur,
     H1 masqué visuellement (préservé pour A11y/SEO)
   - Touch targets ≥ 44px
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Hero */
  .hero-dashboard {
    display: none !important;
  }
  .hero,
  section.page-header[style*="min-height:100vh"],
  section.page-header[style*="min-height: 100vh"] {
    min-height: auto !important;
    align-items: flex-start !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem !important;
  }
  .hero-left,
  .hero-content {
    max-width: 100% !important;
  }
  .hero-sub {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 520px !important;
    font-size: 17px !important;
  }
  .hero-pill {
    font-size: 14px !important;
  }
  .hero-stat-l {
    font-size: 14px !important;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* Page Contact : 1 colonne, formulaire pleine largeur.
     Le bloc noir lui-même commence en haut (collé à la nav),
     mais le contenu interne garde un padding pour l'air autour
     du label "PARLONS DE VOTRE BESOIN". */
  .contact-page {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 0 !important;   /* bloc noir collé au haut */
  }
  .contact-left-panel {
    width: 100% !important;
    padding: 72px 1.25rem 2rem !important;  /* 68px nav + 4px air en haut */
  }
  .contact-right-panel {
    width: 100% !important;
    padding: 2rem 1.25rem !important;
  }
  /* Note : le H2 "Contactez Raly Conseils..." a été supprimé du
     template page-contact.php. Plus rien à cacher ici. */

  /* Touch targets ≥ 44×44 */
  .btn,
  .nav-cta {
    min-height: 44px;
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-burger {
    width: 44px;
    height: 44px;
    padding: 11px !important;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }
}


/* ──────────────────────────────────────────────────────────────
   C-bis. Contact : 4 points de réassurance en grille 2x2
   sur tablette (480-1024). Pile verticale en dessous (vrai mobile).
   ────────────────────────────────────────────────────────────── */
@media (min-width: 480px) and (max-width: 1024px) {
  .contact-engages {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}


/* ──────────────────────────────────────────────────────────────
   D. PROGRESSION H1 — Lisser le saut entre 1100 et 1280
   ────────────────────────────────────────────────────────────── */
@media (min-width: 1025px) and (max-width: 1279px) {
  .hero-title,
  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  }
}

@media (min-width: 1280px) and (max-width: 1535px) {
  .hero-title,
  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
}


/* ──────────────────────────────────────────────────────────────
   E. BREAKPOINT 1536px+ — Grands écrans (2K, 4K, ultrawide)
   ────────────────────────────────────────────────────────────── */
@media (min-width: 1536px) {
  .wrap,
  .hero-inner,
  .logos-inner,
  .pourquoi-inner,
  .temo-inner,
  .footer-inner,
  .page-header-inner,
  .contact-page {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title,
  .hero h1 {
    font-size: clamp(3.5rem, 4.5vw, 5rem);
  }
}


/* ────────────────────────────────────────────────────────────────
   FIN — RESPONSIVE STANDARDS 2026-05-19
   ──────────────────────────────────────────────────────────────── */


/* ────────────────────────────────────────────────────────────────
   LOGO IMAGES — Ajout 2026-05-23
   Logos PNG (nav et footer) — remplacent l'ancien logo texte.
   logo-light.png  → fond crème (nav par défaut)
   logo-dark.png   → fond charcoal (footer + nav des pages dark)
   ──────────────────────────────────────────────────────────────── */

/* Logo dans la nav (desktop) */
.logo-img {
  display: block;
  height: 45px;
  width: auto;
  max-width: 220px;
}

/* Logo dans le footer (desktop) */
.footer-logo-img {
  display: block;
  height: 70px;
  width: auto;
  max-width: 280px;
  margin-bottom: 16px;
}

/* Tablette / mobile : versions plus compactes */
@media (max-width: 768px) {
  .logo-img {
    height: 38px;
    max-width: 180px;
  }
  .footer-logo-img {
    height: 56px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}
