/* =============================================================
   Sunrise Ventures Africa (S.V.A), Design system
   Palette officielle :
   Navy   #001D3D | Orange #F58A00 | Turquoise #00A8A8
   Gris   #4B5563 | Bleu clair #E8F0F6 | Blanc #FFFFFF
   ============================================================= */

:root {
  --navy: #001D3D;
  --orange: #F58A00;
  --teal: #00A8A8;
  --grey: #4B5563;
  --blue-light: #E8F0F6;
  --white: #FFFFFF;

  --navy-soft: rgba(0, 29, 61, 0.72);
  --white-soft: rgba(255, 255, 255, 0.82);

  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --radius-card: 14px;
  --radius-btn: 8px;

  --shadow-soft: 0 10px 30px rgba(0, 29, 61, 0.08);
  --shadow-header: 0 2px 18px rgba(0, 29, 61, 0.10);

  --header-h: 84px;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p { margin: 0 0 1.1em; max-width: 68ch; }

a { color: var(--teal); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #d97a00;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 138, 0, 0.32);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: #002a57; transform: translateY(-2px); }

.btn .btn-arrow { transition: transform .25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header global ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-emblem { width: 44px; height: auto; flex: none; }

/* Deux variantes de l'emblème : sombre par défaut, claire sur fond navy */
.brand-emblem.light { display: none; }
.site-header.on-dark:not(.is-scrolled) .brand-emblem.light { display: block; }
.site-header.on-dark:not(.is-scrolled) .brand-emblem.dark { display: none; }

.brand-text { line-height: 1.15; white-space: nowrap; }

.brand-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.10em;
  color: var(--navy);
  text-transform: uppercase;
  transition: color .3s ease;
}

.brand-sub {
  display: block;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  color: var(--teal);
}

.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  white-space: nowrap;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { flex: none; }
.header-cta .btn { padding: 12px 22px; font-size: 14px; }

/* Header sur hero sombre (état transparent) */

.site-header.on-dark:not(.is-scrolled) .brand-name,
.site-header.on-dark:not(.is-scrolled) .main-nav a { color: var(--white); }

.site-header.on-dark:not(.is-scrolled) .brand-sub { color: #7fd6d6; }

/* Header à l'état fixe (après défilement ou pages claires) */

.site-header.is-scrolled,
.site-header.is-solid {
  background: var(--white-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-header);
  height: 70px;
}

/* Burger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}

.site-header.on-dark:not(.is-scrolled) .nav-toggle span { background: var(--white); }

body.nav-open .nav-toggle span { background: var(--white); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Menu mobile plein écran */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

body.nav-open .mobile-menu { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }

.mobile-menu nav a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu nav a[aria-current="page"] { color: var(--orange); }

.mobile-menu .btn { margin-top: 32px; width: 100%; }

/* ---------- Rideau 1 : Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 600px at 82% 18%, rgba(0, 168, 168, 0.20), transparent 60%),
    radial-gradient(900px 700px at 8% 95%, rgba(245, 138, 0, 0.10), transparent 55%),
    linear-gradient(160deg, #00224a 0%, var(--navy) 55%, #001327 100%);
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 90px;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Grille technique en fond, très discrète */
.hero-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 80% at 60% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 80% at 60% 40%, #000 30%, transparent 100%);
}

.hero-pixels { position: absolute; }
.hero-pixels.tr { top: 90px; right: 4%; width: 170px; opacity: .9; }
.hero-pixels.bl { bottom: 40px; left: 3%; width: 120px; opacity: .55; }

.hero-emblem-bg {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: min(46vw, 560px);
  opacity: 0.05;
}

.hero-inner { position: relative; z-index: 2; }

.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #7fd6d6;
  margin-bottom: 26px;
}

.hero-signature .sq { display: inline-flex; gap: 5px; }
.hero-signature .sq i {
  width: 8px; height: 8px; border-radius: 2px; display: inline-block;
}
.hero-signature .sq i:nth-child(1) { background: var(--teal); }
.hero-signature .sq i:nth-child(2) { background: var(--orange); }
.hero-signature .sq i:nth-child(3) { background: var(--teal); }

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 700;
  max-width: 22ch;
  margin-bottom: 26px;
}

.hero h1 .accent { color: var(--orange); }

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 58ch;
  margin-bottom: 40px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Bandeau de repères sous le hero (sans chiffres, conforme charte) */
.hero-pillars {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
}

.hero-pillars li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-pillars { padding: 0; margin-bottom: 0; }

.hero-pillars li::before {
  content: "";
  width: 9px; height: 9px; border-radius: 2.5px;
  background: var(--teal);
  flex: none;
}
.hero-pillars li:nth-child(2)::before { background: var(--orange); }
.hero-pillars li:nth-child(3)::before { background: var(--white); }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll::after {
  content: "";
  width: 1.5px;
  height: 34px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@media (max-height: 620px) {
  .hero-scroll { display: none; }
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ---------- Sections génériques ---------- */

.section { padding: clamp(72px, 9vw, 110px) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
}

.section-eyebrow .sq { display: inline-flex; gap: 4px; }
.section-eyebrow .sq i { width: 7px; height: 7px; border-radius: 2px; display: inline-block; }
.section-eyebrow .sq i:nth-child(1) { background: var(--teal); }
.section-eyebrow .sq i:nth-child(2) { background: var(--orange); }
.section-eyebrow .sq i:nth-child(3) { background: var(--navy); }

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 38ch;
  margin-bottom: 0.5em;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  margin-top: 22px;
}

.section-title.centered { margin-inline: auto; text-align: center; }
.section-title.centered::after { margin-inline: auto; }

/* ---------- Rideau 2a : Positionnement ---------- */

.positioning .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 40px;
}

.positioning .lead {
  font-size: clamp(16.5px, 1.4vw, 18.5px);
  line-height: 1.85;
  margin-bottom: 0;
}

.positioning .lead strong { color: var(--navy); font-weight: 600; }

.positioning .anchors {
  margin: 44px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(0, 29, 61, 0.08);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
  list-style: none;
}

.positioning .anchors li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.positioning .anchors li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--teal);
  flex: none;
}

.positioning .anchors li:nth-child(even)::before { background: var(--orange); }

/* ---------- Rideau 2b : Trois métiers ---------- */

.services { background: var(--blue-light); }

.services .section-intro {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 38px 32px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 29, 61, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 29, 61, 0.14);
}

.service-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.service-card .icon svg { width: 30px; height: 30px; }

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  margin-top: 12px;
  transition: width .3s ease;
}

.service-card:hover h3::after { width: 58px; }

.service-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.service-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal);
}

.service-card .more .btn-arrow { transition: transform .25s ease; }
.service-card:hover .more .btn-arrow { transform: translateX(5px); }

/* Motif pixels décoratif en coin de carte */
.service-card .pixels {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 44px;
  opacity: .5;
  transition: opacity .3s ease;
}
.service-card:hover .pixels { opacity: .9; }

/* ---------- Rideau 3 : Projet phare ---------- */

.featured {
  position: relative;
  background:
    radial-gradient(900px 500px at 88% 10%, rgba(0, 168, 168, 0.16), transparent 60%),
    radial-gradient(700px 500px at 5% 100%, rgba(245, 138, 0, 0.08), transparent 55%),
    linear-gradient(150deg, #00224a 0%, var(--navy) 60%, #001327 100%);
  overflow: hidden;
}

.featured .section-eyebrow { color: #7fd6d6; }
.featured .section-eyebrow .sq i:nth-child(3) { background: var(--white); }

.featured .section-title { color: var(--white); }

.featured-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}

.status-pill::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.featured .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.8;
}

.feat-list {
  list-style: none;
  margin: 30px 0 38px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.feat-list li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--teal);
  flex: none;
  margin-top: 6px;
}

.feat-list li:nth-child(even)::before { background: var(--orange); }

/* Carte "chaîne de valeur" */

.chain-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.chain-card .chain-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 20px;
}

.chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.chain li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.chain li .step {
  font-size: 11px;
  font-weight: 700;
  opacity: .75;
}

.chain li.t { background: var(--teal); }
.chain li.o { background: var(--orange); }
.chain li.n { background: var(--navy); }

.chain li.link {
  align-self: center;
  width: 1.5px;
  height: 14px;
  padding: 0;
  border-radius: 0;
  background: rgba(0, 29, 61, 0.25);
}

.chain-card .chain-note {
  margin: 20px 0 0;
  font-size: 12.5px;
  font-style: italic;
  color: var(--grey);
  max-width: none;
}

/* ---------- Rideau 4 : Impact & ambition ---------- */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

/* Variante 5 cartes (valeurs) : colonnes auto-adaptatives */
.pillars-grid.values {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.pillar {
  background: var(--blue-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pillar .dot {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--teal);
  margin-bottom: 18px;
}

.pillar:nth-child(2) .dot { background: var(--orange); }
.pillar:nth-child(3) .dot { background: var(--navy); }
.pillar:nth-child(4) .dot { background: var(--teal); }

.pillar h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Rideau 5 : Appel à l'action ---------- */

.cta-section { padding-top: 0; }

.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(0, 168, 168, 0.18), transparent 60%),
    linear-gradient(150deg, #00224a 0%, var(--navy) 65%, #001327 100%);
  border-radius: 20px;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 38px);
  max-width: 26ch;
  margin-inline: auto;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
  margin: 18px auto 36px;
  font-size: clamp(15.5px, 1.3vw, 17.5px);
}

.cta-panel .pixels-corner {
  position: absolute;
  width: 120px;
  opacity: .6;
  pointer-events: none;
}
.cta-panel .pixels-corner.tl { top: 20px; left: 24px; }
.cta-panel .pixels-corner.br { bottom: 18px; right: 26px; transform: rotate(180deg); }

/* ---------- Hero de page intérieure ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(0, 168, 168, 0.18), transparent 60%),
    linear-gradient(155deg, #00224a 0%, var(--navy) 60%, #001327 100%);
  padding: calc(var(--header-h) + clamp(48px, 7vw, 84px)) 0 clamp(52px, 7vw, 88px);
}

.page-hero .section-eyebrow { color: #7fd6d6; }
.page-hero .section-eyebrow .sq i:nth-child(3) { background: var(--white); }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(30px, 4.2vw, 50px);
  max-width: 30ch;
  margin-bottom: 20px;
}

.page-hero .intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.4vw, 18.5px);
  max-width: 62ch;
  margin-bottom: 0;
}

.page-hero .hero-pixels.tr { top: auto; bottom: 30px; right: 4%; width: 150px; opacity: .7; }

/* ---------- Qui sommes-nous : mission & vision ---------- */

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.mv-card {
  background: var(--blue-light);
  border-radius: var(--radius-card);
  padding: clamp(30px, 3.5vw, 44px);
}

.mv-card .mv-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}

.mv-card .mv-label::before {
  content: "";
  width: 9px; height: 9px; border-radius: 2.5px;
  background: var(--orange);
}

.mv-card.vision .mv-label { color: var(--teal); }
.mv-card.vision .mv-label::before { background: var(--teal); }

.mv-card .statement {
  color: var(--navy);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}

.mv-card p:not(.statement):not(.mv-label) {
  font-size: 15px;
  margin-bottom: 0;
}

/* Bandeau Intégrer / Sécuriser / Piloter */

.keywords-strip {
  margin-top: 28px;
  background: var(--blue-light);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 56px;
  list-style: none;
}

.keywords-strip li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}

.keywords-strip li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--orange);
}

/* ---------- Qui sommes-nous : ambition ---------- */

.ambition {
  background:
    radial-gradient(800px 460px at 12% 100%, rgba(0, 168, 168, 0.14), transparent 60%),
    linear-gradient(150deg, #00224a 0%, var(--navy) 65%, #001327 100%);
}

.ambition .section-eyebrow { color: #7fd6d6; }
.ambition .section-eyebrow .sq i:nth-child(3) { background: var(--white); }
.ambition .section-title { color: var(--white); }

.ambition .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.35vw, 18px);
  max-width: 68ch;
}

.traits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.trait {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 26px 24px;
}

.trait .dot {
  width: 13px; height: 13px; border-radius: 4px;
  background: var(--teal);
  margin-bottom: 16px;
}
.trait:nth-child(2) .dot { background: var(--orange); }
.trait:nth-child(3) .dot { background: var(--white); }

.trait h3 { color: var(--white); font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.trait p { color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 1.65; margin: 0; }

/* ---------- Page Nos métiers ---------- */

.metier { scroll-margin-top: 90px; }

.metier .num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--orange);
  margin-bottom: 10px;
}

.metier-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: 34px;
}

.metier-desc .lead {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.85;
}

.metier-note {
  border-left: 3px solid var(--orange);
  background: rgba(245, 138, 0, 0.06);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--grey);
  margin: 26px 0;
}

.metier-note strong { color: var(--navy); }

.metier-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
}

.metier-link .btn-arrow { transition: transform .25s ease; }
.metier-link:hover .btn-arrow { transform: translateX(5px); }

.domains-card {
  background: var(--white);
  border: 1px solid rgba(0, 29, 61, 0.07);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 30px 28px;
}

.section.alt .domains-card { background: var(--white); }
.section:not(.alt) .domains-card { background: var(--blue-light); border-color: transparent; box-shadow: none; }

.domains-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.domains-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
}

.domains-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey);
}

.domains-card li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--teal);
  flex: none;
  margin-top: 6px;
}

.domains-card li:nth-child(3n+2)::before { background: var(--orange); }
.domains-card li:nth-child(3n)::before { background: var(--navy); }

.section.alt { background: var(--blue-light); }

/* ---------- Page Nos projets ---------- */

/* Frise de déploiement */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.phase {
  background: var(--white);
  border-radius: 12px;
  border-top: 4px solid var(--teal);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.phase:nth-child(even) { border-top-color: var(--orange); }

.phase .p-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 8px;
}

.phase h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.phase p { font-size: 13.5px; line-height: 1.6; margin: 0; }

.timeline-note {
  margin-top: 22px;
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
}

/* Chips partenaires */
.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.partner-chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 29, 61, 0.14);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}

.partner-chips li::before {
  content: "";
  width: 9px; height: 9px; border-radius: 2.5px;
  background: var(--teal);
}

.partner-chips li:nth-child(even)::before { background: var(--orange); }

.partner-chips li.lead-chip {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.partner-chips li.lead-chip::before { background: var(--orange); }

/* Carte d'Afrique stylisée en pixels */
.africa-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.africa-viz { width: min(100%, 340px); margin-inline: auto; }

.africa-viz .base {
  animation: pulseDot 2.6s ease-in-out infinite;
}

.africa-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.africa-legend i {
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--orange);
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .africa-viz .base { animation: none; }
  .status-pill::before { animation: none; }
}

/* ---------- Blocs provisoires (gouvernance, structure) ---------- */

.stub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.stub-card {
  border: 1.5px dashed rgba(0, 29, 61, 0.22);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  background: var(--white);
}

.stub-card .badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 138, 0, 0.10);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.stub-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.stub-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Page Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contact-cards { display: grid; gap: 18px; }

.contact-card {
  background: var(--blue-light);
  border-radius: var(--radius-card);
  padding: 22px 24px;
}

.contact-card h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.contact-card p { font-size: 15px; margin: 0; color: var(--navy); font-weight: 500; }
.contact-card p .muted { color: var(--grey); font-weight: 400; }

.contact-specialised { margin-top: 6px; }
.contact-specialised li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 29, 61, 0.08);
  color: var(--grey);
}
.contact-specialised { list-style: none; padding: 0; }
.contact-specialised li:last-child { border-bottom: 0; }
.contact-specialised li strong { color: var(--navy); font-weight: 600; }

/* Formulaire */

.contact-form {
  background: var(--white);
  border: 1px solid rgba(0, 29, 61, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(26px, 3.5vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.field label .opt { color: var(--grey); font-weight: 400; font-size: 12.5px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid rgba(0, 29, 61, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.18);
}

.field.error input,
.field.error select,
.field.error textarea { border-color: #C0392B; }

.field .error-msg {
  display: none;
  font-size: 12.5px;
  color: #C0392B;
  margin-top: 6px;
}

.field.error .error-msg { display: block; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--grey);
  margin: 6px 0 22px;
}

.consent input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  flex: none;
}

/* Champ anti-spam invisible */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.form-status.err {
  display: block;
  background: rgba(192, 57, 43, 0.08);
  color: #C0392B;
}

.form-status.ok {
  display: block;
  background: rgba(0, 168, 168, 0.10);
  color: #00706f;
}

/* Carte */
.map-embed {
  border: 0;
  width: 100%;
  height: 340px;
  border-radius: var(--radius-card);
  display: block;
}

.map-note { font-size: 12.5px; font-style: italic; margin-top: 10px; }

/* Clôture signature */
.signature-close {
  text-align: center;
  padding: clamp(56px, 8vw, 90px) 0;
  background:
    radial-gradient(700px 380px at 50% 100%, rgba(0, 168, 168, 0.14), transparent 60%),
    linear-gradient(160deg, #00224a 0%, var(--navy) 60%, #001327 100%);
}

.signature-close img { width: 72px; margin: 0 auto 20px; }

.signature-close .sig {
  color: var(--white);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}

.signature-close .sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin: 0;
}

/* Pages légales */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 20px; margin-top: 36px; }
.legal-content p { font-size: 15px; }

/* Page 404 */
.error-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(800px 460px at 70% 20%, rgba(0, 168, 168, 0.16), transparent 60%),
    linear-gradient(160deg, #00224a 0%, var(--navy) 60%, #001327 100%);
  padding-top: var(--header-h);
}

.error-hero .code {
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.error-hero h1 { color: var(--white); font-size: clamp(24px, 3vw, 34px); }
.error-hero p { color: rgba(255, 255, 255, 0.8); margin-inline: auto; }

/* ---------- Sections à venir (placeholder de validation) ---------- */

.section-placeholder {
  padding: 90px 0;
  background: var(--white);
}

.section-placeholder .inner {
  background: var(--blue-light);
  border-radius: var(--radius-card);
  padding: 48px;
  text-align: center;
  color: var(--grey);
}

.section-placeholder .inner strong { color: var(--navy); }

/* ---------- Footer (version sobre provisoire) ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0;
  font-size: 14px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer .foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.site-footer .foot-brand svg, .site-footer .foot-brand img { width: 30px; }

.site-footer .foot-links {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
}

.site-footer .foot-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.site-footer .foot-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color .2s ease;
}

.site-footer .foot-links a:hover { color: var(--white); }

/* ---------- Animations d'apparition ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll::after { animation: none; }
  .btn, .main-nav a::after { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .positioning .cols { grid-template-columns: 1fr; }
  .positioning .anchors { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid > div:last-child { max-width: 480px; }

  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mv-grid { grid-template-columns: 1fr; }
  .traits-grid { grid-template-columns: 1fr; max-width: 560px; }
  .stub-grid { grid-template-columns: 1fr; }

  .metier-grid { grid-template-columns: 1fr; }
  .africa-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .services-grid .service-card:last-child { grid-column: 1 / -1; max-width: 560px; justify-self: center; width: 100%; }
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

@media (max-width: 767px) {
  :root { --header-h: 72px; }

  body { font-size: 16px; }

  .brand-name { font-size: 12.5px; letter-spacing: 0.08em; }
  .brand-sub { font-size: 9px; letter-spacing: 0.34em; }
  .brand-emblem { width: 36px; }

  .hero { padding-bottom: 110px; }

  .hero-actions .btn { width: 100%; }

  .hero-pixels.tr { width: 110px; right: 6%; top: 84px; opacity: .6; }
  .hero-pixels.bl { display: none; }

  .hero-pillars { gap: 10px 22px; margin-top: 46px; }

  .positioning .anchors { grid-template-columns: 1fr; }

  .feat-list { grid-template-columns: 1fr; }
  .featured .btn { width: 100%; }
  .chain-card { padding: 24px 20px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .cta-panel .btn { width: 100%; }
  .cta-panel .pixels-corner { display: none; }

  .domains-card ul { grid-template-columns: 1fr; }
  .domains-card { padding: 24px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form button[type="submit"] { width: 100%; }

  .service-card { padding: 30px 24px 26px; }

  .section-placeholder .inner { padding: 32px 22px; }
}
