/* QL Sporting maquette — feuille de styles partagée */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0F2235;            /* slate navy — sobre, sport, contraste fort */
  --bg-soft: #1A3450;
  --bg-light: #FAFCF5;      /* cream blanc — comme le fond du logo */
  --primary: #14B5C7;       /* cyan — accent principal du logo */
  --primary-dark: #0A8294;
  --mint: #94EAEE;          /* halo cyan pâle */
  --accent: #B8DD45;        /* lime vert — second accent du logo */
  --accent-dark: #8FAA28;
  --accent-glow: #DEEC8A;
  --text: #0A0A0A;          /* noir, comme le logo */
  --text-soft: #4D5A60;
  --text-light: #E1F8FB;
  --salarie: #B8DD45;       /* lime — énergie */
  --entreprise: #E69447;    /* orange — contraste */
  --association: #2D7AB8;   /* bleu */
  --coach: #14B5C7;         /* cyan — brand */
  --ville: #7F77DD;         /* violet */
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }

/* Bannière démo */
.banner-demo {
  background: #FBC02D;
  color: #5D4037;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}

/* Header navigation */
.header {
  background: var(--bg-light);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(11, 53, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--bg);
  letter-spacing: 1px;
  text-decoration: none;
}
.header .logo span { color: var(--primary); }
.header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.header nav a:hover, .header nav a.active { color: var(--primary); }
.header nav a.active { font-weight: 700; }
.header nav .cta-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}

/* Cover photo en tête de page (sauf accueil) */
.page-cover {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--bg);
  overflow: hidden;
}
.page-cover .cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.1);
}
.page-cover .cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 53, 64, 0.35) 0%, rgba(11, 53, 64, 0.85) 100%);
}
.page-cover .cover-content {
  position: relative;
  padding: 80px 32px;
  max-width: 800px;
}
.page-cover .surtitre {
  display: inline-block;
  background: rgba(148, 234, 238, 0.15);
  color: var(--mint);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(148, 234, 238, 0.3);
}
.page-cover h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.page-cover h1 em { color: var(--mint); font-style: normal; }
.page-cover p {
  font-size: 17px;
  color: rgba(225, 248, 251, 0.9);
  max-width: 640px;
  margin: 0 auto;
}

/* Hero d'accueil — plus haut et avec CTA */
.hero {
  background: var(--bg);
  color: #fff;
  padding: 100px 32px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.9);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(148, 234, 238, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(184, 221, 69, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 880px; margin: 0 auto; z-index: 2; }
.hero .surtitre {
  display: inline-block;
  background: rgba(148, 234, 238, 0.15);
  color: var(--mint);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(148, 234, 238, 0.3);
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--mint); font-style: normal; }
.hero p.sous-titre {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(225, 248, 251, 0.9);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Boutons */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, background 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid rgba(148, 234, 238, 0.4);
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--mint); }

/* Section générique */
.section-pad { padding: 80px 32px; }
.section-pad-soft { background: #FAFAF7; }
.section-wrap { max-width: 1200px; margin: 0 auto; }
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-intro h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-intro p {
  font-size: 17px;
  color: var(--text-soft);
}

/* Cards personas */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.persona-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(11, 53, 64, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 53, 64, 0.08);
}
.persona-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.persona-card.salarie .icon { background: rgba(184, 221, 69, 0.22); color: var(--accent-dark); }
.persona-card.entreprise .icon { background: rgba(230, 148, 71, 0.15); color: var(--entreprise); }
.persona-card.association .icon { background: rgba(45, 122, 184, 0.15); color: var(--association); }
.persona-card.coach .icon { background: rgba(20, 181, 199, 0.15); color: var(--primary-dark); }
.persona-card.ville .icon { background: rgba(127, 119, 221, 0.15); color: var(--ville); }
.persona-card .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  color: var(--text-soft);
}
.persona-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 14px;
  line-height: 1.25;
}
.persona-card p.promesse {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.persona-card ul {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}
.persona-card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.persona-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.persona-card ul li strong { color: var(--primary-dark); font-weight: 800; }
.persona-card .punchline {
  font-style: italic;
  font-size: 14px;
  color: var(--bg);
  border-left: 3px solid var(--primary);
  padding-left: 14px;
  margin-bottom: 24px;
  font-weight: 500;
}
.persona-card a.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
}
.persona-card a.cta:hover { background: var(--primary); }
.persona-card a.cta::after { content: '→'; }

/* Mini cards (teasers d'accueil) */
.mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(11, 53, 64, 0.06);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 53, 64, 0.07);
}
.mini-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-card.salarie .icon { background: rgba(184, 221, 69, 0.22); color: var(--accent-dark); }
.mini-card.entreprise .icon { background: rgba(230, 148, 71, 0.15); color: var(--entreprise); }
.mini-card.association .icon { background: rgba(45, 122, 184, 0.15); color: var(--association); }
.mini-card.coach .icon { background: rgba(20, 181, 199, 0.15); color: var(--primary-dark); }
.mini-card.ville .icon { background: rgba(127, 119, 221, 0.15); color: var(--ville); }
.mini-card h3 { font-size: 17px; font-weight: 800; color: var(--bg); margin-bottom: 8px; }
.mini-card p { font-size: 13px; color: var(--text-soft); margin-bottom: 16px; flex-grow: 1; }
.mini-card span.lien {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

/* Section fondateur */
.fondateur-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.fondateur-photo {
  background: linear-gradient(135deg, var(--bg) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fondateur-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(0.9);
}
.fondateur-photo .placeholder-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
  font-size: 13px;
  background: rgba(11, 53, 64, 0.85);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}
.fondateur-content .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}
.fondateur-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--bg);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.fondateur-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.fondateur-content .signature {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 53, 64, 0.1);
  font-size: 15px;
  color: var(--bg);
}
.fondateur-content .signature strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.fondateur-content .signature em {
  color: var(--text-soft);
  font-style: normal;
  font-size: 14px;
}

/* Section impact / ambition 2030 */
.section-impact {
  background: var(--bg);
  color: #fff;
  padding: 100px 32px;
  text-align: center;
}
.section-impact h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-impact h2 em { color: var(--mint); font-style: normal; }
.section-impact p.lead {
  color: rgba(225, 248, 251, 0.85);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.stats-block { max-width: 1100px; margin: 0 auto; }
.stats-block h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mint);
  margin-bottom: 24px;
  font-weight: 700;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.stat {
  background: rgba(148, 234, 238, 0.07);
  border: 1px solid rgba(148, 234, 238, 0.18);
  padding: 28px 20px;
  border-radius: 16px;
}
.stat .nb {
  font-size: 44px;
  font-weight: 900;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}
.stat .label {
  font-size: 13px;
  color: rgba(225, 248, 251, 0.85);
  font-weight: 500;
  line-height: 1.4;
}
.stats.financial .stat {
  background: rgba(29, 158, 117, 0.12);
  border-color: rgba(29, 158, 117, 0.35);
}
.stats.financial .stat .nb { color: #FFD08C; }
.section-impact .closing {
  margin-top: 48px;
  font-size: 17px;
  color: var(--mint);
  max-width: 720px;
  margin: 48px auto 0;
  font-style: italic;
  line-height: 1.6;
}

/* Formulaire de contact */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 53, 64, 0.08);
  border-radius: 20px;
  padding: 40px;
}
.form-wrap label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 6px;
  margin-top: 18px;
}
.form-wrap label:first-of-type { margin-top: 0; }
.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid rgba(11, 53, 64, 0.15);
  border-radius: 10px;
  font-family: inherit;
  color: var(--text);
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 221, 69, 0.22);
}
.form-wrap textarea { min-height: 140px; resize: vertical; }
.form-wrap button {
  margin-top: 28px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.form-wrap button:hover { background: var(--primary-dark); }

/* Citations / témoignages */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 12px;
  font-style: italic;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
  margin: 32px auto;
}
.testimonial cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14px;
  color: var(--bg);
  font-weight: 700;
}
.testimonial cite span {
  display: block;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 13px;
  margin-top: 2px;
}

/* Video placeholder */
.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 32px auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--bg) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.video-placeholder:hover { transform: scale(1.01); }
.video-placeholder .play-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(29, 158, 117, 0.4);
}
.video-placeholder .play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-placeholder .video-label {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 6px;
}
.video-placeholder .video-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--mint);
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Roadmap / timeline */
.roadmap {
  max-width: 980px;
  margin: 56px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(148, 234, 238, 0.2) 0%, var(--mint) 50%, rgba(148, 234, 238, 0.2) 100%);
  z-index: 0;
}
.roadmap-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.roadmap-step .dot {
  width: 24px;
  height: 24px;
  background: var(--mint);
  border-radius: 50%;
  margin: 24px auto 24px;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--mint);
}
.roadmap-step .year {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(148, 234, 238, 0.15);
  color: var(--mint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 0;
  border: 1px solid rgba(148, 234, 238, 0.3);
}
.roadmap-step h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 4px;
}
.roadmap-step p {
  font-size: 14px;
  color: rgba(225, 248, 251, 0.8);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* Section accroche / pull quote */
.accroche {
  background: var(--bg);
  color: #fff;
  padding: 60px 32px;
  text-align: center;
}
.accroche .lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 24px;
  letter-spacing: -0.3px;
}
.accroche .lead em { color: var(--mint); font-style: normal; }
.accroche .desc {
  font-size: 16px;
  color: rgba(225, 248, 251, 0.85);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Champion section */
.champion-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.champion-photo {
  background: linear-gradient(135deg, #2D3D52 0%, #0B3540 100%);
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.champion-photo .placeholder-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
  font-size: 13px;
  background: rgba(11, 53, 64, 0.85);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}
.champion-photo .medal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(218, 165, 32, 0.4);
}
@media (max-width: 768px) {
  .champion-wrap { grid-template-columns: 1fr; gap: 32px; }
  .roadmap { grid-template-columns: 1fr; gap: 32px; }
  .roadmap::before { display: none; }
  .video-placeholder { aspect-ratio: 16 / 10; }
  .video-placeholder .play-icon { width: 60px; height: 60px; }
  .video-placeholder .play-icon::after { border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
  .accroche .lead { font-size: 20px; }
}

/* Eyebrow label (LE CONSTAT, L'IDÉE, L'AMBITION) */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-primary { color: var(--primary); }
.eyebrow-mint { color: var(--mint); }
.eyebrow-entreprise { color: var(--entreprise); }

/* Trust badges sous le hero */
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.hero-badges .trust-badge {
  background: rgba(148, 234, 238, 0.1);
  color: var(--mint);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(148, 234, 238, 0.25);
}

/* Constat — gros chiffres avec contexte */
.constat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.constat-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid rgba(11, 53, 64, 0.06);
  text-align: left;
}
.constat-card .big-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--entreprise);
  margin-bottom: 16px;
  letter-spacing: -3px;
}
.constat-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Cercle vertueux */
.cercle-vertueux {
  display: grid;
  grid-template-columns: repeat(4, 1fr) ;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
}
.cercle-vertueux .step {
  background: rgba(148, 234, 238, 0.07);
  border: 1px solid rgba(148, 234, 238, 0.18);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
  position: relative;
}
.cercle-vertueux .step-num {
  width: 36px;
  height: 36px;
  background: var(--mint);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 16px;
}
.cercle-vertueux .step h4 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.cercle-vertueux .step p {
  font-size: 13px;
  color: rgba(225, 248, 251, 0.8);
  line-height: 1.55;
}
.cercle-vertueux .step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mint);
  font-size: 22px;
  font-weight: 900;
  z-index: 1;
}
.cercle-vertueux .step:last-child::after { display: none; }

/* Hook fondateur (citation + photo) */
.founder-hook {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto 32px;
  align-items: center;
}
.founder-quote {
  position: relative;
  padding-left: 60px;
}
.founder-quote .quote-mark {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 100px;
  font-weight: 900;
  color: var(--primary);
  line-height: 0.8;
  opacity: 0.4;
  font-family: Georgia, serif;
}
.founder-quote p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bg);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.founder-quote cite {
  font-size: 14px;
  color: var(--text-soft);
  font-style: normal;
  font-weight: 700;
}
.founder-photo-mini {
  background: linear-gradient(135deg, var(--bg) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-photo-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.founder-photo-mini .placeholder-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-size: 12px;
  background: rgba(11, 53, 64, 0.85);
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
}

/* Stats mini (home) */
.stats-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.stat-mini {
  background: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid rgba(11, 53, 64, 0.08);
  text-align: center;
}
.stat-mini .nb {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}
.stat-mini .label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.4;
}

/* Final CTA */
.final-cta {
  background: var(--bg);
  color: #fff;
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.final-cta-content { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.final-cta h2 em { color: var(--mint); font-style: normal; }
.final-cta p {
  font-size: 18px;
  color: rgba(225, 248, 251, 0.9);
  margin-bottom: 36px;
  line-height: 1.6;
}
.final-cta .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cercle-vertueux { grid-template-columns: 1fr; }
  .cercle-vertueux .step::after { content: '↓'; right: 50%; top: auto; bottom: -16px; transform: translateX(50%); }
  .founder-hook { grid-template-columns: 1fr; gap: 32px; }
  .founder-quote { padding-left: 0; }
  .founder-quote .quote-mark { position: static; font-size: 60px; display: block; margin-bottom: -20px; }
  .founder-quote p { font-size: 18px; }
  .constat-card .big-number { font-size: 48px; }
  .final-cta h2 { font-size: 30px; }
}

/* Footer */
.footer {
  background: #061E26;
  color: rgba(225, 248, 251, 0.6);
  padding: 40px 32px;
  text-align: center;
  font-size: 14px;
}
.footer a { color: var(--mint); text-decoration: none; }
.footer a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 80px; }
  .hero h1 { font-size: 36px; }
  .hero p.sous-titre { font-size: 16px; }
  .header { padding: 14px 20px; }
  .header nav { display: none; }
  .page-cover .cover-content { padding: 60px 20px; }
  .page-cover h1 { font-size: 30px; }
  .section-pad { padding: 56px 20px; }
  .section-intro h2 { font-size: 26px; }
  .fondateur-wrap { grid-template-columns: 1fr; gap: 32px; }
  .fondateur-content h2 { font-size: 26px; }
  .section-impact { padding: 60px 20px; }
  .section-impact h2 { font-size: 28px; }
  .stat .nb { font-size: 32px; }
  .form-wrap { padding: 28px 20px; }
}
