/* ============================================================
   INDEX.CSS - Styles spécifiques à la page d'accueil CGI
   Community Growth Initiative | cgi-mfi.com
   MOBILE FIRST - Refonte v2 juin 2026
   ============================================================ */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh; /* évite l'effet de recadrage mobile */
  min-height: 100vh;  /* fallback navigateurs anciens */
  overflow: hidden;
  background: var(--black);
  display: flex; align-items: center;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex; align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(192,57,43,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(192,57,43,0.10) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%);
  z-index: 1;
  animation: heroPatternShift 12s ease-in-out infinite alternate;
}
@keyframes heroPatternShift {
  0%   { background-image:
    radial-gradient(circle at 20% 50%, rgba(192,57,43,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(192,57,43,0.10) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%);
    transform: scale(1);
  }
  100% { background-image:
    radial-gradient(circle at 35% 40%, rgba(192,57,43,0.22) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(201,168,76,0.16) 0%, transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(192,57,43,0.12) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%);
    transform: scale(1.06);
  }
}

/* Grille décorative sur le hero */
.hero-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(30,30,30,0.75) 60%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding: clamp(80px, 18vw, 140px) clamp(16px, 4vw, 40px) clamp(80px, 12vw, 120px);
  max-width: 1200px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: var(--red-light);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red-mid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--red-mid); }
.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 560px; margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { flex: 1 1 160px; max-width: 260px; justify-content: center; }

.hero-arrows {
  position: absolute; bottom: 24px; right: clamp(16px, 4vw, 40px);
  z-index: 5; display: flex; gap: 8px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.hero-arrow:hover { border-color: var(--red); background: var(--red); }
.hero-nav {
  position: absolute; bottom: 36px; left: clamp(16px, 4vw, 40px);
  z-index: 5; display: flex; gap: 8px;
}
.hero-dot { width: 20px; height: 3px; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--red); width: 36px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px clamp(16px, 4vw, 40px);
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 16px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 36px; height: 36px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.trust-label { font-size: 12px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.trust-sub { font-size: 11px; color: var(--gray-500); }
/* Séparateurs cachés sur mobile, visibles tablette+ */
.trust-divider { display: none; }

/* ===== VISION STRIP ===== */
.vision-strip {
  background: var(--dark);
  padding: clamp(20px, 4vw, 32px) clamp(16px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 0;
}
.vision-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vision-item:last-child { border-bottom: none; }
.vision-icon { font-size: 24px; flex-shrink: 0; }
.vision-label {
  font-size: 11px; font-weight: 700; color: var(--red-mid);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.vision-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* ===== À PROPOS ===== */
.about { padding: clamp(48px, 8vw, 96px) 0; background: var(--white); }
/* 1 col mobile */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-img-float { position: relative; padding-bottom: 16px; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--dark) 0%, var(--red-deep) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; overflow: hidden; position: relative;
}
.handshake-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.about-img-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 4px solid var(--red);
  z-index: 2;
}
.about-badge-num {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 900; color: var(--red);
}
.about-badge-label { font-size: 11px; color: var(--gray-500); letter-spacing: 1px; text-transform: uppercase; }
.about-desc { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }
/* 1 col mobile pour les piliers */
.about-pillars { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 40px; height: 40px; background: var(--red-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pillar-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pillar-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.about-cta { margin-top: 24px; display: inline-flex; }

/* ===== IMPACT STRIP ===== */
.impact { background: var(--red-deep); padding: clamp(40px, 6vw, 64px) 0; }
/* 2 cols mobile */
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.impact-item { text-align: center; padding: 16px 12px; }
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 900; color: var(--white); line-height: 1;
}
.impact-suffix { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--gold); }
.impact-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); margin-top: 8px; letter-spacing: 0.5px; }
.impact-desc { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ===== Extraits inline style → classes ===== */
.products-header { text-align: center; }
.transparence .section-eyebrow { color: var(--gold); }
.transparence .section-title { color: var(--white); margin-bottom: 12px; }

/* ===== PRODUITS ===== */
.products { padding: clamp(48px, 8vw, 96px) 0; background: var(--gray-50); }
.prod-tabs {
  display: flex; border-bottom: 2px solid var(--gray-100);
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.prod-tabs::-webkit-scrollbar { display: none; }
.prod-tab {
  padding: 12px 20px;
  font-size: 13px; font-weight: 600; color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body);
  white-space: nowrap; flex-shrink: 0;
  min-height: 48px;
}
.prod-tab.active { color: var(--red); border-bottom-color: var(--red); }
.prod-panel { display: none; }
/* 1 col mobile */
.prod-panel.active { display: grid; grid-template-columns: 1fr; gap: 20px; }
.prod-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-card.featured { border-color: var(--red); box-shadow: var(--shadow-red); }
.prod-header { padding: 24px 24px 16px; border-bottom: 1px solid var(--gray-100); }
.prod-icon-wrap {
  width: 48px; height: 48px; background: var(--red-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 14px;
}
.prod-card.featured .prod-icon-wrap { background: var(--red); }
.prod-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.prod-tag { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; }
.prod-body { padding: 20px 24px; }
.prod-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.prod-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.prod-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--dark); }
.prod-feat::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.prod-rate { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--red); margin-bottom: 16px; }
.prod-rate span { font-size: 14px; font-weight: 400; color: var(--gray-300); }
.prod-cta {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 12px;
  border: 2px solid var(--red); color: var(--red);
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius); transition: var(--transition);
  min-height: 44px;
}
.prod-cta:hover { background: var(--red); color: var(--white); }
.prod-card.featured .prod-cta { background: var(--red); color: var(--white); }
.prod-card.featured .prod-cta:hover { background: var(--red-dark); }
.prod-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 2px; letter-spacing: 1px;
}

/* ===== SIMULATEUR (homepage mini) ===== */
.simulator { padding: clamp(48px, 8vw, 96px) 0; background: var(--dark); }
/* 1 col mobile */
.sim-inner { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.sim-eyebrow { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.sim-title { font-family: var(--font-display); font-size: clamp(22px, 4vw, 38px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.sim-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; }
.sim-why { display: flex; flex-direction: column; gap: 14px; }
.sim-why-item { display: flex; align-items: flex-start; gap: 12px; }
.sim-why-dot { width: 8px; height: 8px; background: var(--red-mid); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.sim-why-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.sim-why-text strong { color: var(--white); }

.sim-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
}
.sim-field { margin-bottom: 20px; }
.sim-label {
  display: block; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.sim-input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 16px;
  font-family: var(--font-mono); border-radius: var(--radius);
  transition: var(--transition); outline: none; min-height: 48px;
}
.sim-input:focus { border-color: var(--red); background: rgba(255,255,255,0.12); }
.sim-input::placeholder { color: rgba(255,255,255,0.25); }
.sim-range {
  width: 100%; -webkit-appearance: none; height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--red) 0%, rgba(255,255,255,0.2) 0%);
  outline: none; margin-top: 8px; cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px;
  border-radius: 50%; background: var(--red); cursor: pointer;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.25);
}
.sim-range-labels { display: flex; justify-content: space-between; margin-top: 6px; }
.sim-range-labels span { font-size: 11px; color: rgba(255,255,255,0.3); }
.sim-duree-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.sim-dur-btn {
  padding: 10px 16px; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600;
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
  background: transparent; font-family: var(--font-body); min-height: 44px;
}
.sim-dur-btn:hover,
.sim-dur-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.sim-btn {
  width: 100%; padding: 14px; background: var(--red); color: var(--white);
  font-size: 15px; font-weight: 700; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
  margin-top: 20px; border: none; font-family: var(--font-body); min-height: 48px;
}
.sim-btn:hover { background: var(--red-dark); }
.sim-result {
  display: none; margin-top: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 20px;
}
.sim-result.visible { display: block; animation: fadeInUp 0.4s ease; }
.sim-result-title {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.sim-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sim-res-item { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 14px; }
.sim-res-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.sim-res-val { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.sim-res-val.highlight { color: var(--gold); }
.sim-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 16px; line-height: 1.5; }
.sim-total-row {
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius); padding: 14px; margin-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.sim-total-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; }
.sim-total-val { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--red-mid); }

/* ===== RSE / IMPACT ===== */
.rse { padding: clamp(48px, 8vw, 96px) 0; background: var(--white); }
.rse-header { text-align: center; margin-bottom: clamp(32px, 5vw, 64px); }
.rse-intro { max-width: 760px; margin: 16px auto 0; font-size: clamp(14px, 2vw, 16px); color: var(--gray-500); line-height: 1.8; }
/* 1 col mobile */
.rse-grid-top { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
.rse-card { border-radius: var(--radius-md); padding: clamp(20px, 4vw, 32px); border: 1px solid var(--gray-100); position: relative; overflow: hidden; }
.rse-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red); }
.rse-card-icon { font-size: 28px; margin-bottom: 14px; }
.rse-card-tag { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.rse-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.rse-card-text { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.rse-card-kpi { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--red); margin-top: 14px; }
.rse-card-kpi span { font-size: 14px; font-weight: 400; color: var(--gray-300); }

.rse-odd-row { background: var(--gray-50); border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 40px); margin-bottom: 28px; }
.rse-odd-title { font-size: 12px; font-weight: 700; color: var(--gray-700); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
/* 2 cols mobile */
.rse-odd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rse-odd-item { background: var(--white); border-radius: var(--radius-md); padding: 16px; border: 1px solid var(--gray-100); text-align: center; }
.rse-odd-num { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--red); line-height: 1; }
.rse-odd-label { font-size: 12px; font-weight: 700; color: var(--dark); margin: 6px 0 4px; }
.rse-odd-desc { font-size: 11px; color: var(--gray-500); line-height: 1.5; }
.rse-odd-item:nth-child(1) .rse-odd-num { color: #E53935; }
.rse-odd-item:nth-child(2) .rse-odd-num { color: #FF6F00; }
.rse-odd-item:nth-child(3) .rse-odd-num { color: #1E8449; }
.rse-odd-item:nth-child(4) .rse-odd-num { color: #1565C0; }

.rse-gov { background: var(--dark); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); margin-bottom: 28px; }
.rse-gov-title { font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.rse-gov-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
/* 2 cols mobile */
.rse-gov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rse-gov-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 18px; }
.rse-gov-icon { font-size: 22px; margin-bottom: 10px; }
.rse-gov-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.rse-gov-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* 1 col mobile */
.rse-actions { display: grid; grid-template-columns: 1fr; gap: 16px; }
.rse-action { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-100); }
.rse-action-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.rse-action-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.rse-action-text { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.rse-actions-title { font-family: var(--font-display); font-size: clamp(18px, 3vw, 22px); font-weight: 700; color: var(--dark); margin-bottom: 20px; }

/* ===== ESPACE MEMBRE ===== */
.espace { padding: clamp(48px, 8vw, 96px) 0; background: var(--gray-50); }
/* 1 col mobile */
.espace-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.espace-login {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px); box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.espace-login h3 { font-family: var(--font-display); font-size: clamp(18px, 3vw, 22px); font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.espace-login .sub { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.espace-tabs { display: flex; border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.espace-tab {
  flex: 1; padding: 10px; font-size: 13px; font-weight: 600;
  color: var(--gray-500); cursor: pointer; background: var(--white);
  border: none; transition: var(--transition); text-align: center;
  font-family: var(--font-body); min-height: 44px;
}
.espace-tab.active { background: var(--red); color: var(--white); }
.espace-form-group { margin-bottom: 16px; }
.espace-form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-700); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 8px; }
.espace-form-group input {
  width: 100%; padding: 12px 16px; background: var(--gray-50);
  border: 2px solid var(--gray-100); color: var(--dark);
  font-size: 16px; font-family: var(--font-body);
  border-radius: var(--radius); transition: var(--transition);
  outline: none; min-height: 48px;
}
.espace-form-group input:focus { border-color: var(--red); background: var(--white); }
.espace-form-group input::placeholder { color: var(--gray-300); }
.espace-forgot { text-align: right; margin-top: -8px; margin-bottom: 16px; }
.espace-forgot a { font-size: 12px; color: var(--red); }
.espace-submit {
  width: 100%; padding: 14px; background: var(--red); color: var(--white);
  font-size: 14px; font-weight: 700; border-radius: var(--radius);
  cursor: pointer; border: none; font-family: var(--font-body);
  transition: var(--transition); min-height: 48px;
}
.espace-submit:hover { background: var(--red-dark); }
.espace-note { font-size: 11px; color: var(--gray-500); text-align: center; margin-top: 12px; }
.espace-right {}
.espace-features-title { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.espace-features-sub { font-size: 15px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }
.espace-feat-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.espace-feat { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-100); transition: var(--transition); }
.espace-feat:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.espace-feat-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.espace-feat-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.espace-feat-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.espace-badge { background: var(--red-light); border: 1px solid var(--red); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.espace-badge-text { font-size: 13px; color: var(--red-dark); font-weight: 600; line-height: 1.5; }

/* ===== LEADERSHIP ===== */
.leadership { padding: clamp(48px, 8vw, 96px) 0; background: var(--white); }
.leadership-header { margin-bottom: clamp(32px, 5vw, 56px); }
.leadership-mission {
  font-size: clamp(14px, 2vw, 15px); color: var(--gray-500); line-height: 1.8;
  font-style: italic;
}

/* Gov split layout */
.gov-split { display: grid; gap: clamp(24px, 4vw, 48px); text-align: left; }
.gov-title { text-align: left; }
.gov-pillars { display: flex; gap: 10px; flex-wrap: wrap; }
.gov-pillar {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); border: 1.5px solid var(--red);
  border-radius: var(--radius); padding: 5px 12px;
}
.gov-pillar::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--red); flex-shrink: 0;
}
.leader-group-header--banner { border-left: 3px solid var(--red); padding-left: 20px; }

/* Groupes (Administrateurs / Direction Générale / Comité) */
.leader-group {
  margin-bottom: clamp(40px, 6vw, 72px);
}
.leader-group-header { margin-bottom: 24px; }
.leader-group-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--red);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px;
}
.leader-group-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px); font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.leader-group-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; max-width: 680px; }

/* Grille de profils — mobile : 2 cols par défaut */
.leader-profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 3vw, 24px); }
.leader-profiles--dg { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.leader-profiles--comite { grid-template-columns: repeat(2, 1fr); }

/* Carte profil */
.leader-profile {
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.leader-profile:hover { transform: translateY(-4px); }

/* Zone photo — rapport 3:4, prête pour une <img> */
.leader-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--dark) 0%, var(--red-deep) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.leader-photo--gold {
  background: linear-gradient(160deg, var(--dark) 0%, #3a2a00 100%);
}
/* L'image réelle, quand elle sera ajoutée */
.leader-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
/* Initiales / placeholder visible avant l'image */
.leader-photo-initials {
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 28px); font-weight: 900;
  color: rgba(255,255,255,0.18);
  letter-spacing: 2px;
  user-select: none;
  pointer-events: none;
}
/* Barre couleur en bas de la photo */
.leader-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.leader-photo--gold::after { background: var(--gold); }

/* Corps de la carte */
.leader-profile-body { display: flex; flex-direction: column; gap: 4px; }
.leader-profile-badge {
  display: inline-flex; align-items: center;
  background: var(--gray-100); color: var(--gray-700);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius);
  align-self: flex-start; margin-bottom: 4px;
}
.leader-profile-badge--primary {
  background: var(--red); color: var(--white);
}
.leader-profile-badge--gold {
  background: var(--dark); color: var(--gold);
}
.leader-profile-name {
  font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3;
}
.leader-profile-title {
  font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3;
  margin-bottom: 4px;
}
.leader-profile-desc {
  font-size: 12px; color: var(--gray-500); line-height: 1.6;
}

/* ===== COMMUNAUTÉ ===== */
.community { padding: clamp(48px, 8vw, 96px) 0; background: var(--white); }
.comm-eyebrow { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; text-align: center; margin-bottom: 12px; }
.comm-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 42px); font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 8px; }
.comm-subtitle { font-size: clamp(14px, 2vw, 16px); color: var(--gray-500); text-align: center; margin-bottom: 36px; }
/* 2 cols mobile */
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.comm-card { border-radius: var(--radius-md); overflow: hidden; background: var(--gray-50); border: 1px solid var(--gray-100); transition: var(--transition); }
.comm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.comm-card-img { height: 96px; background: linear-gradient(135deg, var(--dark), var(--red-deep)); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.comm-card-body { padding: 12px; }
.comm-card-name { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.comm-card-role { font-size: 11px; color: var(--red); font-weight: 500; margin-bottom: 5px; }
.comm-card-desc { font-size: 11px; color: var(--gray-500); line-height: 1.5; }
.comm-year { text-align: center; margin-bottom: 40px; }
.comm-year-label { font-size: 11px; color: var(--gray-300); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.comm-year-num { font-family: var(--font-display); font-size: clamp(48px, 15vw, 80px); font-weight: 900; color: var(--gray-100); line-height: 1; }

/* ===== TÉMOIGNAGES ===== */
.testimonials { padding: clamp(48px, 8vw, 96px) 0; background: var(--gray-50); }
.testi-header { text-align: center; margin-bottom: 36px; }
.testi-track-wrap { overflow: hidden; margin: 0 clamp(-16px, -4vw, -40px); padding: 0 clamp(16px, 4vw, 40px); }
.testi-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
/* Pleine largeur mobile */
.testimonial-card {
  flex: 0 0 min(88vw, 320px);
  background: var(--white); border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 36px); border: 1px solid var(--gray-100);
  position: relative;
}
.testi-quote { font-size: 40px; color: var(--red-light); font-family: Georgia; line-height: 1; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--gray-500); }
.testi-stars { color: var(--gold); font-size: 14px; margin-top: 4px; }
.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.testi-ctrl { width: 44px; height: 44px; border: 2px solid var(--gray-100); background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: var(--transition); }
.testi-ctrl:hover { border-color: var(--red); color: var(--red); }

/* ===== AGENDA (section homepage) ===== */
.agenda { padding: clamp(48px, 8vw, 96px) 0; background: var(--white); }
.agenda-header { text-align: center; margin-bottom: 36px; }
.agenda-month { text-align: center; font-size: 13px; color: var(--gray-500); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.cal-nav { width: 36px; height: 36px; border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; border-radius: var(--radius); }
.cal-nav:hover { border-color: var(--red); color: var(--red); }
/* 1 col mobile (calendrier caché sur mobile) */
.agenda-body { display: grid; grid-template-columns: 1fr; gap: 24px; }
.calendar { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); overflow: hidden; display: none; }
.cal-header { background: var(--dark); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.cal-header button { background: none; border: none; color: var(--white); cursor: pointer; font-size: 18px; padding: 4px; min-height: 36px; min-width: 36px; display: flex; align-items: center; justify-content: center; }
#calMonth2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-dow { padding: 8px 0; text-align: center; font-size: 10px; font-weight: 700; color: var(--gray-300); letter-spacing: 1px; text-transform: uppercase; }
.cal-day { padding: 8px 0; text-align: center; font-size: 13px; cursor: pointer; transition: var(--transition); position: relative; }
.cal-day:hover { color: var(--red); }
.cal-day.today { font-weight: 700; color: var(--white); }
.cal-day.today::before { content: ''; position: absolute; inset: 3px; background: var(--red); border-radius: 50%; z-index: -1; }
.cal-day.other-month { color: var(--gray-300); }
.cal-day.has-event::after { content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); }
.cal-day.selected { color: var(--red); font-weight: 700; }
.agenda-events { display: flex; flex-direction: column; gap: 12px; }
.agenda-tabs { display: flex; border-bottom: 2px solid var(--gray-100); margin-bottom: 16px; overflow-x: auto; scrollbar-width: none; }
.agenda-tabs::-webkit-scrollbar { display: none; }
.agenda-tab {
  padding: 10px 18px; font-size: 13px; font-weight: 600; color: var(--gray-500);
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: var(--transition); background: none; border-top: none;
  border-left: none; border-right: none; font-family: var(--font-body);
  white-space: nowrap; flex-shrink: 0; min-height: 44px;
}
.agenda-tab.active { color: var(--red); border-bottom-color: var(--red); }
.agenda-panel { display: none; }
.agenda-panel.active { display: flex; flex-direction: column; gap: 12px; }
.event-card { display: flex; gap: 14px; padding: 14px; border: 1px solid var(--gray-100); border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); background: var(--white); }
.event-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.event-date { min-width: 48px; text-align: center; background: var(--red); color: var(--white); border-radius: var(--radius); padding: 8px 4px; flex-shrink: 0; }
.event-day { font-family: var(--font-display); font-size: 20px; font-weight: 900; line-height: 1; }
.event-month { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.event-info { flex: 1; min-width: 0; }
.event-category { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.event-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.event-desc { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
.event-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.event-tag { font-size: 10px; padding: 3px 7px; background: var(--gray-100); color: var(--gray-500); border-radius: 2px; }

/* ===== INVESTISSEURS ===== */
.investors { padding: clamp(48px, 8vw, 96px) 0; background: var(--dark); }
.inv-header { text-align: center; margin-bottom: clamp(32px, 5vw, 64px); }
.inv-header .section-eyebrow { color: var(--gold); }
.inv-header .section-title { color: var(--white); }
.inv-header .section-subtitle { color: rgba(255,255,255,0.6); }
/* 2 cols mobile */
.inv-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: clamp(32px, 5vw, 64px); }
.inv-kpi { text-align: center; padding: clamp(14px, 3vw, 28px) 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); }
.inv-kpi-val { font-family: var(--font-display); font-size: clamp(18px, 4vw, 28px); font-weight: 900; color: var(--white); }
.inv-kpi-unit { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 4px; }
.inv-kpi-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 6px; }
/* 1 col mobile */
.inv-body { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.inv-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 40px); }
.inv-form h3 { font-family: var(--font-display); font-size: clamp(18px, 3vw, 22px); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.inv-form p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
/* Boutons empilés sur mobile */
.inv-cta-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.inv-cta-group .btn { justify-content: center; }
.inv-downloads { margin-top: 24px; }
.inv-download { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); margin-bottom: 10px; cursor: pointer; transition: var(--transition); }
.inv-download:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.inv-dl-icon { font-size: 24px; flex-shrink: 0; }
.inv-dl-name { font-size: 14px; font-weight: 700; color: var(--white); }
.inv-dl-size { font-size: 12px; color: rgba(255,255,255,0.4); }
.inv-partners { margin-top: 40px; text-align: center; }
.inv-partners-label { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.partners-row { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.partner-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 8px 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); }
.inv-form-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 12px; }

/* ===== REJOINDRE ===== */
.join { padding: clamp(48px, 8vw, 96px) 0; background: var(--gray-50); }
/* 1 col mobile */
.join-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.join-eyebrow { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.join-title { font-family: var(--font-display); font-size: clamp(24px, 5vw, 42px); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.join-desc { font-size: clamp(14px, 2vw, 16px); color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }
.join-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.join-step { display: flex; gap: 16px; align-items: flex-start; }
.join-step-num { width: 36px; height: 36px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; border-radius: 50%; flex-shrink: 0; }
.join-step-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.join-step-text p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.join-alert { background: var(--red-light); border-left: 4px solid var(--red); border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 24px; }
.join-alert strong { font-size: 14px; color: var(--red-dark); }
.join-alert p { font-size: 13px; color: var(--red-dark); margin-top: 4px; }
.join-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 40px); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.join-form h3 { font-family: var(--font-display); font-size: clamp(18px, 3vw, 22px); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.join-form > p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }
.form-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--red); width: 18px; height: 18px; }
.form-cost { text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 16px; }
.form-cost strong { color: var(--dark); }

/* ===================================================
   TABLETTE (768px+)
=================================================== */
@media (min-width: 768px) {
  /* Trust bar : séparateurs visibles */
  .trust-bar-inner { justify-content: space-between; }
  .trust-divider { display: block; width: 1px; height: 32px; background: var(--gray-100); }

  /* Vision strip : horizontal */
  .vision-strip { flex-direction: row; flex-wrap: nowrap; padding: 24px clamp(16px, 4vw, 40px); }
  .vision-item { flex: 1; max-width: none; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); padding: 8px clamp(12px, 2vw, 32px); }
  .vision-item:last-child { border-right: none; }

  /* About : 2 cols avec piliers 2 cols */
  .about-pillars { grid-template-columns: 1fr 1fr; }

  /* Impact : 4 cols tablette+ */
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
  .impact-item { border-right: 1px solid rgba(255,255,255,0.1); padding: 0 20px; }
  .impact-item:last-child { border-right: none; }

  /* Produits : 2 cols */
  .prod-panel.active { grid-template-columns: repeat(2, 1fr); }

  /* RSE */
  .rse-grid-top { grid-template-columns: repeat(2, 1fr); }
  .rse-odd-grid { grid-template-columns: repeat(4, 1fr); }
  .rse-gov-grid { grid-template-columns: repeat(4, 1fr); }
  .rse-actions { grid-template-columns: repeat(2, 1fr); }

  /* Leadership : split 2 cols tablette */
  .gov-split { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Leadership : 3 cols tablette pour admins et comité */
  .leader-profiles--admin { grid-template-columns: repeat(3, 1fr); }
  .leader-profiles--comite { grid-template-columns: repeat(3, 1fr); }

  /* Communauté : 3 cols tablette */
  .comm-grid { grid-template-columns: repeat(3, 1fr); }
  .comm-card-img { height: 110px; }

  /* Investisseurs : 3 cols tablette */
  .inv-kpis { grid-template-columns: repeat(3, 1fr); }
  .inv-cta-group { flex-direction: row; flex-wrap: wrap; }
  .inv-cta-group .btn { flex: 1 1 auto; }

  /* Témoignages : 2 par vue */
  .testimonial-card { flex: 0 0 calc(50% - 10px); }

  /* Agenda : calendrier visible */
  .agenda-body { grid-template-columns: 1fr 1fr; gap: 40px; }
  .calendar { display: block; }
}

/* ===================================================
   DESKTOP (1024px+)
=================================================== */
@media (min-width: 1024px) {
  /* About : 2 cols avec grand gap */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .about-img-float { padding-bottom: 0; }
  .about-img-main { aspect-ratio: auto; height: 480px; font-size: 80px; }
  .about-img-badge { bottom: 24px; right: -32px; }

  /* Produits : 3 cols desktop */
  .prod-panel.active { grid-template-columns: repeat(3, 1fr); }
  .prod-card:hover { transform: translateY(-8px); }

  /* Simulateur homepage : 2 cols */
  .sim-inner { grid-template-columns: 1fr 1fr; gap: 64px; }

  /* RSE */
  .rse-grid-top { grid-template-columns: repeat(2, 1fr); }

  /* Espace : 2 cols */
  .espace-grid { grid-template-columns: 1fr 1fr; gap: 64px; }

  /* Leadership desktop : 5 cols pour le comité */
  .leader-profiles--comite { grid-template-columns: repeat(5, 1fr); }
  .leader-profiles--admin { grid-template-columns: repeat(3, 1fr); max-width: 720px; }

  /* Communauté : 5 cols desktop */
  .comm-grid { grid-template-columns: repeat(5, 1fr); }
  .comm-card-img { height: 120px; font-size: 40px; }
  .comm-card-body { padding: 16px; }
  .comm-card-name { font-size: 14px; }
  .comm-card-role { font-size: 12px; }
  .comm-card-desc { font-size: 12px; }

  /* Investisseurs : 6 cols, 2 cols body */
  .inv-kpis { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .inv-body { grid-template-columns: 1fr 1fr; gap: 48px; }

  /* Rejoindre : 2 cols */
  .join-grid { grid-template-columns: 1fr 1fr; gap: 64px; }

  /* Témoignages : 3 par vue */
  .testimonial-card { flex: 0 0 calc(33.333% - 14px); }

  /* Hero : boutons côte à côte */
  .hero-cta .btn { flex: 0 1 auto; }
}
