/* ==================================================================
   NUMA — Design system éditorial
   Inspiration : Accenture · Capgemini · CGI · Atos
   ================================================================== */

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* Palette ultra-restreinte */
  --ink:        #0A1428;   /* Navy presque noir (clé) */
  --ink-2:      #122544;   /* Navy un cran plus clair */
  --ink-3:      #1F3460;   /* Navy intermédiaire */
  --slate:      #4A5568;   /* Gris ardoise (body) */
  --slate-2:    #6B7280;
  --slate-3:    #9CA3AF;   /* Texte soft */
  --line:       #E5E7EB;   /* Bordures claires */
  --line-2:     #EEF0F3;
  --pearl:      #F4F5F7;
  --cream:      #FAFAF7;   /* Off-white chaud */
  --white:      #FFFFFF;

  --gold:       #B89548;   /* Accent or unique, sobre */
  --gold-soft:  #D9BC72;
  --gold-deep:  #8E7032;

  /* Texte sur fond clair */
  --text:       var(--ink);
  --text-soft:  var(--slate);
  --text-mute:  var(--slate-3);

  /* Texte sur fond foncé */
  --text-dark:        #FAFAF7;
  --text-dark-soft:   rgba(250, 250, 247, 0.72);
  --text-dark-mute:   rgba(250, 250, 247, 0.48);
  --line-dark:        rgba(250, 250, 247, 0.12);
  --line-dark-strong: rgba(250, 250, 247, 0.22);

  /* Typo */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --header-h: 88px;
  --container: 1320px;
  --container-narrow: 1080px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPO DE BASE ===== */
html, body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.075rem; font-weight: 700; }

p { font-size: 1.0625rem; line-height: 1.65; color: var(--text-soft); }
.lead { font-size: clamp(1.125rem, 1.4vw, 1.35rem); line-height: 1.55; color: var(--text-soft); font-weight: 400; }

::selection { background: var(--ink); color: var(--white); }

/* ===== UTILS ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold); }

.section-num {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}
.section-num b {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
}
.section-num-tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.on-dark .section-num b, .section-dark .section-num b { color: var(--white); }
.on-dark .section-num-tag, .section-dark .section-num-tag { color: var(--text-dark-mute); }

/* Boutons / liens éditoriaux */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
  transition: gap .25s var(--ease), border-color .2s;
}
.link-arrow .arr {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.link-arrow:hover { gap: 16px; }
.link-arrow:hover .arr { transform: translateX(4px); }
.link-arrow.on-dark { color: var(--white); border-bottom-color: var(--gold); }
.link-arrow.gold { color: var(--gold-deep); border-bottom-color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 0;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: var(--ink-3); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline.on-dark { color: var(--white); border-color: var(--white); }
.btn-outline.on-dark:hover { background: var(--white); color: var(--ink); }

.btn-lg { padding: 18px 32px; font-size: 1rem; }

/* ===== TOP STRIP (très fin) ===== */
.top-strip {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: var(--text-dark-soft);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  height: 36px;
  display: flex;
  align-items: center;
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.ts-left { display: flex; align-items: center; gap: 10px; }
.ts-left .gold-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.ts-right {
  display: flex; align-items: center; gap: 22px;
}
.ts-right a { color: inherit; transition: color .2s; }
.ts-right a:hover { color: var(--gold-soft); }
.ts-sep {
  width: 1px; height: 12px;
  background: var(--line-dark);
}
@media (max-width: 768px) { .ts-right { display: none; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(10, 20, 40, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.brand-wordmark span {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.site-header.scrolled .brand-wordmark,
.page .brand-wordmark { color: var(--ink); }
/* Sur fond dark (hero) */
.hero .brand-wordmark { color: var(--white); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  letter-spacing: -0.005em;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 20px;
  border: 1px solid var(--ink);
  transition: background .25s, color .25s;
}
.header-cta:hover { background: var(--ink); color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px; height: 30px;
  justify-content: center;
  align-items: center;
}
.burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 24px 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.mobile-nav a:last-child { border-bottom: 0; padding-top: 22px; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { max-width: 620px; }
.hero-text .eyebrow { margin-bottom: 32px; }
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.16em;
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
}

.hero .lead { margin-bottom: 44px; color: var(--text-soft); max-width: 580px; }
.hero .lead b { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  margin-bottom: 56px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta-item {
  padding-right: 24px;
}
.hero-meta-item + .hero-meta-item {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.hero-meta-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta-item span {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* Visual scène SVG (gardé, ré-affiné) */
.hero-visual { position: relative; min-height: 600px; }
.hero-scene {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(155deg, var(--ink-3) 0%, var(--ink) 60%, #060B17 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 40px 80px -24px rgba(10, 20, 40, 0.35),
    0 0 0 1px rgba(184, 149, 72, 0.15);
}

.scene-aura {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 35%, rgba(184, 149, 72, 0.20), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(122, 165, 240, 0.10), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 149, 72, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 149, 72, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85), transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85), transparent 80%);
  pointer-events: none;
  z-index: 1;
}
.scene-svg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

/* Animations légères */
.scene-stars circle { animation: twinkle 4.5s ease-in-out infinite; }
.scene-stars circle:nth-child(odd) { animation-delay: 1.5s; }
.scene-stars circle:nth-child(3n) { animation-delay: 2.7s; }
@keyframes twinkle { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.scene-flows path { animation: flowGlow 4s ease-in-out infinite; }
@keyframes flowGlow { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

/* Holo cards (épurées) */
.holo-card {
  position: absolute;
  z-index: 5;
  background: rgba(10, 20, 40, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(184, 149, 72, 0.28);
  padding: 16px 18px;
  color: var(--white);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.55);
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.holo-card-1 { top: 28px; left: 22px; width: 230px; animation-delay: 0s; }
.holo-card-2 { top: 210px; right: 22px; width: 180px; animation-delay: 1.8s; }
.holo-card-3 { bottom: 30px; right: 28px; width: 240px; animation-delay: 3.6s; }

.holo-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.holo-eyebrow.blue { color: #8FB7F0; }
.holo-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(143, 183, 240, 0.22);
}
.holo-eyebrow svg { color: currentColor; }

.holo-pitch {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 12px;
}
.holo-pitch b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
}
.holo-pitch span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.holo-metric { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.holo-metric b {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--white);
  display: inline-flex; align-items: baseline; gap: 2px;
}
.holo-metric b i { font-style: normal; font-size: 1rem; color: var(--gold-soft); }
.holo-metric span { font-size: 0.74rem; color: rgba(255,255,255,0.6); }

.holo-bar { height: 3px; background: rgba(255,255,255,0.1); margin-bottom: 10px; overflow: hidden; }
.holo-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #8FB7F0, var(--gold-soft));
  box-shadow: 0 0 10px rgba(143, 183, 240, 0.55);
}
.holo-foot { display: flex; justify-content: space-between; font-size: 0.7rem; font-weight: 700; }
.holo-foot .up { color: var(--gold-soft); }
.holo-foot .nor { color: rgba(255,255,255,0.6); }

.holo-list { display: flex; flex-direction: column; gap: 9px; }
.holo-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  color: var(--white);
}
.holo-list .ck {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.holo-list .ck::after {
  content: '';
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg) translate(0, -1px);
}

.holo-uptime {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(184, 149, 72, 0.22);
}
.holo-uptime b {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700;
  color: var(--gold-soft); letter-spacing: -0.03em; line-height: 1;
  display: inline-flex; align-items: baseline;
}
.holo-uptime b i { font-style: normal; font-size: 1rem; color: rgba(217, 188, 114, 0.7); }
.holo-uptime span { font-size: 0.74rem; color: rgba(255,255,255,0.6); }
.holo-status {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.85);
}
.holo-status .sd {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4FC07A; box-shadow: 0 0 0 3px rgba(79, 192, 122, 0.2);
}

/* ===================================================================
   SECTIONS (architecture éditoriale)
   =================================================================== */
.section {
  position: relative;
  padding: 140px 0;
  background: var(--white);
}
.section-soft { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--text-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--text-dark-soft); }

/* En-tête éditoriale : grille 2 col (étiquette+nbre / titre+lead) */
.section-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 100px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  align-items: end;
}
.section-dark .section-head { border-bottom-color: var(--line-dark); }
.section-head-left {
  display: flex; flex-direction: column; gap: 18px;
}
.section-head-right {
  max-width: 760px;
}
.section-head h2 { margin-bottom: 24px; }
.section-head .lead { color: var(--text-soft); }
.section-dark .section-head .lead { color: var(--text-dark-soft); }

/* Variation tête centrée */
.section-head.centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  gap: 28px;
}
.section-head.centered .section-head-left {
  flex-direction: row; align-items: center; gap: 18px;
}

/* ===== VISUEL DE SECTION (bandeau cinématique sous le titre) ===== */
.section-visual {
  margin: 56px 0 72px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.section-dark .section-visual {
  border-color: rgba(255, 255, 255, 0.08);
}
.section-visual img {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 460px);
  object-fit: cover;
  transition:
    transform 1.6s cubic-bezier(.2, .8, .2, 1),
    opacity .8s ease,
    clip-path 1.4s cubic-bezier(.7, 0, .2, 1);
  opacity: 0;
  transform: scale(1.06);
  clip-path: inset(0 100% 0 0);
}
.section-visual.visible img {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.section-visual-large img {
  height: clamp(220px, 28vw, 380px);
}
.section-visual.section-visual-centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section-visual.section-visual-centered img {
  object-position: center top;
}

/* Bandeau de la section Contact : pleine largeur, sort du container */
.contact-visual {
  margin: 0 auto 56px;
  max-width: 900px;
  border-color: rgba(255,255,255,0.08);
}
.contact-visual img { height: clamp(180px, 22vw, 280px); }

/* Variante side-by-side : image dans la grille du section-head (3 colonnes) */
.section-head-visual {
  display: grid;
  grid-template-columns: 220px 1fr 420px;
  gap: 64px;
  margin-bottom: 100px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  align-items: end;
}
.section-dark .section-head-visual { border-bottom-color: var(--line-dark); }
.section-head-visual .section-head-left { padding-bottom: 12px; }
.section-head-visual h2 { margin-bottom: 24px; }
.section-head-visual .lead { color: var(--text-soft); }
.section-dark .section-head-visual .lead { color: var(--text-dark-soft); }
.section-head-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.section-dark .section-head-figure { border-color: rgba(255,255,255,0.08); }
.section-head-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 1.6s cubic-bezier(.2,.8,.2,1),
    opacity .8s ease,
    clip-path 1.4s cubic-bezier(.7, 0, .2, 1);
  opacity: 0;
  transform: scale(1.06);
  clip-path: inset(0 100% 0 0);
}
.section-head-visual.visible .section-head-figure img {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.section-head-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,20,40,0) 60%, rgba(10,20,40,0.35) 100%);
}
.section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 20, 40, 0) 60%, rgba(10, 20, 40, 0.35) 100%);
}

/* ===== MANIFESTO BANNER ===== */
.manifesto {
  background: var(--ink);
  color: var(--text-dark);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 20% 20%, rgba(184, 149, 72, 0.12), transparent 60%),
    radial-gradient(ellipse 500px 250px at 80% 80%, rgba(122, 165, 240, 0.06), transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: start;
}
.manifesto-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-top: 18px;
  border-top: 1px solid var(--gold);
}
.manifesto h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  max-width: 1000px;
}
.manifesto h2 .accent {
  color: var(--gold-soft);
  font-weight: 700;
}

/* ===== QUI SOMMES-NOUS ===== */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 96px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  margin: 24px 0 28px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 18px;
  max-width: 600px;
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about-stat {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-stat b {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.about-stat span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-mute);
  max-width: 260px;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== IDENTITÉ : 3 piliers éditoriaux ===== */
.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.id-card {
  padding: 56px 40px 56px 0;
  padding-left: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: background .3s var(--ease);
}
.id-card:hover { background: var(--cream); }
.id-card-num {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.id-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.id-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* Bandeau valeurs */
.values-strip {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.values-strip .val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* ===================================================================
   EXPERTISES — liste éditoriale numérotée
   =================================================================== */
.expertises {
  background: var(--cream);
}
.expertise-list {
  border-top: 1px solid var(--line);
}
.expertise-row {
  display: grid;
  grid-template-columns: 80px 1.3fr 2fr 80px;
  gap: 40px;
  align-items: start;
  padding: 44px 16px;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background .3s var(--ease), padding .3s var(--ease);
  position: relative;
}
.expertise-row:hover {
  background: var(--white);
  padding-left: 32px;
}
.expertise-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease);
}
.expertise-row:hover::before { transform: scaleY(1); }
.exp-num {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 8px;
}
.exp-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.exp-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.exp-desc b { color: var(--ink); font-weight: 600; }
.exp-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  background: rgba(184, 149, 72, 0.12);
  padding: 8px 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 12px;
  justify-self: end;
  white-space: nowrap;
}

/* ===================================================================
   RÉFÉRENCES — logos
   =================================================================== */
.references {
  background: var(--white);
  padding: 120px 0;
}
.references-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.references-head h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.references-head p { color: var(--text-soft); max-width: 540px; }

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.logo-tile {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .3s, transform .3s var(--ease);
}
.logo-tile img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transition: filter .3s, opacity .3s, transform .3s var(--ease);
}
.logo-tile:hover { background: var(--cream); }
.logo-tile:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}
/* Pôle Emploi : logo plus petit que les autres, on le compense */
.logo-tile img[alt="Pôle Emploi"] {
  max-height: 72px;
  max-width: 180px;
}

.trust-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-mute);
  font-style: italic;
  max-width: 700px;
}

/* ===== Réalisations marquantes ===== */
.cases-head {
  margin: 110px 0 56px;
  max-width: 900px;
}
.cases-head .eyebrow { margin-bottom: 24px; }
.cases-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
}
.cases-head p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.case-card {
  padding: 42px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .35s ease;
}
.case-card:hover { background: var(--cream); }
.case-sector {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.case-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.case-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
  flex: 1;
}
.case-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.case-card-numa {
  background: var(--ink);
  color: var(--text-dark);
}
.case-card-numa:hover { background: var(--ink-2); }
.case-card-numa h4 { color: var(--white); }
.case-card-numa p { color: var(--text-dark-soft); }
.case-card-numa .case-sector { color: var(--gold-soft); }
.case-card-numa .case-meta {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: var(--text-dark-mute);
}
.case-card-numa b { color: var(--gold-soft); }


/* ===================================================================
   TÉMOIGNAGES
   =================================================================== */
.testimonials { background: var(--cream); }
.testimonials-head {
  margin-bottom: 80px;
  max-width: 760px;
}
.testimonials-head .eyebrow { margin-bottom: 20px; }
.testimonials-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.testimonial {
  padding: 48px 40px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonial:last-child { border-right: 1px solid var(--line); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.testimonial blockquote {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  position: relative;
  padding-top: 24px;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.t-role {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.t-org {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-style: italic;
}


/* ===================================================================
   CAPACITÉS TECHNIQUES — éditorial
   =================================================================== */
.capabilities {
  background: var(--ink);
  color: var(--text-dark);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.cap-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 48px 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  transition: background .3s;
}
.cap-row:hover { background: rgba(184, 149, 72, 0.04); }
.cap-num {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  padding-top: 8px;
}
.cap-row h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.cap-row p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark-soft);
  margin-bottom: 16px;
}
.cap-row .meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}

.tech-note {
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--text-dark-mute);
  font-style: italic;
  max-width: 760px;
}

/* ===================================================================
   SECTEURS & CAS D'USAGE — cards éditoriales claires
   =================================================================== */
.sectors {
  background: var(--cream);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sector-card {
  background: var(--cream);
  padding: 44px 36px;
  display: flex; flex-direction: column;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.sector-card:hover {
  background: var(--white);
}
.sector-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.sector-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.sector-tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(184, 149, 72, 0.14);
  padding: 6px 10px;
}
.sector-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sector-card > p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 22px;
  flex-grow: 0;
}
.sector-card > p b { color: var(--ink); font-weight: 600; }
.sector-feats {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.sector-feats li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.sector-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 12px; height: 1px;
  background: var(--gold);
}

.sectors-note {
  margin-top: 56px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 820px;
  line-height: 1.6;
  font-style: italic;
}

/* ===================================================================
   PRODUITS — cards éditoriales
   =================================================================== */
.products {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--white);
  padding: 40px 30px;
  display: flex; flex-direction: column;
  transition: background .3s;
  position: relative;
}
.product-card:hover { background: var(--cream); }
.product-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.product-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.product-logo span {
  color: var(--gold);
  margin: 0 2px;
}
.product-logo img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.product-status {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
}
.product-status.status-live { color: #2A7C42; }
.product-status.status-live::before { background: #2A7C42; }
.product-status.status-soon { color: var(--gold-deep); }
.product-status.status-soon::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,72,0.18); }
.product-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.product-card > p {
  flex-grow: 0;
  margin-bottom: 24px;
}
.product-feats {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.product-feats li {
  font-size: 0.94rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.product-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 1px;
  background: var(--gold);
}

/* ===================================================================
   ÉQUIPES & VALEURS
   =================================================================== */
.teams {
  background: var(--ink);
  color: var(--text-dark);
}
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.team-card {
  padding: 48px 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s;
}
.team-card:hover { background: rgba(184, 149, 72, 0.04); }
.team-num {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.team-card h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark-soft);
}

.commit-banner {
  margin-top: 100px;
  padding: 60px 0 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.commit-banner .eyebrow.on-dark { margin-bottom: 18px; }
.commit-banner h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.commit-banner p {
  color: var(--text-dark-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ===================================================================
   POURQUOI NUMA — stats énormes
   =================================================================== */
.why {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-cell {
  padding: 52px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s;
}
.why-cell:hover { background: var(--white); }
.why-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-num i { font-style: normal; color: var(--gold); }
.why-cell h4 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-cell p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact {
  background: var(--ink);
  color: var(--text-dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.contact-text .eyebrow.on-dark { margin-bottom: 32px; }
.contact-text h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.contact-text h2 .accent { color: var(--gold-soft); }
.contact-text > p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark-soft);
  max-width: 480px;
  margin-bottom: 48px;
}

.contact-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-dark);
}
.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
}
.contact-list li b {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.contact-list li span {
  font-size: 1.02rem;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid var(--line-dark);
  padding: 48px 40px;
}
.contact-form .form-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark-soft);
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark-strong);
  padding: 12px 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0;
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--text-dark-mute);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; }
.field select option { background: var(--ink); color: var(--white); }

.contact-form .btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: background .25s;
  margin-top: 12px;
}
.contact-form .btn-submit:hover { background: var(--gold-soft); }

/* RGPD checkbox */
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-dark-soft);
  cursor: pointer;
}
.checkbox-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
}
.checkbox-field input[type="checkbox"]:hover { border-color: var(--gold-soft); }
.checkbox-field input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-field input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 0px;
  width: 6px; height: 11px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-field a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkbox-field a:hover { color: var(--gold); }

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(79, 192, 122, 0.12);
  border: 1px solid rgba(79, 192, 122, 0.35);
  color: #8FE0A6;
  font-size: 0.94rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--text-dark-soft);
  border-top: 1px solid var(--line-dark);
  padding: 80px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-logo { height: 38px; margin-bottom: 26px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand .brand-wordmark { color: var(--text-dark); }
.footer-brand .brand-wordmark span { color: var(--gold-soft); }
.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-dark-soft);
  line-height: 1.6;
  max-width: 380px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-dark-soft);
  font-weight: 500;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dark-mute);
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom .legal { display: flex; gap: 28px; }
.footer-bottom .legal a:hover { color: var(--gold-soft); }

/* ===================================================================
   PAGE MENTIONS LÉGALES
   =================================================================== */
.legal-page { background: var(--cream); }
.legal-main {
  padding: 140px 0 100px;
  background: var(--white);
  min-height: 70vh;
}
.legal-head {
  margin-bottom: 64px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal-head .eyebrow { margin-bottom: 20px; }
.legal-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.legal-head .lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 640px;
}
.legal-section {
  margin-bottom: 56px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin: 28px 0 12px;
}
.legal-section p,
.legal-section ul {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  padding-left: 24px;
}
.legal-section ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.legal-section a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--ink); }
.legal-footnote {
  font-size: 0.82rem;
  color: var(--text-mute);
  font-style: italic;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.legal-back { margin-top: 28px; }
.legal-back .link-arrow .arr { margin-right: 6px; }

/* ===================================================================
   PAGES SECONDAIRES (Carrières, Blog, Articles) — système partagé
   =================================================================== */
.page { background: var(--cream); }
.page-main { background: var(--white); }

/* Hero des pages (clair par défaut, sombre via .page-hero-dark) */
.page-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.page-hero-dark {
  background: var(--ink);
  color: var(--text-dark);
  border-bottom: none;
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 900px;
}
.page-hero-dark h1 { color: var(--white); }
.page-hero h1 .accent { color: var(--gold); font-style: normal; }
.page-hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 720px;
}
.page-hero-dark .page-hero-lead { color: var(--text-dark-soft); }
.page-hero-meta {
  display: flex;
  gap: 56px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-meta b {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--gold-soft);
}
.page-hero-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark-mute);
}

/* Sections d'une page secondaire */
.page-section { padding: 90px 0; }
.page-section + .page-section { border-top: 1px solid var(--line-2); }
.page-section .eyebrow { margin-bottom: 20px; }
.page-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
}
.page-section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 48px;
  max-width: 720px;
}

/* Pourquoi nous rejoindre (carrières) */
.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-join-card {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.why-join-card:hover { background: var(--cream); }
.wj-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.why-join-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.why-join-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
}

/* Liste de postes (carrières) */
.jobs-list { list-style: none; padding: 0; margin: 48px 0 0; }
.job-row {
  padding: 36px 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
  cursor: default;
}
.job-row:nth-child(even) { background: var(--cream); }
.job-row:hover {
  background: var(--pearl);
  box-shadow: inset 3px 0 0 var(--gold);
}
.job-row:last-child { border-bottom: 1px solid var(--line); }
.job-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.job-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.job-loc {
  font-size: 0.85rem;
  color: var(--text-mute);
}
.job-ref {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.job-apply {
  margin-top: 20px;
  display: inline-flex;
  padding: 10px 22px;
  font-size: 0.88rem;
  grid-column: 2;
  justify-self: end;
}
.job-spontanee .job-apply {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-soft);
}
.job-spontanee .job-apply:hover {
  background: var(--gold);
  color: var(--ink);
}
.job-row h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 14px;
}
.job-row p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 18px;
  max-width: 740px;
}
.job-feats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.job-spontanee { background: var(--ink) !important; color: var(--text-dark); }
.job-spontanee .job-tag { color: var(--gold-soft); }
.job-spontanee h3 { color: var(--white); }
.job-spontanee p { color: rgba(250,250,247,.75); }
.job-spontanee .job-feats span { color: rgba(250,250,247,.55); }
.job-spontanee:hover { background: var(--ink-2) !important; box-shadow: inset 3px 0 0 var(--gold); }

/* Process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line-2);
  align-items: start;
}
.process-steps li:last-child { border-bottom: 1px solid var(--line-2); }
.proc-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.process-steps h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.process-steps p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

/* Bloc CTA bas de page */
.page-cta {
  background: var(--ink);
  color: var(--text-dark);
  margin: 0 -32px;
  padding: 90px 32px;
}
.page-cta h2 {
  color: var(--white);
  text-align: center;
}
.page-cta p {
  color: var(--text-dark-soft);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-cta a { color: var(--gold-soft); text-decoration: underline; }
.page-cta-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.page-cta-row a { text-decoration: none; }
.page-cta-row .link-arrow { color: var(--gold-soft); }

/* ===== BLOG (index) ===== */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.blog-card {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-card:last-child { border-bottom: 1px solid var(--line); }
.blog-card.featured { padding-top: 56px; padding-bottom: 56px; }
.blog-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.blog-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.blog-card.featured h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color .25s;
}
.blog-card h2 a:hover { color: var(--gold-deep); }
.blog-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
  max-width: 760px;
}
.blog-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-top: 8px;
  flex-wrap: wrap;
}
.blog-meta .link-arrow {
  margin-left: auto;
  color: var(--gold-deep);
}

/* ===== ARTICLES (lecture longue) ===== */
.article-page { background: var(--cream); }
.article-head {
  padding: 100px 0 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 28px;
  text-decoration: none;
}
.back-link:hover { color: var(--gold-deep); }
.back-link .arr { margin-right: 6px; }
.article-head .blog-tag { display: inline-block; margin-bottom: 18px; }
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
}
.article-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 22px;
  font-weight: 500;
}
.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-mute);
}

.article-body {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink-2);
  padding-bottom: 80px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 10px;
}
.article-body p { margin: 0 0 20px; }
.article-body b, .article-body strong { color: var(--ink); font-weight: 700; }
.article-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--ink); }
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--cream);
  padding: 2px 6px;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.article-body .article-list,
.article-body ol,
.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.article-body .article-list li,
.article-body ol li,
.article-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.article-body ol { counter-reset: art-ol; }
.article-body ol li { counter-increment: art-ol; }
.article-body ol li::before {
  content: counter(art-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.article-sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 56px 0 36px;
}
.article-cta {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.article-cta b { display: block; margin-bottom: 6px; }

/* ===== TEASER ARTICLE ===== */
.article-teaser {
  margin-top: 48px;
}
.teaser-intro {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.teaser-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.teaser-topics li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.teaser-topics li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
.teaser-gate {
  background: var(--ink);
  color: var(--text-dark);
  border-radius: 4px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.teaser-gate p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(250,250,247,.80);
  max-width: 520px;
}
.teaser-gate .btn {
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .teaser-gate { flex-direction: column; align-items: flex-start; }
}

.article-foot {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

/* Responsive pages secondaires */
@media (max-width: 1100px) {
  .why-join-grid { grid-template-columns: repeat(2, 1fr); }
  .job-row { grid-template-columns: 1fr; gap: 16px; }
  .page-hero { padding: 100px 0 60px; }
}
@media (max-width: 720px) {
  .why-join-grid { grid-template-columns: 1fr; }
  .why-join-card { padding: 32px 24px; }
  .page-section { padding: 60px 0; }
  .page-hero { padding: 80px 0 50px; }
  .page-hero-meta { gap: 32px; }
  .process-steps li { grid-template-columns: 60px 1fr; gap: 18px; padding: 24px 0; }
  .page-cta { padding: 60px 24px; margin: 0 -22px; }
  .article-head { padding: 70px 0 40px; }
  .article-body { font-size: 1rem; }
}

/* ===================================================================
   BOUTON RETOUR HAUT DE PAGE
   =================================================================== */
/* Bouton WhatsApp flottant */
.whatsapp-fab {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease, background .25s, box-shadow .25s;
  pointer-events: none;
  text-decoration: none;
}
.whatsapp-fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whatsapp-fab:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
@media (max-width: 720px) {
  .whatsapp-fab { bottom: 72px; right: 18px; width: 46px; height: 46px; }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease, background .25s, color .25s;
  z-index: 90;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 720px) {
  .back-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }
}

/* ===================================================================
   ANIMATIONS — Reveal + entrées staggerées hero + micro-interactions
   =================================================================== */

/* Reveal de base : translateY + petite échelle pour plus de présence */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform 1s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}
.reveal.visible, .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes directionnelles */
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.visible,
.reveal-right.visible { transform: translateX(0); }

/* ---- Entrée HÉRO au chargement (stagger, sans attendre le scroll) ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSceneIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes holoFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

.hero-text > * {
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-text > .eyebrow         { animation-delay: .15s; }
.hero-text > h1               { animation-delay: .30s; }
.hero-text > .lead            { animation-delay: .55s; }
.hero-text > .hero-cta-row    { animation-delay: .80s; }
.hero-text > .hero-meta       { animation-delay: 1.00s; }

.hero-visual {
  opacity: 0;
  animation: heroSceneIn 1.4s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .5s;
}

/* Les holo-cards "respirent" en boucle après leur entrée */
.holo-card { animation: holoFloat 6s ease-in-out infinite; }
.holo-card-1 { animation-delay: 0s; }
.holo-card-2 { animation-delay: 1.5s; }
.holo-card-3 { animation-delay: 3s; }

/* Annuler l'effet reveal sur la hero (pour ne pas surcharger l'animation) */
.hero .reveal { opacity: 1; transform: none; transition: none; }

/* ---- Animation de révélation des images de section : gérée plus haut ---- */

/* ---- Stagger fin pour grilles (cards d'expertise, secteurs, produits) ---- */
.expertise-row.reveal,
.sector-card.reveal,
.product-card.reveal,
.team-card.reveal,
.id-card.reveal,
.cap-row.reveal,
.why-cell.reveal {
  transition-delay: 0s;
}
.expertise-row.reveal:nth-child(2),
.sector-card.reveal:nth-child(2),
.product-card.reveal:nth-child(2),
.team-card.reveal:nth-child(2),
.id-card.reveal:nth-child(2),
.cap-row.reveal:nth-child(2),
.why-cell.reveal:nth-child(2) { transition-delay: .08s; }
.expertise-row.reveal:nth-child(3),
.sector-card.reveal:nth-child(3),
.product-card.reveal:nth-child(3),
.team-card.reveal:nth-child(3),
.id-card.reveal:nth-child(3),
.cap-row.reveal:nth-child(3),
.why-cell.reveal:nth-child(3) { transition-delay: .16s; }
.expertise-row.reveal:nth-child(4),
.sector-card.reveal:nth-child(4),
.product-card.reveal:nth-child(4),
.team-card.reveal:nth-child(4),
.cap-row.reveal:nth-child(4),
.why-cell.reveal:nth-child(4) { transition-delay: .24s; }
.expertise-row.reveal:nth-child(5),
.sector-card.reveal:nth-child(5),
.product-card.reveal:nth-child(5),
.cap-row.reveal:nth-child(5),
.why-cell.reveal:nth-child(5) { transition-delay: .32s; }
.expertise-row.reveal:nth-child(6),
.sector-card.reveal:nth-child(6),
.cap-row.reveal:nth-child(6),
.why-cell.reveal:nth-child(6) { transition-delay: .40s; }

/* ---- Micro-interactions hover (cards, partner logos) ---- */
.expertise-row,
.sector-card,
.product-card,
.team-card,
.id-card,
.cap-row,
.why-cell {
  transition: transform .5s cubic-bezier(.2,.8,.2,1),
              box-shadow .5s ease,
              border-color .3s ease;
}
.expertise-row:hover,
.sector-card:hover,
.product-card:hover,
.id-card:hover {
  transform: translateY(-4px);
}

/* Header : entrée discrète au load */
@keyframes headerSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.site-header { animation: headerSlide .8s cubic-bezier(.2,.8,.2,1) both; }

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { max-width: 620px; margin: 0 auto; min-height: 540px; }
  .hero-scene { min-height: 540px; }
  .section-head { grid-template-columns: 1fr; gap: 36px; }
  .section-head-visual { grid-template-columns: 1fr; gap: 36px; }
  .section-head-figure img { aspect-ratio: 16 / 9; }
  .section { padding: 100px 0; }
  .identity-grid { grid-template-columns: 1fr 1fr; }
  .id-card:nth-child(3) { grid-column: 1 / -1; }
  .references-head { grid-template-columns: 1fr; gap: 28px; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .commit-banner { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .expertise-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .expertise-row .exp-desc, .expertise-row .exp-tag { grid-column: 2; }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .container, .container-narrow { padding: 0 22px; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-visual { min-height: 480px; }
  .hero-scene { min-height: 480px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-meta-item { padding: 0; border: 0 !important; padding-bottom: 18px; border-bottom: 1px solid var(--line) !important; }
  .hero-meta-item:last-child { border-bottom: 0 !important; padding-bottom: 0; }

  .holo-card { padding: 12px 14px; }
  .holo-card-1 { width: 180px; top: 14px; left: 14px; }
  .holo-card-2 { width: 150px; top: 160px; right: 14px; }
  .holo-card-3 { width: 200px; bottom: 14px; right: 14px; }
  .holo-metric b { font-size: 1.55rem; }
  .holo-uptime b { font-size: 1.7rem; }

  .identity-grid { grid-template-columns: 1fr; }
  .id-card:nth-child(3) { grid-column: 1; }
  .id-card { padding: 36px 24px; }
  .values-strip { flex-direction: column; align-items: flex-start; gap: 16px; }

  .expertise-row { grid-template-columns: 50px 1fr; gap: 16px; padding: 32px 12px; }
  .expertise-row:hover { padding-left: 16px; }
  .exp-title { font-size: 1.2rem; }
  .exp-tag { justify-self: start; }

  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .cases-head { margin: 70px 0 36px; }
  .case-card { padding: 32px 24px; }
  .testimonial { padding: 40px 28px 32px; }
  .logo-tile { height: 100px; padding: 18px; }
  .logo-tile img { max-height: 36px; max-width: 100px; }

  .cap-row { padding: 36px 24px; grid-template-columns: 1fr; gap: 16px; }
  .cap-num { padding-top: 0; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card { padding: 32px 24px; }

  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card { padding: 32px 24px; }

  .teams-grid { grid-template-columns: 1fr; }
  .team-card { padding: 36px 24px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-cell { padding: 36px 24px; }
  .why-num { font-size: 3rem; }

  .contact-form { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .contact-list li { grid-template-columns: 1fr; gap: 6px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@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;
  }
}
