/* =========================================
   HAITI GLOBAL CONSULTING — style.css v3
   Cabinet international · Design premium
   ========================================= */

/* Fonts loaded via <link> in the layout — no @import needed here */

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

:root {
  /* HGC official palette (Concept 2 — Monogramme : navy + teal) */
  --ink:          #0F1A40;
  --navy:         #1E3A8A;        /* Navy classique HGC */
  --navy-mid:     #2D4FAA;
  --orange:       #0D9488;        /* Vert profond / teal HGC — var name kept for back-compat */
  --orange-2:     #14B8A6;
  --orange-pale:  #E0F7F5;
  --cream:        #F7F8FA;
  --warm:         #EDF1F5;
  --white:        #FFFFFF;
  --muted:        #6B7280;
  --border:       rgba(30,58,138,0.10);
  --radius:       4px;
  --max-w:        1280px;
  --t:            0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: clip;
}

/* Garde-fou : aucun titre / lead ne doit faire déborder le viewport.
   Casse les mots longs uniquement en dernier recours (préserve la mise en forme normale). */
h1, h2, h3, h4 { overflow-wrap: break-word; word-wrap: break-word; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }
p  { color: var(--muted); line-height: 1.75; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-gold, .btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-gold::after, .btn-orange::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform var(--t);
}
.btn-gold:hover::after, .btn-orange:hover::after { transform: translateX(0); }
.btn-gold:hover, .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,148,136,0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* ---------- NAVBAR (refined corporate) ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(30, 58, 138, 0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 14px; }

.logo-emblem {
  width: 40px;
  height: 40px;
  position: relative;
  flex-shrink: 0;
}
.logo-emblem svg { width: 100%; height: 100%; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-wordmark .top {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-wordmark .sub {
  font-size: 0.6rem;
  color: var(--orange);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav links — with subtle dot separators */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li + li::before {
  content: '·';
  color: rgba(30,58,138,0.25);
  margin: 0 4px;
  font-weight: 700;
  pointer-events: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy);
  padding: 8px 14px;
  position: relative;
  transition: color var(--t);
  opacity: 0.72;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: right;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Lang */
.lang-toggle {
  display: flex;
  gap: 1px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all var(--t);
  border-radius: 999px;
  text-decoration: none;
}
.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  height: 40px;
  padding: 0 22px;
  border-radius: 4px;
  letter-spacing: -0.005em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all var(--t);
}

/* ═══════════════════════════════════════════════════════════════════
   OFFCANVAS — slide-in mobile menu (DEMO-inspired)
═══════════════════════════════════════════════════════════════════ */
body.offcanvas-open { overflow: hidden; }

.offcanvas-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 26, 64, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
  z-index: 1100;
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }

.offcanvas {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 92vw;
  background: var(--white);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -24px 0 60px -12px rgba(15, 26, 64, 0.18);
  display: flex; flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  visibility: hidden;
}
.offcanvas.open { transform: translateX(0); visibility: visible; }

.offcanvas-inner {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 28px 32px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.offcanvas-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.offcanvas-logo img { height: 36px; width: auto; display: block; }
.offcanvas-close {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
}
.offcanvas-close:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: rotate(90deg);
}

.offcanvas-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; line-height: 1.6;
  color: var(--muted);
  margin: 24px 0 28px;
}

.offcanvas-section-title {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 14px; margin: 0 0 18px;
  border-bottom: 1px solid var(--border);
}
.offcanvas-section-title .num {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
}

.offcanvas-nav { margin-bottom: 32px; }
.offcanvas-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.offcanvas-nav ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem; font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.015em;
  text-decoration: none;
  border-bottom: 1px solid rgba(30,58,138,0.06);
  transition: color 200ms ease, padding-left 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.offcanvas-nav ul li:last-child a { border-bottom: none; }
.offcanvas-nav ul li a i { color: var(--orange); opacity: 0.5; transition: opacity 200ms ease, transform 240ms ease; }
.offcanvas-nav ul li a:hover,
.offcanvas-nav ul li a.active {
  color: var(--orange);
  padding-left: 8px;
}
.offcanvas-nav ul li a:hover i,
.offcanvas-nav ul li a.active i { opacity: 1; transform: translateX(2px) translateY(-2px); }

.offcanvas-contact { margin-bottom: 28px; }
.offcanvas-contact ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.offcanvas-contact ul li {
  display: grid; grid-template-columns: 32px 1fr; gap: 12px;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}
.offcanvas-contact ul li .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--orange-pale); color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.offcanvas-contact ul li a, .offcanvas-contact ul li .txt {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
  font-size: 0.9rem;
  word-break: break-word;
}
.offcanvas-contact ul li a:hover { color: var(--orange); }

.offcanvas-cta { margin-bottom: 24px; }
.offcanvas-cta .btn-orange {
  justify-content: center;
  padding-left: 24px;
  padding-right: 6px;
}

.offcanvas-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.offcanvas-lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
}
.offcanvas-lang a {
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 200ms ease;
}
.offcanvas-lang a.active, .offcanvas-lang a:hover { color: var(--orange); }
.offcanvas-lang .sep { color: rgba(30,58,138,0.2); }
.offcanvas-social { display: inline-flex; gap: 6px; }
.offcanvas-social a {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms ease;
}
.offcanvas-social a i { width: 14px; height: 14px; }
.offcanvas-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 64px 80px 48px;
  max-width: 700px;
  margin-left: auto;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

/* Globe visual */
.hero-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1E3A8A 0%, #2D4FAA 40%, #0F1A40 100%);
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(13,148,136,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 10%; left: 5%;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse, rgba(12,26,48,0.9) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
  opacity: 0.45;
  z-index: 3;
}

.hero-number {
  position: absolute;
  bottom: 80px; right: 60px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  z-index: 1;
  user-select: none;
}

/* Rotating badge */
.hero-badge-wrap {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.hero-badge-circle {
  width: 140px; height: 140px;
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-badge-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(13,148,136,0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.badge-inner { text-align: center; }
.badge-inner strong {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.badge-inner span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Hero content */
.hero-tag { margin-bottom: 32px; }

.hero h1 { color: var(--white); margin-bottom: 8px; font-style: italic; }
.hero h1 strong { font-style: normal; display: block; color: var(--white); }
.hero h1 em { color: var(--orange); font-style: italic; }

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 460px;
  margin: 28px 0 44px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: var(--orange);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.marquee-track .dot { color: rgba(255,255,255,0.4); padding: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION UTILITY ---------- */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm); }
.section-dark { background: var(--ink); }

/* ---------- SERVICES — editorial list ---------- */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-intro-right {
  border-left: 1px solid var(--border);
  padding-left: 64px;
}
.services-intro-right p { font-size: 1.05rem; margin-bottom: 32px; }

.services-list { border-top: 1px solid var(--border); }

.service-row {
  display: grid;
  grid-template-columns: 80px 52px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
  position: relative;
}
.service-row::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.service-row:hover::after { width: 100%; }
.service-row:hover .service-row-name { color: var(--orange); }
.service-row:hover .service-row-arrow { transform: translateX(6px); }

.service-row-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--orange);
  opacity: 0.7;
}
.service-row-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t);
}
.service-row-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.service-row-arrow {
  color: var(--orange);
  transition: transform var(--t);
  opacity: 0;
}
.service-row:hover .service-row-arrow { opacity: 1; }

/* Service icon */
.svc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--orange-pale);
  border: 1px solid rgba(13,148,136,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: all var(--t);
}
.service-row:hover .svc-icon-wrap {
  background: var(--orange);
  color: var(--white);
}

/* ---------- ABOUT SPLIT ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-image-side {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-img-pattern { position: absolute; inset: 0; }
.about-img-pattern svg { width: 100%; height: 100%; opacity: 0.15; }

.about-img-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px;
  background: linear-gradient(to top, rgba(30,58,138,0.9) 0%, transparent 60%);
}
.about-img-stat strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.about-img-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.about-text-side {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text-side h2 { margin-bottom: 8px; }
.about-text-side h2 em { color: var(--orange); }
.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  margin: 28px 0 24px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.about-text-side p { margin-bottom: 36px; }
.about-values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.value-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}
.value-line::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.value-line strong { color: var(--ink); margin-right: 6px; }
.value-line span { color: var(--muted); }

/* ---------- EXPERTISE STRIP ---------- */
.expertise-strip { padding: 120px 0; background: var(--ink); }

.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 32px;
}
.expertise-header h2 { color: var(--white); max-width: 500px; }
.expertise-header h2 em { color: var(--orange); font-style: italic; }
.expertise-header p { color: rgba(255,255,255,0.4); max-width: 320px; font-size: 0.9rem; text-align: right; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.expertise-cell {
  background: var(--ink);
  padding: 40px 28px;
  cursor: pointer;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
.expertise-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.expertise-cell:hover { background: rgba(255,255,255,0.03); }
.expertise-cell:hover::before { transform: scaleX(1); }

.expertise-cell-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all var(--t);
}
.expertise-cell:hover .expertise-cell-icon-wrap {
  background: rgba(13,148,136,0.15);
  border-color: rgba(13,148,136,0.3);
}
.expertise-cell-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.expertise-cell h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.expertise-cell p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin: 0; }

/* ---------- STATS BAND — dark premium ---------- */
.stats-band {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.stat-block {
  background: var(--navy);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background var(--t);
}
.stat-block:hover { background: rgba(13,148,136,0.04); }
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-block:hover::before { transform: scaleX(1); }
.stat-block-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-block-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  display: block;
}

/* ---------- PUBLICATIONS ---------- */
.pub-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pub-item {
  background: var(--white);
  padding: 40px;
  transition: background var(--t);
  cursor: pointer;
}
.pub-item:hover { background: var(--cream); }
.pub-item:hover .pub-title { color: var(--orange); }

.pub-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pub-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 2px;
}
.pub-date { font-size: 0.75rem; color: var(--muted); }
.pub-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color var(--t);
}
.pub-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ---------- CTA FULL ---------- */
.cta-full {
  padding: 140px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-full::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(13,148,136,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-full-content { position: relative; z-index: 1; }
.cta-full h2 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 20px; }
.cta-full h2 em { color: var(--orange); }
.cta-full p { color: rgba(255,255,255,0.45); margin-bottom: 48px; font-size: 1rem; }
.cta-full-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- PAGE HERO (navy + bold sans, screenshot-matching) ---------- */
.page-hero {
  background: var(--navy);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content:''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.page-hero::after {
  content: attr(data-title);
  position: absolute;
  right: -20px; bottom: -80px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
  max-width: 18ch;
}
.page-hero h1 em { color: var(--orange); font-style: normal; font-weight: 800; }
.page-hero-desc {
  color: rgba(255,255,255,0.72);
  margin-top: 28px;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.breadcrumb a, .breadcrumb span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover { color: var(--orange); }

/* ---------- CONTACT PAGE ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--orange-pale);
  border: 1px solid rgba(13,148,136,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail strong {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.contact-detail span { font-size: 0.93rem; color: var(--ink); }

.social-row { display: flex; gap: 10px; margin-top: 32px; }
.soc-btn {
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  transition: background var(--t);
}
.soc-btn:hover { background: var(--orange); }
.soc-btn [data-lucide] { width: 15px; height: 15px; }

/* ---------- FORM ---------- */
.contact-form-wrap {
  background: var(--cream);
  padding: 52px;
  border-radius: 2px;
}
.form-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.form-title em { color: var(--orange); font-style: italic; }
.form-subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.input,
.form-group input,
.form-group select,
.form-group textarea {
  display: flex;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  background: var(--white);
  border: 1px solid rgba(30,58,138,0.14);
  border-radius: 6px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}
.input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}
.form-check input { width: auto; margin-top: 3px; accent-color: var(--orange); }
.form-check label { font-size: 0.8rem; color: var(--muted); font-weight: 400; letter-spacing: 0; text-transform: none; }
.btn-submit { width: 100%; justify-content: center; }

/* ---------- FOOTER ---------- */
.footer { background: #060B18; padding: 96px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.2); transition: color var(--t); }
.footer-bottom a:hover { color: var(--orange); }
.footer-legal { display: flex; gap: 24px; }

/* ---------- LUCIDE ICONS ---------- */
[data-lucide] { display: inline-block; vertical-align: middle; }
[data-lucide] svg, .lucide {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-xs  { width: 14px; height: 14px; }
.icon-sm  { width: 16px; height: 16px; }
.icon     { width: 20px; height: 20px; }
.icon-md  { width: 24px; height: 24px; }
.icon-lg  { width: 32px; height: 32px; }
.icon-xl  { width: 48px; height: 48px; }
.btn [data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- BADGES & CARDS ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge-outline { border-color: var(--border); color: var(--muted); background: transparent; }
.badge-gold, .badge-orange {
  background: var(--orange-pale);
  border-color: rgba(13,148,136,0.25);
  color: #0a5651;
}
.badge-dark { background: rgba(30,58,138,0.07); border-color: rgba(30,58,138,0.1); color: var(--ink); }

.card {
  background: var(--white);
  border: 1px solid hsl(240 5.9% 90%);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.card:hover { border-color: hsl(240 5.9% 82%); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.card-header { padding: 24px 24px 0; }
.card-body   { padding: 24px; }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid hsl(240 5.9% 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.separator { height: 1px; background: var(--border); margin: 32px 0; }

.alert { padding: 16px 20px; border-radius: 8px; border: 1px solid; display: flex; gap: 12px; align-items: flex-start; }
.alert-info { background: rgba(13,148,136,0.05); border-color: rgba(13,148,136,0.2); color: var(--ink); }
.alert [data-lucide] { flex-shrink: 0; margin-top: 1px; color: var(--orange); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   ACTUALITÉS — news cards, featured, events
═══════════════════════════════════════ */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}
.news-featured-img {
  background: var(--warm);
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-img-placeholder {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}
.news-img-placeholder.small { width: 48px; height: 48px; }
.news-tag-wrap { position: absolute; top: 20px; left: 20px; }
.news-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.news-featured-body h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.news-featured-body p { color: var(--muted); line-height: 1.7; margin: 0; }

/* news tag pills */
.news-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.tag-event    { background: rgba(13,148,136,0.1); color: var(--orange); }
.tag-partner  { background: rgba(12,26,48,0.08); color: var(--navy); }
.tag-pub      { background: rgba(100,110,130,0.1); color: var(--muted); }
.tag-award    { background: rgba(180,140,30,0.1); color: #8a6a00; }
.tag-team     { background: rgba(20,100,60,0.08); color: #145c38; }
.tag-mission  { background: rgba(13,148,136,0.1); color: var(--orange); }
.tag-cdi      { background: rgba(12,26,48,0.08); color: var(--navy); }
.tag-stage    { background: rgba(20,100,60,0.08); color: #145c38; }

/* news-meta */
.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.news-dot { opacity: 0.4; }
.news-cat { font-weight: 500; }

/* news grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.news-card:hover { box-shadow: 0 8px 32px rgba(30,58,138,0.1); transform: translateY(-3px); }
.news-card-img {
  background: var(--warm);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
}
.news-card-img .news-tag { position: absolute; top: 14px; left: 14px; }
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card-body h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.news-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }
.news-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: auto;
  transition: opacity var(--t);
}
.news-link:hover { opacity: 0.75; }

/* events list */
.events-list { display: flex; flex-direction: column; gap: 24px; }
.event-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
  transition: box-shadow var(--t);
}
.event-item:hover { box-shadow: 0 6px 24px rgba(30,58,138,0.08); }
.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  flex-shrink: 0;
}
.event-day { font-family: 'Inter', system-ui, sans-serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.event-year { font-size: 0.68rem; opacity: 0.6; margin-top: 2px; }
.event-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.event-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--muted);
}
.event-location i { width: 14px; height: 14px; }
.event-body { display: flex; flex-direction: column; gap: 8px; }
.event-body h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.event-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0 0 8px; }

/* newsletter */
.newsletter-section { background: var(--navy); }
.newsletter-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 56px 64px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.newsletter-icon {
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.newsletter-icon i { width: 24px; height: 24px; }
.newsletter-text { flex: 1; min-width: 220px; }
.newsletter-text h3 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.6rem; color: #fff; margin: 0 0 6px; }
.newsletter-text p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter-input {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  width: 260px;
  transition: border-color var(--t);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--orange); }

/* ═══════════════════════════════════════
   OPPORTUNITÉS — jobs, why, spontaneous
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--t), transform var(--t);
}
.why-card:hover { box-shadow: 0 8px 28px rgba(30,58,138,0.08); transform: translateY(-2px); }
.why-card h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* jobs list */
.jobs-list { display: flex; flex-direction: column; gap: 24px; }
.job-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.job-card:hover { box-shadow: 0 8px 32px rgba(30,58,138,0.09); }
.job-card-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}
.job-meta-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.job-status {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.job-status.open { background: rgba(20,100,60,0.1); color: #145c38; }
.job-status.closed { background: rgba(100,100,120,0.1); color: var(--muted); }
.job-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}
.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.8rem;
  color: var(--muted);
}
.job-details span { display: flex; align-items: center; gap: 5px; }
.job-details i { width: 13px; height: 13px; }
.job-card-body { padding: 24px 32px; }
.job-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin: 0 0 16px; }
.job-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-requirements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.5;
}
.job-requirements li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.job-card-footer {
  padding: 20px 32px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* spontaneous application */
.spontaneous-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding: 64px;
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
}
.spontaneous-text { display: flex; flex-direction: column; gap: 16px; }
.spontaneous-text h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.spontaneous-text p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
.spontaneous-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.spontaneous-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 220px;
}
.spontaneous-icon {
  width: 64px; height: 64px;
  background: rgba(13,148,136,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.spontaneous-icon i { width: 28px; height: 28px; }
.spontaneous-cta p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; margin: 0; }

/* btn-sm */
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; padding: 140px 48px 96px; }
  .expertise-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 220px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .spontaneous-wrap { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .spontaneous-cta { max-width: 100%; flex-direction: row; text-align: left; }
}

@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .navbar { padding: 0 28px; }
  .services-intro { grid-template-columns: 1fr; gap: 40px; }
  .services-intro-right { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 40px; }
  .about-split { grid-template-columns: 1fr; }
  .about-image-side { height: 360px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .pub-row { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row-arrow { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .event-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .newsletter-wrap { padding: 40px 36px; flex-direction: column; align-items: flex-start; }
  .newsletter-input { width: 100%; }
  .newsletter-form { width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-left { padding: 120px 24px 80px; }
  .about-text-side { padding: 48px 28px; }
  .expertise-header { flex-direction: column; }
  .expertise-header p { text-align: left; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-marquee { display: none; }
  .cta-full { padding: 80px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured-body { padding: 32px 28px; }
  .event-item { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .event-date-block { flex-direction: row; gap: 8px; align-items: center; padding: 10px 16px; width: fit-content; }
  .why-grid { grid-template-columns: 1fr; }
  .job-card-header, .job-card-body, .job-card-footer { padding-left: 24px; padding-right: 24px; }
  .spontaneous-wrap { padding: 36px 28px; }
  .spontaneous-cta { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════
   CORPORATE HOME — DEMO-inspired sections (Binuza-style adapted HGC)
═══════════════════════════════════════════════════════════════════ */

/* Headings — bold sans-serif HGC brand, scoped weights */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1, h2 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-weight: 700; }
h4, h5, h6 { font-weight: 600; }
.btn { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.04em; text-transform: none; padding: 14px 28px; border-radius: 999px; }
.btn-orange, .btn-gold { background: var(--orange); padding-left: 28px; padding-right: 8px; }
.btn-orange .arrow, .btn-gold .arrow { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--white); color:var(--ink); border-radius:50%; margin-left:14px; transition:transform var(--t); }
.btn-orange:hover .arrow, .btn-gold:hover .arrow { transform: rotate(-45deg); }

/* Pill sub-title */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(13,148,136,0.08);
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pill::before {
  content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6;
}

.section-title-corp { max-width: 720px; }
.section-title-corp h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--navy); margin-bottom: 16px;
}
.section-title-corp h2 .accent { color: var(--orange); }
.section-title-corp p { font-size: 1rem; color: var(--muted); }
.text-center.section-title-corp { margin: 0 auto 56px; text-align: center; }

/* ---------- HERO CORP ---------- */
.hero-corp {
  padding: 140px 0 96px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--orange-pale) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-corp::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.hero-corp .container { position: relative; z-index: 1; }
.hero-corp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.hero-corp-content h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.05; letter-spacing: -0.015em;
  color: var(--navy); margin-bottom: 22px;
}
.hero-corp-content h1 .accent { color: var(--orange); }
.hero-corp-content .lead {
  font-size: 1.08rem; line-height: 1.75; color: var(--muted);
  max-width: 540px; margin-bottom: 36px;
}
.hero-corp-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-corp-actions .link-btn {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem;
  color: var(--navy); display: inline-flex; align-items: center; gap: 10px;
  position: relative;
}
.hero-corp-actions .link-btn::after {
  content: ''; position: absolute; left: 0; right: 26px; bottom: -3px;
  height: 1px; background: var(--navy); transform-origin: left;
  transition: transform var(--t);
}
.hero-corp-actions .link-btn:hover { color: var(--orange); }
.hero-corp-actions .link-btn:hover::after { background: var(--orange); transform: scaleX(0.6); }

.hero-stats-corp { display: flex; gap: 56px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-stat-corp h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy); margin: 0;
  line-height: 1;
}
.hero-stat-corp h3 sup { color: var(--orange); font-size: 1.4rem; vertical-align: top; margin-left: 2px; }
.hero-stat-corp p { font-size: 0.78rem; color: var(--muted); margin: 6px 0 0; letter-spacing: 0.04em; }

.hero-corp-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(30,58,138,0.15);
}
.hero-corp-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-corp-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30,58,138,0.55) 100%);
  pointer-events: none;
}
.hero-corp-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  background: var(--white); border-radius: 12px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 40px rgba(30,58,138,0.18);
  z-index: 2;
}
.hero-corp-badge .icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-corp-badge p { font-size: 0.7rem; color: var(--muted); margin: 0; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-corp-badge strong { display: block; font-family: 'Inter', system-ui, sans-serif; font-size: 1.05rem; color: var(--navy); margin-top: 2px; }

/* ---------- ABOUT CORP ---------- */
.about-corp { padding: 120px 0; background: var(--white); }
.about-corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-corp-images { position: relative; }
.about-corp-img-main {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
}
.about-corp-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-corp-counter {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--navy); color: var(--white);
  padding: 28px 32px; border-radius: 12px;
  box-shadow: 0 16px 50px rgba(30,58,138,0.25);
  text-align: center; min-width: 180px;
}
.about-corp-counter h2 {
  font-family: 'Inter', sans-serif; font-size: 3.2rem; font-weight: 700;
  color: var(--white); margin: 0; line-height: 1;
}
.about-corp-counter h2 sup { color: var(--orange); font-size: 1.4rem; vertical-align: top; }
.about-corp-counter p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 6px 0 0; letter-spacing: 0.06em; }

.about-corp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.about-corp-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-corp-feature .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-corp-feature h5 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin: 4px 0 0; line-height: 1.4; }

/* ---------- SERVICES CORP ---------- */
.services-corp { padding: 120px 0; background: var(--cream); }
.services-corp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card-corp {
  background: var(--white); padding: 36px 32px;
  border: 1px solid var(--border); border-radius: 12px;
  transition: all var(--t);
  position: relative;
  display: flex; flex-direction: column;
  height: 100%;
}
.svc-card-corp::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--orange); border-radius: 12px 0 0 12px;
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--t);
}
.svc-card-corp:hover { box-shadow: 0 20px 60px rgba(30,58,138,0.10); transform: translateY(-4px); border-color: rgba(13,148,136,0.25); }
.svc-card-corp:hover::before { transform: scaleY(1); }
.svc-card-corp .ic-wrap {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all var(--t);
}
.svc-card-corp:hover .ic-wrap { background: var(--orange); color: var(--white); }
.svc-card-corp h3 {
  font-size: 1.4rem; line-height: 1.3; color: var(--navy); margin-bottom: 14px;
}
.svc-card-corp ul { padding-left: 0; margin-bottom: 24px; }
.svc-card-corp ul li {
  font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin-bottom: 8px;
  padding-left: 22px; position: relative;
}
.svc-card-corp ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 700;
}
.svc-card-corp .more {
  font-family: 'Inter', sans-serif; font-size: 0.86rem; font-weight: 600;
  color: var(--orange); display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}

/* ---------- CHOOSE-US CORP ---------- */
.choose-corp {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.choose-corp::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.choose-corp .container { position: relative; z-index: 1; }
.choose-corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.choose-corp h2 { color: var(--white); }
.choose-corp h2 .accent { color: var(--orange); }
.choose-corp p.lead { color: rgba(255,255,255,0.7); font-size: 1.02rem; line-height: 1.75; margin: 24px 0 36px; }
.choose-counter-area { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.choose-counter h3 { font-family: 'Inter', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--orange); margin: 0; line-height: 1; }
.choose-counter p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 8px; line-height: 1.6; }

.choose-features { display: flex; flex-direction: column; gap: 20px; }
.choose-feat {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 28px; border-radius: 12px;
  transition: all var(--t);
}
.choose-feat:hover { background: rgba(13,148,136,0.10); border-color: rgba(13,148,136,0.3); }
.choose-feat .ic-circle {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(13,148,136,0.18); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.choose-feat h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin: 0 0 6px; }
.choose-feat p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 0; line-height: 1.65; }

/* ---------- TEAM CORP ---------- */
.team-corp { padding: 120px 0; background: var(--white); }
.team-corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.team-list-corp { display: flex; flex-direction: column; }
.team-list-row {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 24px;
  align-items: center; padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: all var(--t);
}
.team-list-row:last-child { border-bottom: 1px solid var(--border); }
.team-list-row .num { font-family: 'Inter', system-ui, sans-serif; font-size: 1.2rem; color: var(--orange); }
.team-list-row .name { font-family: 'Inter', system-ui, sans-serif; font-size: 1.6rem; color: var(--navy); margin: 0; }
.team-list-row .role { font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--muted); }
.team-list-row .arrow { color: var(--orange); transition: transform var(--t); opacity: 0; }
.team-list-row:hover { padding-left: 12px; }
.team-list-row:hover .name { color: var(--orange); }
.team-list-row:hover .arrow { opacity: 1; transform: translateX(4px); }

.team-thumb-corp {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  position: relative;
}
.team-thumb-corp img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ CORP ---------- */
.faq-corp { padding: 120px 0; background: var(--cream); }
.faq-corp-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all var(--t);
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 12px 40px rgba(30,58,138,0.08); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left;
  transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--orange); }
.faq-q .toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-a { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height var(--t), padding var(--t); }
.faq-a p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 28px 24px; }

/* ---------- PROJECTS CORP ---------- */
.projects-corp { padding: 120px 0; background: var(--white); }
.projects-corp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card-corp {
  border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 4/5;
  background: var(--navy);
  cursor: pointer;
}
.project-card-corp img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card-corp:hover img { transform: scale(1.05); }
.project-card-corp::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,58,138,0.85) 100%);
}
.project-card-corp .body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px; z-index: 2;
}
.project-card-corp .cat {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(13,148,136,0.95); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px;
}
.project-card-corp h3 { font-size: 1.35rem; color: var(--white); margin: 0; line-height: 1.3; }
.project-card-corp p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 8px 0 0; }

/* ---------- NEWS CORP ---------- */
.news-corp { padding: 120px 0; background: var(--cream); }
.news-corp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card-corp {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.news-card-corp:hover { box-shadow: 0 16px 50px rgba(30,58,138,0.10); transform: translateY(-3px); }
.news-card-corp .img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--orange-pale), var(--cream));
  position: relative; overflow: hidden;
}
.news-card-corp .img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-corp .img .badge { position: absolute; top: 16px; left: 16px; background: var(--orange); color: var(--white); padding: 4px 12px; border-radius: 999px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.news-card-corp .body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.news-card-corp .meta { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.news-card-corp h4 { font-size: 1.2rem; color: var(--navy); margin: 0; line-height: 1.35; transition: color var(--t); }
.news-card-corp:hover h4 { color: var(--orange); }
.news-card-corp p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.news-card-corp .read { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--orange); margin-top: auto; }

/* ---------- CTA CORP ---------- */
.cta-corp {
  padding: 120px 0; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-corp::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-corp .container { position: relative; z-index: 1; }
.cta-corp h2 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 18px; }
.cta-corp h2 .accent { color: var(--orange); }
.cta-corp p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin: 0 auto 40px; max-width: 560px; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(13,148,136,0.4);
  opacity: 0; pointer-events: none;
  transition: all var(--t);
  z-index: 998;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM UI LAYER — shadcn-inspired components (refined, editorial)
═══════════════════════════════════════════════════════════════════ */

/* ---------- Refined buttons (override legacy) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; height: 44px; padding: 0 20px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: -0.005em;
  text-transform: none; border-radius: 8px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  border: 1px solid transparent; cursor: pointer;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.btn-orange, .btn-gold {
  background: var(--orange); color: var(--white);
  padding: 0 8px 0 22px; border-radius: 999px; height: 48px;
}
.btn-orange:hover, .btn-gold:hover {
  background: #0C5F58; transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.32);
}
.btn-orange::after, .btn-gold::after { display: none; }
.btn-orange .arrow, .btn-gold .arrow {
  width: 36px; height: 36px;
  background: var(--white); color: var(--ink);
  border-radius: 50%; margin-left: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 220ms ease;
}
.btn-orange:hover .arrow, .btn-gold:hover .arrow { transform: rotate(-45deg); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(30,58,138,0.18); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: #2D4FAA; transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(30,58,138,0.32);
}
.btn-teal {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
}
.btn-teal:hover {
  background: #0C5F58; transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13,148,136,0.32);
}
.btn-link-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600;
  color: var(--navy); padding: 6px 0; position: relative;
}
.btn-link-dark::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:1px; background: currentColor; transform-origin: right;
  transform: scaleX(0); transition: transform 240ms ease;
}
.btn-link-dark:hover::after { transform-origin: left; transform: scaleX(1); }
.btn-link-light {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600;
  color: rgba(255,255,255,0.78); padding: 6px 0; position: relative;
}
.btn-link-light::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: currentColor; transform-origin: right;
  transform: scaleX(0); transition: transform 240ms ease;
}
.btn-link-light:hover { color: var(--white); }
.btn-link-light:hover::after { transform-origin: left; transform: scaleX(1); }
.btn-sm { height: 36px; font-size: 0.82rem; }

/* ---------- Refined badges ---------- */
.bdg {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--border); background: var(--white); color: var(--ink);
}
.bdg-soft { background: var(--cream); }
.bdg-accent { background: var(--orange-pale); border-color: rgba(13,148,136,0.25); color: var(--orange); }
.bdg-navy { background: rgba(30,58,138,0.05); border-color: rgba(30,58,138,0.15); color: var(--navy); }
.bdg-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.bdg-dot::before { content:''; width:6px; height:6px; border-radius:50%; background: currentColor; opacity:0.85; }

/* ---------- Eyebrow with line ---------- */
.eyebrow-line {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow-line::before { content:''; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow-line.light { color: var(--orange); }
.eyebrow-line.muted { color: var(--muted); }

/* ---------- Display headlines (Instrument Serif base + Inter Bold accent) ---------- */
/* Reversed hierarchy: serif for the body of headings, sans-bold for the em accent */
.display-1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.08; letter-spacing: -0.01em;
  color: var(--ink); font-weight: 400; margin: 0;
  text-wrap: balance;
}
.display-1 em {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--orange); font-style: normal; font-weight: 800;
  letter-spacing: -0.05em; font-size: 0.9em;
}
.display-2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink); font-weight: 400; margin: 0;
  text-wrap: balance;
}
.display-2 em {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--orange); font-style: normal; font-weight: 700;
  letter-spacing: -0.045em; font-size: 0.91em;
}
.display-3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.15; letter-spacing: -0.005em; color: var(--ink);
  font-weight: 400; margin: 0;
  text-wrap: balance;
}
.display-3 em {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--orange); font-style: normal; font-weight: 700;
  letter-spacing: -0.04em; font-size: 0.92em;
}

/* CTA / quote / methodology headings — same serif+bold-accent pattern */
.cta-bold h2 em,
.lead-quote-section blockquote em,
.methodo-teaser h2 em {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal; font-weight: 800;
  letter-spacing: -0.05em; font-size: 0.92em;
  color: var(--orange);
}

/* Body — feature settings pour Inter optimisé */
body {
  font-feature-settings: 'cv11' on, 'ss01' on, 'ss03' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.lead-prose {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem; line-height: 1.75;
  color: var(--muted); max-width: 56ch; font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — Split pleine hauteur (panneau contenu + visuel plein bord)
═══════════════════════════════════════════════════════════════════ */
.hero-edit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44%;
  min-height: 100svh;
  background: var(--white);
  overflow: hidden;
}

/* ── Panneau gauche (contenu) ── */
.hero-edit-panel {
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  padding-left: max(calc((100vw - 1480px) / 2 + 48px), 48px);
  padding-right: 72px;
}
.hero-edit-body { max-width: 600px; width: 100%; }
.hero-edit-body h1 { margin: 0 0 28px; }
.hero-edit-body .lead {
  font-size: 1.12rem; line-height: 1.72;
  color: var(--muted); margin: 0 0 40px; max-width: 54ch;
}
.hero-edit-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-edit-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem; color: var(--muted);
}
.hero-edit-meta strong { color: var(--navy); font-weight: 600; }

/* ── Panneau visuel droit (plein bord) ── */
.hero-edit-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--navy) 60%, var(--navy-mid) 100%);
}
.hero-edit-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Dégradé bas pour la lisibilité du tag */
.hero-edit-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,58,138,0.12) 0%, rgba(15,26,64,0.52) 100%);
  pointer-events: none;
}
/* Barre accent teal (séparateur gauche) */
.hero-edit-visual::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--orange) 30%, var(--orange-2) 70%, transparent 100%);
  z-index: 3;
}

/* ── Pill tag (sur le visuel) ── */
.hero-edit-tag {
  position: absolute; top: 32px; left: 28px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 16px rgba(30,58,138,0.18);
  padding: 8px 16px; border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--navy); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 4;
}
.hero-edit-tag::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange);
}

/* ── Indicateur de défilement ── */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: max(calc((100vw - 1480px) / 2 + 48px), 48px);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(15,26,64,0.28);
  z-index: 2;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
.hero-scroll-indicator svg { opacity: 0.4; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(5px); opacity: 0.8; }
}

/* ---------- Marquee strip (logos / keywords) ---------- */
.marquee-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0; overflow: hidden;
}
.marquee-strip-track {
  display: flex; gap: 64px;
  animation: marquee-scroll 38s linear infinite;
  white-space: nowrap; align-items: center; width: max-content;
}
.marquee-strip-item {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.5rem;
  color: var(--navy); opacity: 0.55; flex-shrink: 0;
  letter-spacing: -0.01em;
  transition: opacity 220ms ease, color 220ms ease;
}
.marquee-strip-item:hover { opacity: 1; color: var(--orange); }
.marquee-strip-dot { color: var(--orange); opacity: 0.5; flex-shrink: 0; font-size: 1rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Big number stats (specific numbers, no "+") ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 56px 32px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1; color: var(--navy);
  letter-spacing: -0.015em; font-weight: 400;
  margin: 0;
}
.stat-cell .num em { color: var(--orange); font-style: normal; font-size: 0.7em; vertical-align: top; margin-left: 4px; }
.stat-cell .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--muted); margin-top: 16px;
  line-height: 1.5;
}

/* ---------- Editorial section (manifesto) ---------- */
.editorial-section { padding: 140px 0; background: var(--white); }
.editorial-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start; }
.editorial-grid .lead-col { position: sticky; top: 120px; }
.editorial-prose p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; line-height: 1.85;
  color: var(--ink); margin-bottom: 22px;
}
.editorial-prose p:first-of-type::first-letter {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 4.5rem; line-height: 0.85;
  color: var(--orange);
  float: left;
  margin: 8px 16px 0 0;
  font-weight: 400;
}
.editorial-prose strong { color: var(--navy); font-weight: 600; }

/* ---------- Service editorial list ---------- */
.svc-edit-list { border-top: 1px solid var(--border); }
.svc-edit-row {
  display: grid; grid-template-columns: 60px 280px 1fr 60px;
  gap: 32px; align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; position: relative;
  transition: padding 280ms ease;
  text-decoration: none;
}
.svc-edit-row::before {
  content:''; position: absolute; left: -32px; right: -32px; top:0; bottom:0;
  background: var(--cream);
  opacity: 0; transition: opacity 280ms ease;
  z-index: -1; border-radius: 14px;
}
.svc-edit-row:hover::before { opacity: 1; }
.svc-edit-row:hover { padding-left: 32px; padding-right: 32px; }
.svc-edit-row .num {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.1rem;
  color: var(--orange); opacity: 0.7;
}
.svc-edit-row .name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy); line-height: 1.2;
  letter-spacing: -0.015em; margin: 0;
  transition: color 220ms ease;
}
.svc-edit-row:hover .name { color: var(--orange); }
.svc-edit-row .desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin: 0;
}
.svc-edit-row .arr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--navy);
  transition: all 220ms ease;
}
.svc-edit-row:hover .arr {
  background: var(--orange); color: var(--white); border-color: var(--orange);
  transform: rotate(-45deg);
}

/* ---------- Methodology teaser ---------- */
.methodo-teaser {
  background: var(--cream);
  padding: 140px 0;
  position: relative; overflow: hidden;
}
.methodo-teaser::before {
  content:''; position:absolute; top:-200px; right:-100px;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(13,148,136,0.10) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.methodo-teaser .container { position: relative; z-index: 1; }
.methodo-teaser-grid {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 80px; align-items: center;
}
.methodo-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.methodo-feat {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.methodo-feat:first-child { border-top: none; padding-top: 0; }
.methodo-feat .num { font-family: 'Inter', system-ui, sans-serif; font-size: 1.4rem; color: var(--orange); line-height: 1; }
.methodo-feat h5 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.methodo-feat p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- Lead quote section (team showcase) ---------- */
.lead-quote-section { padding: 140px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.lead-quote-section::before {
  content:''; position:absolute; top:-200px; left:-200px;
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.lead-quote-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.lead-quote-photo {
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--orange) 200%);
  position: relative;
}
.lead-quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.lead-quote-text { position: relative; padding-top: 24px; }
.lead-quote-text .open-quote {
  font-family: 'Inter', system-ui, sans-serif; font-size: 8rem; color: var(--orange);
  line-height: 0.5; opacity: 0.5;
  position: absolute; top: -16px; left: -8px; pointer-events: none;
}
.lead-quote-text blockquote {
  font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.4; color: var(--white); margin: 0; padding: 0;
  font-style: italic; letter-spacing: -0.005em;
  position: relative; z-index: 1;
}
.lead-quote-attr {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; gap: 16px;
}
.lead-quote-attr .name { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); display: block; }
.lead-quote-attr .role { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.55); display: block; margin-top: 2px; }

/* ---------- Insights magazine grid ---------- */
.insights-section { padding: 140px 0; background: var(--white); }
.insights-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 28px; }
.insight-card-large {
  border-radius: 16px; overflow: hidden;
  background: var(--navy); position: relative;
  display: flex; flex-direction: column;
  aspect-ratio: 4/3; min-height: 480px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.insight-card-large:hover { transform: translateY(-3px); box-shadow: 0 24px 56px -24px rgba(30,58,138,0.22); }
.insight-card-large .img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0; transition: transform 600ms ease;
}
.insight-card-large:hover .img-bg { transform: scale(1.04); }
.insight-card-large::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(30,58,138,0.1) 0%, rgba(30,58,138,0.85) 100%);
  z-index: 1; pointer-events: none;
}
.insight-card-large .body { position: relative; z-index: 2; margin-top: auto; padding: 40px; color: var(--white); }
.insight-card-large h3 { font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--white); margin: 12px 0 8px; line-height: 1.2; }
.insight-card-large p { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.6; margin: 0 0 16px; max-width: 50ch; }
.insights-side { display: flex; flex-direction: column; gap: 24px; }
.insight-card-small {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column; flex: 1;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  text-decoration: none;
}
.insight-card-small:hover {
  border-color: rgba(30,58,138,0.18);
  box-shadow: 0 18px 48px -24px rgba(30,58,138,0.18);
  transform: translateY(-2px);
}
.insight-card-small .meta { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.insight-card-small h4 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.18rem; color: var(--navy); line-height: 1.3; margin: 0 0 8px; transition: color 220ms ease; }
.insight-card-small:hover h4 { color: var(--orange); }
.insight-card-small p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; flex: 1; margin: 0 0 14px; }
.read-more {
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
}

/* ---------- Big bold CTA (editorial) ---------- */
.cta-bold {
  padding: 160px 0;
  background: var(--ink); color: var(--white);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bold::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 50% 60% at top right, rgba(13,148,136,0.16) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at bottom left, rgba(13,148,136,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.cta-bold .container, .cta-bold .container-wide { position: relative; z-index: 1; }
.cta-bold h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.06; letter-spacing: -0.01em;
  color: var(--white); font-weight: 400;
  margin: 0 auto 28px; max-width: 14ch;
}
.cta-bold h2 em {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--orange); font-style: normal;
  font-weight: 800; letter-spacing: -0.05em; font-size: 0.9em;
}
.cta-bold p { color: rgba(255,255,255,0.55); font-size: 1.08rem; margin: 0 auto 48px; max-width: 540px; line-height: 1.7; }

/* ---------- Scroll reveal (smoother spring easing) ---------- */
.fx-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fx-up.visible, .fx-up.in { opacity: 1; transform: translateY(0); }
.fx-up.delay-1 { transition-delay: 100ms; }
.fx-up.delay-2 { transition-delay: 200ms; }
.fx-up.delay-3 { transition-delay: 300ms; }
.fx-up.delay-4 { transition-delay: 400ms; }

/* ---------- Container variants ---------- */
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 48px; }

/* ---------- Premium responsive ---------- */
@media (max-width: 1100px) {
  .editorial-grid, .methodo-teaser-grid, .lead-quote-grid, .insights-grid { grid-template-columns: 1fr; gap: 56px; }
  .editorial-grid .lead-col { position: static; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .svc-edit-row { grid-template-columns: 40px 1fr 60px; }
  .svc-edit-row .desc { display: none; }
  .insight-card-large { aspect-ratio: 16/10; min-height: 320px; }
}
@media (max-width: 768px) {
  .container-wide, .container-narrow { padding: 0 24px; }
  .hero-edit::before { display: none; }
  .editorial-section, .methodo-teaser, .lead-quote-section, .insights-section, .cta-bold { padding: 80px 0; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .stat-cell:last-child { border-bottom: none; }
  .marquee-strip-item { font-size: 1.1rem; }
  .marquee-strip-track { gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════
   MÉTHODOLOGIE PAGE — refined editorial (Tier 1)
═══════════════════════════════════════════════════════════════════ */

/* ─── Hero trust strip ─── */
.methodo-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.methodo-trust > div {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 6px;
}
.methodo-trust > div:first-child { padding-left: 0; }
.methodo-trust > div:last-child { border-right: none; padding-right: 0; }
.methodo-trust .num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1;
  color: var(--white);
  letter-spacing: -0.025em;
}
.methodo-trust .num sup {
  color: var(--orange);
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
}
.methodo-trust .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.005em;
  margin-top: 6px;
}

/* ─── Manifesto strip ─── */
.methodo-manifesto {
  background: var(--white);
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.methodo-manifesto-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.methodo-manifesto-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem; line-height: 1.85;
  color: var(--ink);
  margin: 0;
}
.methodo-manifesto-text p strong {
  color: var(--navy); font-weight: 700;
}

/* ─── Pentagon stage with side labels ─── */
.pentagon-section { padding: 120px 0; background: var(--cream); position: relative; }
.pentagon-section::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(30,58,138,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(13,148,136,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.pentagon-section > .container-wide { position: relative; z-index: 1; }
.pentagon-stage {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px; align-items: center;
  margin-bottom: 32px;
}
.pentagon-svg-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pentagon-svg {
  width: 100%; max-width: 560px;
  height: auto;
  display: block;
}

.pentagon-labels {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 32px;
}
.pentagon-labels li {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 18px; align-items: start;
  position: relative;
  padding: 8px 0;
}
.pentagon-labels-left li { text-align: right; grid-template-columns: 1fr 44px; }
.pentagon-labels-left li > div { order: -1; }
.pentagon-labels .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 800;
  background: var(--white);
  color: var(--orange);
  border: 1px solid rgba(13,148,136,0.25);
  letter-spacing: -0.015em;
  flex-shrink: 0;
}
.pentagon-labels h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 4px 0 6px;
  line-height: 1.3;
}
.pentagon-labels p {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.pentagon-caption {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  max-width: 720px;
  margin: 24px auto 0;
}

/* ─── Methodo timeline ─── */
.methodo-timeline {
  background: var(--white);
  padding: 140px 0;
  position: relative;
}
.methodo-timeline .section-title-corp { margin-bottom: 64px; max-width: 760px; }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 60px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(13,148,136,0.5) 5%,
    rgba(13,148,136,0.5) 95%,
    transparent 100%
  );
  z-index: 0;
}
.timeline-phase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.timeline-phase:hover {
  border-color: rgba(13,148,136,0.3);
  box-shadow: 0 24px 56px -28px rgba(30,58,138,0.18);
  transform: translateY(-3px);
}
.timeline-phase-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.timeline-phase-week {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 999px;
}
.timeline-phase-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.4;
  letter-spacing: -0.005em;
}
.timeline-phase-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-pale);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 220ms ease, color 220ms ease;
}
.timeline-phase:hover .timeline-phase-icon {
  background: var(--orange); color: var(--white);
}
.timeline-phase-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.timeline-phase-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; line-height: 1.6;
  color: var(--muted); margin: 0;
}
.timeline-phase-deliv {
  list-style: none; padding: 0; margin: 8px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.timeline-phase-deliv li {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--ink);
  position: relative; padding-left: 18px;
  line-height: 1.5;
}
.timeline-phase-deliv li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 10px; height: 1px; background: var(--orange);
}

/* ─── 5 axes — alternating featured layout ─── */
.axes-section { background: var(--cream); padding: 120px 0; }
.axe-feat {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  position: relative;
}
.axe-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--axe-accent, var(--orange));
}
.axe-feat-rev::before { left: auto; right: 0; }
.axe-feat:hover {
  border-color: rgba(13,148,136,0.25);
  box-shadow: 0 32px 80px -32px rgba(30,58,138,0.18);
}
.axe-feat-rev { direction: rtl; }
.axe-feat-rev > * { direction: ltr; }

.axe-feat-side {
  padding: 48px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.axe-feat-num-card {
  width: 100%;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
}
.axe-feat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--axe-accent, var(--navy));
  margin: 0;
}
.axe-feat-order {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.axe-feat-icon-circle {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  color: var(--axe-accent, var(--orange));
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 4px;
}
.axe-feat-side-summary {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; line-height: 1.65;
  color: var(--muted);
  margin: 8px 0 0;
}

.axe-feat-content {
  padding: 48px 48px 48px 48px;
  border-left: 1px solid var(--border);
}
.axe-feat-rev .axe-feat-content {
  border-left: none; border-right: 1px solid var(--border);
}
.axe-feat-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.axe-feat-blocks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.axe-feat-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 8px;
}
.axe-feat-block h4 .lbl {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--axe-accent, var(--orange));
  color: var(--white);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
}
.axe-feat-block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.axe-feat-block ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.axe-feat-block ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--axe-accent, var(--orange));
}
.axe-feat-block ul.ul-q li {
  font-style: italic;
  color: var(--muted);
}
.axe-feat-block ul.ul-q li::before {
  content: '?';
  background: transparent;
  width: auto; height: auto;
  font-style: normal;
  color: var(--axe-accent, var(--orange));
  font-weight: 800;
  top: 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

/* ─── Founder quote ─── */
.methodo-quote-section {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.methodo-quote-section::before {
  content:''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.methodo-quote {
  max-width: 920px;
  margin: 0 auto;
  position: relative; z-index: 1;
  text-align: left;
}
.methodo-quote-mark {
  font-family: 'Inter', sans-serif;
  font-size: 12rem;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.4;
  display: block;
  margin: 0 0 -40px;
  pointer-events: none;
}
.methodo-quote blockquote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  padding: 0;
  max-width: 18ch;
}
.methodo-quote-attr {
  display: flex; align-items: center; gap: 18px;
  margin-top: 48px;
}
.methodo-quote-attr .bar {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--orange);
}
.methodo-quote-attr .name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.methodo-quote-attr .role {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 2px;
}

/* ─── Benefits — 1 large + 4 small grid ─── */
.benefits-section { background: var(--white); padding: 140px 0; }
.benefits-feat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.benefit-feat-large {
  grid-column: 1; grid-row: 1 / span 2;
  background: var(--navy); color: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
}
.benefit-feat-large::before {
  content:''; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(13,148,136,0.20) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.benefit-feat-large > * { position: relative; z-index: 1; }
.benefit-feat-large-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.benefit-feat-large-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(13,148,136,0.18);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.benefit-feat-large h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  max-width: 16ch;
}
.benefit-feat-large p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.benefit-feat-small {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.benefit-feat-small:hover {
  border-color: rgba(13,148,136,0.25);
  box-shadow: 0 18px 48px -24px rgba(30,58,138,0.18);
  transform: translateY(-2px);
}
.benefit-feat-small-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.benefit-feat-small-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.benefit-feat-small-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.benefit-feat-small h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}
.benefit-feat-small p {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ─── Responsive (méthodologie) ─── */
@media (max-width: 1100px) {
  .methodo-trust { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .methodo-trust > div:nth-child(2n) { border-right: none; padding-right: 0; }
  .methodo-trust > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; margin-bottom: 8px; }
  .methodo-manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .pentagon-stage { grid-template-columns: 1fr; gap: 48px; }
  .pentagon-labels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .pentagon-labels-left li { text-align: left; grid-template-columns: 44px 1fr; }
  .pentagon-labels-left li > div { order: 0; }
  .timeline-track { grid-template-columns: repeat(2, 1fr); }
  .timeline-track::before { display: none; }
  .axe-feat { grid-template-columns: 1fr; }
  .axe-feat-content { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); }
  .axe-feat-rev { direction: ltr; }
  .axe-feat-side { padding: 32px; }
  .axe-feat-content { padding: 32px; }
  .axe-feat-blocks { grid-template-columns: 1fr; gap: 28px; }
  .benefits-feat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .benefit-feat-large { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 700px) {
  .methodo-trust { grid-template-columns: 1fr; gap: 14px; }
  .methodo-trust > div { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 14px; }
  .methodo-trust > div:last-child { border-bottom: none; }
  .pentagon-labels { grid-template-columns: 1fr; gap: 16px; }
  .timeline-track { grid-template-columns: 1fr; }
  .benefits-feat-grid { grid-template-columns: 1fr; }
  .benefit-feat-large { padding: 36px 28px; }
  .benefit-feat-small { padding: 24px 22px; }
  .methodo-quote blockquote { max-width: none; }
  .axe-feat-side { padding: 28px 24px; }
  .axe-feat-content { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CARRIÈRES (page) — refined corporate
═══════════════════════════════════════════════════════════════════ */
.why-grid-corp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card-corp {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.why-card-corp:hover {
  border-color: rgba(30,58,138,0.2);
  box-shadow: 0 18px 48px -24px rgba(30,58,138,0.18);
  transform: translateY(-3px);
}
.why-card-corp .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  transition: background-color 220ms ease, color 220ms ease;
}
.why-card-corp:hover .ic { background: var(--orange); color: var(--white); }
.why-card-corp h4 {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); margin: 0; line-height: 1.3; letter-spacing: -0.01em;
}
.why-card-corp p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0;
}

.empty-state-card {
  background: var(--white);
  border: 1px dashed rgba(30,58,138,0.18);
  border-radius: 16px;
  padding: 64px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.empty-state-card h3 {
  font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.015em; margin: 0;
}
.empty-state-card p { font-size: 0.95rem; color: var(--muted); max-width: 50ch; margin: 0; }

.jobs-list-corp { display: flex; flex-direction: column; gap: 24px; }
.job-card-corp {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.job-card-corp:hover {
  border-color: rgba(30,58,138,0.2);
  box-shadow: 0 24px 56px -28px rgba(30,58,138,0.20);
  transform: translateY(-2px);
}
.job-card-corp-head { padding: 32px 36px 24px; border-bottom: 1px solid var(--border); }
.job-card-corp-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.job-card-corp-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 700; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0 0 18px;
}
.job-card-corp-details {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 0.88rem; color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.job-card-corp-details span { display: inline-flex; align-items: center; gap: 6px; }
.job-card-corp-details .deadline-past { color: #b8333a; opacity: 0.85; }
.job-card-corp-body { padding: 28px 36px; }
.job-card-corp-body .prose-tight { font-size: 0.95rem; line-height: 1.7; color: var(--ink); }
.job-card-corp-body .prose-tight p { color: var(--ink); margin-bottom: 12px; }
.job-card-corp-body .prose-tight ul { padding-left: 0; margin: 12px 0; }
.job-card-corp-body .prose-tight ul li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
  font-size: 0.92rem; color: var(--ink); line-height: 1.6;
}
.job-card-corp-body .prose-tight ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 14px; height: 1px; background: var(--orange);
}
.job-card-corp-req { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.job-card-corp-req summary {
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--orange); list-style: none;
}
.job-card-corp-req summary::-webkit-details-marker { display: none; }
.job-card-corp-req summary i { transition: transform 220ms ease; }
.job-card-corp-req[open] summary i { transform: rotate(180deg); }

.job-card-corp-foot {
  padding: 24px 36px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}

.spontaneous-corp {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.spontaneous-corp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.spontaneous-corp-icon {
  width: 56px; height: 56px;
  background: rgba(13,148,136,0.18);
  color: var(--orange);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .why-grid-corp { grid-template-columns: repeat(2, 1fr); }
  .spontaneous-corp { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .why-grid-corp { grid-template-columns: 1fr; }
  .job-card-corp-head, .job-card-corp-body, .job-card-corp-foot { padding-left: 24px; padding-right: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PARTNERS — partenaires logo strip
═══════════════════════════════════════════════════════════════════ */
.partners-section { padding: 80px 0 96px; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-section .section-title-corp { text-align: center; margin: 0 auto 40px; }
.partners-section .section-title-corp p { font-size: 0.95rem; color: var(--muted); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.partner-cell {
  background: var(--white);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: all var(--t);
}
.partner-cell:hover { background: var(--cream); }
.partner-cell img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: all var(--t); }
.partner-cell:hover img { filter: grayscale(0%); opacity: 1; }
.partner-cell .placeholder {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.4rem; color: var(--muted);
  letter-spacing: 0.02em;
  opacity: 0.45;
}
@media (max-width: 1100px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES PAGE — 6 domaines + 4-step approach
═══════════════════════════════════════════════════════════════════ */
.services-hero {
  padding: 200px 0 120px;
  background: var(--navy);
  color: var(--white);
  position: relative; overflow: hidden;
}
.services-hero::before {
  content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 60%); border-radius:50%;
  pointer-events: none;
}
.services-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange) 100%);
}
.services-hero .container { position:relative; z-index:1; max-width: 1280px; }
.services-hero .pill { background: rgba(13,148,136,0.18); border-color: transparent; color: var(--orange); }
.services-hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 1.02;
  letter-spacing: -0.035em; font-weight: 800;
  color: var(--white); margin-bottom: 28px;
  max-width: 18ch;
}
.services-hero h1 .accent { color: var(--orange); font-weight: 800; }
.services-hero p.lead { font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 720px; line-height: 1.75; margin-bottom: 36px; }

/* Proposition section */
.proposition-section { padding: 96px 0; background: var(--white); }
.proposition-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.proposition-grid h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.15; color: var(--navy); }
.proposition-grid h2 .accent { color: var(--orange); }
.proposition-grid p { font-size: 1.02rem; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }

/* Domaines grid */
.domaines-section { padding: 96px 0; background: var(--cream); }
.domaines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.domaine-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all var(--t); position: relative;
}
.domaine-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 64px; height: 3px;
  background: var(--orange); border-radius: 12px 0 4px 0;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.domaine-card:hover { box-shadow: 0 18px 50px rgba(30,58,138,0.08); transform: translateY(-2px); border-color: rgba(13,148,136,0.25); }
.domaine-card:hover::before { transform: scaleX(1); }
.domaine-card .num {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.3rem; color: var(--orange);
}
.domaine-card h3 { font-size: 1.4rem; line-height: 1.25; color: var(--navy); margin: 0; }
.domaine-card .lead-line { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--muted); font-style: italic; margin: 0; }
.domaine-card ul { padding-left: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.domaine-card ul li {
  position: relative; padding-left: 28px;
  font-size: 0.92rem; color: var(--ink); line-height: 1.55;
}
.domaine-card ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 16px; height: 1px; background: var(--orange);
}

/* 4-step approach */
.approach-section { padding: 96px 0; background: var(--white); }
.approach-section .section-title-corp { text-align: left; margin-bottom: 56px; max-width: 760px; }
.approach-section .section-title-corp h2 .accent { color: var(--orange); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.approach-step {
  background: var(--cream); border-radius: 12px; padding: 36px 28px;
  position: relative; transition: all var(--t);
  border: 1px solid var(--border);
}
.approach-step:hover { background: var(--orange-pale); border-color: rgba(13,148,136,0.25); transform: translateY(-3px); }
.approach-step .step-num {
  font-family: 'Inter', system-ui, sans-serif; font-size: 4.5rem;
  color: var(--orange); opacity: 0.18; line-height: 1; margin-bottom: 12px;
}
.approach-step h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.approach-step p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   METHODOLOGIE PAGE — Analyse Pentagonale HGC
═══════════════════════════════════════════════════════════════════ */
.methodo-hero {
  padding: 200px 0 120px;
  background: var(--navy);
  color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.methodo-hero::before {
  content:''; position:absolute; top:-200px; left:50%; transform: translateX(-50%);
  width:800px; height:800px;
  background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 55%); border-radius:50%;
  pointer-events: none;
}
.methodo-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange) 100%);
}
.methodo-hero .container { position: relative; z-index: 1; }
.methodo-hero .pill { background: rgba(13,148,136,0.18); border-color: transparent; color: var(--orange); }
.methodo-hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 5rem); line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 800;
  color: var(--white); margin: 0 auto 28px;
  max-width: min(18ch, 100%);
  padding: 0 16px;
}
.methodo-hero h1 .accent { color: var(--orange); font-weight: 800; }
.methodo-hero p.lead { font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,0.72); max-width: 720px; margin: 0 auto; }

/* Pentagonal diagram */
.pentagon-section { padding: 80px 0 96px; background: var(--white); }
.pentagon-wrap { max-width: 920px; margin: 0 auto; }
.pentagon-svg { width: 100%; height: auto; display: block; }
.pentagon-caption { text-align: center; margin-top: 32px; font-size: 0.92rem; color: var(--muted); font-style: italic; max-width: 720px; margin-left: auto; margin-right: auto; }

/* 5 axes detailed */
.axes-section { padding: 96px 0; background: var(--cream); }
.axes-section .section-title-corp { text-align: center; margin: 0 auto 56px; }
.axe-item {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--border);
  padding: 56px;
  display: grid; grid-template-columns: 100px 1fr; gap: 48px;
  margin-bottom: 28px;
  transition: all var(--t);
}
.axe-item:hover { box-shadow: 0 18px 50px rgba(30,58,138,0.07); }
.axe-num-block {
  font-family: 'Inter', system-ui, sans-serif; font-size: 4rem;
  color: var(--orange); line-height: 1;
}
.axe-num-block + div { display: flex; flex-direction: column; gap: 16px; }
.axe-item h3 { font-size: 1.8rem; line-height: 1.2; color: var(--navy); margin: 0; }
.axe-item .axe-eyebrow { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.axe-item .axe-summary { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0 0 8px; }
.axe-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 16px; }
.axe-block h4 {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 12px;
}
.axe-block ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.axe-block ul li { font-size: 0.9rem; color: var(--ink); line-height: 1.55; padding-left: 22px; position: relative; }
.axe-block ul li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 1px; background: var(--orange);
}

/* Benefits */
.benefits-section { padding: 96px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.benefit-card {
  text-align: center; padding: 36px 24px;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--white); transition: all var(--t);
}
.benefit-card:hover { box-shadow: 0 14px 40px rgba(30,58,138,0.08); transform: translateY(-3px); border-color: rgba(13,148,136,0.25); }
.benefit-card .ic-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.benefit-card h4 { font-size: 1.05rem; color: var(--navy); margin: 0 0 12px; line-height: 1.35; }
.benefit-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ---------- RESPONSIVE CORP ---------- */
@media (max-width: 1100px) {
  .hero-corp-grid, .about-corp-grid, .choose-corp-grid, .team-corp-grid, .faq-corp-grid { grid-template-columns: 1fr; gap: 56px; }
  .services-corp-grid, .projects-corp-grid, .news-corp-grid { grid-template-columns: repeat(2, 1fr); }
  .about-corp-counter { right: 0; bottom: -20px; }
  .hero-corp-image { max-width: 480px; margin: 0 auto; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .domaines-grid { grid-template-columns: 1fr; }
  .proposition-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-corp { padding: 100px 0 64px; }
  .hero-stats-corp { gap: 32px; flex-wrap: wrap; }
  .hero-stat-corp h3 { font-size: 1.7rem; }
  .about-corp, .services-corp, .choose-corp, .team-corp, .faq-corp, .projects-corp, .news-corp, .cta-corp,
  .services-hero, .proposition-section, .domaines-section, .approach-section,
  .methodo-hero, .pentagon-section, .axes-section, .benefits-section { padding: 72px 0; }
  .services-corp-grid, .projects-corp-grid, .news-corp-grid, .about-corp-features, .choose-counter-area { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .axe-item { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
  .axe-blocks { grid-template-columns: 1fr; gap: 24px; }
  .domaine-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER X — refined corporate (Tier 1 consulting style)
═══════════════════════════════════════════════════════════════════ */
.footer-x {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}
.footer-x::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height: 280px;
  background:
    radial-gradient(ellipse 60% 100% at 80% 0%, rgba(13,148,136,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 100% at 20% 0%, rgba(30,58,138,0.20) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Top accent strip */
.footer-x-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, var(--navy-mid) 100%);
  position: relative;
  z-index: 1;
}

/* Main content */
.footer-x-main {
  padding: 88px 0 56px;
  position: relative; z-index: 1;
}
.footer-x-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 64px;
}

/* Brand column */
.footer-x-brand { display: flex; flex-direction: column; gap: 24px; max-width: 380px; }
.footer-x-logo { display: inline-flex; align-items: center; }
.footer-x-logo img { height: 44px; width: auto; display: block; }
.footer-x-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.005em;
  margin: 0;
}
.footer-x-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-x-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 220ms ease;
}
.footer-x-social a i { width: 16px; height: 16px; }
.footer-x-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Columns */
.footer-x-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 24px;
  line-height: 1;
}
.footer-x-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.footer-x-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
  text-decoration: none;
  position: relative;
  transition: color 200ms ease, padding-left 240ms ease;
  display: inline-block;
}
.footer-x-col ul li a::before {
  content: '';
  display: inline-block;
  width: 0; height: 1px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 0;
  opacity: 0;
  transition: width 240ms ease, opacity 240ms ease, margin-right 240ms ease;
}
.footer-x-col ul li a:hover {
  color: var(--white);
}
.footer-x-col ul li a:hover::before {
  width: 14px;
  opacity: 1;
  margin-right: 8px;
}

/* Contact column */
.footer-x-col-contact { min-width: 0; }
.footer-x-contact-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}
.footer-x-contact-item .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(13,148,136,0.14);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-x-contact-item > div {
  display: flex; flex-direction: column; gap: 3px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-x-contact-item strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.footer-x-contact-item a, .footer-x-contact-item span:not(.ic) {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 200ms ease;
  display: block;
}
.footer-x-contact-item a:hover { color: var(--orange); }

/* Bottom bar */
.footer-x-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  position: relative; z-index: 1;
}
.footer-x-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-x-legal-info {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-x-copy { letter-spacing: -0.005em; }
.footer-x-legal-ids {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
}
.footer-x-legal-ids strong {
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
.footer-x-legal-ids .sep { opacity: 0.4; }
.footer-x-legal-links {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer-x-legal-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}
.footer-x-legal-links a:hover { color: var(--orange); }

@media (max-width: 1100px) {
  .footer-x-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-x-brand { grid-column: 1/-1; max-width: none; }
}
@media (max-width: 700px) {
  .footer-x-main { padding: 64px 0 40px; }
  .footer-x-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-x-bottom-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER D — modern editorial (Berlin/Linear/Vercel inspired)
═══════════════════════════════════════════════════════════════════ */
.footer-d {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

/* ─── Pre-footer (light editorial CTA) ─── */
.footer-d-prefooter {
  background: var(--cream);
  padding: 120px 0 100px;
  position: relative;
  border-bottom: 1px solid rgba(30,58,138,0.08);
}
.footer-d-prefooter::before {
  content:''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.10) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.footer-d-prefooter::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(30,58,138,0.18) 50%, transparent 100%);
}
.footer-d-prefooter-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: end;
  position: relative; z-index: 1;
}
.footer-d-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 24px;
}
.footer-d-eyebrow::before {
  content:''; width: 28px; height: 1px; background: currentColor; opacity: 0.6;
}
.footer-d-statement {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy); margin: 0 0 32px;
}
.footer-d-statement em {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}
.footer-d-prefooter-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--muted); max-width: 50ch; margin: 0;
}
.footer-d-prefooter-cta {
  display: flex; flex-direction: column; align-items: flex-start;
  padding-bottom: 12px;
}

/* ─── Main dark zone ─── */
.footer-d-main {
  padding: 100px 0 64px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(30,58,138,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(13,148,136,0.10) 0%, transparent 50%),
    var(--ink);
}
.footer-d-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 64px;
}

/* Brand block */
.footer-d-brand { display: flex; flex-direction: column; gap: 32px; max-width: 420px; }
.footer-d-logo img { height: 52px; width: auto; display: block; }
.footer-d-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem; line-height: 1.55;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.005em;
  margin: 0;
}
.footer-d-meta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-d-meta-grid > div {
  padding: 16px 16px 16px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.footer-d-meta-grid > div:last-child { border-right: none; padding-right: 0; }
.footer-d-meta-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-d-meta-val {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--white);
  letter-spacing: -0.005em;
}

/* Social */
.footer-d-social { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-d-social a {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 220ms ease;
}
.footer-d-social a i { width: 16px; height: 16px; }
.footer-d-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Columns */
.footer-d-col h4 {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: -0.005em; text-transform: none;
  color: rgba(255,255,255,0.95);
  margin: 8px 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-d-col-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-feature-settings: 'tnum';
}
.footer-d-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-d-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.005em;
  text-decoration: none;
  position: relative;
  padding: 2px 0;
  transition: color 200ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}
.footer-d-col ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* Address card */
.footer-d-address {
  font-style: normal;
  display: flex; flex-direction: column; gap: 18px;
}
.footer-d-address-block {
  display: flex; flex-direction: column; gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
}
.footer-d-address-block a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 200ms ease;
  display: block;
}
.footer-d-address-block a:hover { color: var(--orange); }
.footer-d-mailto {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'tnum';
  word-break: break-word;
}
.footer-d-hours {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ─── Giant wordmark marquee ─── */
.footer-d-wordmark {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 24px;
  overflow: hidden;
  position: relative;
}
.footer-d-wordmark::before, .footer-d-wordmark::after {
  content:''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.footer-d-wordmark::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.footer-d-wordmark::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.footer-d-wordmark-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: footer-d-marquee 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.footer-d-wordmark-track span {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  line-height: 0.9;
  flex-shrink: 0;
  text-transform: uppercase;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-text-stroke: 1px rgba(255,255,255,0.10);
  -webkit-text-fill-color: transparent;
}
.footer-d-dot {
  font-size: 1.4rem !important;
  color: var(--orange) !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-fill-color: var(--orange) !important;
  font-weight: 400 !important;
  flex-shrink: 0;
}
@keyframes footer-d-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Bottom tiny bar ─── */
.footer-d-bottom {
  background: #050913;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-d-bottom-row {
  display: flex; align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.005em;
  font-feature-settings: 'tnum';
}
.footer-d-bottom-item .lbl {
  font-weight: 700; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.66rem;
  margin-right: 4px;
}
.footer-d-sep {
  color: rgba(255,255,255,0.18);
  font-weight: 300;
}
.footer-d-spacer { flex: 1 1 auto; }
.footer-d-bottom-links {
  display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-d-bottom-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}
.footer-d-bottom-links a:hover { color: var(--orange); }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .footer-d-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-d-brand { grid-column: 1/-1; max-width: none; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 40px; }
  .footer-d-brand > * { flex: 1 1 240px; }
  .footer-d-prefooter-grid { grid-template-columns: 1fr; gap: 40px; align-items: flex-start; }
  .footer-d-prefooter-cta { padding-bottom: 0; }
}
@media (max-width: 700px) {
  .footer-d-prefooter { padding: 80px 0 64px; }
  .footer-d-main { padding: 64px 0 40px; }
  .footer-d-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-d-brand { flex-direction: column; }
  .footer-d-meta-grid { grid-template-columns: 1fr; }
  .footer-d-meta-grid > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 0; }
  .footer-d-meta-grid > div:last-child { border-bottom: none; }
  .footer-d-bottom-row { gap: 8px; font-size: 0.7rem; }
  .footer-d-bottom-links { gap: 16px; width: 100%; margin-top: 8px; }
  .footer-d-spacer { display: none; }
  .footer-d-wordmark { padding: 20px 0; }
  .footer-d-wordmark-track { gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ULTRA-RESPONSIVE — comprehensive breakpoints
═══════════════════════════════════════════════════════════════════ */

/* ─── Tablet large (1280px) ─── */
@media (max-width: 1280px) {
  .container-wide, .container-narrow { padding: 0 40px; }
  .container { padding: 0 40px; }
  .navbar { padding: 0 40px; }
  .editorial-grid { gap: 64px; }
  .display-1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
}

/* ─── Tablet (1024px) ─── */
@media (max-width: 1024px) {
  .container-wide, .container-narrow { padding: 0 32px; }
  .container { padding: 0 32px; }
  .navbar { padding: 0 32px; }

  /* Navbar collapses, hamburger appears */
  .nav-links, .lang-toggle, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-inner { height: 68px; }
  .nav-logo img { height: 36px; }

  /* Typography scales — serif needs slightly looser tracking at mid-sizes */
  .display-1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -0.005em; line-height: 1.1; }
  .display-2 { font-size: clamp(1.9rem, 5vw, 3.2rem); letter-spacing: -0.003em; }
  .display-3 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .footer-d-statement { font-size: clamp(2.4rem, 7vw, 4.4rem); }
  .footer-d-wordmark-track span { font-size: clamp(3.4rem, 9vw, 6rem); }

  /* Stats: 2 cols */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat-cell { padding: 36px 24px; }
  .stat-cell .num { font-size: clamp(2rem, 4.5vw, 3rem); }

  /* Hero edit — reste 2 colonnes à 1024px */
  .hero-edit { grid-template-columns: 1fr 42%; }
  .hero-edit-panel { padding-right: 48px; padding-top: 110px; }
  .hero-edit-body { max-width: 520px; }

  /* Sections padding */
  .editorial-section, .insights-section, .lead-quote-section, .cta-bold,
  .methodo-teaser, .partners-section, .services-corp,
  .axes-section, .benefits-section, .pentagon-section, .approach-section,
  .domaines-section, .proposition-section,
  .footer-d-prefooter, .footer-d-main { padding-top: 96px; padding-bottom: 96px; }

  /* Service editorial list — simplified columns */
  .svc-edit-row { grid-template-columns: 50px 1fr 50px; gap: 20px; }
  .svc-edit-row .desc { display: none; }

  /* Insights side-by-side → stack large + small below */
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card-large { min-height: 380px; aspect-ratio: 16/10; }
  .insights-side { flex-direction: row; }

  /* Footer */
  .footer-d-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .footer-d-brand { grid-column: 1/-1; max-width: none; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 32px; }
  .footer-d-brand > .footer-d-logo,
  .footer-d-brand > .footer-d-tagline { flex: 0 0 auto; }
  .footer-d-meta-grid { flex: 1 1 100%; }

  /* Partners grid */
  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why-grid for carrieres */
  .why-grid-corp { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Mobile large (768px) ─── */
@media (max-width: 768px) {
  .container-wide, .container-narrow { padding: 0 24px; }
  .container { padding: 0 24px; }
  .navbar { padding: 0 20px; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 32px; }

  /* Typography */
  h1, h2 { letter-spacing: -0.025em; }
  .display-1 { font-size: clamp(2rem, 7vw, 3rem); line-height: 1.08; }
  .display-2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .display-3 { font-size: clamp(1.4rem, 4.5vw, 1.9rem); }
  .footer-d-statement { font-size: clamp(2rem, 8vw, 3rem); }
  .footer-d-wordmark-track span {
    font-size: clamp(2.4rem, 11vw, 4rem);
    -webkit-text-stroke-width: 0.5px;
  }
  .footer-d-wordmark { padding: 20px 0; }
  .footer-d-wordmark-track { gap: 32px; }
  .footer-d-wordmark::before, .footer-d-wordmark::after { width: 60px; }

  /* Pill / eyebrow */
  .pill { font-size: 0.72rem; padding: 6px 14px; }
  .eyebrow-line { font-size: 0.7rem; letter-spacing: 0.12em; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding: 28px 20px; }
  .stat-cell:last-child { border-bottom: none !important; }
  .stat-cell .num { font-size: clamp(2rem, 6vw, 2.6rem); }

  /* Hero edit — 1 colonne mobile */
  .hero-edit { grid-template-columns: 1fr; min-height: 0; }
  .hero-edit-panel {
    padding-top: 120px; padding-bottom: 48px;
    padding-left: 24px; padding-right: 24px;
  }
  .hero-edit-body { max-width: 100%; }
  .hero-edit-body .lead { font-size: 1rem; }
  .hero-edit-actions { gap: 14px; }
  .hero-edit-actions .btn { font-size: 0.84rem; }
  .hero-edit-meta { margin-top: 36px; padding-top: 24px; font-size: 0.82rem; }
  .hero-edit-visual { height: clamp(260px, 58vw, 380px); }
  .hero-edit-visual::before { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Page hero */
  .page-hero { padding: 130px 0 80px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .page-hero::after { font-size: 8rem; bottom: -20px; }

  /* Service heros */
  .services-hero, .methodo-hero { padding: 130px 0 80px; }
  .services-hero h1, .methodo-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }

  /* Sections */
  .editorial-section, .insights-section, .lead-quote-section, .cta-bold,
  .methodo-teaser, .partners-section, .services-corp,
  .axes-section, .benefits-section, .pentagon-section, .approach-section,
  .domaines-section, .proposition-section,
  .services-hero, .methodo-hero,
  .footer-d-prefooter, .footer-d-main { padding-top: 64px; padding-bottom: 64px; }

  /* Editorial / methodo / lead-quote / insights — stack */
  .editorial-grid, .methodo-teaser-grid, .lead-quote-grid, .insights-grid,
  .hero-corp-grid, .about-corp-grid, .choose-corp-grid, .team-corp-grid, .faq-corp-grid,
  .proposition-grid, .spontaneous-corp { grid-template-columns: 1fr !important; gap: 40px !important; }
  .editorial-grid .lead-col { position: static; }

  /* Editorial prose drop-cap smaller */
  .editorial-prose p:first-of-type::first-letter { font-size: 3.4rem; margin: 6px 12px 0 0; }

  /* Service list editorial */
  .svc-edit-row {
    grid-template-columns: 36px 1fr 40px;
    gap: 14px;
    padding: 24px 0;
  }
  .svc-edit-row::before { left: -16px; right: -16px; border-radius: 10px; }
  .svc-edit-row:hover { padding-left: 16px; padding-right: 16px; }
  .svc-edit-row .desc { display: none; }
  .svc-edit-row .name { font-size: clamp(1.2rem, 4vw, 1.5rem); }
  .svc-edit-row .arr { width: 36px; height: 36px; }

  /* Methodology features */
  .methodo-features { gap: 20px; }
  .methodo-feat { grid-template-columns: 36px 1fr; gap: 12px; }
  .methodo-feat .num { font-size: 1.2rem; }
  .methodo-feat h5 { font-size: 0.9rem; }
  .methodo-feat p { font-size: 0.84rem; }

  /* Insights mag grid */
  .insight-card-large { aspect-ratio: 4/5; min-height: 320px; }
  .insight-card-large .body { padding: 24px; }
  .insight-card-large h3 { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  .insights-side { flex-direction: column; }
  .insight-card-small { padding: 22px; }

  /* Lead quote */
  .lead-quote-text { padding-top: 40px; }
  .lead-quote-text .open-quote { font-size: 5rem; top: -8px; left: -4px; }
  .lead-quote-text blockquote { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  .lead-quote-photo { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }

  /* Marquee */
  .marquee-strip { padding: 24px 0; }
  .marquee-strip-track { gap: 32px; }
  .marquee-strip-item { font-size: 1.05rem; }

  /* Partners */
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-cell { padding: 16px; aspect-ratio: 16/10; }
  .partner-cell .placeholder { font-size: 1.05rem; }

  /* Why-grid carriere */
  .why-grid-corp { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card-corp { padding: 24px 20px; }

  /* Job cards */
  .job-card-corp-head { padding: 24px 24px 18px; }
  .job-card-corp-body { padding: 22px 24px; }
  .job-card-corp-foot { padding: 20px 24px; gap: 14px; }
  .job-card-corp-title { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
  .job-card-corp-details { gap: 12px; font-size: 0.82rem; }

  /* Footer */
  .footer-d-prefooter-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-d-prefooter-cta { align-items: stretch; }
  .footer-d-prefooter-cta .btn { width: 100%; justify-content: center; }
  .footer-d-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-d-brand { flex-direction: column; gap: 24px; }
  .footer-d-meta-grid { grid-template-columns: 1fr; }
  .footer-d-meta-grid > div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
  }
  .footer-d-meta-grid > div:last-child { border-bottom: none; }
  .footer-d-bottom-row { gap: 8px; font-size: 0.7rem; }
  .footer-d-bottom-links { gap: 14px; width: 100%; margin-top: 8px; }
  .footer-d-spacer { display: none; }

  /* Buttons */
  .btn { font-size: 0.84rem; }
  .btn-orange, .btn-gold { height: 44px; }
  .btn-orange .arrow, .btn-gold .arrow { width: 32px; height: 32px; }

  /* Pentagon SVG */
  .pentagon-svg { max-width: 100%; }
}

/* ─── Mobile small (480px) ─── */
@media (max-width: 480px) {
  .container-wide, .container-narrow { padding: 0 18px; }
  .container { padding: 0 18px; }
  .navbar { padding: 0 16px; }
  .nav-logo img { height: 28px; }

  /* Stats — single col, tighter */
  .stat-cell { padding: 22px 16px; }

  /* Hero */
  .hero-edit-panel { padding-top: 96px; padding-bottom: 36px; }
  .hero-edit-body .lead { font-size: 0.96rem; }
  .hero-edit-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-edit-actions .btn { justify-content: center; width: 100%; }
  .hero-edit-actions .btn-link-dark,
  .hero-edit-actions .btn-link-light { text-align: center; justify-content: center; }
  .hero-edit-meta { font-size: 0.78rem; flex-wrap: wrap; gap: 8px; }
  .hero-edit-tag { font-size: 0.65rem; padding: 6px 12px; }

  /* Page hero */
  .page-hero { padding: 110px 0 64px; }
  .page-hero::after { font-size: 5.5rem; bottom: -10px; right: -10px; }

  /* Sections padding */
  .editorial-section, .insights-section, .lead-quote-section, .cta-bold,
  .methodo-teaser, .partners-section,
  .services-hero, .methodo-hero,
  .footer-d-prefooter, .footer-d-main { padding-top: 56px; padding-bottom: 56px; }

  /* Marquee */
  .marquee-strip-item { font-size: 0.92rem; }

  /* Footer wordmark — smaller */
  .footer-d-wordmark-track span { font-size: clamp(1.8rem, 11vw, 2.6rem); }
  .footer-d-wordmark { padding: 16px 0; }

  /* Why grid 1 col */
  .why-grid-corp { grid-template-columns: 1fr; }

  /* Partners grid keep 2 col on small */
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bottom bar — wrap nicely */
  .footer-d-bottom-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-d-sep { display: none; }
  .footer-d-bottom-links { gap: 12px; }

  /* Methodo features tighter */
  .methodo-feat { gap: 10px; }

  /* Job cards padding */
  .job-card-corp-head, .job-card-corp-body, .job-card-corp-foot { padding-left: 18px; padding-right: 18px; }
  .job-card-corp-foot { flex-direction: column; align-items: stretch; }
  .job-card-corp-foot .btn { width: 100%; justify-content: center; }

  /* Insight cards padding */
  .insight-card-large .body { padding: 20px; }
  .insight-card-small { padding: 18px; }

  /* CTA buttons stack */
  .cta-bold > .container > div:last-child { flex-direction: column; align-items: stretch; }
  .cta-bold .btn { width: 100%; justify-content: center; }

  /* Editorial prose drop cap smaller */
  .editorial-prose p:first-of-type::first-letter { font-size: 2.8rem; margin: 4px 10px 0 0; }
}

/* ─── Mobile XS (360px) ─── */
@media (max-width: 360px) {
  .container-wide, .container-narrow, .container { padding: 0 14px; }
  .navbar { padding: 0 14px; }
  .display-1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .display-2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .footer-d-statement { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .footer-d-wordmark-track span { font-size: 1.6rem; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE CAROUSELS — horizontal scroll-snap on small screens
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Universal mobile carousel container */
  [data-mob-carousel] {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Negative margin so content extends edge-to-edge */
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding: 4px 24px 4px !important;
    gap: 14px !important;
    align-items: stretch;
  }
  [data-mob-carousel]::-webkit-scrollbar { display: none; }

  /* Children become snap-aligned slides */
  [data-mob-carousel] > * {
    flex: 0 0 calc(100vw - 76px);
    max-width: 380px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Per-section overrides */
  /* Timeline phases — narrower */
  [data-mob-carousel].timeline-track > .timeline-phase {
    flex: 0 0 calc(100vw - 76px);
    max-width: 320px;
  }
  [data-mob-carousel].timeline-track::before { display: none; }

  /* Axes feature — wider since rich content */
  [data-mob-carousel].axes-track > .axe-feat {
    flex: 0 0 calc(100vw - 60px);
    max-width: 520px;
    margin-bottom: 0 !important;
  }

  /* Benefits — large card spans full, small cards wider on swipe */
  [data-mob-carousel].benefits-feat-grid > .benefit-feat-large {
    flex: 0 0 calc(100vw - 76px);
    max-width: 380px;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  [data-mob-carousel].benefits-feat-grid > .benefit-feat-small {
    flex: 0 0 calc(100vw - 100px);
    max-width: 320px;
  }

  /* Why-grid (carrieres) */
  [data-mob-carousel].why-grid-corp > .why-card-corp {
    flex: 0 0 calc(80vw - 24px);
    max-width: 280px;
  }

  /* Partners — show 2 visible at once */
  [data-mob-carousel].partners-grid {
    grid-template-columns: none !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  [data-mob-carousel].partners-grid > .partner-cell {
    flex: 0 0 calc(50vw - 28px);
    max-width: 200px;
    aspect-ratio: 16/10;
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  /* Visual hint: subtle gradient on right edge of carousel container */
  .mob-carousel-wrap {
    position: relative;
  }
  .mob-carousel-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; right: 0;
    width: 24px;
    background: linear-gradient(-90deg, var(--cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* Carousel dots (auto-generated by JS) */
  .carousel-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 0 24px;
  }
  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: rgba(30,58,138,0.18);
    transition: width 240ms ease, background 240ms ease;
    flex-shrink: 0;
  }
  .carousel-dot.active {
    width: 24px;
    background: var(--orange);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER ULTRA-RESPONSIVE — refined mobile/tablet
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-d-prefooter { padding: 96px 0 80px; }
  .footer-d-prefooter-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-d-prefooter-cta { padding-bottom: 0; align-items: flex-start; }

  .footer-d-main { padding: 80px 0 56px; }
  .footer-d-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
  .footer-d-brand { grid-column: 1 / -1; max-width: none; }
  .footer-d-brand-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .footer-d-meta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .footer-d-prefooter { padding: 64px 0 48px; }
  .footer-d-prefooter-cta .btn { width: 100%; justify-content: center; }
  .footer-d-prefooter-cta .btn-link-dark { font-size: 0.85rem; }

  .footer-d-main { padding: 56px 0 36px; }
  .footer-d-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-d-logo img { height: 44px; }
  .footer-d-tagline { font-size: 0.95rem; max-width: 100%; }
  .footer-d-meta-grid { grid-template-columns: 1fr; }
  .footer-d-meta-grid > div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 12px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-d-meta-grid > div:last-child { border-bottom: none; }
  .footer-d-meta-label { margin: 0; }
  .footer-d-meta-val { font-size: 0.86rem; }

  .footer-d-col h4 { margin: 0 0 18px; padding-bottom: 12px; }
  .footer-d-col ul { gap: 8px; }
  .footer-d-col ul li a { font-size: 0.92rem; padding: 4px 0; }

  .footer-d-contact-item { gap: 14px; }
  .footer-d-address-block { font-size: 0.92rem; }

  /* Wordmark marquee — smaller, faster on mobile */
  .footer-d-wordmark { padding: 16px 0; }
  .footer-d-wordmark::before, .footer-d-wordmark::after { width: 40px; }
  .footer-d-wordmark-track {
    gap: 24px;
    animation-duration: 32s;
  }
  .footer-d-wordmark-track span {
    font-size: clamp(2.4rem, 11vw, 4rem);
    -webkit-text-stroke-width: 0.5px;
  }

  /* Bottom bar — compact wrap */
  .footer-d-bottom { padding: 16px 0; }
  .footer-d-bottom-row {
    gap: 6px 12px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.72rem;
  }
  .footer-d-bottom-item { display: inline-flex; flex-wrap: wrap; }
  .footer-d-sep { display: none; }
  .footer-d-bottom-links { width: 100%; gap: 14px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
  .footer-d-bottom-links a { font-size: 0.74rem; }
  .footer-d-spacer { display: none; }
}

@media (max-width: 480px) {
  .footer-d-prefooter { padding: 52px 0 40px; }
  .footer-d-statement { font-size: clamp(1.9rem, 9vw, 2.6rem); letter-spacing: -0.025em; }
  .footer-d-prefooter-lead { font-size: 0.95rem; }
  .footer-d-main { padding: 48px 0 32px; }
  .footer-d-grid { gap: 28px; }
  .footer-d-logo img { height: 38px; }
  .footer-d-social { gap: 8px; }
  .footer-d-social a { width: 36px; height: 36px; }
  .footer-d-wordmark-track { gap: 20px; animation-duration: 28s; }
  .footer-d-wordmark-track span { font-size: clamp(1.9rem, 11vw, 2.8rem); }
}

/* ─── Page transitions ─── */
body {
  transition: opacity 260ms ease;
}
body.page-arrived {
  animation: pageIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
body.page-leaving {
  opacity: 0;
  pointer-events: none;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .footer-d-wordmark-track,
  .marquee-strip-track,
  .marquee-track { animation: none !important; }
  .fx-up { opacity: 1 !important; transform: none !important; }
  body.page-arrived { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   CORRECTIFS MOBILE (ajoutés en fin de fichier pour primer la cascade)
   1) Menu mobile : le scroll reste DANS le menu, ne casse plus la page
   2) Footer condensé en version mobile
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   MENU MOBILE — scroll borné STRICTEMENT à son contenu
   Causes du "scroll sans fin" et leurs correctifs :
   - 100dvh peut dépasser la zone visible iOS  -> on utilise 100svh
     (small viewport height = jamais plus grand que le visible).
   - un enfant flex ne défile pas sans min-height:0 (sinon il s'étire
     à la taille du contenu et entraîne un scroll fantôme).
   - margin-top:auto sur .offcanvas-bottom crée un gouffre vide
     dans une zone scrollable -> on le neutralise.
   ════════════════════════════════════════════════════════════════ */

/* Le panneau est borné exactement à la hauteur visible de l'écran. */
.offcanvas {
  height: 100svh;
  max-height: 100svh;
}

/* SEUL conteneur qui défile = .offcanvas-inner, et il est bien borné. */
.offcanvas-inner {
  flex: 1 1 auto;
  min-height: 0;                  /* indispensable au scroll interne en flex */
  overflow-y: auto;
  overscroll-behavior: contain;   /* le scroll ne "fuit" plus vers la page */
  scrollbar-width: none;
}
.offcanvas-inner::-webkit-scrollbar { width: 0; height: 0; }

/* la barre du bas suit le contenu (plus de margin-top:auto -> plus de vide) */
.offcanvas-bottom { margin-top: 24px; }

/* verrou de la page de fond quand le menu est ouvert (méthode fiable iOS)
   le JS pose body.style.top = -scrollY pour figer la position */
body.offcanvas-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

/* FILET DE SÉCURITÉ CSS (sans dépendance JS) : dès que le menu est ouvert,
   html + body ne défilent plus et n'acceptent plus le scroll tactile.
   Ainsi la page de fond reste figée même si le JS n'est pas encore chargé. */
html:has(.offcanvas.open),
body:has(.offcanvas.open) {
  overflow: hidden !important;
  touch-action: none;             /* bloque le scroll tactile de la PAGE */
}
/* mais le menu, lui, reste défilable au doigt */
.offcanvas.open,
.offcanvas.open .offcanvas-inner {
  touch-action: pan-y;
}

@media (max-width: 768px) {
  .offcanvas-inner {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
}

/* ---- Zone logo / Localisation : nettoyée (plus de boîte à 3 colonnes) ---- */
.footer-d-meta-grid {
  display: block !important;
  border-top: none !important;
  border-bottom: none !important;
}
.footer-d-meta-grid > div {
  border-right: none !important;
  padding: 0 !important;
}

/* ---- 2) FOOTER CONDENSÉ EN MOBILE ---- */
@media (max-width: 768px) {
  /* la colonne marque s'empile proprement */
  .footer-d-brand {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    max-width: 100% !important;
  }
  .footer-d-brand > * { flex: none !important; }
  /* bannière géante "Haiti ● Global ● Consulting" : décorative -> masquée */
  .footer-d-wordmark { display: none !important; }

  /* paddings resserrés */
  .footer-d-prefooter { padding: 44px 0 36px !important; }
  .footer-d-main      { padding: 40px 0 28px !important; }
  .footer-d-bottom    { padding: 14px 0 !important; }

  /* espaces entre blocs réduits */
  .footer-d-grid  { gap: 26px !important; }
  .footer-d-brand { gap: 18px !important; }

  /* titre "Travaillons ensemble" plus compact */
  .footer-d-statement      { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; }
  .footer-d-prefooter-lead { font-size: 0.9rem !important; }
}

@media (max-width: 480px) {
  .footer-d-prefooter { padding: 34px 0 26px !important; }
  .footer-d-main      { padding: 30px 0 22px !important; }
  .footer-d-grid      { gap: 22px !important; }
  .footer-d-logo img  { height: 34px !important; }
}

/* ---- 3) HERO PLEIN ÉCRAN EN MOBILE ----
   Le premier écran (cover) occupe toute la hauteur ; l'image de droite
   est masquée sur mobile pour un hero net et lisible. */
@media (max-width: 768px) {
  .hero-edit {
    grid-template-columns: 1fr !important;
    min-height: 100dvh !important;
  }
  .hero-edit-panel {
    min-height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 88px !important;
    padding-bottom: 48px !important;
  }
  .hero-edit-visual { display: none !important; }
}

