/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #08122e; /* bleu nuit utilisé déjà sur le site */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
}

.logo-af,
.logo-title,
.hero-badge,
.btn-primary,
.btn-secondary,
.btn-header-support {
  font-family: 'Inter', system-ui, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Conteneur */
.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header fixe */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  z-index: 1000;
  min-height: 70px;
}

main {
  padding-top: 80px; /* laisse la place au header fixe sur ordinateur */
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

/* Logo */
.logo-zone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-af {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #080886;/* bleu */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-weight: 700;
  color: #080886;/* bleu */
}

.logo-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F68514; /* Orange */
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.mobile-menu-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}

.nav-link {
  padding: 6px 0;
  color: #08122e; /* bleu */
}

.main-nav .nav-link {
  padding: 6px 14px;
  border-radius: 999px;
  color: #08122e;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.main-nav .nav-link.active {
  font-weight: 600;
  background-color: #e4f0c7; /* petit fond vert pâle */

}

/* Bouton header Soutenir */
.btn-header-support {
  background-color: #F68514;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-header-support .heart {
  font-size: 14px;
}

/* Hero (bloc de tête) */
.hero-section {
  padding-top: 100px; /* pour laisser la place au header fixe */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #fffdf5 0%, #f7fbff 100%);
}
/* Accueil - cartouche haut */
.hero-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge-green {
  background-color: #8ad140; /* vert */
  color: #08122e; /* bleu */
}

.hero-badge-white {
  background-color: #ffffff; /* blanc */
  color: #08122e;
}

.accent-strong {
  color: #F68514;
  font-weight: 800;
  font-style: italic;
}

.hero-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #f3df84;
  border-radius: 22px;
  padding: 16px 18px;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(246, 133, 20, 0.10);
}

.hero-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background-color: #f4b41a; /* jaune */
  color: #08122e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(244, 180, 26, 0.22);
}

.hero-info-box .intro-strong {
  margin-bottom: 0;
  color: #080886;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 700;
}
.hero-quote.under-image {
  margin-top: 10px;
  padding: 16px 20px;
  border-left: none;
  border-radius: 0 0 18px 18px;
  text-align: center;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #08122e;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text .accent {
  color: #F68514;
}

.hero-text .intro {
  margin-bottom: 12px;
}

.hero-text .intro-strong {
  margin-bottom: 20px;
  font-weight: 600;
}

/* Boutons principaux */
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #080886;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.btn-secondary {
  background-color: #ffffff;
  color: #080886;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #080886;
}

/* Citation */
.hero-quote {
  margin-top: 10px;
  padding: 12px 16px;
  background-color: #ffffff;
  border-left: 4px solid #F68514;
  border-radius: 12px;
  font-weight: 600;
}

/* Variante sous l’image : centrée */
.hero-quote.under-image {
  margin-top: 8px;
  border-left: none;
  border-radius: 0 0 18px 18px;
  text-align: center;
 font-size: 14px;      /* taille un peu réduite */
}

/* Image héros */
.hero-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section Nos actions */
.section-actions {
  padding: 60px 0 70px;
  background-color: #f8fafc; /* vert pale */
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background-color: #e4f0c7;
  color: #080886;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-actions h2 {
  font-size: 30px;
  margin-bottom: 48px;
}

.section-intro {
color: #080886;
margin-bottom: 72px;
}

.projects-eligible-intro {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 15px;
  color: #4b5563;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.action-card {
  background-color: #fff5e9; /* gris très clair au lieu de blanc pur */
  border-radius: 24px;
  padding: 24px 24px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background-color: #e4f0c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.action-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.action-card p {
  font-size: 14px;
  color: #4b5563;
}

/* Section enjeu - nouvelle composition */
.enjeu-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.enjeu-col-media {
  position: relative;
  top: -78px;
}

.enjeu-stat-bar {
  margin-top: 22px;
  border-radius: 32px;
  padding: 28px 26px 30px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  min-height: 220px;
}

.enjeu-stat-bar-dark {
  background-color: rgba(255, 255, 255, 0.24);
  color: #08122e;
}

.enjeu-stat-bar-green {
  background-color: #e4f0c7;
  color: #08122e;
}

.enjeu-bar-visual {
  width: 68px;
  border-radius: 22px 22px 14px 14px;
  flex-shrink: 0;
  align-self: flex-end;
}

.enjeu-bar-30 {
  height: 112px;
  background-color: #0b153a;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.enjeu-bar-87 {
  height: 170px;
  background-color: #8ad140;
  border: 2px solid rgba(246, 133, 20, 0.18);
}

.enjeu-chiffre {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 10px;
}
.enjeu-stat-bar .enjeu-legende {
  font-size: 15px;
  line-height: 1.55;
  max-width: 420px;
}

/* Section Newsletter */
.section-newsletter {
  padding: 70px 0 60px;
  background-color: #ffffff;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: #0b153a;
  border-radius: 42px;
  padding: 42px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(11, 21, 58, 0.28);
}

.newsletter-grid::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138,209,64,0.18) 0%, rgba(138,209,64,0) 70%);
  pointer-events: none;
}

.newsletter-grid::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(246,133,20,0.18) 0%, rgba(246,133,20,0) 70%);
  pointer-events: none;
}

.newsletter-block h2,
.newsletter-text,
.newsletter-note {
  position: relative;
  z-index: 1;
}

.newsletter-block h2 {
  color: #ffffff;
  font-size: 2rem;
}

.newsletter-text {
  color: rgba(255,255,255,0.82);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-input-wrapper {
  flex: 1;
}

.newsletter-input-wrapper input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
}

.btn-newsletter {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #8ad140; /* vert bouton */
  color: #08122e;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.newsletter-note {
  color: rgba(255,255,255,0.72);
}

/* Bloc adhésion */

.adhesion-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background-color: #f4b41a;
  color: #08122e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(244, 180, 26, 0.22);
}
.adhesion-block {
  background-color: #ffffff;
  color: #08122e;
  border-radius: 30px;
  padding: 28px 28px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  position: relative;
  z-index: 1;
}

.adhesion-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.adhesion-block p {
  font-size: 14px;
  margin-bottom: 18px;
  color: #4b5563;
}

.adhesion-btn,
.adhesion-block .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8ad140;
  color: #08122e;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
}

.adhesion-btn:hover,
.adhesion-block .btn-primary:hover {
  background-color: #74ba2d;
  color: #08122e;
}

.adhesion-highlight {
  font-size: 15px;
  line-height: 1.7;
  color: #08122e;
  background-color: #fff8ea;
  border: 1px solid #f7d6a8;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.adhesion-highlight strong {
  color: #F68514;
}

/* Pied de page */
.site-footer {
  background-color: #0b153a; /* bleu nuit */
  color: #ffffff;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 30px;
}

/* Bloc marque */
.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-logo-af {
  width: 40px;
  height: 40px;
}

.footer-brand-text {
  max-width: 260px;
}

.footer-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: #e5e7eb;
}

/* Colonnes */
.footer-heading {
  color: #8ad140; /* vert navigation / titres */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  font-size: 13px;
}

.footer-links li + li {
  margin-top: 6px;
}

.footer-links a {
  color: #e5e7eb;
}

/* Newsletter pied de page */
.footer-news-text {
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.footer-news-form {
  display: flex;
  gap: 8px;
}

.footer-news-form input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
}

.footer-news-form button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background-color: #8ad140;
  color: #08122e;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 10px;
  padding: 10px 0 14px;
  font-size: 11px;
  color: #9ca3af;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: 0;
}

.footer-bottom {
  padding-bottom: 10px;
}
/* Section Qui nous sommes */
.about-intro-band {
  width: 100%;
  background-color: #edf3e7;
  padding: 72px 20px 64px;
}

.about-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 62px;
  line-height: 1.05;
  color: #162554;
  margin-bottom: 26px;
}

.about-intro-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #58627a;
}

.section-about {
  padding: 60px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.3fr;
  gap: 40px;
  align-items: flex-start;
}

.about-top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background-color: #080886;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(26, 40, 90, 0.16);
}
/* Colonne droite (Ce qui nous guide) */
.about-right-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Bloc Incubé chez ATIS intégré */
.atis-card.inline {
  background-color: #f5f7fb;
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);

}.section-about h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-paragraph {
  margin-bottom: 12px;
  color: #080886;}

/* Bloc "Ce qui nous guide" façon post-it orange */
.about-highlight {
  position: relative;
  background: linear-gradient(135deg, #f9a43a 0%, #f68514 100%);
  border-radius: 10px 18px 14px 16px;
  padding: 28px 26px 26px;
  box-shadow:
    0 18px 30px rgba(246, 133, 20, 0.24),
    0 8px 16px rgba(15, 23, 42, 0.08);
  transform: translateX(-100px) rotate(-1.4deg);
  max-width: 420px;
  margin-left: auto;
}

/* petit morceau d’adhésif en haut */
.about-highlight::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 120px;
  height: 30px;
  background: rgba(255, 248, 220, 0.72);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* légère ombre irrégulière dessous pour effet papier */

.about-highlight::after {
  content: "";
  position: absolute;
  inset: auto 18px -10px 18px;
  height: 18px;
  background: rgba(8, 18, 46, 0.10);
  filter: blur(10px);
  z-index: -1;
  border-radius: 50%;
}

.about-highlight h3 {
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 21px;
  color: #08122e;
  margin-bottom: 14px;
}

.about-highlight ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.about-highlight li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: #08122e;
  font-weight: 700;
}

.about-highlight li:first-child {
  margin-top: 0;
}

.about-highlight li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.about-objective-card {
  margin-top: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.about-objective-card .about-paragraph {
  margin-bottom: 0;
  font-style: italic;
  color: #08122e;

}

/* Bloc Incubé chez ATIS */
.section-atis {
  padding: 20px 0 40px;
  background-color: #ffffff;
}

.atis-card {
  background-color: #f5f7fb;
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.atis-logo img {
  height: 60px;
  display: block;
}

.atis-text .atis-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 4px;
}

.atis-text p {
  margin: 0;
  font-size: 14px;
  color: #374151;
}
.about-left-column h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-left-column {
  text-align: left;
}

/* Section Notre rôle */
.section-role {
  padding: 60px 0;
  background-color: #f9fafb;
}

.role-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.section-role h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.role-text p {
  color: #08122e;
}

.role-block {
  margin-bottom: 18px;
}

.role-block h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #08122e;
}

/* Image à droite */

/* Section Publics concernés */
.section-publics {
  padding: 60px 0 70px;
  background-color: #ffffff;
}

.publics-intro {
  text-align: center;
  font-style: italic;
  color: #4b5563;
  margin-bottom: 24px;
}

.publics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.public-card {
  background-color: #f5f7fb;
  border-radius: 28px;
  padding: 26px 28px 30px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.public-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background-color: #e4f0c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 22px;
}

.public-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.public-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: #4b5563;
}

.public-card ul li + li {
  margin-top: 6px;
}
.public-card-seniors {
  /* même style de base, mais on pourra ajuster plus tard si besoin */
}

.public-icon-seniors {
  background-color: #F68514; /* orange personnes âgées */
  color: #ffffff;
}
.public-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.public-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Badge vert pour personnes handicapées */
.public-badge-handicap {
  background-color: #e4f0c7;
  color: #41502a;
}

/* Badge orange pour personnes âgées */
.public-badge-seniors {
  background-color: #F68514;
  color: #ffffff;
}
.public-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.public-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Badge vert */
.public-badge-handicap {
  background-color: #e4f0c7;
  color: #41502a;
}

/* Badge orange */
.public-badge-seniors {
  background-color: #F68514;
  color: #ffffff;
}
.public-list-handicap,
.public-list-seniors {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.public-list-handicap li,
.public-list-seniors li {
  position: relative;
  padding-left: 22px; /* espace pour la coche */
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.5;
}

/* Coche verte pour handicap */
.public-list-handicap li::before {
  content: "✔";
  color: #6aa84f; /* vert */
  position: absolute;
  left: 0;
  top: 0;
}

/* Coche orange pour seniors */
.public-list-seniors li::before {
  content: "✔";
  color: #F68514; /* orange */
  position: absolute;
  left: 0;
  top: 0;
}

/* Section Organisation & Gouvernance */
.section-gouv {
  padding: 70px 0 80px;
  background: radial-gradient(circle at top, #19244d 0%, #050a23 55%, #050a23 100%);
  color: #ffffff;
  text-align: center;
}

.gouv-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(255,255,255,0.08);
  margin-bottom: 12px;
}

.gouv-title {
  font-size: 32px;
  margin-bottom: 8px;
  color: #ffffff;
}

.gouv-subtitle {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 40px;
}

.gouv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.gouv-card {
  background-color: rgba(8, 12, 40, 0.95);
  border-radius: 30px;
  padding: 26px 28px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.gouv-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.gouv-card h3 {
  font-size: 20px;
  margin: 0;
  color: #ffffff;
}

.gouv-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.gouv-icon-green {
  background-color: #8ad140;
  color: #08122e;
}

.gouv-icon-orange {
  background-color: #F68514;
  color: #ffffff;
}

.gouv-text {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.gouv-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.gouv-tag-green {
  background-color: rgba(138, 209, 64, 0.16);
  color: #b8ff7a;
}

.gouv-tag-orange {
  background-color: rgba(246, 133, 20, 0.16);
  color: #ffd39b;
}

/* Section Aujourd'hui */
.section-today {
  padding: 70px 0 80px;
  background-color: #ffffff;
}

/* Grille 2 colonnes */
.today-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Colonne gauche */
.today-left {
  position: relative;
}

.today-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffe9d1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}

.today-title {
  font-size: 30px;
  margin-bottom: 24px;
}

.today-list {
  list-style: none;
  padding-left: 0;
}

.today-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}

.today-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #8ad140;
}

.today-list h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.today-list p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}

/* Colonne droite : carte recrutement */
.today-right-card {
  background-color: #f5f7fb;
  border-radius: 32px;
  padding: 26px 28px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  position: relative;
}

.today-right-icon-wrapper {
  position: absolute;
  top: -40px;
  right: 40px;
}

.today-right-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #F68514;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #08122e;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.today-right-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.today-right-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Bloc adresse */
.today-right-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.today-meta-icon {
  font-size: 18px;
}

.today-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: #6b7280;
}

.today-meta-value {
  font-size: 13px;
  color: #111827;
}

/* Bandeau appel à action */
.section-cta {
  padding: 70px 0 80px;
  background-color: #F68514;
  color: #ffffff;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bouton principal */
.btn-cta-primary {
  background-color: #080886;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Bouton fantôme avec effet au survol */
.btn-cta-ghost {
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Bouton fantôme : blanc vide, texte au survol */
.btn-cta-ghost {
  position: relative;
  padding: 12px 40px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #080886;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Label caché par défaut */
.btn-cta-ghost-label {
  opacity: 0;
  transform: translateY(120%);
  transition: transform 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

/* Au survol : le texte glisse et apparaît */
.btn-cta-ghost:hover .btn-cta-ghost-label {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION NOS ACTIONS – NOUVELLE VERSION */

/* Bandeau crème "Ce que nous finançons pour votre autonomie" */
.section-actions-hero {
  padding: 70px 0 60px;
  background-color: #fff3d9; /* crème proche de la maquette */
  background-image: radial-gradient(circle at 10% 20%, #fef9e7 0, transparent 55%),
                    radial-gradient(circle at 90% 80%, #fef9e7 0, transparent 55%);
}

.section-actions-hero .section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a3a3a3;
  text-align: center;
  margin-bottom: 10px;
}

.section-actions-hero .section-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 34px;
  text-align: center;
  color: #08122e;
  margin-bottom: 18px;
}

.section-actions-hero .section-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #4b5563;
  font-size: 16px;
}

/* Bloc "Projets éligibles" avec les 3 colonnes */
.section-actions-projects {
  padding: 40px 0 70px;
  background-color: #f8fafc;
}

.section-actions-projects .section-subtitle {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  text-align: center;
  margin-bottom: 26px;
  color: #08122e;
}

.section-actions-projects .actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cartes Logement / Véhicule / Aides techniques */
.section-actions-projects .action-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 26px 26px 30px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.section-actions-projects .action-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.section-actions-projects .action-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: #4b5563;
}

.section-actions-projects .action-card li + li {
  margin-top: 4px;
}

/* Pastilles icônes en haut des cartes */
.section-actions-projects .action-icon {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Couleurs différentes par catégorie (sans icône pour le moment) */
.action-icon-logement {
  background-color: #e4f0c7; /* vert pâle */
}

.action-icon-vehicule {
  background-color: #ffe1c4; /* orange pâle */
}

.action-icon-aides-techniques {
  background-color: #dbeafe; /* bleu pâle */
}

/* Icônes simples dans les pastilles (emoji pour l’instant) */
.action-icon-logement::before {
  content: "🏠";
  font-size: 24px;
}

.action-icon-vehicule::before {
  content: "🚗";
  font-size: 24px;
}

.action-icon-aides-techniques::before {
  content: "🦽"; /* ou 🛏 si tu préfères le lit médicalisé */
  font-size: 24px;
}

/* =========================
   FOCUS CONDUITE - VERSION POST-IT
   ========================= */

.section-focus-securite {
  padding: 56px 0 34px;
  background-color: #0b153a;
  color: #ffffff;
}

.focus-header {
  margin-bottom: 22px;
}

.focus-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 10px;
}

.focus-title {
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  color: #ffffff;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.focus-card {
  padding: 0;
  background: none;
  box-shadow: none;
}

.focus-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 14px;
}

.focus-card-text:last-child {
  margin-bottom: 0;
}

.focus-highlight {
  color: #f68514;
  font-weight: 700;
}

/* Colonne droite */
.focus-card-risque {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.focus-sticky {
  position: relative;
  max-width: 520px;
  padding: 18px 20px;
  border-radius: 10px 18px 14px 16px;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.22),
    0 6px 12px rgba(15, 23, 42, 0.10);
  font-size: 14px;
  line-height: 1.7;
}

.focus-sticky-orange {
  background: linear-gradient(135deg, #f8a53c 0%, #f68514 100%);
  color: #ffffff;
  transform: translateX(120px) rotate(-1deg);
}

.focus-sticky-white {
  background: #ffffff;
  color: #4b5563;
  transform: translateX(120px) rotate(1deg);
}

.focus-risk-label {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.focus-risk-label::before {
  content: "⚠ ";
}

.focus-accident-label {
  display: inline-block;
  color: #08122e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Article de loi */
.focus-article-wrap {
  margin-top: -18px;
}

.focus-article {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 880px;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #08122e;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.focus-article {
  margin-left: 0;
}

.focus-article::before {
  content: "⚖";
  font-size: 15px;
  line-height: 1;
}
/* SECTION COMMENT NOUS VOUS AIDONS (DISPOSITIFS) */

.section-dispositifs {
  padding: 70px 0;
  background-color: #f9fafb;
}

.section-dispositifs .section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7c8a9c;
  text-align: center;
  margin-bottom: 8px;
}

.section-dispositifs .section-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  color: #08122e;
}

.section-dispositifs .section-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  color: #4b5563;
  font-size: 15px;
}

/* Grille des dispositifs */
.dispositifs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* Colonne gauche : 2 cartes (Mandat + Subventions) l’une sous l’autre */
.dispositifs-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cartes dispositifs */
.dispositif-card {
  background-color: #ffffff;
  border-radius: 26px;
  padding: 22px 22px 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.dispositif-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #e4f0c7;
  color: #41502a;
  margin-bottom: 8px;
}

.dispositif-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.dispositif-card p {
  font-size: 14px;
  color: #4b5563;
}

/* Icônes rondes en haut à gauche des cartes */
.dispositif-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 20px;
}

.dispositif-icon-mandat {
  background-color: #e4f0c7;
}

.dispositif-icon-subventions {
  background-color: #ffe1c4;

}

.dispositif-icon-pret {
  background-color: #e4f0c7;
  color: #374151;

}

/* Emoji dans les icônes */
.dispositif-icon-mandat::before {
  content: "🔍";
}

.dispositif-icon-subventions::before {
  content: "❤️";
}

.dispositif-icon-pret::before {
  content: "🛡️";
}

/* Colonne gauche : tableau 2x2 (Mandat, Subventions, Info centralisée, Représentation active) */
.dispositifs-col-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Cartes dispositifs : style commun */
.dispositif-card {
  background-color: #ffffff;
  border-radius: 26px;
  padding: 22px 22px 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  height: 100%;
}

/* Icônes pour les 4 cartes */
.dispositif-icon-info {
  background-color: #dbeafe; /* bleu pâle */
}

.dispositif-icon-representation {
  background-color: #fee2e2; /* rouge très pâle */
}

.dispositif-icon-info::before {
  content: "📚";
}

.dispositif-icon-representation::before {
  content: "📢";
}

/* Titre prêt de matériel : bien lisible sur fond bleu nuit */
.dispositif-card-pret h3 {
  color: #ffffff;
}

/* Carte droite : prêt de matériel temporaire */
.dispositif-card-pret {
  background-color: #0b153a;
  color: #ffffff;
}

.dispositif-card-pret p {
  color: #e5e7eb;
}

.dispositif-card-pret .dispositif-badge.dispositif-badge-phase {
  display: inline-block;
  background-color: #d9f99d;
  color: #365314;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Bandeau petit texte sous le titre dans la carte prêt */
.dispositif-note {
  font-size: 12px;
  color: #cbd5f5;
  margin-top: 10px;
}

/* Réduction du bloc prêt de matériel (moins de vide) */
.dispositif-card-pret {
  padding: 22px 20px 26px; /* au lieu de 22 / 26 */
  max-width: 420px;       /* limite la largeur sur grand écran */
}

.dispositif-card-pret h3 {
  margin-bottom: 10px;
}

.dispositif-card-pret p {
  margin-bottom: 8px;
}

.dispositif-note {
  margin-top: 6px;
}

/* Note d'information dans le bloc prêt de matériel */
.dispositif-note {
  margin-top: 6px;
  font-size: 12px;
  font-style: italic;
  color: #9ca3af;              /* gris */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

/* Icône info avant le texte */
.dispositif-note::before {
  content: "ℹ️";
  font-size: 14px;
}

/* Au survol : tout passe en vert (même vert que le site) */
.dispositif-note:hover {
  color: #08122e;
}

/* SECTION NOTRE FAÇON DE TRAVAILLER – HOVER ICÔNES */

/* Conteneur de l’icône (actuel fond blanc) */
.work-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

/* L’icône à l’intérieur (SVG ou emoji) */
.work-icon svg,
.work-icon img,
.work-icon span {
  transition: filter 0.25s ease;
}

/* Au survol de la carte étape : fond orange + léger zoom */
.work-step:hover .work-icon {
  background-color: #F68514;   /* orange charte */
  transform: translateY(-3px);
}

/* Si l’icône est un SVG monochrome, on l’inverse en blanc */
.work-step:hover .work-icon svg {
  filter: brightness(0) invert(1);
}

/* Si tu utilises un emoji/texte, on force simplement la couleur en blanc */
.work-step:hover .work-icon span {
  color: #ffffff;
}
/* SECTION NOTRE FAÇON DE TRAVAILLER */

.section-workflow {
  padding: 70px 0;
  background-color: #ffffff;
}

.section-work-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  color: #08122e;
}

.section-work-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
  color: #4b5563;
  font-size: 15px;
}

/* Grille des 3 étapes */
.work-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Carte étape */
.work-step {
  background: radial-gradient(circle at top, #f1f5f9 0, #eef2ff 40%, #ffffff 90%);
  border-radius: 30px;
  padding: 26px 22px 28px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Conteneur d’icône */
.work-icon {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  margin-bottom: 14px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.work-icon span {
  font-size: 26px;
  transition: color 0.25s ease;
}

/* Texte des étapes */
.work-step-number {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.work-step-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.work-step-text {
  font-size: 14px;
  color: #4b5563;
}

/* Effet hover : carte + icône blanche -> orange */
.work-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.work-step:hover {
  background-color: #F68514;   /* orange charte */
  transform: translateY(-2px);
}

.work-step:hover .work-icon span {
  color: #ffffff;
}
/* BANDEAU "PRÊT À SOUTENIR UNE CAUSE CONCRÈTE ?" */

.section-call-support {
  padding: 70px 0 60px;
  background-color: #ffffff;
}

.call-support-container {
  text-align: center;
}

.call-support-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  color: #08122e;
  margin-bottom: 26px;
}

/* Zone des deux boutons */
.call-support-buttons {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Bouton ghost blanc qui devient orange */
.btn-call-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid #080886;      /* contour bleu au repos */
  background-color: #ffffff;
  color: #080886;
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease;
}

/* Texte par défaut */
.btn-call-default {
  display: inline-block;
}

/* Texte au survol (caché au repos) */
.btn-call-hover {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Effet hover : fond orange, texte blanc, apparition de "Comment nous aider" */
.btn-call-ghost:hover {
  background-color: #F68514;
  border-color: #F68514;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-call-ghost:hover .btn-call-default {
  opacity: 0;
}

.btn-call-ghost:hover .btn-call-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Bouton secondaire "Nous contacter" */
.btn-call-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #080886;
  background-color: transparent;
  color: #080886;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease;
}

.btn-call-secondary:hover {
  background-color: #080886;
  color: #ffffff;
  transform: translateY(-2px);
}
.call-support-heart {
  display: inline-block;
  margin-right: 8px;
  color: #F68514;        /* orange charte */
  font-size: 26px;
  vertical-align: middle;
}

/* SECTION IMPACT+ – BANDEAU INTRO */

.section-impact-plus-hero {
  padding: 80px 0 70px;
  background-color: #ffeede; /* crème orangé doux */
  background-image: radial-gradient(circle at 80% 20%, #fff7e6 0, transparent 55%);
  text-align: center;
}

.section-impact-plus-hero .impact-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 14px;
  border-radius: 999px;
  background-color: #0b153a;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-impact-plus-hero .impact-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 38px;
  color: #08122e;
  margin-bottom: 18px;
}

.section-impact-plus-hero .impact-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 16px;
}

/* SECTION OBJECTIF PARTENAIRES (BANDEAU JAUNE) */

.section-impact-objectif {
  padding: 40px 0 0;
  background-color: #0b153a;
}

.impact-objectif-banner {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f4b41a; /* jaune proche maquette */
  border-radius: 40px;
  padding: 26px 30px;
  text-align: center;
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  color: #08122e;
}

/* SECTION INDICATEURS & IMPACT FUTUR */

.section-impact-indicateurs {
  padding: 70px 0;
  background-color: #0b153a;
  color: #e5e7eb;
}

/* Titre bien blanc */
.section-impact-indicateurs .impact-title {
  color: #ffffff;
}

/* Sous-titre légèrement grisé */
.section-impact-indicateurs .impact-subtitle {
  text-align: center;
  margin-bottom: 36px;
  color: #08122e;
}

/* Grille des cartes indicateurs */
.indicateurs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cartes avec bordure orange au lieu de bloc bleu foncé */
.indicateur-card {
  background-color: transparent;
  border: 2px solid #F68514;          /* orange */
  border-radius: 26px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icône dans un petit rond foncé */
.indicateur-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background-color: #e4f0c7; /* vert pâle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0b153a;            /* emoji en blanc */
  flex-shrink: 0;
}
.indicateur-text {
  font-size: 14px;
  line-height: 1.5;
}

/* SECTION VALEUR AJOUTÉE */

.section-impact-valeur {
  padding: 70px 0;
  background-color: #f5fbf2; /*vert pale */
}

.section-impact-valeur .section-label {
  text-align: center;
  margin-bottom: 8px;
}

.section-impact-valeur .impact-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-impact-valeur .impact-subtitle {
  text-align: center;
  margin-bottom: 34px;
}

/* cartes valeur ajoutée */
.valeur-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.valeur-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 24px 22px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.valeur-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background-color: #e4f0c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
}

.valeur-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.valeur-text {
  font-size: 14px;
  color: #4b5563;
}

/* SECTION ENGAGEMENTS SOCIAUX INTERNES */

.section-impact-engagements {
  padding: 80px 0;
  background-color: #ffffff;
}

.engagements-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* texte + future photo */
  gap: 30px;
  align-items: center;
}

.engagements-icon-block {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background-color: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 30px;
}

.engagements-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.engagements-intro {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 18px;
}

/* liste à puces avec pastilles */
.engagements-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.engagements-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
}

.engagements-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #F68514;
}

/* SECTION EFFET DE LEVIER & ENJEUX */

.section-impact-levier {
  padding: 70px 0 80px;
  background-color: #0b153a;
  color: #ffffff;
}

.levier-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap: 26px;
}

/* bloc gauche citation */
.levier-citation {
  background: radial-gradient(circle at top left, #111827 0, #020617 60%);
  border-radius: 40px;
  padding: 32px 30px 26px;
}

.levier-icon {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background-color: #8ad140;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 28px;
}
.levier-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  margin-bottom: 16px;
  color: #8ad140; /* vert */
}

.levier-quote {
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}

.levier-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.levier-bottom-card {
  background-color: #111827;
  border-radius: 22px;
  padding: 14px 16px;
  font-size: 13px;
}

/* bloc droit enjeux de l'autonomie */
.enjeux-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  margin-bottom: 16px;
}

.enjeux-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enjeu-card {
  background-color: #f9fafb;
  border-radius: 24px;
  padding: 16px 18px;
  color: #111827;
}

.enjeu-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.enjeu-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background-color: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.enjeu-title {
  font-weight: 700;
}

.enjeu-text {
  font-size: 13px;
  color: #4b5563;
}
/* Bloc gauche "L'effet de levier" en fond vert pale */
.levier-citation {
  background: #f5fbf2; /* vert pale */
  color: #08122e; /* bleu */
  border-radius: 40px;
  padding: 32px 30px 26px;
}

/* Icône verte sur fond  */
.levier-icon {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background-color: #8ad140; /* vert */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 28px;
}

/* Cartes du bas : légèrement foncées mais lisibles sur orange */
.levier-bottom-card {
  background-color: rgba(0, 0, 0, 0.18);
  border-radius: 22px;
  padding: 14px 16px;
  font-size: 13px;
}

/* Titre "Les enjeux de l'autonomie" en vert */
.enjeux-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  margin-bottom: 16px;
  color: #8ad140; /* vert */
}
/* BANDEAU "INVESTISSEZ DANS L'AUTONOMIE..." */

.section-impact-invest {
  padding: 80px 0 70px;
  background-color: #ffffff;
  text-align: center;
}

.impact-invest-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  color: #08122e;
  margin-bottom: 30px;
}

/* Zone des boutons */
.impact-invest-buttons {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Bouton principal : plein bleu nuit */
.btn-impact-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background-color: #080886;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.20);
  transition: background-color 0.25s ease,
              transform 0.2s ease,
              box-shadow 0.25s ease;
}

.btn-impact-primary:hover {
  background-color: #F68514; /* orange */
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.28);
}

/* Bouton secondaire : ghost clair */
.btn-impact-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
  color: #08122e;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease;
}

.btn--secondary:hover {
  background-color: #F68514;
  border-color: #F68514;
  color: #ffffff;
  transform: translateY(-2px);
}
/* NOUS SOUTENIR – HÉRO PARTENARIAT */

.section-support-hero {
  padding: 90px 0 70px;
  background: radial-gradient(circle at top right, #1f2937 0, #020617 60%);
  color: #ffffff;
  text-align: center;
}

.section-support-hero .support-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 40px;
  margin-bottom: 18px;
}

.section-support-hero .support-subtitle {
  max-width: 820px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #e5e7eb;
}

/* Bouton "Échanger avec nous" */

.support-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background-color: #8ad140; /* vert */
  color: #02131b;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.support-hero-button-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #02131b;/*bleu noir*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.support-hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  background-color: #74ba2d;/*vert intense*/
}
.section-support-rse {
  padding: 70px 0;
  background-color: #f6fbe9;/*vert pâle*/
  text-align: center;
}
.section-support-rse h2 {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #08122e;
}

.section-support-rse .section-intro {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #08122e;
}
.section-support-rse .section-label {
  margin-bottom: 18px;
}

.section-support-rse .support-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #08122e;
}

.section-support-rse .support-subtitle {
  color: #4b5563;
  margin-bottom: 34px;
}
 .support-rse-list {
  margin-bottom: 18px;
  color: #08122e; /* bleu */

}


/* NOUS SOUTENIR – BLOC ENGAGEMENTS DE CONFIANCE */

.section-support-engagements {
  padding: 70px 0;
  background-color: #ffffff;
  text-align: center;
}

.section-support-engagements .section-label {
  margin-bottom: 8px;
}

.section-support-engagements .support-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #08122e;
}

.section-support-engagements .support-subtitle {
  color: #4b5563;
  margin-bottom: 34px;
}

/* 3 cartes engagements */

.engagements-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engagement-support-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 26px 24px 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.engagement-support-icon {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  background-color: #f5f7fb; /*bleu très clair*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 28px;
}

.engagement-support-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.engagement-support-card p {
  font-size: 14px;
  color: #4b5563;/*gris souris*/
}

/* NOUS SOUTENIR – COMMENT NOUS SOUTENIR (4 leviers) */

.section-support-levers {
  padding: 70px 0;
  background-color: #f9fafb;/* vert pale */
}

.section-support-levers .section-label {
  text-align: center;
  margin-bottom: 8px;
}

.section-support-levers .support-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-support-levers .support-subtitle {
  text-align: center;
  margin-bottom: 34px;
  color: #4b5563;
}

/* 4 grandes vignettes en 2 colonnes */

.support-levers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* Carte levier */

.support-lever-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 28px 28px 30px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-lever-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-lever-icon {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background-color: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.support-lever-title {
  font-size: 22px;
}

.support-lever-text {
  font-size: 14px;
  color: #4b5563;
}

/* Bouton large en bas de carte */

.support-lever-footer {
  margin-top: auto;
}

.support-lever-button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid #f3f4f6;
  background-color: #f9fafb;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #08122e;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.support-lever-button:hover {
  background-color: #F68514;
  border-color: #F68514;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Variation pour mécénat de compétences (fond très clair vert) */

.support-lever-card.skills {
  background-color: #f7fff2;
}

/* Variation pour adhésion / bulletin (fond bleu nuit) */

.support-lever-card.membership {
  background-color: #020617;
  color: #ffffff;
}

.support-lever-card.membership .support-lever-text {
  color: #e5e7eb;
}

.support-lever-card.membership .support-lever-button {
  border-color: transparent;
  background-color: #F68514;
  color: #ffffff;
}

.support-lever-card.membership .support-lever-button:hover {
  background-color: #ff8f26;
}

/* Hover orange sur les icônes - Nos engagements de confiance */

.engagement-support-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.engagement-support-icon {
  transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

/* Au survol de la carte : icône orange + léger relief */
.engagement-support-card:hover {
  transform: translateY(-8px);
  background-color: #F68514;
  color: #ffffff;
  border-color: #F68514;
  box-shadow: 0 22px 44px rgba(246, 133, 20, 0.28);
}

.engagement-support-card:hover h3,
.engagement-support-card:hover p {
  color: #ffffff;
}

.engagement-support-card:hover .engagement-support-icon {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Couleur du titre dans le héros Nous soutenir */
.section-support-hero .support-title {
  color: #8ad140; /* vert comme le bouton */
}

/* Titre "Adhérer à l’association" en orange sur la carte foncée */
.support-lever-card.membership .support-lever-title {
  color: #F68514;
}

.support-lever-card.membership .support-lever-text a {
  color: #facc15;
  text-decoration: underline;
}  
color: #facc15; /* jaune/orangé lisible sur bleu nuit */
  text-decoration: underline;
}

/* BANDEAU INFORMATION FISCALE */

.section-support-fiscal {
  padding: 40px 0 60px;
  background-color: #fef9e7;
}

.support-fiscal-banner {
  border-radius: 40px;
  background-color: #fff7e0;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.support-fiscal-icon {
  width: 64px;
  height: 64px;
  border-radius: 26px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #F68514; /* orange */
}

.support-fiscal-text h3 {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  margin-bottom: 6px;
  color: #08122e;
}

.support-fiscal-text p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}
/* Carte Information fiscale sous les 4 leviers */

.support-fiscal-card-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.support-fiscal-card {
  max-width: 700px;
  width: 100%;
}
.support-fiscal-card-wrapper {
  margin-top: 30px;
  /* on force le centrage sous la grille */
  display: flex;
  justify-content: center;
}
.support-fiscal-card {
  max-width: 700px;
  width: 100%;
}
/* Forcer la carte fiscale sur une nouvelle ligne centrée */
.support-levers-grid + .support-fiscal-card-wrapper {
  grid-column: 1 / -1;
}

/* Si jamais le wrapper est encore dans la grille, on le rend bloc plein écran */
.support-fiscal-card-wrapper {
  width: 100%;
  display: flex !important;
  justify-content: center;
}

.support-fiscal-card {
  max-width: 700px;
  width: 100%;
}
.public-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: flex-start;
}

#public {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.public-card {
  width: 100%;
}
.section-enjeu .enjeu-card.enjeu-card-dark {
  background-color: #0b153a !important;
  color: #ffffff !important;
}

.section-enjeu .enjeu-card.enjeu-card-green {
  background-color: #F68514 !important;
  color: #ffffff !important;
}

.section-enjeu .enjeu-card.enjeu-card-dark .enjeu-chiffre,
.section-enjeu .enjeu-card.enjeu-card-dark .enjeu-legende,
.section-enjeu .enjeu-card.enjeu-card-dark .enjeu-source,
.section-enjeu .enjeu-card.enjeu-card-green .enjeu-chiffre,
.section-enjeu .enjeu-card.enjeu-card-green .enjeu-legende,
.section-enjeu .enjeu-card.enjeu-card-green .enjeu-source {
  color: #ffffff !important;
}

.hero-content,
.actions-grid,
.enjeu-grid,
.newsletter-grid,
.about-grid,
.role-grid,
.publics-grid,
.footer-grid,
.gouv-grid,
.today-grid,
.focus-grid,
.dispositifs-grid,
.dispositifs-col-left,
.work-steps-grid,
.indicateurs-grid,
.valeur-grid,
.engagements-grid,
.levier-grid,
.engagements-support-grid,
.support-levers-grid {
  min-width: 0;
}

.action-card,
.public-card,
.gouv-card,
.today-right-card,
.dispositif-card,
.work-step,
.indicateur-card,
.valeur-card,
.engagement-support-card,
.support-lever-card,
.support-fiscal-card,
.levier-citation,
.enjeu-card,
.engagements-photo-placeholder {
  min-width: 0;
}

p,
h1,
h2,
h3,
h4,
li,
a,
span {
  overflow-wrap: anywhere;
  word-break: normal;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}
.section-support-engagements {
  padding: 80px 0 70px;
  background-color: #ffffff;
  text-align: center;
}

.support-engagements-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  color: #08122e;
  margin-bottom: 8px;
}

.support-engagements-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
}

.support-engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.support-engagement-card {
  background: radial-gradient(circle at top, #f4f6fb 0%, #ffffff 60%);
  border-radius: 32px;
  padding: 32px 26px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.support-engagement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 28px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.support-engagement-icon span {
  font-size: 32px;
}

.support-engagement-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #08122e;
}

.support-engagement-card p {
  font-size: 14px;
  color: #4b5563;
}

.section-support-partnership {
  padding: 90px 0 80px;
  background: radial-gradient(circle at top right, #1c2538 0%, #020617 60%);
  color: #ffffff;
  text-align: center;
}

.support-partnership-inner {
  max-width: 880px;
  margin: 0 auto;
}

.support-partnership-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 22px;
}

.support-partnership-text {
  font-size: 17px;
  color: #e5e7eb;
  margin-bottom: 40px;
}

.btn-support-partnership {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 999px;
  background-color: #8ad140;
  color: #02131b;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  transition: background-color 0.25s ease,
              transform 0.2s ease,
              box-shadow 0.25s ease;
}

.btn-support-partnership-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #02131b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.btn-support-partnership-arrow {
  font-size: 18px;
}

.btn-support-partnership:hover {
  background-color: #74ba2d;
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.section-supporters-hero {
  padding: 90px 0 70px;
  background-color: #8ad140; /* fond vert */
}

.supporters-hero-inner {
  text-align: center;
}

.supporters-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  background-color: #08122e;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.supporters-hero-title {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 16px;
}

.supporters-hero-text {
  font-size: 16px;
  color: #4b5563;
}

.section-supporters-logos {
  padding: 20px 0 90px;
  background: radial-gradient(circle at bottom left, #f9ffe8 0%, #ffffff 55%);
}

.supporters-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.supporter-logo-card {
  height: 120px;
  border-radius: 26px;
  background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supporter-logo-img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.section-supporters-call {
  padding: 60px 0 90px;
  background-color: #f9ffe8;
}

.supporters-call-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.supporter-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.18);
}

.supporter-logo-card:hover .supporter-logo-img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

/* Bulle principale */
.supporters-call-bubble {
  position: relative;
  padding: 26px 32px;
  border-radius: 32px;
  background-color: #fdfcf5;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border: 3px solid #08122e;
}

/* Queue de bulle vers la droite (vers un logo vide) */
.supporters-call-bubble::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-40%);
  width: 0;
  height: 0;
  border-width: 16px 0 16px 22px;
  border-style: solid;
  border-color: transparent transparent transparent #fdfcf5; /* fond bulle */
}

.supporters-call-bubble::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-42%);
  width: 0;
  height: 0;
  border-width: 18px 0 18px 26px;
  border-style: solid;
  border-color: transparent transparent transparent #08122e; /* contour */
}

/* Texte */
.supporters-call-text {
  font-size: 20px;
  color: #08122e;
  font-style: italic;
  text-align: center;
}

.supporters-call-cta {
  margin-top: 24px;
  text-align: center;
}

/* Bouton ghost avec jeu de couleurs */
.btn-supporters-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid #F68514;          /* contour orange */
  background-color: #ffffff;
  color: #F68514;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease,
              box-shadow 0.25s ease;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

/* Texte par défaut */
.btn-supporters-default {
  position: relative;
  z-index: 1;
}

/* Texte au survol (vert) */
.btn-supporters-hover {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  color: #02131b;
  z-index: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Fond dégradé orange -> vert qui glisse au survol */
.btn-supporters-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F68514, #8ad140);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  z-index: 0;
}

/* Effet hover */
.btn-supporters-ghost:hover {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.20);
}

.btn-supporters-ghost:hover::before {
  transform: translateY(0);
}

.btn-supporters-ghost:hover .btn-supporters-default {
  opacity: 0;
}

.btn-supporters-ghost:hover .btn-supporters-hover {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   GLOSSAIRE
========================= */

.section-glossaire {
  position: relative;
  background-color: #f9fafb;
}
.section-glossaire-hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(246,133,20,0.08) 0, transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(138,209,64,0.10) 0, transparent 30%),
    linear-gradient(135deg, #fff7e6 0%, #f8fde9 100%);
}
.section-glossaire-search {
  position: sticky;
  top: 78px;
  z-index: 50;
  padding: 18px 0;
  background: rgba(249, 250, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.section-glossaire-list {
  padding: 28px 0 70px;
  background-color: #f9fafb;
}

.section-glossaire-quote {
  padding: 72px 0 84px;
  background-color: #1a274f;
}
.glossaire-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.glossaire-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  background-color: #0b153a;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.glossaire-title {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 56px;
  line-height: 1.08;
  color: #08122e;
  margin-bottom: 18px;
}

.glossaire-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 760px;
  margin: 0 auto;
}

.section-glossaire-search {
  position: sticky;
  top: 78px;
  z-index: 900;
  padding: 18px 0 18px;
  background: rgba(249, 250, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.glossaire-search-bar {
  max-width: 680px;
  margin: 0 auto;
  height: 86px;
  border-radius: 999px;
  background-color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}

.glossaire-search-icon {
  font-size: 28px;
  color: #08122e;
  flex-shrink: 0;
}

.glossaire-search-bar input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 17px;
  color: #08122e;
}

.glossaire-search-bar input::placeholder {
  color: #b6bdc8;
}

.section-glossaire-list {
  padding: 28px 0 70px;
  background-color: #f9fafb;
}

.glossaire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.glossaire-card {
  background-color: #f5f7fb;
  border-radius: 34px;
  padding: 36px 34px 34px;
  min-height: 255px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.glossaire-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.glossaire-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background-color: #e7f3d4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.glossaire-card h3 {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 22px;
  color: #08122e;
  margin-bottom: 16px;
}

.glossaire-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
}

.section-glossaire-quote {
  padding: 72px 0 84px;
  background-color: #1a274f;
}

.glossaire-quote-inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.glossaire-quote-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background-color: #f2b90f;
  color: #08122e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transform: rotate(8deg);
}

.glossaire-quote-inner p {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.5;
  color: #ffffff;
}

/* état caché si la recherche ne correspond pas */
.glossaire-card.is-hidden {
  display: none;
}

/* =========================
   CONTACT
========================= */

.section-contact {
  background-color: #f9fafb;
}

.section-contact-hero {
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 85% 30%, rgba(138, 209, 64, 0.16) 0, transparent 26%),
    radial-gradient(circle at 15% 70%, rgba(246, 133, 20, 0.10) 0, transparent 24%),
    linear-gradient(120deg, #111a43 0%, #1d2955 55%, #243541 100%);
  color: #ffffff;
}

.contact-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

.contact-title {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 64px;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 22px;
}

.contact-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.section-contact-body {
  padding: 50px 0 80px;
  margin-top: -54px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-info {
  padding-top: 0;
}

.contact-info-title {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 28px;
  color: #08122e;
  margin-bottom: 28px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background-color: #f1f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #08122e;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #08122e;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-value {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  font-weight: 700;
}

.contact-delay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #fff8ea;
  color: #7a5b18;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin: 12px 0 28px;
}

.contact-note {
  background: linear-gradient(135deg, #fff1dc 0%, #ffe2bf 100%);
  border-radius: 34px;
  padding: 28px 28px 30px;
  box-shadow: 0 16px 40px rgba(246, 133, 20, 0.14);
}

.contact-note-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-note-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background-color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d16b00;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-note h3 {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 20px;
  color: #08122e;
  margin: 0;
}

.contact-note p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a4b37;
  margin-bottom: 14px;
}

.contact-note-strong {
  font-weight: 800;
  font-style: italic;
  color: #08122e !important;
}

.contact-note-portal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 18, 46, 0.12);
}

.contact-note-small {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 13px;
  color: #6b5b45;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 42px;
  padding: 34px 34px 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #08122e;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background-color: #f5f7fb;
  border-radius: 22px;
  padding: 20px 22px;
  font-size: 16px;
  color: #08122e;
  box-shadow: inset 0 0 0 1px rgba(8, 18, 46, 0.04);
}

.contact-field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8b95a7;
}

.contact-consent-box {
  border: 2px dashed #e3e7ef;
  border-radius: 28px;
  padding: 22px 24px;
  background-color: #fcfcfd;
}

.contact-check-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.contact-check-line input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #8ad140;
}

.contact-check-line span {
  font-size: 15px;
  line-height: 1.7;
  color: #08122e;
  font-weight: 700;
}

.contact-consent-sub {
  margin: 10px 0 0 36px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.contact-submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background-color: #1e2b56;
  color: #ffffff;
  padding: 22px 26px;
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.20);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background-color: #162247;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.24);
}

.contact-trust-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-alert-card {
  background: linear-gradient(135deg, #fff8ea 0%, #ffffff 100%);
  border-radius: 34px;
  padding: 28px 28px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  margin-bottom: 24px;
  border: 1px solid rgba(246, 133, 20, 0.14);
}

.contact-alert-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-alert-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #08122e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-alert-card h2 {
  font-size: 28px;
  margin: 0;
  color: #080886;
}

.contact-alert-text {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 20px;
}

.contact-alert-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-alert-consent {
  border-style: solid;
  border-color: rgba(8, 18, 46, 0.08);
  background-color: rgba(255, 255, 255, 0.72);
}

.contact-alert-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #08122e;
  font-weight: 700;
}

.contact-alert-btn {
  width: auto;
  align-self: flex-start;
  padding: 16px 26px;
}

.newsletter-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   MENTIONS LÉGALES - DESKTOP
   ========================= */

.section-legal {
  padding: 90px 0 90px;
  background:
    radial-gradient(circle at 12% 20%, rgba(246, 133, 20, 0.08) 0, transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(138, 209, 64, 0.10) 0, transparent 26%),
    linear-gradient(135deg, #fff8ea 0%, #f9fafb 100%);
}

.legal-hero {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.legal-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background-color: #08122e;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 18px;
}

.legal-title {
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 42px;
  line-height: 1.15;
  color: #080886;
  margin-bottom: 16px;
}

.legal-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.legal-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 30px 30px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(8, 18, 46, 0.06);
  min-height: 100%;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h3 {
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  color: #08122e;
  margin-bottom: 16px;
}

.legal-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 10px;
  max-width: none;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card strong {
  color: #08122e;
}

.legal-card a {
  color: #080886;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(8, 8, 134, 0.20);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.legal-card a:hover {
  color: #f68514;
  border-color: rgba(246, 133, 20, 0.45);
}

.footer-news-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: #8ad140;
  color: #08122e;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.footer-news-link:hover {
  background-color: #f68514;
  color: #ffffff;
}

.today-right-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

/* =========================================================
   ACTION 1 — STYLE GLOBAL DES CARTES
   Fond clair au repos / orange au survol / impression d'avancer
   À laisser en fin de fichier pour écraser les anciennes règles
========================================================= */

.action-card,
.section-actions-projects .action-card,
.dispositif-card,
.public-card,
.gouv-card,
.work-step,
.glossary-card,
.support-card,
.engagement-card,
.metric-card,
.value-card {
  background-color: #ffffff;
  color: #08122e;
  border: 1px solid rgba(8, 18, 46, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

/* Variante vert très pâle possible sur certaines cartes déjà marquées visuellement */
.public-card,
.work-step {
  background-color: #f6fbe9;
}

/* Texte interne au repos */
.action-card h3,
.action-card h4,
.action-card p,
.action-card li,
.dispositif-card h3,
.dispositif-card h4,
.dispositif-card p,
.dispositif-card li,
.public-card h2,
.public-card h3,
.public-card p,
.public-card li,
.gouv-card h3,
.gouv-card p,
.gouv-card li,
.work-step h3,
.work-step p,
.work-step li,
.glossary-card h3,
.glossary-card p,
.glossary-card li,
.support-card h3,
.support-card p,
.support-card li,
.engagement-card h3,
.engagement-card p,
.engagement-card li,
.metric-card h3,
.metric-card p,
.metric-card li,
.value-card h3,
.value-card p,
.value-card li {
  color: #08122e;
  transition: color 0.28s ease;
}

/* Effet au survol : la carte avance et devient orange */
.action-card:hover,
.section-actions-projects .action-card:hover,
.dispositif-card:hover,
.public-card:hover,
.gouv-card:hover,
.work-step:hover,
.glossary-card:hover,
.support-card:hover,
.engagement-card:hover,
.metric-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  color: #08122e;
  border: 1px solid rgba(8, 18, 46, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  background-color: #fff4e8;
  box-shadow: 0 22px 44px rgba(246, 133, 20, 0.16);
}

.action-card:hover h3,
.action-card:hover p,
.action-card:hover li {
  color: #08122e;
}

.action-icon {
  transition: transform 0.28s ease;
}

.action-card:hover .action-icon {
  transform: translateY(-2px) scale(1.05);
}


/* Icônes : légère mise en avant au survol */
.action-card:hover .action-icon,
.dispositif-card:hover .dispositif-icon,
.public-card:hover .public-icon,
.gouv-card:hover .gouv-icon,
.work-step:hover .work-icon {
  background-color: rgba(255, 255, 255, 0.18);
  color: #08122e;
  box-shadow: none;
}

/* Badges et petits labels dans les cartes */
.action-card:hover .dispositif-badge,
.dispositif-card:hover .dispositif-badge,
.public-card:hover .public-badge,
.gouv-card:hover .gouv-tag,
.work-step:hover {
  background-color: rgba(255, 255, 255, 0.16);
  color: #08122e;
}


/* =========================================================
   ACTION 1 BIS — EXTENSION AUX CARTES QUI N'AVAIENT PAS PRIS
========================================================= */

/* 1) Cartes supplémentaires à intégrer au système commun */
.indicateur-card,
.valeur-card,
.enjeux-list .enjeu-card {
  background-color: #ffffff;
  color: #08122e;
  border: 1px solid rgba(8, 18, 46, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

/* 2) Texte interne au repos */
.indicateur-card p,
.valeur-card h3,
.valeur-card p,
.enjeux-list .enjeu-card .enjeu-title,
.enjeux-list .enjeu-card .enjeu-text {
  color: #08122e;
  transition: color 0.28s ease;
}

/* 3) Hover orange + impression d’avancer */
.indicateur-card:hover,
.valeur-card:hover,
.enjeux-list .enjeu-card:hover {
  transform: translateY(-8px);
  background-color: #F68514;
  color: #ffffff;
  border-color: #F68514;
  box-shadow: 0 22px 44px rgba(246, 133, 20, 0.28);
}

/* 4) Texte reste bleu au survol */
.action-card:hover,
.indicateur-card:hover p,
.valeur-card:hover h3,
.valeur-card:hover p,
.enjeux-list .enjeu-card:hover .enjeu-title,
.enjeux-list .enjeu-card:hover .enjeu-text {
  color: #08122e;
}

/* 5) Icônes internes plus cohérentes au survol */
.indicateur-card:hover .indicateur-icon,
.valeur-card:hover .valeur-icon,
.enjeux-list .enjeu-card:hover .enjeu-icon {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: none;
}

/* 6) Correction spécifique : les 3 cartes "Notre façon de travailler"
   Le fond actuel en dégradé empêche l'effet orange d'être net */
.work-step {
  background: #f6fbe9;
}

.work-step:hover {
  background: #F68514;
  color: #ffffff;
}
/* Icones moderne type Lucide */
.action-icon::before,
.dispositif-icon::before,
.work-icon::before,
.valeur-icon::before,
.enjeu-icon::before,
.indicateur-icon::before,
.support-lever-icon::before,
.engagement-support-icon::before {
  content: none !important;
}

.action-icon i,
.dispositif-icon i,
.work-icon i,
.valeur-icon i,
.enjeu-icon i,
.indicateur-icon i,
.support-lever-icon i,
.engagement-support-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.dispositif-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.dispositif-icon-pret i {
  color: #08122e;
}

.dispositif-card-pret {
  background-color: #0b153a;
  color: #08122e;
}

.dispositif-card-pret .dispositif-note {
  color: #cbd5e1;
}
.section-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
/* =========================
   VERSION MOBILE
   À placer tout en bas du fichier
   ========================= */

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    width: 100%;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    min-height: 72px;
  }

  .header-content {
    min-height: 72px;
    gap: 12px;
  }

  .main-nav,
  .btn-header-support {
    display: none;
  }

  .logo-zone {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-title {
    font-size: 15px;
    line-height: 1.2;
  }

  .logo-subtitle {
    font-size: 10px;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(8, 18, 46, 0.10);
    border-radius: 14px;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: #08122e;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 10px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(8, 18, 46, 0.06);
    z-index: 1200;
  }

  .site-header.mobile-nav-open .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-nav-link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #08122e;
    background-color: #f8fafc;
  }

  .mobile-nav-link:hover {
    background-color: #e4f0c7;
  }

  main {
    padding-top: 72px;
  }

  .hero-section {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .hero-content,
  .actions-grid,
  .newsletter-grid,
  .about-grid,
  .role-grid,
  .publics-grid,
  .gouv-grid,
  .today-grid,
  .focus-grid,
  .dispositifs-grid,
  .dispositifs-col-left,
  .work-steps-grid,
  .indicateurs-grid,
  .valeur-grid,
  .engagements-grid,
  .levier-grid,
  .engagements-support-grid,
  .support-levers-grid,
  .support-engagements-grid,
  .supporters-logos-grid,
  .glossaire-grid,
  .contact-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr !important;
  }

  .legal-card-wide,
  .support-levers-grid .support-fiscal-card-wrapper {
    grid-column: auto !important;
  }

  .hero-content,
  .newsletter-grid,
  .about-grid,
  .role-grid,
  .publics-grid,
  .gouv-grid,
  .today-grid,
  .focus-grid,
  .dispositifs-grid,
  .work-steps-grid,
  .indicateurs-grid,
  .valeur-grid,
  .engagements-grid,
  .levier-grid,
  .engagements-support-grid,
  .support-levers-grid,
  .support-engagements-grid,
  .supporters-logos-grid,
  .glossaire-grid,
  .contact-grid,
  .footer-grid,
  .legal-grid {
    gap: 18px;
  }

  .hero-text h1,
  .glossaire-title,
  .contact-title,
  .supporters-hero-title,
  .support-partnership-title,
  .section-support-hero .support-title,
  .impact-invest-title,
  .section-impact-plus-hero .impact-title,
  .legal-title {
    font-size: 30px;
    line-height: 1.18;
  }

  .section-actions h2,
  .section-about h2,
  .section-role h2,
  .gouv-title,
  .today-title,
  .cta-title,
  .section-actions-hero .section-title,
  .section-dispositifs .section-title,
  .section-work-title,
  .impact-title,
  .engagements-title,
  .support-engagements-title,
  .contact-info-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .section-intro,
  .impact-subtitle,
  .support-subtitle,
  .contact-subtitle,
  .glossaire-subtitle,
  .legal-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-badge-card,
  .hero-buttons,
  .cta-buttons,
  .impact-invest-buttons,
  .call-support-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge-card {
    border-radius: 24px;
    gap: 8px;
    padding: 12px;
  }

  .hero-badge {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-cta-primary,
  .btn-cta-ghost,
  .btn-call-ghost,
  .btn-call-secondary,
  .btn-impact-primary,
  .btn-impact-secondary,
  .support-hero-button,
  .btn-support-partnership,
  .support-lever-button,
  .contact-submit-btn,
  .footer-news-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-image-wrapper,
  .role-image-wrapper,
  .engagements-photo-placeholder,
  .enjeu-photo-placeholder {
    min-height: auto;
  }

  .enjeu-col-media {
    top: 0;
  }

  .enjeu-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .enjeu-stat-bar {
    min-height: 0;
    padding: 20px;
  }

  .enjeu-stat-bar-dark {
    min-height: 0;
  }

  .focus-sticky-orange,
  .focus-sticky-white {
    transform: none;
    max-width: 100%;
  }

  .focus-article-wrap {
    margin-top: 12px;
  }

  .focus-article {
    display: block;
    max-width: 100%;
    border-radius: 22px;
    padding: 14px 16px;
  }

  .about-highlight {
    transform: none;
    max-width: 100%;
    margin-left: 0;
  }

  .today-right-icon-wrapper {
    position: static;
    margin-bottom: 16px;
  }

  .today-right-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .support-lever-header,
  .gouv-topline,
  .contact-info-item,
  .footer-brand {
    align-items: flex-start;
  }

  .support-lever-card,
  .support-fiscal-card,
  .contact-form-card,
  .contact-alert-card,
  .legal-card,
  .gouv-card,
  .public-card,
  .action-card,
  .dispositif-card,
  .work-step,
  .valeur-card,
  .support-engagement-card,
  .engagement-support-card {
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 16px 18px;
    font-size: 16px;
  }

  .contact-submit-btn {
    padding: 18px 22px;
    font-size: 17px;
  }

  .contact-alert-btn {
    width: 100%;
    align-self: stretch;
  }

  .contact-trust-row {
    gap: 12px;
    justify-content: flex-start;
  }

  .section-glossaire-search {
    position: static;
    top: auto;
    padding: 16px 0;
  }

  .glossaire-search-bar {
    height: auto;
    min-height: 64px;
    border-radius: 24px;
    padding: 14px 16px;
  }

  .glossaire-search-bar input {
    font-size: 16px;
  }

  .supporters-call-bubble {
    padding: 22px 18px;
  }

  .supporters-call-bubble::before,
  .supporters-call-bubble::after {
    display: none;
  }

  .footer-grid {
    padding-bottom: 22px;
  }

  .footer-brand-text,
  .newsletter-block,
  .adhesion-block,
  .legal-hero {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-legal {
    padding: 56px 0 60px;
  }

  .legal-card h3 {
    font-size: 20px;
  }

  .legal-card p {
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-text h1,
  .glossaire-title,
  .contact-title,
  .supporters-hero-title,
  .support-partnership-title,
  .section-support-hero .support-title,
  .impact-invest-title,
  .section-impact-plus-hero .impact-title,
  .legal-title {
    font-size: 26px;
  }

  .section-actions h2,
  .section-about h2,
  .section-role h2,
  .gouv-title,
  .today-title,
  .cta-title,
  .section-actions-hero .section-title,
  .section-dispositifs .section-title,
  .section-work-title,
  .impact-title,
  .engagements-title,
  .support-engagements-title,
  .contact-info-title {
    font-size: 23px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero-quote.under-image,
  .supporters-call-text,
  .glossaire-quote-inner p {
    font-size: 18px;
    line-height: 1.5;
  }

  .public-card,
  .gouv-card,
  .today-right-card,
  .legal-card,
  .contact-form-card,
  .contact-alert-card {
    border-radius: 22px;
  }
}
@media (max-width: 900px) {
  .about-intro-band {
    padding: 56px 20px 50px;
  }

  .about-intro-title {
    font-size: 42px;
    line-height: 1.12;
  }

  .about-intro-text {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .about-intro-title {
    font-size: 32px;
  }

  .about-intro-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-top-badge {
    font-size: 11px;
    padding: 7px 14px;
  }
}
/* SECTION ADHESION EN LIGNE */

.section-adhesion-online {
  padding: 70px 0;
  background-color: #ffffff;
}

.adhesion-online-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr;
  gap: 32px;
  align-items: flex-start;
}

.section-adhesion-online h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.adhesion-online-text p {
  color: #4b5563;
  margin-bottom: 12px;
}

.adhesion-online-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 14px;
  color: #4b5563;
  font-size: 14px;
}

.adhesion-online-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.adhesion-online-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #8ad140;
}

.adhesion-online-note {
  font-size: 14px;
  color: #111827;
  margin-top: 8px;
}

.adhesion-online-note a {
  color: #080886;
  font-weight: 600;
}

.adhesion-online-security {
  font-size: 13px;
  color: #b91c1c;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 18px;
  padding: 10px 12px;
  margin: 10px 0 18px;
}

.adhesion-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

/* Carte à droite */

.adhesion-online-aside {
  max-width: 420px;
  margin-left: auto;
}

.adhesion-online-card {
  background-color: #f5f7fb;
  border-radius: 24px;
  padding: 22px 22px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  font-size: 14px;
  color: #374151;
}

.adhesion-online-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #08122e;
}

.adhesion-online-steps-title {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 6px;
}

.adhesion-online-steps {
  margin: 0 0 10px;
  padding-left: 18px;
}

.adhesion-online-steps li {
  margin-bottom: 4px;
}

.adhesion-online-contact a {
  color: #080886;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 900px) {
  .adhesion-online-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .adhesion-online-aside {
    max-width: 100%;
    margin-left: 0;
  }
}

/* ===== PHOTOS SECTIONS : version propre ===== */

/* Conteneurs photo : on neutralise le look placeholder */
.enjeu-photo-placeholder,
.role-image-wrapper,
.engagements-photo-placeholder {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: block;
}

/* On laisse la hauteur suivre le contenu (image) */
.enjeu-photo-placeholder,
.engagements-photo-placeholder,
.role-image-wrapper {
  min-height: auto !important;
  height: auto !important;
}

/* Ancien faux placeholder texte : on remet à zéro si jamais il reste */
.role-image-placeholder {
  min-height: auto !important;
  height: auto !important;
  display: block;
  padding: 0 !important;
  color: inherit;
  text-align: inherit;
  background: transparent !important;
}

/* Image commune aux 3 sections */
.section-photo {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.enjeu-col-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-success-message,
.form-error-message {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
}

.form-success-message {
  background: #e8f7ec;
  color: #1f6b36;
  border: 1px solid #b9e2c4;
}

.form-error-message {
  background: #fff1f1;
  color: #9f2f2f;
  border: 1px solid #efc2c2;
}
.main-nav .nav-link.active,
.mobile-nav-link.active {
  font-weight: 700;
  background-color: #e4f0c7;
  color: #08122e;
  box-shadow: 0 8px 20px rgba(138, 209, 64, 0.18);
}

.hero-content {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-floating-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: #f4b41a;
  color: #08122e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  border: 4px solid #ffffff;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
  transform: rotate(-10deg);
  animation: hero-badge-float 2.4s ease-in-out infinite;
  z-index: 3;
}

@keyframes hero-badge-float {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-10px); }
}
@media (max-width: 640px) {
  .hero-floating-badge {
    width: 88px;
    height: 88px;
    font-size: 0.85rem;
    top: -10px;
    left: -8px;
  }
}
.section-head {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .section-head {
    display: flex;
  }
}

.action-card:nth-child(1) .action-icon { background-color: #e4f0c7; }
.action-card:nth-child(2) .action-icon { background-color: #ffe1c4; }
.action-card:nth-child(3) .action-icon { background-color: #fff3c9; }

.section-enjeu-citation {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 28px;
  padding: 24px 24px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  margin: 26px 0;
  position: relative;
}

.enjeu-citation-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 16px;
  background-color: #f4b41a;
  color: #08122e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 12px 24px rgba(244, 180, 26, 0.20);
}

.enjeu-citation-content {
  position: relative;
}

.enjeu-citation-mark {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
  color: #f68514;
  margin-bottom: 6px;
}

.enjeu-citation-content p {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.6;
  font-style: italic;
  color: #08122e;
  font-weight: 700;
}
<--le point i stylisée-->
.section-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background-color: #f4b41a;
  color: #08122e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(244, 180, 26, 0.22);
}

/* ===== CORRECTION 1 : hover cartes "Nos actions" ===== */
.section-actions-projects .action-card:hover,
.section-actions .action-card:hover {
  background-color: #fff4e8;
  border-color: rgba(246, 133, 20, 0.28);
  box-shadow: 0 22px 44px rgba(246, 133, 20, 0.18);
}

.section-actions-projects .action-card:hover h3,
.section-actions-projects .action-card:hover h4,
.section-actions-projects .action-card:hover p,
.section-actions-projects .action-card:hover li,
.section-actions .action-card:hover h3,
.section-actions .action-card:hover h4,
.section-actions .action-card:hover p,
.section-actions .action-card:hover li {
  color: #080886 !important;
}

.section-actions-projects .action-card:hover .action-icon,
.section-actions .action-card:hover .action-icon {
  background-color: rgba(8, 8, 134, 0.08);
  color: #080886;
}
/* ===== CORRECTION 2 : entête "Nos actions" bien séparé des cartes ===== */
.section-head.section-head-actions {
  display: block;
  margin-bottom: 34px;
}

.section-head.section-head-actions > div:first-child {
  max-width: 760px;
}

.section-head.section-head-actions .section-label {
  margin-bottom: 12px;
}

.section-head.section-head-actions h2 {
  margin-bottom: 10px;
}

.section-head.section-head-actions .section-intro {
  margin-bottom: 0;
  max-width: 680px;
}

.section-actions .actions-grid {
  margin-top: 0;
}
/* ===== CORRECTION 3 : cadre visible derrière le 30% ===== */
.enjeu-stat-bar.enjeu-stat-bar-dark {
  background-color: rgba(11, 21, 58, 0.08);
  border: 1px solid rgba(11, 21, 58, 0.12);
  box-shadow: 0 12px 30px rgba(11, 21, 58, 0.06);
  color: #0b153a;
}

.enjeu-stat-bar.enjeu-stat-bar-dark .enjeu-chiffre,
.enjeu-stat-bar.enjeu-stat-bar-dark .enjeu-legende,
.enjeu-stat-bar.enjeu-stat-bar-dark .enjeu-source {
  color: #0b153a;
}

.enjeu-stat-bar.enjeu-stat-bar-dark .enjeu-bar-30 {
  background-color: #0b153a;
  border: 2px solid background-color: #edf2fb;
}
/* ===== CORRECTION 4 : icône info du hero ===== */
.hero-info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #f3df84;
  background-color: rgba(255, 248, 234, 0.65);
}

.hero-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  background-color: #f4b41a;
  color: #080886;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  box-shadow: 0 12px 24px rgba(244, 180, 26, 0.22);
}
.hero-info-icon span {
  display: block;
  transform: translateY(-1px);
  font-style: italic;
}
/* ===== Icône info stylisée dans le bloc adhésion newsletter ===== */
.adhesion-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.adhesion-block-head h3 {
  margin-bottom: 0;
}

.adhesion-mini-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 18px;
  background-color: #f4b41a;
  color: #08122e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(244, 180, 26, 0.22);
}

.adhesion-mini-icon span {
  display: block;
  font-style: italic;
  transform: translateY(-1px);
}
/* Titre prêt de matériel : bien lisible sur fond bleu nuit */
.dispositif-card-pret h3 {
  color: #ffffff;
}

/* Carte droite : prêt de matériel temporaire */
.dispositif-card-pret {
  background-color: #0b153a;
  color: #ffffff;
}

.dispositif-card-pret p {
  color: #e5e7eb;
}
/* Force des couleurs bien lisibles sur la carte prêt, même au survol */
.dispositif-card-pret:hover {
  background-color: #ffffff; /* blanc */
}

.dispositif-card-pret:hover h3 {
  color: #080886; /* titre bien blanc */
}

.dispositif-card-pret:hover p {
  color: #080886; /* texte corps gris clair lisible */
}

.dispositif-card-pret:hover .dispositif-note {
  color: #cbd5f5; /* la note reste lisible aussi */
}

.dispositif-card-pret:hover .dispositif-icon-pret {
  background-color: #d9f99d; /* vert clair plus présent */
  color: #1f2937;            /* texte/emoji plus foncé dans l’icône */
}
.section-dispositifs .section-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  color: #08122e;
}

.section-dispositifs .section-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  color: #4b5563;
  font-size: 15px;
}
.section-impact-indicateurs {
  padding: 60px 0 40px; /* air au-dessus des cartes */
}

.section-impact-indicateurs .container {
  max-width: 960px;
  margin: 0 auto;
}

/* Titre et sous-titre centrés */
.indicateurs-title {
  text-align: center;
  margin-bottom: 6px;
}

.indicateurs-subtitle {
  max-width: 720px;
  margin: 0 auto 26px; /* espace avant la première carte */
  text-align: center;
  font-size: 15px;
  color: #4b5563;
}