﻿@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Slider vertical tÃ©moignages */

.temo-slider-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.temo-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
  width: 100%;
}
.temo-slide-list {
  width: 100%;
  max-width: 500px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.slide-temo {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
}
.temo-btn {
  background: var(--vert-pale);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  color: var(--vert-foret);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.temo-btn:focus {
  outline: 2px solid var(--vert-jungle);
}
.temo-btn:hover {
  background: var(--vert-mint);
}
/* =====================================================
   styles-index-responsive.css â€” FRESH'O VITROPLANTS
   Page d'accueil (index.html) â€” CSS complet responsive
   ===================================================== */

/* ================================================
   1. RESET & VARIABLES
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --vert-foret: #28A83B;
  --vert-jungle: #1a5c32;
  --vert-feuille: #2e8b4a;
  --vert-clair: #52b86a;
  --vert-mint: #a8d8b0;
  --vert-pale: #e8f5ec;
  --banane: #f2c12e;
  --banane-fonce: #c9960a;
  --banane-pale: #fef5d4;
  --terre: #8b4513;
  --ocre: #c4841a;
  --sable: #f0ddb0;
  --creme: #fbf6ec;
  --encre: #0a1e0d;
  --gris-chaud: #4a5240;
  --gris-moyen: #7a8572;
  --gris-clair: #c8d0c0;
  --blanc: #ffffff;

  --fonte-titre: "Bricolage Grotesque", sans-serif;
  --fonte-corps: "Bricolage Grotesque", sans-serif;

  --ombre-sm: 0 2px 12px rgba(10, 30, 13, 0.08);
  --ombre-md: 0 8px 40px rgba(10, 30, 13, 0.12);
  --ombre-lg: 0 20px 80px rgba(10, 30, 13, 0.18);

  --rayon-sm: 6px;
  --rayon-md: 14px;
  --rayon-lg: 24px;
  --rayon-xl: 40px;
  --rayon-full: 9999px;

  --tr: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corps);
  color: var(--encre);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--fonte-titre);
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}

/* ================================================
   3. LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ================================================
   4. BOUTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--rayon-full);
  font-family: var(--fonte-corps);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.fleche {
  transition: transform var(--tr);
}
.btn:hover .fleche {
  transform: translateX(4px);
}

.btn-banane {
  background: #F2C12E;
  color: var(--encre);
  border-color: #F2C12E;
  /* box-shadow: 0 4px 20px #F2C12E; */
}
.btn-banane:hover {
  background: var(--banane-fonce);
  color: var(--blanc);
  box-shadow: 0 8px 32px #28A83B;
}

.btn-fantome {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-fantome:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-primaire {
  background: var(--vert-foret);
  color: var(--blanc);
  box-shadow: 0 4px 20px rgba(40, 168, 59, 0.35);
}
.btn-primaire:hover {
  background: var(--vert-jungle);
  box-shadow: 0 8px 32px rgba(40, 168, 59, 0.45);
  transform: translateY(-2px);
}

.btn-contour {
  background: transparent;
  color: var(--vert-foret);
  border-color: var(--vert-feuille);
}
.btn-contour:hover {
  background: var(--vert-pale);
  border-color: var(--vert-jungle);
}

.btn-blanc {
  background: var(--blanc);
  color: var(--vert-foret);
  box-shadow: var(--ombre-sm);
}
.btn-blanc:hover {
  background: var(--creme);
  box-shadow: var(--ombre-md);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--vert-foret);
  color: var(--blanc);
  display: inline-block;
  border-radius: var(--rayon-full);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--vert-jungle);
}

/* ================================================
   5. TYPOGRAPHIE
   ================================================ */
.etiquette {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert-jungle);
  padding: 0.35rem 1rem;
  background: var(--vert-pale);
  border-radius: var(--rayon-full);
  border: 1.5px solid rgba(46, 139, 74, 0.2);
}
.etiquette::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #28A83B;
  border-radius: 50%;
  display: inline-block;
}
.etiquette.blanc {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.etiquette.blanc::before {
  background: var(--banane);
}

.titre-section {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--encre);
  margin-top: 0.75rem;
}
.titre-section em {
  font-style: italic;
  font-weight: 300;
  color: var(--vert-jungle);
}

.desc-section {
  font-size: 1rem;
  color: var(--gris-chaud);
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 560px;
}

.entete-section {
  margin-bottom: 3.5rem;
}
.entete-section.centre {
  text-align: center;
}
.entete-section.centre .desc-section {
  margin-left: auto;
  margin-right: auto;
}

/* Navbar styles are centralized in components/navbar.css */

/* ================================================
   7. HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background-color: var(--vert-foret);
  background-image:
    url("images/img1.avif");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 92px;
}

/* DÃ©corations fond */
.hero-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-forme-1 {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
  background: radial-gradient(
    circle at 40% 50%,
    var(--vert-jungle) 0%,
    transparent 70%
  );
  opacity: 0.7;
}
.hero-forme-2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 400px;
  border-radius: 50% 70% 40% 60% / 60% 40% 70% 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(242, 193, 46, 0.18) 0%,
    transparent 65%
  );
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-diagonal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    160deg,
    transparent 0%,
    rgba(255, 255, 255, 0.022) 100%
  );
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Grille hero â€” directement dans .hero, pas dans .container */
.hero-grille {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-contenu {
  max-width: 580px;
}

/* Titre hero */
.hero-titre {
  font-family: var(--fonte-titre);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}
.hero-titre em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--banane);
}
.ligne-verte {
  display: block;
  color: var(--vert-mint);
  font-weight: 700;
  font-style: normal;
  font-size: 80%;
  letter-spacing: 0;
}

.hero-sous-titre {
  font-size: 1.05rem;
  color: rgb(255, 255, 255);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  text-shadow:
    0 2px 4px rgba(6, 6, 6, 0.85),
    0 0 10px rgb(107, 102, 102);
}

/* Actions hero */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Chiffres hero */
.hero-chiffres {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Version compacte en une ligne pour mobile */
.hero-chiffres-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.5rem;
}

.hero-chiffres-compact .chiffre-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  justify-content: center;
}

.hero-chiffres-compact .chiffre-val {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.hero-chiffres-compact .chiffre-val span {
  color: var(--banane);
  font-size: 1rem;
}

.hero-chiffres-compact .chiffre-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.chiffre-val {
  font-family: var(--fonte-titre);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.03em;
  line-height: 1;
}
.chiffre-val span {
  color: var(--banane);
  font-size: 1.4rem;
}
.chiffre-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Overlay droite - Production */
.hero-overlay {
  background: #00e1221a;
  border: solid 1px #00e12224 ;
  border-radius: var(--rayon-xl);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 380px;
  position: relative;
  margin-left: auto;
}

.overlay-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.overlay-statut {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vert-clair);
}

.overlay-ligne {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3), transparent);
}

.overlay-titre {
  font-family: var(--fonte-titre);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.overlay-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.overlay-chiffres {
  margin-bottom: 2rem;
}

.overlay-chiffre {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.chiffre-valeur {
  font-family: var(--fonte-titre);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--banane);
  line-height: 1;
}

.chiffre-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: lowercase;
}

.overlay-chiffre-texte {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.overlay-energie {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.energie-icone {
  font-size: 2rem;
  color: var(--banane);
}

.energie-titre {
  font-family: var(--fonte-titre);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.2rem;
}

.energie-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.carte-libelle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.carte-titre {
  font-family: var(--fonte-titre);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.25;
}

/* Cartes flottantes */
.carte-flottante {
  position: absolute;
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--gris-clair);
  position: relative; overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  /* Image pilier */
  .pilier-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(46,139,74,0.08);
    object-fit: cover;
  }
  min-width: 160px;
  z-index: 3;
}
.carte-flottante.haut-droite {
  top: -1.2rem;
  right: -1.8rem;
  animation: flotter 4s ease-in-out infinite;
}
.carte-flottante.bas-gauche {
  bottom: -1.2rem;
  left: -1.8rem;
  animation: flotter 4s ease-in-out 2s infinite;
}

.flottante-icone {
  width: 38px;
  height: 38px;
  border-radius: var(--rayon-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.flottante-icone.verte {
  background: var(--vert-pale);
}
.flottante-icone.jaune {
  background: var(--banane-pale);
}
.flottante-icone svg {
  width: 24px;
  height: 64px !important;
}

.flottante-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--encre);
  line-height: 1;
}
.flottante-lab {
  font-size: 0.7rem;
  color: var(--gris-moyen);
  margin-top: 0.2rem;
}

/* Scroll indicateur */
.scroll-indicateur {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-trait {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: descend 1.8s ease-in-out infinite;
}
/* ================================================
   8. RUBAN CHIFFRES
   ================================================ */
.ruban-chiffres {
  background: var(--banane);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.ruban-chiffres::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
}

.ruban-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.ruban-col {
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(40, 168, 59, 0.15);
}
.ruban-col:last-child {
  border-right: none;
}
.ruban-nombre {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--vert-foret);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ruban-nombre sup {
  font-size: 60%;
  vertical-align: super;
}
.ruban-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(40, 168, 59, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* ================================================
   9. SECTION PILIERS
   ================================================ */
.section-piliers {
  background: var(--creme);
  position: relative;
}
.section-piliers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vert-foret),
    var(--banane),
    var(--vert-feuille)
  );
}

.grille-piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.carte-pilier {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--gris-clair);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.carte-pilier::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.pilier-1::after {
  background: var(--vert-jungle);
}
.pilier-2::after {
  background: var(--banane);
}
.pilier-3::after {
  background: var(--ocre);
}
.carte-pilier:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-md);
  border-color: transparent;
}
.carte-pilier:hover::after {
  transform: scaleX(1);
}

.pilier-img {
  width: 64px;
  height: 64px;
  border-radius: var(--rayon-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--vert-pale);
}
.pilier-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rayon-md);
}

.pilier-titre {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.75rem;
}
.pilier-desc {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pilier-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vert-jungle);
  transition: gap var(--tr);
}
.pilier-lien:hover {
  gap: 0.7rem;
}

/* ================================================
   10. SECTION ATOUTS
   ================================================ */
.section-atouts {
  background: #effff1f9;
  padding: 4rem 0;
}

.atouts-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.25rem;
}
.atouts-gauche {
  flex: 0 1 auto;
  width: min(100%, 380px);
  max-width: 420px;
  min-width: 240px;
}
.atouts-gauche .desc-section {
  margin-bottom: 2rem;
}

.liste-atouts {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item-atout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--rayon-lg);
  border: 1px solid var(--vert-pale);
  transition: none;
}
.carte-temo:first-child { grid-column: 1 / -1; }
/* Suppression du hover sur desktop */
@media (min-width: 1025px) {
  .carte-temo:hover {
    box-shadow: none;
    transform: none;
  }
}
.item-atout:hover {
  border-color: var(--vert-mint);
  transform: translateX(6px);
  box-shadow: var(--ombre-sm);
}
.atout-num {
  font-family: var(--fonte-titre);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
  flex-shrink: 0;
  width: 50px;
  letter-spacing: -0.04em;
  color: #28A83B;
}
.item-atout:nth-child(2) .atout-num {
  color: #F2C12E;
}
.item-atout:nth-child(4) .atout-num {
  color: #F2C12E;
}
.atout-corps h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.atout-corps p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.65;
}

/* ================================================
   11. SECTION CIBLES
   ================================================ */
.section-cibles {
  background: var(--vert-foret);
  position: relative;
  overflow: hidden;
}
.cibles-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 85% 15%,
      rgba(242, 193, 46, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 85%,
      rgba(82, 184, 106, 0.07) 0%,
      transparent 50%
    );
}
.cibles-motif {
  position: absolute;
  inset: 0;
  background-color: #28A83B;
}
.section-cibles .entete-section {
  position: relative;
  z-index: 1;
}
.section-cibles .titre-section {
  color: var(--blanc);
}
.section-cibles .titre-section em {
  color: var(--banane);
}
.section-cibles .desc-section {
  color: rgb(255, 255, 255);
}

.cibles-visuel {
  margin: 4rem 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cibles-image {
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 90%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cibles-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cibles-image:hover::before {
  opacity: 1;
}

.cibles-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cibles-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cibles-image:hover .cibles-img {
  transform: scale(1.05);
}

.grille-cibles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.carte-cible {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition:
    transform var(--tr),
    /* background var(--tr), */
    border-color var(--tr);
}
.carte-cible:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}



.cible-entete {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cible-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.cible-emoji svg {
  width: 56px;
  height: 56px;
}
.cible-nom {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.2;
}

.cible-corps {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}
.liste-cible {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.liste-cible li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgb(255, 255, 255);
  line-height: 1.5;
}
.liste-cible li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #F2C12E;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}
.cta-cible {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--banane);
  transition: gap var(--tr);
}
.cta-cible:hover {
  gap: 0.7rem;
}

/* ================================================
   12. SECTION PROCESSUS
   ================================================ */
.section-processus {
  background: #effff1f9;
}

.grille-processus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 1rem;
}
.grille-processus::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--vert-feuille), var(--banane));
  z-index: 0;
  opacity: 0.35;
  border-radius: 2px;
}

.etape-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.etape-bulle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blanc);
  border: 2px solid #28A83B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  box-shadow: var(--ombre-sm);
  transition:
    border-color var(--tr),
    background var(--tr),
    transform var(--tr);
}
.etape-item:hover .etape-bulle {
  border-color: var(--vert-jungle);
  background: var(--vert-pale);
  transform: scale(1.08);
}
.etape-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gris-moyen);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.etape-titre {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.4rem;
}
.etape-desc {
  font-size: 0.8rem;
  color: var(--gris-chaud);
  line-height: 1.55;
}

/* ================================================
   13. SECTION PROGRAMMES
   ================================================ */
.section-programmes {
  background: var(--blanc);
  position: relative;
}

.section-programmes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vert-foret),
    var(--banane),
    var(--vert-feuille)
  );
}

/* Tabs de navigation */
.programmes-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-programme {
  background: transparent;
  border: 2px solid var(--gris-clair);
  color: var(--gris-chaud);
  padding: 0.8rem 2rem;
  border-radius: var(--rayon-full);
  font-family: var(--fonte-corps);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tr);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tab-programme:hover {
  border-color: var(--vert-jungle);
  color: var(--vert-jungle);
  background: var(--vert-pale);
}

.tab-programme.active {
  background: var(--vert-foret);
  color: var(--blanc);
  border-color: var(--vert-foret);
  box-shadow: 0 4px 20px rgba(40, 168, 59, 0.25);
}

/* Contenu des programmes */
.programmes-contenu {
  position: relative;
}

.programme-item {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.programme-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.programme-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--vert-foret);
  border-radius: var(--rayon-xl);
  padding: 3rem;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.programme-grille::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.programme-texte {
  position: relative;
  z-index: 2;
}

.programme-titre {
  font-family: var(--fonte-titre);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--blanc);
}

.programme-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.programme-benefices {
  list-style: none;
  margin-bottom: 2rem;
}

.programme-benefices li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.programme-benefices li::before {
  content: "âœ“";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--banane);
  color: var(--encre);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.programme-visuel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.programme-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: var(--rayon-lg);
  overflow: hidden;
  position: relative;
}

.programme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr);
}

.programme-image:hover img {
  transform: scale(1.05);
}

.programme-stats {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.stat-programme {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rayon-lg);
  padding: 1.5rem 2rem;
  min-width: 120px;
}

.stat-valeur {
  font-family: var(--fonte-titre);
  font-size: 2rem;
  font-weight: 900;
  color: var(--banane);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-valeur span {
  font-size: 1rem;
  color: var(--blanc);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Responsive pour les programmes */
@media (max-width: 1024px) {
  .programme-grille {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .programme-visuel {
    order: -1;
  }
  
  .programme-stats {
    gap: 1rem;
  }
  
  .stat-programme {
    padding: 1rem 1.5rem;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  .programmes-tabs {
    gap: 0.5rem;
  }
  
  .tab-programme {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .programme-titre {
    font-size: 1.4rem;
  }
  
  .programme-grille {
    padding: 1.5rem;
  }
  
  .programme-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-programme {
    width: 100%;
    max-width: 200px;
  }
}

/* ================================================
   14. SECTION IMPACT - DESIGN MODERNE
   ================================================ */
.section-impact {
  background: linear-gradient(165deg, var(--vert-foret), #086207f5);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.impact-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-impact .titre-section {
  color: var(--blanc);
}
.section-impact .titre-section em {
  color: var(--banane);
}
.section-impact .desc-section {
  color: rgba(255, 255, 255, 0.5);
}

.grille-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.carte-impact {
  border-radius: var(--rayon-lg);
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    background var(--tr);
}
.carte-impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.impact-eco::before {
  background: linear-gradient(90deg, var(--banane), var(--ocre));
}
.impact-social::before {
  background: linear-gradient(90deg, var(--vert-feuille), var(--vert-mint));
}
.impact-env::before {
  background: linear-gradient(90deg, var(--vert-jungle), var(--vert-clair));
}
.carte-impact:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.09);
}

.impact-emoji {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.impact-emoji svg {
  width: 52px;
  height: 52px;
}
.impact-nombre {
  font-family: var(--fonte-titre);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.impact-nombre span {
  color: var(--banane);
  font-size: 2rem;
}
.impact-titre {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}
.impact-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.centre-impact {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ================================================
   14. SECTION TÃ‰MOIGNAGES
   ================================================ */
.section-temoignages {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    max-width: 700px;
  }
  background: var(--blanc);
}

.temos-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.temos-intro .desc-section {
  margin-top: 0.75rem;
}
.temos-intro .btn {
  margin-top: 2rem;
}

.grille-temos {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: center;
  width: 100%;
}
}

@media (max-width: 1024px) {
  .grille-temos {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .carte-temo {
    width: 100%;
    max-width: 420px;
  }
}
}
}
.carte-temo {
  background: var(--creme);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  border: 2.5px solid var(--vert-jungle);
  transition: none;
  box-sizing: border-box;
  margin: 0;
}
  border : 2px solid var(--vert-pale);
}
.carte-temo:first-child {
  grid-column: 1 / -1;
}
.carte-temo:hover {
  box-shadow: none;
  transform: none;
}

.guillemetq {
  font-family: var(--fonte-titre);
  font-size: 5rem;
  color: var(--vert-pale);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}
.temo-texte {
  font-family: var(--fonte-titre);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--encre);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.temo-auteur {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--gris-clair);
  padding-top: 1.2rem;
}
.auteur-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-clair), var(--vert-foret));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blanc);
  flex-shrink: 0;
}
.auteur-nom {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--encre);
}
.auteur-role {
  font-size: 0.77rem;
  color: var(--gris-moyen);
  margin-top: 0.1rem;
}

/* ================================================
   15. CTA FINAL
   ================================================ */
.section-cta {
  background: var(--banane);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(40, 168, 59, 0.04) 0px,
    rgba(40, 168, 59, 0.04) 2px,
    transparent 2px,
    transparent 44px
  );
}
.section-cta::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(40, 168, 59, 0.1) 0%,
    transparent 65%
  );
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-texte h2 {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--vert-foret);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-texte h2 em {
  font-style: italic;
  font-weight: 300;
}
.cta-texte p {
  font-size: 1rem;
  color: rgba(40, 168, 59, 0.65);
  max-width: 400px;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================
   16. FOOTER
   ================================================ */
.footer {
  background: var(--encre);
  color: rgba(255, 255, 255, 0.6);
  padding: 4.5rem 0 2rem;
}

/* Supporte les deux nommages prÃ©sents dans les pages */
.footer-grid,
.footer-grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand-col p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 240px;
}

/* RÃ©seaux â€” deux nommages */
.footer-socials,
.footer-reseaux {
  display: flex;
  gap: 0.5rem;
}

.social-btn,
.reseau-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--rayon-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background var(--tr),
    color var(--tr),
    transform var(--tr);
}
.social-btn:hover,
.reseau-btn:hover {
  background: var(--vert-jungle);
  color: var(--blanc);
  border-color: var(--vert-jungle);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col li {
  list-style: none;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--tr);
}
.footer-col a:hover {
  color: var(--vert-clair);
}
.footer-col p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* Bas de footer â€” deux nommages */
.footer-bottom,
.footer-bas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--tr);
}
.footer-legal a:hover {
  color: var(--vert-mint);
}

/* ================================================
   17. ANIMATIONS
   ================================================ */
@keyframes pulse-v {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
@keyframes flotter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes descend {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ================================================
   18. RESPONSIVE â€” TABLETTE (â‰¤1024px)
   ================================================ */
@media (max-width: 1024px) {
  /* Hero */
  .hero-grille {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  .hero-titre {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }
  .hero-overlay {
    max-width: 480px;
    margin: 0 auto;
  }
  .carte-flottante {
    display: none;
  }

  /* Ruban */
  .ruban-grille {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruban-col:nth-child(2) {
    border-right: none;
  }
  .ruban-col:nth-child(3) {
    border-top: 1px solid rgba(40, 168, 59, 0.1);
  }
  .ruban-col:nth-child(4) {
    border-top: 1px solid rgba(40, 168, 59, 0.1);
    border-right: none;
  }

  /* Piliers */
  .grille-piliers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Atouts */
  .atouts-layout {
    flex-direction: column;
    gap: 2.25rem;
  }
  .atouts-gauche {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .liste-atouts {
    flex: none;
    width: 100%;
  }

  /* Cibles */
  .grille-cibles {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cibles-visuel {
    margin: 3rem 0 1.5rem;
  }
  
  .cibles-image {
    max-width: 95%;
  }
  
  .cibles-img {
    max-height: 320px;
  }

  /* Processus */
  .grille-processus {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .grille-processus::before {
    display: none;
  }

  /* Impact */
  .grille-impact {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* TÃ©mos */
  .temos-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .grille-temos {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid,
  .footer-grille {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ================================================
   19. RESPONSIVE â€” MOBILE (â‰¤768px)
   ================================================ */
@media (max-width: 768px) {
  /* ---- Sections ---- */
  .section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-grille {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 4rem;
    gap: 2rem;
  }
  .hero-titre {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-sous-titre {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-chiffres {
    display: none; /* Cacher la version normale sur tablettes */
  }

  /* Afficher la version compacte sur tablettes */
  .hero-chiffres-compact {
    display: flex !important;
    margin: 1rem 0;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .chiffre-val {
    font-size: 1.8rem;
  }
  .hero-overlay {
    display: none;
  }
  .scroll-indicateur {
    display: none;
  }

  /* ---- Ruban ---- */
  .ruban-grille {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruban-col {
    border-right: none;
    border-bottom: 1px solid rgba(40, 168, 59, 0.1);
    padding: 1.25rem 1rem;
  }
  .ruban-col:nth-child(3),
  .ruban-col:nth-child(4) {
    border-top: none;
  }
  .ruban-col:last-child {
    border-bottom: none;
  }
  .ruban-nombre {
    font-size: 2.2rem;
  }

  /* ---- Piliers ---- */
  .grille-piliers {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .carte-pilier {
    padding: 2rem 1.5rem;
  }

  /* ---- Atouts ---- */
  .atouts-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .atouts-gauche {
    width: 100%;
    max-width: none;
  }
  .liste-atouts {
    flex: none;
    width: 100%;
  }
  .item-atout {
    padding: 1.25rem;
  }

  /* ---- Cibles ---- */
  .grille-cibles {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .cibles-visuel {
    margin: 2rem 0 1rem;
  }
  
  .cibles-image {
    max-width: 98%;
    border-radius: 16px;
  }
  
  .cibles-image::before {
    border-radius: 16px;
  }
  
  .cibles-img {
    max-height: 280px;
  }
  .cible-entete {
    padding: 1.5rem;
  }
  .cible-corps {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  /* ---- Processus ---- */
  .grille-processus {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grille-processus::before {
    display: none;
  }

  /* ---- Impact ---- */
  .grille-impact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .carte-impact {
    padding: 1.75rem;
  }
  .impact-nombre {
    font-size: 2.4rem;
  }

  /* ---- TÃ©mos ---- */
  .temos-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grille-temos {
    grid-template-columns: 1fr;
  }
  .carte-temo:first-child {
    grid-column: auto;
  }
  .guillemetq {
    font-size: 3.5rem;
  }

  /* ---- CTA ---- */
  .section-cta {
    padding: 4rem 0;
  }
  .cta-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .cta-texte h2 {
    font-size: 1.8rem;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Footer ---- */
  .footer-grid,
  .footer-grille {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom,
  .footer-bas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ================================================
   20. RESPONSIVE â€” TRÃˆS PETIT (â‰¤480px)
   ================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-titre {
    font-size: 1.9rem;
  }
  .hero-sous-titre {
    font-size: 0.95rem;
  }
  .hero-chiffres {
    display: none; /* Cacher la version normale */
  }

  /* Afficher la version compacte sur mobile */
  .hero-chiffres-compact {
    display: flex !important;
    margin: 1rem 0;
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-actions {
    gap: 0.75rem;
  }

  .ruban-grille {
    grid-template-columns: 1fr;
  }
  .ruban-col {
    border-right: none;
  }

  .grille-processus {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .etape-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.1);
  }
  .etape-bulle {
    margin: 0;
    flex-shrink: 0;
  }
  .etape-num {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
  .etape-titre {
    font-size: 1rem;
    margin: 0.25rem 0;
  }
  .etape-desc {
    font-size: 0.85rem;
    margin: 0;
  }

  .impact-nombre {
    font-size: 2rem;
  }

  .titre-section {
    font-size: 1.8rem;
  }

  .btn {
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
  }
  .btn-nav {
    display: none;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
}


