/* ════════════════════════════════════════
   NOBRAINER, DESIGN SYSTEM
   Charte issue du template de présentation
   ════════════════════════════════════════ */

/* ────────────────────────────────────────
   Essai : items du menu en poids regular (400)
   À retirer si on revient au 500 médium
   ──────────────────────────────────────── */
.nav-v3 .nav-links li > a {
  font-weight: 400 !important;
}

/* ────────────────────────────────────────
   Floating CTA scroll-triggered
   Bouton fixe bas-droite, apparaît après le hero
   ──────────────────────────────────────── */
.floating-cta {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 90;
  display: inline-block;
  padding: 1.1rem 2.6rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(11,26,46,0.28), 0 2px 8px rgba(11,26,46,0.18);
  line-height: 1.2;
  text-align: center;
  min-width: 260px;
  max-width: 360px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.floating-cta[data-state="visible"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--cream);
  color: var(--navy-deep);
  box-shadow: 0 22px 48px rgba(11,26,46,0.35), 0 4px 12px rgba(11,26,46,0.22);
}
@media (max-width: 640px) {
  .floating-cta {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 1rem 1.5rem;
    font-size: 0.82rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta { transition: opacity 0.2s ease; transform: none; }
  .floating-cta[data-state="visible"] { transform: none; }
}

/* ────────────────────────────────────────
   CTA normalisé : taille et style uniques sur tout le site
   Header (.nav-v3 .nav-cta) + tous les CTA finaux (gold)
   + .cta-btn générique + #methodo-teaser .teaser-cta
   ──────────────────────────────────────── */
.nav-v3 .nav-cta,
nav.nav-v3 .nav-cta,
.pillar-cta-final .pcta-btn,
#cta-home-dark .cta-btn,
.case-cta-final .cta-btn,
.contact-cta-final .cta-btn,
.cta-final .cta-btn,
section .cta-btn,
#methodo-teaser .teaser-cta,
.proof-section .cta-btn,
.cta-final-section .cta-btn {
  padding: 1.1rem 2.6rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  min-width: 260px !important;
  max-width: 360px !important;
  text-align: center !important;
  display: inline-block !important;
  box-sizing: border-box !important;
  border-radius: 4px !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* CTA finaux gold (sections sombres) */
.pillar-cta-final .pcta-btn,
#cta-home-dark .cta-btn,
.case-cta-final .cta-btn,
.cta-final .cta-btn,
.proof-section .cta-btn,
section.dark .cta-btn,
section[style*="navy-deep"] .cta-btn {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}
.pillar-cta-final .pcta-btn:hover,
#cta-home-dark .cta-btn:hover,
.case-cta-final .cta-btn:hover,
.cta-final .cta-btn:hover,
.proof-section .cta-btn:hover {
  background: var(--cream) !important;
  color: var(--navy-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

/* CTA teaser méthodologie (section claire) reste navy */
#methodo-teaser .teaser-cta {
  background: var(--navy-deep) !important;
  color: var(--cream) !important;
}
#methodo-teaser .teaser-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11,26,46,0.18);
}

/* Header CTA reste blanc */
.nav-v3 .nav-cta,
nav.nav-v3 .nav-cta {
  background: #ffffff !important;
  color: var(--navy-deep) !important;
}

@media (max-width: 980px) {
  .nav-v3 .nav-cta,
  nav.nav-v3 .nav-cta {
    padding: 0.85rem 1.8rem !important;
    min-width: 0 !important;
    font-size: 0.82rem !important;
  }
}
@media (max-width: 640px) {
  .pillar-cta-final .pcta-btn,
  #cta-home-dark .cta-btn,
  .case-cta-final .cta-btn,
  .cta-final .cta-btn,
  #methodo-teaser .teaser-cta {
    width: 100% !important;
    max-width: 320px !important;
    min-width: 0 !important;
    padding: 1rem 1.5rem !important;
  }
}

:root {
  --navy-deep: #0B1A2E;
  --navy: #112240;
  --navy-mid: #1A3358;
  --blue-accent: #2B5EA7;
  --blue-mid: #4A7EC0;
  --blue-light: #C8DDF5;
  --blue-ice: #E8F1FA;
  --cream: #F5F0EB;
  --white: #FAFAFA;
  --off-white: #F7F8FC;
  --text-dark: #1A1A2E;
  --text-body: #3A4258;
  --text-muted: #6B7694;
  --gold: #C9A84C;
  --gold-soft: #D4B868;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* ─── Type Scale Reference (for future standardization) ─── */
  --text-xs: 0.65rem;
  --text-sm: 0.8rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.6rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--navy-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes borderDraw {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Logo entrance animations */
@keyframes logoReveal {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; }
  40% { opacity: 1; }
  100% { clip-path: inset(0 0% 0 0); opacity: 1; }
}
@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 0px rgba(201,168,76,0)); }
  50% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.4)); }
  100% { filter: drop-shadow(0 0 0px rgba(201,168,76,0)); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal system */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Animated gradient on hero */
.hero {
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}

/* Hover micro-interactions, enhanced with glow + lift */
.promise-card {
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.promise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201,168,76,0.08), transparent 60%);
  pointer-events: none;
}
.promise-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 40px rgba(201,168,76,0.06);
}
.promise-card:hover::after { opacity: 1; }

.impact-card {
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.impact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(43,94,167,0.08), transparent 60%);
  pointer-events: none;
}
.impact-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(11,26,46,0.12);
}
.impact-card:hover::after { opacity: 1; }

.sector-item {
  transition: all 0.4s var(--ease);
}
.sector-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(11,26,46,0.1);
}
.service-item {
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.service-item:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 30px rgba(201,168,76,0.05);
}
.service-item:hover::after { opacity: 1; }

/* Metric counter items */
.metric-item {
  transition: transform 0.3s var(--ease);
}
.metric-item:hover {
  transform: translateY(-4px);
}

/* Responsive metrics grid */
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
}
.network-feature {
  transition: transform 0.3s var(--ease);
}
.network-feature:hover {
  transform: translateX(6px);
}

/* Gold line shimmer */
.hero-line {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
  background-size: 200% auto;
  animation: slideRight 0.8s var(--ease-out) 0.6s both, shimmer 3s linear 1.5s infinite;
}

/* CTA pulse subtle */
.cta-btn.hero-cta {
  position: relative;
  overflow: hidden;
}
.cta-btn::after.hero-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.6s var(--ease), height 0.6s var(--ease);
}
.cta-btn:hover::after.hero-cta:hover::after {
  width: 300px; height: 300px;
}

/* Conviction block animated border */
.conviction {
  position: relative;
  overflow: hidden;
}
.conviction::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 1s var(--ease-out);
}
.conviction.visible::after {
  height: 100%;
}

/* Pillar number counter animation */
.pillar-number {
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* Network hub pulse */
.network-hub {
  animation: pulse-glow 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(43,94,167,0.2);
  transition: box-shadow 0.4s;
}
.network-hub:hover {
  box-shadow: 0 0 50px rgba(43,94,167,0.4);
}

/* Smooth nav transition */
.nav {
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  transition: all 0.5s var(--ease);
}

/* Link underline animation refined */
.nav-links a::after {
  transition: width 0.4s var(--ease-out);
}

/* Card stagger children */
.home-card {
  transition: all 0.4s var(--ease);
}
.home-card:hover {
  border-color: var(--blue-accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,26,46,0.1);
}


/* ─── PARALLAX & ENHANCED ANIMATIONS ─── */
@keyframes goldLineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes counterPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.7); filter: blur(4px); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.05); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes tiltReset {
  to { transform: perspective(800px) rotateX(0) rotateY(0); }
}

/* Parallax hero glow */
.hero-glow.hero-glow-2 {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Section gold divider */
.section-gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-soft), var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s var(--ease-out);
  margin: 0;
  padding: 0;
  opacity: 0.6;
}
.section-gold-divider.visible {
  transform: scaleX(1);
}

/* Enhanced stagger delays */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.18s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.44s !important; }
.stagger-5 { transition-delay: 0.6s !important; }
.stagger-6 { transition-delay: 0.78s !important; }

/* 3D tilt hover effect on cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tilt-card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-6px);
  box-shadow: 0 20px 50px rgba(11,26,46,0.15);
}
.dark .tilt-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Counter animation for numbers */
.counter-num {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  filter: blur(4px);
}
.counter-num.animated {
  animation: counterPop 0.7s var(--ease-out) forwards;
}

/* SVG icon container */
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Hand-drawn icon style */
.card-icon svg {
  stroke: var(--blue-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
}



/* Icon + Title horizontal layout */
.card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.card-header .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.card-header h3, .card-header h4 {
  margin-bottom: 0 !important;
}
/* Promise card header: icon smaller, inline */
.promise-card .card-header .card-icon {
  width: 32px;
  height: 32px;
}
/* Impact card header on dark */
.dark .card-header h3 {
  color: var(--blue-light);
}

/* Approach card icon alignment */
.promise-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}
.promise-card {
  display: flex;
  flex-direction: column;
}

.tilt-card:hover .card-icon, .promise-card:hover .card-icon, .home-card:hover .card-icon, .impact-card:hover .card-icon, .n2-service-card:hover .card-icon, .n2-criteria-card:hover .card-icon, .service-item:hover .card-icon {
  opacity: 1;
  transform: scale(1.08);
}

/* Dark section icon colors */
.dark .card-icon svg {
  stroke: var(--gold);
  color: var(--gold);
  filter: drop-shadow(0 0 2px rgba(201,168,76,0.3));
}

/* Light section icon colors */
.card-icon svg {
  stroke: var(--navy-deep);
  color: var(--navy-deep);
}

/* Promise card icon override */
.promise-card .card-icon svg {
  stroke: var(--gold);
  color: var(--gold);
}

/* Smooth parallax on dark sections */
.parallax-bg {
  position: relative;
  overflow: hidden;
}
.parallax-bg::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -5%;
  right: -5%;
  bottom: -15%;
  background: radial-gradient(ellipse at 30% 20%, rgba(43,94,167,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}
.parallax-bg > * {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 3rem;
  box-shadow: 0 1px 0 rgba(200,221,245,0.08);
}

/* ── PAGES PORTFOLIO ────────────────────────────────────
   Forcer la nav opaque + décaler le contenu sous la nav
   fixed pour éviter le chevauchement avec portfolio-back-bar
   ──────────────────────────────────────────────────── */
body.lp-page .nav {
  position: sticky;
  top: 0;
  background: rgba(11, 26, 46, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 3rem;
  box-shadow: 0 1px 0 rgba(200,221,245,0.08);
}
body.lp-page main { padding-top: 0; margin: 0; }
body.lp-page main > * { margin-top: 0 !important; }
body.lp-page .portfolio-back-bar {
  position: relative;
  z-index: 1;
  background: var(--navy-deep) !important;
  border-bottom: none !important;
  margin: 0 !important;
}
body.lp-page .portfolio-back-bar a { color: var(--cream) !important; }
body.lp-page .portfolio-back-bar a:hover { color: var(--gold) !important; }
body.lp-page .portfolio-back-bar .crumb { color: rgba(245,240,235,0.6) !important; }
body.lp-page .portfolio-case-wrap {
  background: var(--navy-deep) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  font-size: 0;
}
body.lp-page .portfolio-case-wrap picture {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
body.lp-page .portfolio-case-image {
  display: block;
  margin: 0 auto;
  padding: 0;
  vertical-align: top;
  width: 100%;
  max-width: 1920px;
}
body.lp-page .portfolio-back-bar .container {
  flex-wrap: nowrap;
  gap: 1.5rem;
}
body.lp-page .portfolio-back-bar .crumb {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}
body.lp-page .portfolio-back-bar a {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 760px) {
  body.lp-page main { padding-top: 0; }
  body.lp-page .nav { padding: 0.6rem 1rem; }
  body.lp-page .portfolio-back-bar .container { flex-wrap: wrap; }
  body.lp-page .portfolio-back-bar .crumb { text-align: left; flex-basis: 100%; white-space: normal; }
}
.nav-logo img {
  height: 48px;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(200,221,245,0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--navy-deep) !important;
  background: var(--cream);
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--gold-soft) !important;
  color: var(--navy-deep) !important;
}
.nav-cta::after { display: none !important; }
.nav-lang {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  color: var(--gold) !important;
  opacity: 0.8;
  transition: opacity 0.3s !important;
}
.nav-lang:hover { opacity: 1 !important; }
.nav-lang::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
  display: block;
}

/* ════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 1rem;
  display: block;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--navy-deep);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy-deep);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
p { margin-bottom: 1rem; }
.lead {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.85;
  max-width: 750px;
}

/* ─── DARK SECTIONS ─── */
.dark {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: rgba(200,221,245,0.7);
}
.dark h1, .dark h2 { color: var(--cream); }
.dark h3 { color: var(--blue-light); }
.dark p { color: rgba(200,221,245,0.65); }
.dark .lead { color: rgba(245,240,235,0.85); }
.dark .section-label { color: var(--gold); }

.light-bg { background: var(--off-white); }
.ice-bg { background: var(--blue-ice); }

/* ════════════════════════════════════════
   HERO (Home)
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B1A2E 0%, #0F1E38 25%, #142B4E 50%, #1A3A6A 75%, #2B5EA7 95%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -10%; right: -15%;
  width: 65%; height: 80%;
  background: radial-gradient(ellipse, rgba(200,221,245,0.18) 0%, rgba(200,221,245,0.05) 40%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  bottom: -35%; left: -10%;
  width: 35%; height: 42%;
  background: radial-gradient(circle, rgba(43,94,167,0.12) 0%, transparent 55%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.hero-logo {
  display: block;
  height: clamp(40px, 6vw, 65px);
  width: auto;
  margin: 0 auto 1.5rem;
  animation: logoReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             logoGlow 1.5s ease-in-out 1.2s forwards;
  opacity: 0;
}
.hero-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  animation: slideRight 0.8s var(--ease-out) 0.6s both;
  transform-origin: left;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(200,221,245,0.6);
  font-weight: 300;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.hero-sub-main {
  color: var(--cream);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.hero-sub-detail {
  color: rgba(200,221,245,0.50);
  font-weight: 300;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.4rem;
}
.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
.hero-pillar {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,221,245,0.75);
  flex: 1;
  text-align: center;
  max-width: 200px;
}
.hero-pillar-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
}
.hero-cta {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--cream);
  border: 1px solid var(--cream);
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s var(--ease);
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.6s;
  opacity: 0;
}
.hero-cta:hover {
  background: var(--gold-soft);
  color: var(--navy-deep);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s var(--ease-out) 2s both;
}
.hero-scroll span {
  font-size: 0.78rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(245,240,235,0.85);
  text-shadow: 0 1px 8px rgba(11,26,46,0.7);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(200,221,245,0.3), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, #0B1A2E 0%, #112240 40%, #1A3358 80%, #2B5EA7 100%);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-glow {
  position: absolute;
  top: -20%; right: -15%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse, rgba(200,221,245,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.page-hero .lead {
  color: rgba(200,221,245,0.6);
  font-weight: 300;
}

/* ════════════════════════════════════════
   CARDS & GRIDS
   ════════════════════════════════════════ */

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Conviction block */
.conviction {
  background: var(--blue-ice);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
}
.conviction p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy-deep);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Promise cards */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.promise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,221,245,0.08);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.promise-card:hover { border-color: rgba(200,221,245,0.2); }
.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.promise-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(200,221,245,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Use case cards */
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.use-case {
  padding: 1.5rem;
  background: var(--blue-ice);
  border-left: 2px solid var(--blue-accent);
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
  transition: transform 0.2s;
}
.use-case:hover { transform: translateY(-2px); }

.dark .use-case {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
  color: rgba(200,221,245,0.7);
}

/* Impact cards */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.impact-card {
  padding: 2.5rem;
  background: var(--blue-ice);
  position: relative;
  overflow: hidden;
}
.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--blue-accent), var(--blue-light));
}
.impact-card h3 { font-size: 1.15rem; color: var(--navy-deep); margin-bottom: 1rem; }
.impact-card p { font-size: 0.9rem; color: var(--text-body); margin: 0; }
.impact-list {
  list-style: none;
  margin-top: 0.75rem;
}
.impact-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.impact-list li::before {
  content: '2';
  position: absolute;
  left: 0;
  color: var(--blue-accent);
  font-weight: 600;
}

/* Pillar sections */
.pillar-section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(200,221,245,0.06);
}
.pillar-section:last-child { border-bottom: none; }
.pillar-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: baseline;
  margin-bottom: 2rem;
}
.pillar-number {
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(200,221,245,0.08);
  line-height: 1;
}
.pillar-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
}
.pillar-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.pillar-subtitle {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--blue-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.pillar-desc { max-width: 700px; font-size: 0.95rem; }
.pillar-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,221,245,0.06);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.service-item:hover { border-color: rgba(200,221,245,0.15); }
.service-item h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.service-item p {
  font-size: 0.85rem;
  color: rgba(200,221,245,0.75);
  margin: 0;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  margin-top: 0.5rem;
}
.service-list li {
  font-size: 0.82rem;
  color: rgba(200,221,245,0.75);
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* Network */
.network-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.network-features {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.network-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.network-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,221,245,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.network-icon svg {
  width: 18px; height: 18px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 1.5;
}
.network-feature p { font-size: 0.9rem; margin: 0; }
.network-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,221,245,0.06);
  padding: 3rem 2.5rem;
  text-align: center;
}
.network-visual-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 2rem;
}
.network-hub {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.7rem;
  color: var(--cream);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 auto 1rem;
}
.network-spokes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.network-spoke {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(200,221,245,0.06);
  border: 1px solid rgba(200,221,245,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: rgba(200,221,245,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  padding: 0.25rem;
}

/* Sectors */
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.sectors-grid .sector-item {
  width: calc(25% - 0.75rem);
  box-sizing: border-box;
}
.sectors-grid > a {
  width: calc(25% - 0.75rem);
  box-sizing: border-box;
  text-decoration: none;
}
.sectors-grid > a .sector-item {
  width: 100%;
}
.sector-item {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s;
}
.sector-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.sector-icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.75rem;
  background: rgba(200, 221, 245, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sector-icon svg {
  width: 22px; height: 22px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.5;
}
.sector-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  display: block;
}

/* ════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════ */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  bottom: -30%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(200,221,245,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-content p { color: rgba(200,221,245,0.6); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2.5rem; }
.cta-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--cream);
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s var(--ease);
}
.cta-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.cta-secondary {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(200,221,245,0.65);
}
.cta-secondary a {
  color: rgba(200,221,245,0.6);
  border-bottom: 1px solid rgba(200,221,245,0.2);
  transition: color 0.3s;
}
.cta-secondary a:hover { color: var(--cream); }

/* ════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 0.3rem;
}
.contact-detail-value { font-size: 0.95rem; color: var(--text-dark); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border: 1px solid #dde3ee;
  background: var(--navy-deep);
  color: var(--cream);
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue-accent); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(245,240,235,0.55); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--navy-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  align-self: flex-start;
}
.form-submit:hover { background: var(--blue-accent); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,221,245,0.06);
  align-items: start;
}
.footer-brand {
  margin: 0;
  line-height: 1;
  display: block;
}
.footer-brand img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  display: block;
  /* Le PNG contient ~33% de whitespace en haut, on le remonte pour aligner
     les lettres avec le top des titres de colonnes (h3) */
  margin: -16px 0 0 0;
}
.footer-top > div:first-child { padding-top: 0; margin-top: 0; }
.footer-top > div:first-child .footer-tagline { margin-top: 1rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(200,221,245,0.65);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h3, .footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(200,221,245,0.65);
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(200,221,245,0.25);
}

/* ════════════════════════════════════════
   HOME SECTIONS (shorter teasers)
   ════════════════════════════════════════ */
.home-section { padding: 5rem 0; }
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.home-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--blue-ice);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.home-card:hover {
  border-color: var(--blue-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11,26,46,0.08);
}
.home-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; line-height: 1.3; }
.card-subtitle {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.home-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; flex-grow: 1; }
.card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--blue-accent);
  text-transform: uppercase;
  transition: color 0.3s;
  margin-top: auto;
}
.card-link:hover { color: var(--navy-deep); }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .two-col.network-layout.contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .promise-grid.use-cases { grid-template-columns: 1fr 1fr; }
  .sectors-grid .sector-item { width: calc(33.333% - 0.75rem); }
  .sectors-grid > a { width: calc(33.333% - 0.75rem); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.6rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--cream); }

  section { padding: 4.5rem 0; }
  .hero { padding: 7rem 1.5rem 4rem; }
  
.hero-sub-main {
  color: var(--cream);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.hero-sub-detail {
  color: rgba(200,221,245,0.50);
  font-weight: 300;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.4rem;
}
.hero-pillars { flex-direction: column; gap: 0.5rem; }
  .hero-pillar-dot { display: none; }
  .page-hero { padding: 8rem 0 3.5rem; }

  .promise-grid.use-cases.impact-grid.home-grid { grid-template-columns: 1fr; }
  .pillar-services { grid-template-columns: 1fr; }
  .pillar-header { grid-template-columns: 1fr; gap: 0.5rem; }
  .pillar-number { font-size: 2.5rem; }
  .sectors-grid .sector-item { width: calc(50% - 0.5rem); }
  .sectors-grid > a { width: calc(50% - 0.5rem); }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: bottom 0.5s var(--ease-out);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.sticky-cta.visible {
  bottom: 0;
}
.sticky-cta p {
  color: rgba(200,221,245,0.7);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
}
.sticky-cta a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  white-space: nowrap;
}
.sticky-cta a:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .sticky-cta { flex-direction: column; gap: 0.5rem; padding: 0.5rem 1rem; }
  .sticky-cta p { font-size: 0.75rem; text-align: center; }
}


/* ─── ICON TOGGLE ─── */
.icon-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  color: rgba(200,221,245,0.75);
  font-size: 0.7rem;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.icon-toggle-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.5);
  color: var(--gold-soft);
}
.icon-toggle-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icons-hidden .card-icon {
  display: none !important;
}

/* ─── UX/UI AUDIT FIXES, Mars 2026 ─── */

/* Fix 3: Focus visible indicators (WCAG 2.4.7) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Fix 5: Reduced motion support (WCAG 2.3.3) */
@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;
  }
  .reveal.reveal-left.reveal-right.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero {
    animation: none !important;
  }
}

/* Fix 7: CTA nav button min 44x44 touch target */
.cta-btn, nav a.cta-btn, nav a.nav-cta {
  min-height: 44px;
  min-width: 44px;
  padding: 0.6rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Fix 8: Hamburger 44px + scroll lock */
.hamburger.menu-toggle, button[aria-label="Menu"] {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.menu-open {
  overflow: hidden;
}

/* Fix 13: Touch targets on footer links + filters */
footer a.footer a.footer-col a {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.blog-filter-btn {
  min-height: 36px;
  padding: 0.4rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(11,26,46,0.15);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.blog-filter-btn:hover {
  background: var(--navy-deep);
  color: var(--cream);
  border-color: var(--navy-deep);
}
.blog-filter-btn.active {
  background: var(--navy-deep);
  color: var(--gold);
  border-color: var(--navy-deep);
}

/* Fix 14: Tablet breakpoint for card grids */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid,
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Fix 15: Skip to content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}


/* Fix 9: Language switcher always visible on mobile */
@media (max-width: 768px) {
  .nav-lang {
    position: fixed;
    top: 1rem;
    right: 4.5rem;
    z-index: 1001;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem !important;
    min-height: 36px;
    min-width: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-links .nav-lang { display: flex !important; }
}

/* Fix 18: Disable 3D tilt on touch/mobile devices */
@media (hover: none) {
  .home-card.promise-card.service-item.impact-card {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════ */
/* Agency Showcase Carousel                           */
/* ═══════════════════════════════════════════════════ */
.showcase-carousel {
  margin: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.showcase-carousel .carousel-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy-deep);
}
.carousel-slide .slide-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel-slide .slide-visual .slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.carousel-slide:hover .slide-visual .slide-bg {
  opacity: 0.25;
  transform: scale(1.05);
}
.carousel-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,46,0.92) 0%, rgba(11,26,46,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  transition: background 0.4s ease;
}
.carousel-slide:hover .slide-overlay {
  background: linear-gradient(to top, rgba(11,26,46,0.95) 0%, rgba(11,26,46,0.4) 50%, transparent 100%);
}
.carousel-slide .slide-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.carousel-slide .slide-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  transition: transform 0.3s ease;
}
.carousel-slide:hover .slide-title {
  transform: translateY(-4px);
}
.carousel-slide .slide-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
  line-height: 1.4;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.carousel-slide:hover .slide-desc {
  max-height: 60px;
  opacity: 1;
}
/* Carousel navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11,26,46,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.carousel-arrows {
  display: flex;
  gap: 0.5rem;
}
.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(11,26,46,0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  transition: all 0.3s ease;
}
.carousel-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
}
/* Responsive carousel */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%;
    min-width: unset;
  }
  .carousel-track {
    gap: 1rem;
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
  .carousel-slide .slide-desc {
    max-height: none;
    opacity: 1;
  }
}

/* ═══════════════════════════════════
   FIGMA FEEDBACK MODIFICATIONS
   Applied 2026-03-30
   ═══════════════════════════════════ */

/* ─── Footer Separator ─── */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  max-width: 1320px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ─── Blog Filter Pills ─── */
.blog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  justify-content: center;
}
.blog-filters .filter-pill {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--navy-deep);
  background: transparent;
  color: var(--navy-deep);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.blog-filters .filter-pill:hover, .blog-filters .filter-pill.active {
  background: var(--navy-deep);
  color: var(--cream);
  border-color: var(--navy-deep);
}

/* ─── Horizontal Carousel (Quand sommes-nous utiles) ─── */
.situations-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.situations-carousel::-webkit-scrollbar { display: none; }
.situations-carousel .situation-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: rgba(11, 26, 46, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  min-height: 180px;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.5;
}
.situations-carousel .situation-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.situations-carousel .situation-card .card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.situations-carousel .situation-card p {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.5;
}

/* ─── Service Pillar Icons ─── */
.pillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.pillar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ─── Lead Magnet Card ─── */
.lead-magnet-card {
  background: rgba(16, 24, 36, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

/* ─── Reassurance Band ─── */
.reassurance-band {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.reassurance-band .reassurance-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reassurance-band .reassurance-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.reassurance-band .reassurance-text h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.reassurance-band .reassurance-text p {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.6;
}

/* ─── Anchor Navigation (Services) ─── */
.anchor-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}
.anchor-nav a {
  padding: 10px 32px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.anchor-nav a:hover {
  background: rgba(201, 168, 76, 0.25);
}

/* ─── Alternating Section Styles ─── */
.section-alt {
  background: rgba(26, 35, 50, 0.6) !important;
}
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
}

/* ─── Portfolio Coming Soon ─── */
.portfolio-coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.portfolio-coming-soon h1 {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--cream);
  margin-bottom: 24px;
}
.portfolio-coming-soon .coming-soon-label {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.portfolio-coming-soon p {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.7;
  max-width: 500px;
  margin-bottom: 32px;
}

/* ─── Expertise Sectorielle Horizontal ─── */
.expertise-horizontal {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.expertise-horizontal::-webkit-scrollbar { display: none; }
.expertise-horizontal .expertise-chip {
  flex: 0 0 auto;
  padding: 14px 20px;
  background: rgba(16, 24, 36, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  color: var(--cream);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ─── Mobile Responsive for new elements ─── */
@media (max-width: 768px) {
  .situations-carousel { flex-wrap: nowrap; }
  .situations-carousel .situation-card { flex: 0 0 160px; }
  .reassurance-band { flex-direction: column; align-items: center; gap: 24px; }
  .anchor-nav { flex-direction: column; align-items: center; }
  .anchor-nav a { width: 80%; text-align: center; }
  .footer::before { width: calc(100% - 40px); }
  .lead-magnet-card { padding: 32px 24px; }
}
/* ─── Build · Operate · Transfer Timeline ─── */
.bot-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.bot-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 300px;
}
.bot-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.bot-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}
.bot-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.bot-step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.bot-step p {
  font-size: 0.9rem;
  color: rgba(200, 221, 245, 0.75);
  line-height: 1.6;
}
.bot-connector {
  display: flex;
  align-items: center;
  padding-top: 28px;
  flex-shrink: 0;
}
.bot-connector svg {
  width: 40px;
  height: 24px;
}

@media (max-width: 768px) {
  .bot-timeline {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .bot-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }
  .bot-step {
    max-width: 100%;
  }
}

/* ─── Sectors on light background ─── */
section[style*="off-white"] .sector-icon svg {
  stroke: var(--navy-deep);
}
section[style*="off-white"] .sector-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* ─── Situations Pertinentes Pills ─── */
.sit-pill-dark {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  line-height: 1.4;
}
.sit-pill-light {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--navy-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ─── Service cards on light backgrounds ─── */
section[style*="off-white"] .service-item,
section[style*="off-white"] .service-item.tilt-card {
  background: white;
  border: 1px solid rgba(11, 26, 46, 0.1);
  box-shadow: 0 2px 12px rgba(11, 26, 46, 0.06);
  border-radius: 12px;
}
section[style*="off-white"] .service-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(11, 26, 46, 0.1);
}
section[style*="off-white"] .card-header h4,
section[style*="off-white"] .card-header h3 {
  color: var(--navy-deep);
}
section[style*="off-white"] .card-icon svg {
  stroke: var(--navy-deep);
}
section[style*="off-white"] .service-list li {
  color: var(--navy-mid);
  font-size: 0.85rem;
}
section[style*="off-white"] .service-list li::before {
  background: var(--gold);
  opacity: 0.8;
}
section[style*="off-white"] .service-item p {
  color: var(--navy-mid);
}
section[style*="off-white"] .section-title {
  color: var(--navy-deep);
}
section[style*="off-white"] .pillar-subtitle-line,
section[style*="off-white"] .pillar-desc-text {
  color: var(--navy-mid);
}

/* ─── Impact Cards ─── */
.impact-card .card-header h3 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.15rem;
}
.impact-card .card-icon svg {
  stroke: var(--gold);
}
.impact-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.impact-list li {
  font-size: 0.88rem;
  color: rgba(200, 221, 245, 0.85);
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  line-height: 1.5;
}
.impact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* Impact cards on light background override */
section[style*="off-white"] .impact-card .card-header h3 {
  color: var(--navy-deep);
}
section[style*="off-white"] .impact-card .card-icon svg {
  stroke: var(--navy-deep);
}
section[style*="off-white"] .impact-list li {
  color: var(--navy-deep);
  opacity: 0.85;
}
section[style*="off-white"] .impact-list li::before {
  background: var(--gold);
  opacity: 1;
}

/* ═══════════════════════════════════
   LOGO CAROUSEL, infinite scroll
   ═══════════════════════════════════ */
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-carousel {
  position: relative;
  padding: 1rem 0;
}
.logo-carousel-fade-left.logo-carousel-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.logo-carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.logo-track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.logo-track:hover {
  animation-play-state: paused !important;
}

.logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.logo-item span {
  color: rgba(200,221,245,0.45);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.logo-item:hover span {
  color: rgba(200,221,245,0.8);
}
.logo-item img {
  max-width: 150px;
  max-height: 50px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.logo-item:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-item {
    width: 140px;
    height: 60px;
    padding: 0 1rem;
  }
  .logo-item span {
    font-size: 0.65rem;
  }
}

/* ============================================
   SECTOR LANDING PAGES (secteur-*.html)
   ============================================ */

/* Page Hero Enhancement */
main:has(.methodology-section) .page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #051220 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

main:has(.methodology-section) .page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

main:has(.methodology-section) .page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

main:has(.methodology-section) .page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.15;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

main:has(.methodology-section) .page-hero p {
  font-size: 1.25rem;
  color: rgba(250,248,244,0.85);
  max-width: 700px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-style: italic;
}

main:has(.methodology-section) .page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

/* Section Title Style */
.belief-section h2,
.challenges-section h2,
.methodology-section h2,
.kpi-section h2,
.references-section h2,
.cta-final h2 {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.belief-section h2::after,
.challenges-section h2::after,
.methodology-section h2::after,
.kpi-section h2::after,
.references-section h2::after,
.cta-final h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gold);
}

/* Section Padding */
.belief-section,
.challenges-section,
.methodology-section,
.kpi-section,
.references-section,
.cta-final {
  padding: 5rem 2rem;
}

/* Section Backgrounds */
.belief-section {
  background: var(--cream);
}

.challenges-section {
  background: white;
  position: relative;
}

.methodology-section {
  background: linear-gradient(180deg, var(--off-white, #f7f5f0) 0%, rgba(250,248,244,0.5) 100%);
  position: relative;
}

.kpi-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #051220 100%);
  position: relative;
}

.kpi-section h2,
.kpi-section .section-intro {
  color: var(--cream);
}

.kpi-section .section-intro {
  color: rgba(250,248,244,0.85);
}

.references-section {
  background: white;
  padding: 5rem 2rem;
}

.cta-final {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #051220 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final h2,
.cta-final p {
  color: white;
  position: relative;
  z-index: 2;
}

/* Belief Section */
.belief-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--navy-deep);
  position: relative;
  padding-left: 3rem;
}

.belief-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.belief-content p {
  margin-bottom: 1.5rem;
}

/* Section Intro */
.section-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--navy-deep);
  opacity: 0.85;
}

/* Challenges Grid */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.challenge-card {
  padding: 2.5rem 2rem;
  background: white;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(11,26,46,0.06);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: attr(data-number);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: rgba(11,26,46,0.08);
  line-height: 1;
  z-index: 0;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11,26,46,0.12);
  border-left-width: 6px;
}

.challenge-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--navy-deep);
  position: relative;
  z-index: 1;
}

.challenge-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--navy-deep);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-item {
  padding: 2.5rem 2rem;
  background: white;
  border: 1px solid rgba(11,26,46,0.08);
  border-radius: 8px;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.methodology-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 1;
}

.methodology-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(11,26,46,0.12);
  background: rgba(250,248,244,0.5);
}

.methodology-item:hover::before {
  transform: scaleX(1);
}

.methodology-item .step-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 400;
}

.methodology-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--navy-deep);
  line-height: 1.4;
}

.methodology-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--navy-deep);
  opacity: 0.8;
  flex-grow: 1;
}

/* KPI Section Specific */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Centrage des 2 dernières cartes uniquement quand on a 4 colonnes (grand desktop) */
@media (min-width: 1200px) {
  .kpi-grid .stat-item:nth-child(5):nth-last-child(2) {
    grid-column: 2 / 3;
  }
  .kpi-grid .stat-item:nth-child(6):last-child {
    grid-column: 3 / 4;
  }
}

.kpi-grid .stat-item {
  padding: 2.5rem 1.75rem;
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.kpi-grid .stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.kpi-grid .stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(11,26,46,0.12);
}

.kpi-grid .stat-item:hover::before {
  opacity: 1;
}

.kpi-grid .stat-item h3,
.kpi-grid .stat-item strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--navy-deep);
  margin-bottom: 0.85rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.kpi-grid .stat-item p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
  opacity: 1;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* References Section */
.references-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy-deep);
  background: var(--cream);
  padding: 3rem;
  border-radius: 8px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.references-content p {
  margin-bottom: 1.5rem;
}

.references-content p:last-child {
  margin-bottom: 0;
}

/* CTA Final */
.cta-final .container {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.cta-final p {
  font-size: 1.0625rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2.5rem;
}

.cta-final .cta-btn {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 50px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--ease);
  font-size: 1rem;
  letter-spacing: 0.03em;
  border: 2px solid var(--gold);
}

.cta-final .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201,168,76,0.4);
  background: var(--cream);
  color: var(--navy-deep);
}

/* Responsive Design */
@media (max-width: 1200px) {
  main:has(.methodology-section) .page-hero h1 {
    font-size: 2.75rem;
  }

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

@media (max-width: 1024px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .kpi-grid {
    gap: 1.25rem;
  }

  .challenges-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  main:has(.methodology-section) .page-hero {
    padding: 3rem 1.5rem;
  }

  main:has(.methodology-section) .page-hero h1 {
    font-size: 2.25rem;
  }

  main:has(.methodology-section) .page-hero p {
    font-size: 1rem;
  }

  .challenges-grid,
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .kpi-grid { gap: 1.5rem; }

  .belief-section,
  .challenges-section,
  .methodology-section,
  .kpi-section,
  .references-section,
  .cta-final {
    padding: 3rem 1.5rem;
  }

  .methodology-item .step-num {
    font-size: 2.5rem;
  }

  .cta-final h2 {
    font-size: 1.75rem;
  }

  .cta-final p {
    font-size: 1rem;
  }

  .references-content {
    padding: 2rem 1.5rem;
  }

  .belief-content {
    padding-left: 2rem;
  }

  .belief-content::before {
    font-size: 2.5rem;
    top: -0.3rem;
  }
}

@media (max-width: 480px) {
  main:has(.methodology-section) .page-hero h1 {
    font-size: 1.75rem;
  }

  .cta-final h2 {
    font-size: 1.5rem;
  }

  .methodology-item .step-num {
    font-size: 2rem;
  }

  .kpi-grid .stat-item h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   SECTOR TIMELINE (chronological methodology)
   ============================================ */
.timeline-grid {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4) 10%, rgba(201,168,76,0.4) 90%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  position: relative;
}
.timeline-item + .timeline-item {
  border-top: 1px solid rgba(11,26,46,0.06);
}
.timeline-marker {
  position: relative;
  padding-right: 2rem;
  text-align: right;
}
.timeline-marker::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px var(--cream);
  z-index: 2;
}
.timeline-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.timeline-phase {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  opacity: 0.65;
  margin-bottom: 0.25rem;
}
.timeline-duration {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--navy-deep);
  opacity: 0.75;
}
.timeline-body {
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 1px solid rgba(11,26,46,0.08);
}
.timeline-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin: 0 0 0.75rem;
}
.timeline-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy-deep);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}
.timeline-deliverables {
  background: white;
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
}
.deliverables-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.timeline-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-deliverables li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}
.timeline-deliverables li:last-child { margin-bottom: 0; }
.timeline-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .timeline-grid::before { left: 28px; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 3.5rem;
  }
  .timeline-marker {
    text-align: left;
    padding-right: 0;
  }
  .timeline-marker::after {
    left: -40px;
    right: auto;
    top: 12px;
  }
  .timeline-num { font-size: 2.25rem; }
  .timeline-body {
    padding-left: 0;
    border-left: none;
  }
}

/* ============================================
   CLIENT LOGOS STRIP (sector references)
   ============================================ */
.client-logos-strip {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 8px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 6px 24px rgba(11,26,46,0.06);
  text-align: center;
}
.client-logos-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  justify-items: center;
}
.client-logo-item {
  width: 100%;
  max-width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: all 0.35s var(--ease);
}
.client-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 900px) {
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem 1.5rem; }
}
@media (max-width: 600px) {
  .client-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logos-strip { padding: 2rem 1.25rem; }
}

/* =========================================================
   TRENDS SECTION — Sector pages 2026 insight block
   ========================================================= */
.trends-section { padding: 5rem 0; }
.trends-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.trends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.trends-grid .trend-item {
  background: #ffffff;
  padding: 2rem 1.75rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(11,26,46,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trends-grid .trend-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11,26,46,0.14);
}
.trends-grid .trend-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.trends-grid .trend-item p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .trends-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   COMMON CHALLENGES — Client pain points quotes
   ========================================================= */
.common-challenges-section { padding: 5rem 0; }
.common-challenges-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.challenges-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.challenge-quote {
  background: #ffffff;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--navy-deep);
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy-deep);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(11,26,46,0.06);
}
.challenge-quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
  font-family: 'DM Serif Display', serif;
  line-height: 1;
}
.challenges-conclusion {
  text-align: center;
  font-size: 1rem;
  color: #475569;
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}
@media (max-width: 900px) {
  .challenges-quotes { grid-template-columns: 1fr; }
}


/* =========================================================
   RELATED SECTORS — Cross-sector navigation
   ========================================================= */
.related-sectors-section { padding: 4rem 0; }
.related-sectors-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 2rem;
}
.related-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-sector-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border-left: 3px solid var(--gold);
  text-decoration: none;
  color: var(--navy-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-sector-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(11,26,46,0.1);
}
.related-arrow {
  color: var(--gold);
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .related-sectors-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ACCESSIBILITY — Sr-only utility and skip-link polish
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-to-content,
a.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy-deep);
  color: #ffffff;
  padding: 1rem 1.5rem;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-bottom-right-radius: 4px;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
/* High contrast focus state for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =========================================================
   PORTFOLIO PAGE LAYOUT — Modern project showcase
   ========================================================= */

/* Back link */
.pf-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  color: var(--navy-deep);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.pf-back:hover {
  color: var(--gold);
}

/* Full-width hero section */
.pf-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.pf-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pf-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pf-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(11, 26, 46, 0.85), rgba(11, 26, 46, 0.3));
  z-index: 2;
}

.pf-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.pf-hero-logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.pf-hero-logo:hover img {
  transform: scale(1.05);
}

.pf-hero-title {
  font-family: 'DM Serif Display', serif;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

/* Intro section: 2-column layout */
.pf-intro {
  width: 100%;
  padding: 5rem 2rem;
  background-color: var(--off-white);
}

.pf-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 4rem;
  align-items: start;
}

.pf-intro-title {
  font-family: 'DM Serif Display', serif;
  color: var(--navy-deep);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  font-weight: 400;
}

.pf-intro-text {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
}

.pf-intro-meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.pf-intro-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pf-intro-meta-label {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.pf-intro-meta-value {
  font-family: 'DM Serif Display', serif;
  color: var(--navy-deep);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.pf-intro-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pf-expertise-tag {
  display: inline-block;
  background-color: var(--navy-deep);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease;
}

.pf-expertise-tag:hover {
  background-color: var(--gold);
  color: var(--navy-deep);
}

/* Visual mosaic grid */
.pf-mosaic {
  width: 100%;
  padding: 4rem 2rem;
}

.pf-mosaic-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 300px;
}

.pf-mosaic-full {
  grid-column: span 6;
  grid-row: auto;
}

.pf-mosaic-half {
  grid-column: span 3;
}

.pf-mosaic-third {
  grid-column: span 2;
}

.pf-mosaic-two-thirds {
  grid-column: span 4;
}

.pf-mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pf-mosaic-item:hover {
  transform: scale(1.02);
}

.pf-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.pf-mosaic-item:hover img {
  transform: scale(1.05);
}

/* Text block: centered, ample whitespace */
.pf-text-block {
  width: 100%;
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.pf-text-block-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pf-text-block p {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
}

.pf-text-block p:last-child {
  margin-bottom: 0;
}

/* Stat section: number + description */
.pf-stat-section {
  width: 100%;
  padding: 5rem 2rem;
  background-color: var(--off-white);
}

.pf-stat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pf-stat-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pf-stat-number {
  font-family: 'DM Serif Display', serif;
  color: var(--navy-deep);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  font-weight: 400;
  margin: 0;
}

.pf-stat-desc {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
}

.pf-stat-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 400px;
}

.pf-stat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Bullet section: text + bullets with image */
.pf-bullet-section {
  width: 100%;
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.pf-bullet-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pf-bullet-grid.reversed {
  direction: rtl;
}

.pf-bullet-grid.reversed > * {
  direction: ltr;
}

.pf-bullet-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pf-bullet-title {
  font-family: 'DM Serif Display', serif;
  color: var(--navy-deep);
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
}

.pf-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-bullet-list li {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.pf-bullet-list li:last-child {
  margin-bottom: 0;
}

.pf-bullet-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.pf-bullet-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 400px;
}

.pf-bullet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* "Autres projets" footer section */
.pf-others {
  width: 100%;
  padding: 6rem 2rem;
  background-color: var(--navy-deep);
  color: #ffffff;
}

.pf-others-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pf-others-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pf-others-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.02em;
}

.pf-others-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pf-others-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  min-height: 350px;
}

.pf-others-card:hover {
  transform: translateY(-8px);
}

.pf-others-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pf-others-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.pf-others-card:hover .pf-others-card-image img {
  transform: scale(1.08);
}

.pf-others-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 26, 46, 0.95), rgba(11, 26, 46, 0.3));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  z-index: 2;
}

.pf-others-card-content {
  width: 100%;
}

.pf-others-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.pf-others-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0.5rem 0 0 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS — Portfolio Layout
   ========================================================= */

@media (max-width: 1024px) {
  .pf-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pf-mosaic-half {
    grid-column: span 6;
  }

  .pf-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
  }

  .pf-stat-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pf-stat-image {
    min-height: 300px;
  }

  .pf-bullet-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pf-bullet-image {
    min-height: 300px;
  }

  .pf-others-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pf-hero {
    min-height: 50vh;
  }

  .pf-hero-content {
    padding: 2rem;
    gap: 1.5rem;
  }

  .pf-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .pf-intro {
    padding: 3rem 1.5rem;
  }

  .pf-intro-grid {
    gap: 2rem;
  }

  .pf-intro-title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  }

  .pf-intro-meta {
    gap: 1.5rem;
  }

  .pf-mosaic {
    padding: 2.5rem 1.5rem;
  }

  .pf-mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 1rem;
  }

  .pf-mosaic-full,
  .pf-mosaic-half,
  .pf-mosaic-third,
  .pf-mosaic-two-thirds {
    grid-column: span 1 !important;
  }

  .pf-text-block {
    padding: 3rem 1.5rem;
  }

  .pf-text-block p {
    font-size: 1rem;
  }

  .pf-stat-section {
    padding: 3rem 1.5rem;
  }

  .pf-stat-content {
    gap: 1.5rem;
  }

  .pf-stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .pf-stat-image {
    min-height: 250px;
  }

  .pf-bullet-section {
    padding: 3rem 1.5rem;
  }

  .pf-bullet-grid {
    gap: 1.5rem;
  }

  .pf-bullet-title {
    font-size: 1.5rem;
  }

  .pf-bullet-image {
    min-height: 250px;
  }

  .pf-others {
    padding: 3rem 1.5rem;
  }

  .pf-others-title {
    font-size: clamp(1.75rem, 3vw, 2rem);
  }

  .pf-others-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pf-others-card {
    min-height: 250px;
  }

  .pf-others-card-overlay {
    padding: 1.5rem;
  }

  .pf-others-card-title {
    font-size: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════ */
/* Network Page v2 — OMS-inspired redesign            */
/* ═══════════════════════════════════════════════════ */

/* Hero with organic wave transition */
.nw-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.nw-hero .hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  pointer-events: none;
}
.nw-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}
.nw-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.nw-hero h1 .highlight {
  position: relative;
  display: inline;
}
.nw-hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0.05em;
  height: 0.35em;
  background: var(--gold);
  z-index: -1;
  opacity: 0.85;
}
.nw-hero .hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: nw-bounce 2s infinite;
}
.nw-hero .hero-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@keyframes nw-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
/* Organic wave SVG separator */
.nw-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}
.nw-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Intro section — large text with decorative element */
.nw-intro {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.nw-intro .deco-arc {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.nw-intro-text {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: var(--text-body);
  max-width: 900px;
}
.nw-intro-text .star-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Dual CTA — side by side cards for businesses & professionals */
.nw-dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 4rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,26,46,0.12);
}
.nw-dual-card {
  padding: 3.5rem 3rem;
  position: relative;
}
.nw-dual-card:first-child {
  background: var(--navy-deep);
  color: #fff;
}
.nw-dual-card:last-child {
  background: var(--off-white);
  color: var(--navy-deep);
}
.nw-dual-card .card-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.nw-dual-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}
.nw-dual-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.nw-dual-card:first-child p { color: rgba(200,221,245,0.8); }
.nw-dual-card .nw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nw-btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.nw-btn-gold:hover {
  background: #d4b358;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.nw-btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
}
.nw-btn-outline:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-2px);
}
.nw-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.nw-btn:hover svg {
  transform: translateX(4px);
}

/* Stats band */
.nw-stats {
  padding: 4rem 0;
  background: var(--navy-deep);
}
.nw-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.nw-stat {
  padding: 1rem;
}
.nw-stat-number {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.nw-stat-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(200,221,245,0.6);
  letter-spacing: 0.04em;
}

/* Services grid — clean cards */
.nw-services-section {
  padding: 5rem 0;
}
.nw-section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.nw-section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 3rem;
}
.nw-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.nw-service-card {
  background: #fff;
  border: 1px solid rgba(11,26,46,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
}
.nw-service-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,26,46,0.1);
}
.nw-service-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin: 0 0 0.6rem;
}
.nw-service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Value table — two column comparison */
.nw-value-section {
  padding: 5rem 0;
}
.nw-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.nw-value-col {
  padding: 2.5rem;
}
.nw-value-col:first-child {
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.nw-value-col h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.nw-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nw-value-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(200,221,245,0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}
.nw-value-list li:last-child { border-bottom: none; }
.nw-value-list li .check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Criteria — horizontal scroll cards */
.nw-criteria-section {
  padding: 5rem 0;
}
.nw-criteria-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.nw-criteria-card {
  background: #fff;
  border: 1px solid rgba(11,26,46,0.08);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: all 0.35s ease;
}
.nw-criteria-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nw-criteria-card:hover::before { opacity: 1; }
.nw-criteria-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,26,46,0.1);
}
.nw-criteria-card .card-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.nw-criteria-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin: 0 0 0.6rem;
}
.nw-criteria-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Expertise — two column with lists */
.nw-expertise-section {
  padding: 5rem 0;
}
.nw-expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.nw-expertise-col h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 0 1.2rem;
}
.nw-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nw-expertise-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(200,221,245,0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nw-expertise-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Values band — horizontal */
.nw-values-band {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nw-value-item {
  text-align: center;
}
.nw-value-item .icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.nw-value-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 0.3rem;
}
.nw-value-item p {
  font-size: 0.8rem;
  color: rgba(200,221,245,0.5);
  margin: 0;
}

/* Final dual CTA */
.nw-final-cta {
  padding: 5rem 0;
}
.nw-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.nw-final-card {
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.nw-final-card:first-child {
  background: var(--navy-deep);
  color: #fff;
}
.nw-final-card:last-child {
  background: var(--off-white);
  color: var(--navy-deep);
  border: 1px solid rgba(11,26,46,0.08);
}
.nw-final-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 0.8rem;
}
.nw-final-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.nw-final-card:first-child p { color: rgba(200,221,245,0.7); }

/* Responsive Network v2 */
@media (max-width: 900px) {
  .nw-dual-cta, .nw-value-grid, .nw-expertise-grid, .nw-final-grid {
    grid-template-columns: 1fr;
  }
  .nw-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nw-criteria-cards {
    grid-template-columns: 1fr 1fr;
  }
  .nw-values-band {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .nw-dual-card, .nw-value-col {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 600px) {
  .nw-services-grid, .nw-criteria-cards {
    grid-template-columns: 1fr;
  }
  .nw-hero h1 { font-size: 2.4rem; }
  .nw-dual-card { padding: 2rem 1.5rem; }
  .nw-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ─── LP Sector — Methodology horizontal slider ─── */
.lp-methodology {
  background: var(--navy-deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.lp-methodology .container {
  position: relative;
}
.lp-methodology h2 { color: var(--cream); }
.lp-methodology .section-label { color: var(--gold); }
.lp-methodology .section-intro {
  color: rgba(245,240,235,0.78);
  max-width: 740px;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 1rem;
}
.methodology-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2.5rem 0 1.25rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.08);
}
.methodology-slider::-webkit-scrollbar { height: 6px; }
.methodology-slider::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.methodology-slider::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 3px; }
.methodology-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 380px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.methodology-slide:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.methodology-slide-header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(201,168,76,0.22);
  padding-bottom: 0.85rem;
}
.methodology-slide-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.methodology-slide-phase {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,240,235,0.6);
  font-weight: 600;
}
.methodology-slide h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}
.methodology-slide-desc {
  font-size: 0.88rem;
  color: rgba(245,240,235,0.78);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.methodology-slide-livrables {
  border-top: 1px solid rgba(201,168,76,0.22);
  padding-top: 0.85rem;
  margin-top: auto;
}
.methodology-slide-livrables-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: block;
}
.methodology-slide-livrables ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.methodology-slide-livrables li {
  font-size: 0.82rem;
  color: rgba(245,240,235,0.85);
  padding: 0.2rem 0 0.2rem 0.85rem;
  position: relative;
  line-height: 1.45;
}
.methodology-slide-livrables li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.methodology-progress {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.methodology-progress-dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}
.methodology-progress-dot.active {
  background: var(--gold);
}
@media (max-width: 760px) {
  .methodology-slide { flex: 0 0 280px; min-height: 360px; }
}

/* ─── LP Sector — Exemple de mandat ─── */
.lp-mandate {
  background: var(--navy-deep);
  padding: 5rem 0;
  color: var(--cream);
  position: relative;
}
.lp-mandate h2 { color: var(--cream); }
.lp-mandate .section-intro { color: rgba(245,240,235,0.78); max-width: 740px; margin-top: 1rem; }
.mandate-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.mandate-feature-content { display: flex; flex-direction: column; gap: 1rem; }
.mandate-feature-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
}
.mandate-feature h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.25;
}
.mandate-feature-desc {
  color: rgba(245,240,235,0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.mandate-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 6px;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mandate-feature-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,168,76,0.35);
}
.mandate-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,240,235,0.04);
  border-radius: 12px;
  padding: 2rem;
  min-height: 220px;
}
.mandate-feature-visual img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  opacity: 0.95;
}
@media (max-width: 860px) {
  .mandate-feature { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.75rem; }
  .mandate-feature-visual { min-height: 160px; padding: 1.25rem; }
}
