/* ============================================================
   QGE — Quartier Général des Entrepreneurs
   Feuille de style — charte graphique v1
   ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --navy: #2f6e77;
  --navy-light: #3d8089;
  --turquoise: #1d7a73;
  --turquoise-light: #6fd6c4;
  --ivoire: #f8f3ec;
  --ivoire-dim: #f1ebe0;
  --anthracite: #2c2c2c;
  --bronze: #b08a57;
  --white: #ffffff;

  --on-navy: #f8f3ec;
  --on-navy-dim: rgba(248, 243, 236, 0.72);

  --font-title: "Lora", "Georgia", serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 50px -25px rgba(47, 110, 119, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(47, 110, 119, 0.28);

  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivoire);
  color: var(--anthracite);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
section {
  position: relative;
}
h1,
h2,
h3,
h4,
blockquote {
  font-family: var(--font-title);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.18;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
section[id] {
  scroll-margin-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Motif système : le trait turquoise ---------- */
.trait {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--turquoise);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s var(--ease);
}
.is-visible .trait,
.trait.is-in {
  transform: scaleX(1);
}
.bg-navy .trait {
  background: var(--turquoise-light);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 18px;
}
.eyebrow--onnavy {
  color: var(--turquoise-light);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.section-head p {
  color: #4a4a4a;
  font-size: 1.05rem;
}
.bg-navy .section-head p {
  color: var(--on-navy-dim);
}

.pad {
  padding: clamp(64px, 9vw, 112px) 0;
}
.bg-navy {
  background: var(--navy);
  color: var(--on-navy-dim);
}
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--on-navy);
}
.bg-ivoire-dim {
  background: var(--ivoire-dim);
}

/* ---------- Boutons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--ivoire);
  --mx: 0px;
  --my: 0px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease),
    transform 0.12s linear;
  white-space: nowrap;
  transform: translate(var(--mx), var(--my));
}
.btn:hover {
  transform: translate(var(--mx), var(--my)) translateY(-3px);
  box-shadow: 0 14px 28px -12px rgba(47, 110, 119, 0.45);
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--accent {
  --btn-bg: var(--turquoise);
  --btn-fg: #ffffff;
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  border-color: rgba(47, 110, 119, 0.25);
}
.btn--ghost:hover {
  border-color: var(--navy);
}
.btn--ghost-onnavy {
  --btn-bg: transparent;
  --btn-fg: var(--ivoire);
  border-color: rgba(248, 243, 236, 0.35);
}
.btn--ghost-onnavy:hover {
  border-color: var(--ivoire);
}
.btn--sm {
  padding: 11px 22px;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 243, 236, 0);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  z-index: -1;
}
.header.is-scrolled {
  height: 68px;
  box-shadow: 0 8px 30px -18px rgba(47, 110, 119, 0.35);
}
.header.is-scrolled::before {
  background: rgba(248, 243, 236, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--on-navy);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease);
}
.header.is-scrolled .brand {
  color: var(--navy);
}
.brand__mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: none;
}
.brand__mark svg {
  width: 100%;
  height: 100%;
}
.brand__mark-light {
  transition: opacity 0.4s var(--ease);
}
.brand__mark-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.header.is-scrolled .brand__mark-light {
  opacity: 0;
}
.header.is-scrolled .brand__mark-dark {
  opacity: 1;
}
.brand__text-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise-light);
  transition: color 0.4s var(--ease);
  margin-top: 2px;
}
.header.is-scrolled .brand__text-sub {
  color: var(--turquoise);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-navy);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--turquoise-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover {
  background: rgba(248, 243, 236, 0.1);
}
.nav a.is-active::after {
  transform: scaleX(1);
}
.nav a.is-active {
  color: var(--turquoise-light);
}
.header.is-scrolled .nav a {
  color: var(--navy);
}
.header.is-scrolled .nav a:hover {
  background: rgba(47, 110, 119, 0.06);
}
.header.is-scrolled .nav a.is-active {
  color: var(--turquoise);
}
.header.is-scrolled .nav a::after {
  background: var(--turquoise);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-navy);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease),
    background 0.4s var(--ease);
}
.header.is-scrolled .burger span {
  background: var(--navy);
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--navy);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(20px, 6vw, 48px);
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    visibility 0.35s;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav a {
  color: var(--on-navy);
  font-family: var(--font-title);
  font-size: 1.4rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(248, 243, 236, 0.12);
}
.mobile-nav .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(248, 243, 236, 0.08);
}
.hero__bg::before {
  width: 900px;
  height: 900px;
  right: -320px;
  top: -260px;
}
.hero__bg::after {
  width: 620px;
  height: 620px;
  right: -120px;
  top: -60px;
  border-color: rgba(29, 122, 115, 0.25);
}
.hero__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  right: -10%;
  top: 10%;
  background: radial-gradient(
    circle,
    rgba(29, 122, 115, 0.28) 0%,
    rgba(29, 122, 115, 0) 68%
  );
  filter: blur(10px);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-30px, 30px) scale(1.08);
  }
}
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  background: radial-gradient(
    380px circle at var(--x, 50%) var(--y, 30%),
    rgba(111, 214, 196, 0.14),
    transparent 70%
  );
}
.hero__spotlight.is-active {
  opacity: 1;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(248, 243, 236, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(248, 243, 236, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero__skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(90px, 16vw, 170px);
  z-index: 1;
  pointer-events: none;
}
.skyline-buildings use {
  fill: rgba(248, 243, 236, 0.07);
  stroke: rgba(111, 214, 196, 0.16);
  stroke-width: 1;
}
.skyline-windows rect {
  fill: var(--turquoise-light);
  opacity: 0.16;
  animation: twinkle 5s ease-in-out infinite;
}
.skyline-windows rect:nth-child(3n) {
  animation-delay: 0.6s;
}
.skyline-windows rect:nth-child(3n + 1) {
  animation-delay: 1.4s;
}
.skyline-windows rect:nth-child(5n) {
  animation-delay: 2.3s;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.6;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 56px;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8fdcd3;
  margin-bottom: 26px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}
.hero__kicker .dot {
  color: var(--turquoise-light);
}
.hero__kicker em {
  font-style: italic;
  color: var(--turquoise-light);
  font-weight: 700;
}
.hero h1 {
  color: var(--on-navy);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 600;
  max-width: 16ch;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--on-navy-dim);
  max-width: 50ch;
  margin: 20px 0 34px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}
.hero__stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 52px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.75s forwards;
}
.hero__stat b {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--ivoire);
}
.hero__stat span {
  font-size: 0.82rem;
  color: var(--on-navy-dim);
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__mark {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
  opacity: 0;
  animation: rise 1s var(--ease) 0.4s forwards;
}
.hero__mark svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.hero__mark .draw {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 2.6s var(--ease) 0.5s forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.hero__mark-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-navy-dim);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--on-navy-dim);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue__line {
  width: 1px;
  height: 34px;
  background: linear-gradient(
    to bottom,
    rgba(248, 243, 236, 0.7),
    transparent
  );
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -34px;
  width: 100%;
  height: 34px;
  background: var(--turquoise-light);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  to {
    top: 34px;
  }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] {
  transform: none;
}

/* ---------- Photo band ---------- */
.photo-band {
  position: relative;
  height: clamp(360px, 62vw, 720px);
  overflow: hidden;
  background: var(--navy);
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.03);
  transition: transform 8s var(--ease);
}
.photo-band.is-visible img {
  transform: scale(1);
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(47, 110, 119, 0.55) 0%,
    rgba(47, 110, 119, 0.15) 45%,
    rgba(20, 40, 61, 0.05) 100%
  );
}
.photo-band__overlay {
  position: absolute;
  left: clamp(20px, 6vw, 64px);
  bottom: clamp(20px, 4vw, 40px);
  z-index: 2;
  color: var(--ivoire);
}
.photo-band__overlay .trait {
  background: var(--turquoise-light);
  margin-bottom: 10px;
}
.photo-band__overlay p {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

/* ---------- Positionnement ---------- */
.positioning {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.positioning__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(20, 40, 61, 0.4);
}
.positioning__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3895 / 5842;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s var(--ease);
}
.positioning__photo.is-visible img {
  transform: scale(1);
}
.positioning__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 40, 61, 0.6) 0%,
    rgba(20, 40, 61, 0.05) 40%
  );
}
.positioning__photo-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivoire);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.3rem;
}
.positioning__photo-label .trait {
  background: var(--turquoise-light);
}
.positioning__text p {
  font-size: 1.05rem;
  color: #3d3d3d;
}
.positioning__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.positioning__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--navy);
}
.positioning__list .trait {
  margin-top: 10px;
  flex: none;
}

/* ---------- Audience cards ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease);
}
.audience-card:hover {
  transform: translateY(-4px);
}
.audience-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.audience-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--turquoise-light);
}
.audience-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 0.94rem;
  color: #565656;
  margin: 0;
}

/* ---------- Missions grid ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  perspective: 900px;
}
.mission-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.45s var(--ease);
  will-change: transform;
}
.mission-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--turquoise);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -20px rgba(47, 110, 119, 0.4);
}
.mission-card:hover::before {
  transform: scaleY(1);
}
.mission-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mission-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ivoire);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.mission-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  transition: stroke 0.4s var(--ease);
}
.mission-card:hover .mission-card__icon {
  background: var(--navy);
  transform: rotate(-6deg);
}
.mission-card:hover .mission-card__icon svg {
  stroke: var(--turquoise-light);
}
.mission-card__num {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bronze);
  letter-spacing: 0.02em;
}
.mission-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.mission-card p {
  color: #4d4d4d;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Focus: quote / mentorat ---------- */
.focus-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.quote-mark {
  font-family: var(--font-title);
  font-size: 3.4rem;
  color: var(--turquoise-light);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
blockquote.big-quote {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--on-navy);
  font-style: italic;
  border-left: 3px solid var(--turquoise-light);
  padding-left: 26px;
  margin: 0;
}
.missions-quote {
  max-width: 640px;
  margin: 72px auto 0;
  text-align: center;
}
.quote-mark--light {
  color: var(--turquoise);
}
blockquote.big-quote.big-quote--light {
  color: var(--navy);
  border-left-color: var(--turquoise);
  display: inline-block;
  text-align: left;
}

/* ---------- Stat grid (Missions intro) ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.stat-card b {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1;
}
.stat-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #5a5a5a;
}
.stat-card .trait {
  margin-bottom: 14px;
}

/* ---------- Partner CTA ---------- */
.partner-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
}
.partner-cta p {
  margin: 0;
  color: #4d4d4d;
  max-width: 46ch;
}
.partner-cta h4 {
  margin-bottom: 6px;
}

.mentor-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.4);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.mentor-photo:hover img {
  transform: scale(1.05);
}
.mentor-photo__caption {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--white);
  padding: 20px 22px;
}
.mentor-photo__caption > div {
  flex: 1 1 0;
  min-width: 140px;
}
.mentor-photo__caption b {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.mentor-photo__caption span {
  display: block;
  color: #5a5a5a;
  font-size: 0.76rem;
  line-height: 1.4;
}
.mentor-illus {
  width: 100%;
  max-width: 300px;
  margin-bottom: 8px;
}
.mentor-figure path {
  fill: rgba(111, 214, 196, 0.14);
  stroke: var(--turquoise-light);
  stroke-width: 2;
}
.mentor-figure circle {
  fill: rgba(248, 243, 236, 0.1);
  stroke: var(--turquoise-light);
  stroke-width: 2;
}
.mentor-figure--a {
  transform-origin: 100px 150px;
  animation: bob 4.5s ease-in-out infinite;
}
.mentor-figure--b {
  transform-origin: 200px 150px;
  animation: bob 4.5s ease-in-out infinite 0.6s;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.mentor-table rect {
  fill: rgba(248, 243, 236, 0.08);
  stroke: rgba(248, 243, 236, 0.3);
  stroke-width: 1.5;
}
.mentor-table line {
  stroke: rgba(248, 243, 236, 0.3);
  stroke-width: 1.5;
}
.speech-dots circle {
  fill: var(--turquoise-light);
  animation: dot-bounce 1.4s ease-in-out infinite;
}
.speech-dots circle:nth-child(2) {
  animation-delay: 0.18s;
}
.speech-dots circle:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes dot-bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ---------- Focus: réseau & entreprises partenaires ---------- */
.network-illus-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 40px;
}
.network-illus {
  width: 100%;
  max-width: 300px;
}
.network-links line {
  stroke: rgba(29, 122, 115, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  animation: dash-travel 6s linear infinite;
}
@keyframes dash-travel {
  to {
    stroke-dashoffset: -100;
  }
}
.network-nodes .n {
  fill: var(--white);
  stroke: var(--turquoise);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 3.2s ease-in-out infinite;
}
.network-nodes .n--core {
  fill: var(--turquoise);
  stroke: none;
  animation: node-pulse 3.2s ease-in-out infinite 0.2s;
}
.network-nodes .n:nth-child(2) {
  animation-delay: 0.4s;
}
.network-nodes .n:nth-child(3) {
  animation-delay: 0.9s;
}
.network-nodes .n:nth-child(4) {
  animation-delay: 1.3s;
}
.network-nodes .n:nth-child(5) {
  animation-delay: 1.8s;
}
.network-nodes .n:nth-child(6) {
  animation-delay: 2.2s;
}
@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

.partner-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}
.partner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-tile {
  width: 190px;
  height: 96px;
  flex: none;
  border: 1.5px dashed rgba(47, 110, 119, 0.22);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(47, 110, 119, 0.4);
  background: var(--white);
}
.partner-tile svg {
  width: 22px;
  height: 22px;
  stroke: rgba(47, 110, 119, 0.32);
}
.partner-tile--logo {
  border-style: solid;
  border-color: rgba(47, 110, 119, 0.1);
  padding: 18px 22px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.partner-tile--logo:hover {
  transform: translateY(-3px);
  border-color: var(--turquoise);
}
.partner-tile--logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-tile span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.partner-benefits {
  margin-top: 44px;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.partner-benefits h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.partner-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #4d4d4d;
}
.partner-benefits li svg {
  width: 18px;
  height: 18px;
  stroke: var(--turquoise);
  flex: none;
  margin-top: 2px;
}

/* ---------- Focus: incubateur ---------- */
.incubateur {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.incubateur-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
}
.incubateur-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.incubateur-photo:hover img {
  transform: scale(1.05);
}
.incubateur-photo__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(111, 214, 196, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.incubateur-photo__badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--turquoise-light);
}
.incubateur-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(111, 214, 196, 0.2);
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(111, 214, 196, 0.14);
  color: var(--turquoise-light);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise-light);
  position: relative;
}
.badge .pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--turquoise-light);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* ---------- Focus: financement ---------- */
.finance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(248, 243, 236, 0.25);
  color: var(--on-navy);
  font-weight: 500;
  font-size: 0.92rem;
  background: rgba(248, 243, 236, 0.04);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.pill:hover {
  border-color: var(--turquoise-light);
  background: rgba(29, 122, 115, 0.14);
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turquoise-light);
  flex: none;
}
.finance__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.finance__partner-logo {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(47, 110, 119, 0.12);
}
.finance__partner-logo img {
  height: 46px;
  width: auto;
}
.growth-illus {
  width: 100%;
  max-width: 260px;
  margin-bottom: 20px;
  overflow: visible;
}
.growth-path {
  fill: none;
  stroke: var(--turquoise);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.4s var(--ease) 0.2s;
}
.is-visible .growth-path {
  stroke-dashoffset: 0;
}
.growth-dot {
  fill: var(--turquoise);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.is-visible .growth-dot {
  opacity: 1;
  transition-delay: 1.3s;
}
.growth-dot--end {
  animation: node-pulse 2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.finance__card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.finance__card li {
  display: flex;
  gap: 12px;
  color: #4d4d4d;
  font-size: 0.95rem;
}
.finance__card svg {
  width: 18px;
  height: 18px;
  stroke: var(--turquoise);
  flex: none;
  margin-top: 2px;
}

/* ---------- À propos / fondateur ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card);
}
.founder__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.founder__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__avatar::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(29, 122, 115, 0.5);
}
.founder__role {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--turquoise);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.founder__name {
  text-align: center;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.founder__bio p {
  font-size: 1.02rem;
  color: #3d3d3d;
}
.founder__ventures {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.founder__ventures img {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.founder__team {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(47, 110, 119, 0.12);
  font-size: 0.95rem;
  color: #565656;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--navy);
}
.contact-info__item b {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-info__item span {
  color: #5a5a5a;
  font-size: 0.92rem;
}
.placeholder-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(176, 138, 87, 0.16);
  color: var(--bronze);
  font-weight: 600;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.legal-note {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 110, 119, 0.12);
  font-size: 0.82rem;
  color: #7a7a7a;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.legal-note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(47, 110, 119, 0.15);
  background: var(--ivoire-dim);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--anthracite);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29, 122, 115, 0.14);
}
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-note {
  font-size: 0.78rem;
  color: #7a7a7a;
  margin: 12px 0 0;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(29, 122, 115, 0.1);
  color: var(--turquoise);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.is-shown {
  display: flex;
}
.form-success svg {
  width: 18px;
  height: 18px;
  stroke: var(--turquoise);
  flex: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--on-navy-dim);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248, 243, 236, 0.1);
}
.footer-brand .brand {
  color: var(--ivoire);
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--on-navy-dim);
  font-size: 0.92rem;
  max-width: 34ch;
}
.footer h5 {
  color: var(--ivoire);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer a {
  font-size: 0.92rem;
  color: var(--on-navy-dim);
  transition: color 0.3s var(--ease);
}
.footer a:hover {
  color: var(--turquoise-light);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248, 243, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--turquoise-light);
  background: rgba(29, 122, 115, 0.15);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  stroke: var(--on-navy);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  font-size: 0.8rem;
  color: rgba(248, 243, 236, 0.45);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 80;
  box-shadow: 0 12px 24px -10px rgba(47, 110, 119, 0.5);
}
.to-top.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--ivoire);
}

[data-count] {
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero__mark {
    order: -1;
    width: min(70%, 320px);
    margin: 0 auto;
  }
  .positioning,
  .focus-quote,
  .finance,
  .incubateur {
    grid-template-columns: 1fr;
  }
  .founder {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .partner-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero__stats {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-actions .btn--sm {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}
