/* ============================================================
   SF2D-S — STYLE.CSS
   Thème : Vert & Blanc | Moderne | Responsive
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --green:        #2d8a4e;
  --green-dark:   #1a5c32;
  --green-light:  #e8f5ee;
  --green-mid:    #4caf73;
  --green-accent: #7ed957;
  --white:        #ffffff;
  --off-white:    #f7faf8;
  --text:         #1a2b22;
  --text-light:   #4a6358;
  --border:       #d0e8d8;
  --shadow:       0 4px 24px rgba(45,138,78,0.10);
  --shadow-lg:    0 12px 48px rgba(45,138,78,0.18);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --topbar-h:     44px;
  --nav-h:        72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  display: block;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 14px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,138,78,0.12);
}
textarea { resize: vertical; min-height: 120px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 96px 0; }
.bg-light { background: var(--off-white); }
.bg-green-dark { background: var(--green-dark); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--green);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,138,78,0.28);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 2px solid var(--green);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-primary.full, .btn-outline.full { width: 100%; justify-content: center; }

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header.white .section-title { color: var(--white); }
.section-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}
.section-header.white .section-desc { color: rgba(255,255,255,0.8); }

/* ---------- FORM MSG ---------- */
.form-msg {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-msg.success { background: var(--green-light); color: var(--green-dark); display: block; }
.form-msg.error   { background: #fde8e8; color: #c0392b; display: block; }
.form-msg.light   { color: var(--white); }


/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--green-dark);
  color: var(--white);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar-left a:hover { color: var(--green-accent); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right a {
  color: rgba(255,255,255,0.85);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition);
}
.topbar-right a:hover {
  background: var(--green-accent);
  color: var(--green-dark);
  border-color: var(--green-accent);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  height: var(--nav-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.12); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--green-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--green); }
.btn-nav-don {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-don:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,138,78,0.3);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }




/* ==========================================================================
   BLOCK: HERO PREMIUM (ASYNCHRONOUS SPLIT & SLIDER V2)
   ========================================================================== */

.hero-premium {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  padding: 120px 4% 80px 4%;
  background-color: #081a10; /* Fond de secours */
}

/* ---------- BACKGROUND SLIDER ---------- */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: transform 6s ease-in-out;
  animation: backgroundCarousel 18s infinite ease-in-out;
}

.slide-img:nth-child(1) { animation-delay: 0s; }
.slide-img:nth-child(2) { animation-delay: 6s; }
.slide-img:nth-child(3) { animation-delay: 12s; }

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 16, 0.95) 0%, rgba(8, 26, 16, 0.8) 50%, rgba(8, 26, 16, 0.4) 100%);
  backdrop-filter: blur(2px);
  z-index: 2;
}

/* ---------- GRILLE (GRID) ---------- */
.hero-grid-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-text-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: revealDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #3ce087;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(60, 224, 135, 0.5);
  animation: activePulse 2s infinite;
}

.main-display-title {
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, #3ce087, #a2ffd0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-pitch {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ---------- BOUTONS ---------- */
.cta-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.cta-wrapper a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-btn-main {
  background: #ffffff;
  color: #081a10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.action-btn-main svg {
  transition: transform 0.3s ease;
}

.action-btn-main:hover {
  background: #3ce087;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(60, 224, 135, 0.3);
}

.action-btn-main:hover svg {
  transform: translateX(5px);
}

.action-btn-ghost {
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.action-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-4px);
}

/* ---------- STATS (DASHBOARD ASYMÉTRIQUE) ---------- */
.hero-stats-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 24px;
  border-radius: 24px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.card-1 { transform: translateY(-20px); }
.card-4 { transform: translateY(20px); }

.dashboard-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.card-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.card-num .plus {
  color: #3ce087;
  margin-left: 2px;
}

.card-title {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* ---------- ANIMATIONS KEYFRAMES ---------- */
@keyframes backgroundCarousel {
  0% { opacity: 0; transform: scale(1.04); }
  4% { opacity: 1; }
  33.33% { opacity: 1; }
  37.33% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}

@keyframes activePulse {
  0% { box-shadow: 0 0 0 0 rgba(60, 224, 135, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(60, 224, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(60, 224, 135, 0); }
}

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

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-text-zone {
    align-items: center;
    text-align: center;
  }
  .cta-wrapper { justify-content: center; }
  .card-1, .card-4 { transform: translateY(0); }
}

@media (max-width: 580px) {
  .hero-stats-dashboard {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}



/* ===== SECTION À PROPOS ===== */
.section-apropos {
  padding: 100px 0;
  background: #fafdfb;
  overflow: hidden;
}

.apropos-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== HEADER CENTRÉ ===== */
.apropos-header-top {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #2d8a4e;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0b2214;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.accent-bar {
  width: 48px;
  height: 4px;
  background: #3ce087;
  border-radius: 2px;
  margin: 0 auto 18px;
}

.section-subtitle {
  font-size: 0.97rem;
  color: #4a5950;
  line-height: 1.7;
  margin: 0;
}

/* ===== GRILLE ===== */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ===== MOSAÏQUE VISUELLE ===== */
.apropos-visual-side {
  display: flex;
  justify-content: center;
}

.mosaic-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 520px;
}

/* Points décoratifs */
.deco-dots {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(#2d8a4e 1.8px, transparent 1.8px);
  background-size: 10px 10px;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

/* Image principale */
.mosaic-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 82%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(11, 34, 20, 0.13);
  z-index: 1;
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mosaic-wrapper:hover .mosaic-main img {
  transform: scale(1.04);
}

/* Petite image imbriquée */
.mosaic-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 42%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fafdfb;
  box-shadow: 0 16px 40px rgba(11, 34, 20, 0.14);
  z-index: 2;
}

.mosaic-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mosaic-wrapper:hover .mosaic-small img {
  transform: scale(1.04);
}

/* Badge flottant */
.impact-badge {
  position: absolute;
  top: 38%;
  right: -8%;
  background: #ffffff;
  border: 1px solid #e4ede8;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(11, 34, 20, 0.09);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(60, 224, 135, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2d8a4e;
  line-height: 1;
}

.badge-label {
  font-size: 0.72rem;
  color: #55655b;
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ===== COLONNE TEXTE ===== */
.apropos-text-side {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.apropos-body {
  font-size: 0.96rem;
  color: #4a5950;
  line-height: 1.75;
  margin: 0;
}

/* ===== BENTO CARDS ===== */
.bento-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e8eeeb;
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 34, 20, 0.07);
  border-color: #c5ddd0;
}

.bento-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.green-bg { background: rgba(45, 138, 78, 0.10); }
.blue-bg  { background: rgba(92, 107, 192, 0.10); }
.gold-bg  { background: rgba(249, 168, 37, 0.10); }

.bento-content h3 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #0b2214;
  margin: 0 0 4px;
}

.bento-content p {
  font-size: 0.86rem;
  color: #55655b;
  line-height: 1.6;
  margin: 0;
}

/* ===== VALEURS ===== */
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid #dce9e2;
  color: #1e5e34;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.83rem;
  font-weight: 600;
}

.dot {
  width: 6px;
  height: 6px;
  background: #3ce087;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .apropos-visual-side {
    order: -1;
  }
  .mosaic-wrapper {
    max-width: 420px;
    height: 460px;
    margin: 0 auto;
  }
  .impact-badge {
    right: 0;
    top: 36%;
  }
}

@media (max-width: 600px) {
  .section-apropos { padding: 64px 0; }
  .apropos-header-top { margin-bottom: 44px; }
  .mosaic-wrapper { height: 380px; }
  .impact-badge {
    top: auto;
    bottom: -16px;
    right: 10px;
  }
}



/* ===== SECTIONS SECTEURS===== */

.sc-section {
  padding: 110px 0 !important;
  background: #f0f7f3 !important;
  width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.sc-container {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 28px !important;
  box-sizing: border-box !important;
}

/* HEADER */
.sc-header {
  text-align: center !important;
  max-width: 680px !important;
  margin: 0 auto 56px !important;
}

.sc-tag {
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  color: #2d8a4e !important;
  font-weight: 700 !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.sc-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: #0b2214 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.2 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  background: none !important;
}

.sc-desc {
  font-size: 0.97rem !important;
  color: #4a5950 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* GRILLE */
.sc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

/* CARTE */
.sc-card {
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  min-height: 300px !important;
  cursor: pointer !important;
  background-image: var(--sc-img) !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  display: flex !important;
  align-items: flex-end !important;
}

.sc-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 48px rgba(11, 34, 20, 0.2) !important;
}

/* Dégradé sombre sur l'image */
.sc-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(7, 25, 14, 0.08) 0%,
    rgba(7, 25, 14, 0.55) 50%,
    rgba(7, 25, 14, 0.88) 100%
  ) !important;
  transition: background 0.35s ease !important;
  z-index: 1 !important;
}

.sc-card:hover .sc-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(7, 25, 14, 0.1) 0%,
    rgba(11, 80, 40, 0.65) 50%,
    rgba(11, 80, 40, 0.94) 100%
  ) !important;
}

/* Contenu texte */
.sc-card-body {
  position: relative !important;
  z-index: 2 !important;
  padding: 28px 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Icône */
.sc-icon {
  width: 46px !important;
  height: 46px !important;
  background: rgba(60, 224, 135, 0.18) !important;
  border: 1.5px solid rgba(60, 224, 135, 0.4) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  color: #3ce087 !important;
  margin-bottom: 14px !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}

.sc-card:hover .sc-icon {
  background: rgba(60, 224, 135, 0.28) !important;
  border-color: rgba(60, 224, 135, 0.7) !important;
}

.sc-card-body h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
}

.sc-card-body p {
  font-size: 0.84rem !important;
  color: rgba(220, 240, 228, 0.88) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: max-height 0.4s ease, opacity 0.4s ease !important;
}

.sc-card:hover .sc-card-body p {
  max-height: 120px !important;
  opacity: 1 !important;
}

/* 7e carte : pleine largeur sur la dernière ligne */
.sc-card-wide {
  grid-column: 1 / -1 !important;
  min-height: 220px !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sc-card-wide {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 600px) {
  .sc-section { padding: 72px 0 !important; }
  .sc-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .sc-card { min-height: 260px !important; }
  .sc-card-wide { min-height: 220px !important; }
  .sc-card-body p {
    max-height: 120px !important;
    opacity: 1 !important;
  }
}




/* ---------- PARTENAIRES ---------- */
.partenaires-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
}
.partenaires-track-wrapper::before,
.partenaires-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partenaires-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.partenaires-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.partenaires-track {
  display: flex;
  gap: 16px;
  animation: scrollTrack 22s linear infinite;
  width: max-content;
}
.partenaires-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.partner-badge:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: scale(1.04);
}
.partner-badge i { color: var(--green-mid); font-size: 0.85rem; }
.partner-badge:hover i { color: var(--green-accent); }



/* ---------- FORMATIONS ---------- */
.formations-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.formation-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.fc-featured {
  border-color: var(--green-mid);
  box-shadow: var(--shadow);
}
.fc-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.fc-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.formation-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.formation-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 16px; }
.fc-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.fc-list li i { color: var(--green); width: 16px; }
.fc-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.fc-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.formations-sub-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}
.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.mini-formation {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-formation:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.mf-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-mid);
}
.mini-formation strong {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.3;
}
.formation-form-wrapper {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.formation-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.formation-form-wrapper p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row input { margin-bottom: 0; }

/* ---------- ACTUALITÉS ---------- */
.actualites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.actu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.actu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green-mid);
}
.actu-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--green-light);
}
.actu-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.actu-card:hover .actu-img-wrapper img { transform: scale(1.06); }
.actu-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}
.actu-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.actu-date {
  font-size: 0.8rem;
  color: var(--green-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.actu-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.actu-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.actu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 8px;
  transition: gap var(--transition), color var(--transition);
}
.actu-link:hover { gap: 10px; color: var(--green-dark); }
.actu-more { text-align: center; }

/* ---------- TÉMOIGNAGES ---------- */
.temoignages-slider {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.temoignage-card {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.temoignage-card.active { display: block; animation: fadeInUp 0.5s ease; }
.temo-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--green-accent);
  margin-bottom: 16px;
  font-weight: 900;
}
.temoignage-card > p {
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.temo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.temo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.temo-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.temo-author span  { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.temo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.temo-prev, .temo-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}
.temo-prev:hover, .temo-next:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--green-dark);
}
.temo-dots { display: flex; gap: 8px; }
.temo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
}
.temo-dot.active {
  background: var(--green-accent);
  transform: scale(1.3);
}

/* ---------- DON ---------- */
.don-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.don-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.don-impact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.impact-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.impact-item strong { display: block; font-size: 1rem; color: var(--green-dark); font-weight: 700; }
.impact-item span   { font-size: 0.88rem; color: var(--text-light); }
.don-contacts p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 12px; }
.don-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); }
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-email:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.don-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.don-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.don-montants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.montant-btn {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.montant-btn:hover, .montant-btn.selected {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.don-form small {
  display: block;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 12px;
  line-height: 1.5;
}
.don-form small i { color: var(--green); }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  padding: 0 0 80px;
}
.newsletter-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.nl-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.nl-text p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.nl-form {
  display: flex;
  gap: 0;
  min-width: 360px;
}
.nl-form input {
  border-radius: 50px 0 0 50px;
  border: none;
  margin-bottom: 0;
  padding: 14px 20px;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
}
.nl-form input:focus {
  box-shadow: none;
  border-color: transparent;
}
.nl-form button {
  background: var(--green-accent);
  color: var(--green-dark);
  padding: 14px 24px;
  border-radius: 0 50px 50px 0;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.nl-form button:hover { background: var(--white); }
.newsletter-box > .form-msg.light { grid-column: 1/-1; color: rgba(255,255,255,0.9); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.ci-item:hover .ci-icon { background: var(--green); color: var(--white); }
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-text strong { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.ci-text span, .ci-text a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
  display: block;
}
.ci-text a:hover { color: var(--green); }
.contact-map { margin-top: 8px; }
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.15);
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-col > p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--green-accent);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--green-accent); padding-left: 4px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-list li i { color: var(--green-mid); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-list li a:hover { color: var(--green-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--green-mid); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green-accent); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 888;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--text);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 888;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
  cursor: pointer;
  border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.4s ease;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.modal-close:hover { background: var(--green); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablettes */
@media (max-width: 1024px) {
  .apropos-grid       { grid-template-columns: 1fr; gap: 40px; }
  .formations-featured { grid-template-columns: 1fr; }
  .don-wrapper        { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .newsletter-box     { grid-template-columns: 1fr; gap: 28px; }
  .nl-form            { min-width: unset; width: 100%; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobiles */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .topbar { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 998;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .btn-nav-don { text-align: center; justify-content: center; margin: 8px 0 0; padding: 14px; }
  .nav-toggle { display: flex; }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero-title  { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-stats  { gap: 20px; }
  .stat-sep    { display: none; }

  .section { padding: 64px 0; }

  .secteurs-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-row input { margin-bottom: 14px; }

  .don-montants { grid-template-columns: 1fr 1fr; }
  .don-form { padding: 24px; }

  .newsletter-box { padding: 36px 24px; }
  .nl-form { flex-direction: column; gap: 12px; }
  .nl-form input  { border-radius: 50px; }
  .nl-form button { border-radius: 50px; justify-content: center; }

  .contact-form { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .formations-grid { grid-template-columns: 1fr 1fr; }
  .formation-form-wrapper { padding: 24px; }

  .temoignage-card { padding: 28px 22px; }

  .modal-box { padding: 28px 20px; }

  .whatsapp-float { bottom: 80px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top    { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .don-montants { grid-template-columns: 1fr 1fr; }
  .formations-grid { grid-template-columns: 1fr; }
  .topbar-email { display: none; }
  .partner-badge { font-size: 0.82rem; padding: 12px 18px; }
}





/* --- SECTION SOUTIEN MÉDECIN --- */

/* Importation d'une police moderne (optionnel si vous en avez déjà une) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.section-soutien {
    font-family: 'Poppins', sans-serif;
    padding: 80px 20px;
    background-color: #f8fafc; /* Fond très léger et propre */
    display: flex;
    justify-content: center;
}

.soutien-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Contenu textuel */
.soutien-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.soutien-badge {
    align-self: flex-start;
    background-color: #fee2e2; /* Rouge très clair */
    color: #ef4444; /* Rouge alerte/urgent */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.soutien-content h2 {
    font-size: 2.2rem;
    color: #1e293b; /* Bleu nuit/Ardoise foncé */
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

.soutien-content p {
    font-size: 1.05rem;
    color: #64748b; /* Gris doux pour la lecture */
    line-height: 1.6;
    margin: 0;
}

/* Boutons d'action */
.soutien-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-principal, .btn-secondaire {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-principal {
    background-color: #0284c7; /* Bleu médical / confiance */
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.2);
}

.btn-principal:hover {
    background-color: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
}

.btn-secondaire {
    background-color: transparent;
    color: #0284c7;
    border: 2px solid #0284c7;
}

.btn-secondaire:hover {
    background-color: #e0f2fe;
    transform: translateY(-2px);
}

/* Image */
.soutien-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Adaptabilité Mobile (Responsive) --- */
@media (max-width: 968px) {
    .soutien-container {
        grid-template-columns: 1fr; /* Passe sur une seule colonne */
        gap: 40px;
    }

    .section-soutien {
        padding: 50px 20px;
    }

    .soutien-content h2 {
        font-size: 1.8rem;
    }

    .soutien-image img {
        height: 300px;
    }

    .soutien-actions {
        flex-direction: column; /* Boutons l'un sur l'autre sur mobile */
    }
}