:root {
  /* Premium Corporate White Design System (Stripe/Apple Inspired) */
  --white: #ffffff;
  --black: #000000;

  /* Grays for subtle depth */
  --gray-25: #fcfcfc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #111827;
  --gray-900: #030712;

  /* Brand Colors (Strict Monochrome & Premium Accent) */
  --primary: #000000;
  --accent: #000000;
  --bg: #ffffff;
  --indigo-main: #4f46e5;
  --teal-accent: #0d9488;
  --platinum: #e5e4e2;
  --platinum-dark: #b0b0b0;
  --obsidian: #0b0b0b;
  --obsidian-deep: #050505;
  --glass-reflect: rgba(255, 255, 255, 0.15);

  /* Precision Tokens */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: blur(12px);

  /* Layout & Spacing */
  --container: 1100px; /* Plus serré (était 1140px) */
  --header-h: 80px;
  --t: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Grounded Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Clean Gradients */
  --gradient-text: linear-gradient(to bottom, #000000 0%, #4b5563 100%);
  
  /* Luxury Effects — grain fixe (SVG), pas d’animation = meilleur mobile */
  --noise-opacity: 0.055;
  --section-y: 90px; /* Plus compact (était 124px) */
}

/* Rythme vertical plus compact sur mobile (style Apple, moins de “vide”) */
@media (max-width: 991px) {
  :root {
    --section-y: 72px; /* Rationnel par rapport au desktop 90px */
  }
}

/* ═══════════ GRAIN FIXE (couche dédiée, au-dessus du fond, sous l’UI) ═══════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2Ij48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC43IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI24pIiBvcGFjaXR5PSIwLjUiLz48L3N2Zz4=');
  opacity: var(--noise-opacity);
  mix-blend-mode: multiply;
}

/* Fond atmosphère — léger, ne concurrence pas le contenu */
.ambient-mesh {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 0% -20%, rgba(13, 148, 136, 0.1), transparent 58%),
    radial-gradient(ellipse 80% 70% at 100% 5%, rgba(79, 70, 229, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(0, 0, 0, 0.04), transparent 50%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 38%, #f9fafb 100%);
}

/* ═══════════ NAVBAR DROPDOWN ═══════════ */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-trigger svg {
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 16px 24px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  margin-bottom: 8px;
  width: 100%;
}

.dropdown-link:hover {
  background: var(--gray-50) !important;
}

.dropdown-link .title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  line-height: 1.2;
}

.dropdown-link .desc {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.2;
}

/* ═══════════ B2C THEME (EMERALD MATRIX) ═══════════ */
:root {
  --b2c-primary: #0d9488;
  --b2c-secondary: #2dd4bf;
  --b2c-deep: #004d40;
  --b2c-gradient: linear-gradient(135deg, #004d40 0%, #0d9488 100%);
  --b2c-glass: rgba(255, 255, 255, 0.45);
  --b2c-border: rgba(13, 148, 136, 0.12);
}

.b2c-page {
  --accent: var(--b2c-primary);
  --accent-dark: var(--b2c-deep);
}

.b2c-page .ambient-mesh {
  background: 
    radial-gradient(at 0% 0%, rgba(13, 148, 136, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(45, 212, 191, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(13, 148, 136, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(0, 77, 64, 0.08) 0px, transparent 50%);
}

.b2c-page .hero-accent-dark {
  color: var(--b2c-primary);
  background: linear-gradient(120deg, var(--b2c-primary), var(--b2c-secondary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b2c-premium-card {
  background: var(--b2c-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--b2c-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
  transition: transform var(--t), box-shadow var(--t);
}

.b2c-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.1);
}




/* ═══════════ CPF BENTO GATEWAY ═══════════ */
.cpf-bento-gateway {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cpf-bento-gateway:hover {
  transform: translateY(-4px);
  border-color: #0038a8;
}

.cpf-bento-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cpf-bento-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  max-width: 400px;
}

.cpf-bento-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ═══════════ RESET & BASE ═══════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--black);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 0.95rem;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--black);
}

section {
  padding: var(--section-y) 0;
  position: relative;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}

/* ═══════════ COMPONENTS ═══════════ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 100px;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #222;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-300);
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 80px;
  max-width: 700px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem); /* Plus compact */
  margin-bottom: 20px;
}

.section-title-services {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.section-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--gray-600);
  font-weight: 400;
  max-width: 560px;
  margin-top: 0;
}

.section-lead-narrow {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header.center,
.section-header-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.section-header-services {
  text-align: right;
  margin-bottom: 40px;
  max-width: none;
}

.section-header-services .section-lead {
  margin-left: auto;
}

.sector-hint-strong {
  font-weight: 600;
  color: var(--gray-800);
}

.stats-banner-wrap {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 40px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 2px;
}

/* ═══════════ NAVBAR ═══════════ */
/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,0.12);
  width: fit-content;
  border-radius: 100px;
  height: 72px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.on-dark .navbar {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,0.15);
  top: 12px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10050; /* Doit être au dessus de nav-links mobile */
}

.logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease, transform var(--t);
  transform-origin: left center;
}

/* Navbar blanche (pages de formation, après scroll) : logo plus compact */
.navbar.scrolled .logo-img {
  height: 110px;
}

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

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navbar-text, var(--gray-600));
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--t);
  text-decoration: none;
}

.on-dark .nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}



.on-dark .burger span {
  background: var(--white);
}

.nav-links a:hover {
  color: var(--black);
  background: rgba(0,0,0,0.05);
}

.nav-links a.active {
  color: var(--black);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10050; /* Doit être au dessus de nav-links mobile */
}

.nav-actions .btn-primary {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
  border: none;
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
  transition: all 0.22s ease;
}

.nav-actions .btn-primary:hover {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background 0.3s ease;
}

.on-dark .burger span {
  background: white;
}

/* Force black color when open since background is white */
.on-dark .burger.open span {
  background: var(--black) !important;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {

  /* ── Navbar ── */
  .navbar, .navbar.scrolled {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    height: 64px !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    background: #ffffff !important;
  }

  /* ── Nav inner : logo centré, burger à droite ── */
  .nav-inner {
    position: relative;
    justify-content: center;
    padding: 0 16px;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-img {
    height: 90px;
  }

  .nav-actions {
    position: absolute;
    right: 16px;
  }

  /* ── Burger toujours noir ── */
  .burger {
    display: flex;
  }

  .burger span,
  .on-dark .burger span {
    background: #111111 !important;
  }

  /* ── Menu overlay plein écran ── */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 28px 40px;
    background: #ffffff;
    overflow-y: auto;
    z-index: 9999;
    margin: 0 !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-links.mobile-active {
    display: flex;
  }

  /* ── Liens principaux ── */
  .nav-links > a {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111 !important;
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: transparent !important;
    text-align: center;
  }

  /* ── Formations trigger ── */
  .nav-item-dropdown {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-trigger {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111 !important;
    padding: 18px 0;
    cursor: pointer;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: transparent !important;
    border-radius: 0;
    width: 100%;
  }

  .dropdown-trigger svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: #888;
  }

  .nav-item-dropdown.mobile-open .dropdown-trigger svg {
    transform: rotate(180deg);
    color: var(--teal-accent);
  }

  /* ── Dropdown contenu ── */
  .dropdown-content {
    display: none !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px;
    flex-direction: column;
    gap: 0;
  }

  .nav-item-dropdown.mobile-open .dropdown-content {
    display: flex !important;
  }

  /* ── Sous-liens formation (même style que les autres liens) ── */
  .dropdown-content a.dropdown-link {
    display: block !important;
    padding: 14px 0;
    background: transparent !important;
    border: none;
    border-radius: 0;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-content a.dropdown-link::before,
  .dropdown-content a.dropdown-link::after {
    display: none;
  }

  .dropdown-link .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #555 !important;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .dropdown-link .desc {
    display: none;
  }

  /* ── Section contact mobile ── */
  .nav-mobile-connect {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
  }

  .nav-mobile-connect h5 {
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .connect-links {
    display: flex;
    gap: 20px;
  }

  .connect-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
  }

  .connect-link svg {
    color: var(--teal-accent);
  }
}

/* Hide mobile connect section globally (shown only in mobile query) */
.nav-mobile-connect {
  display: none;
}

/* ═══════════ HERO V2 — éditorial, image hero.png, sans effet machine à écrire ═══════════ */
.hero-v2 {
  position: relative;
  padding-top: calc(var(--header-h) + 0.5rem);
  padding-bottom: clamp(48px, 8vw, 100px);
  min-height: min(100vh, 1080px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ═══════════ HERO V3 — inspiré banner (orbes outils + titre centré) ═══════════ */
.hero-v3 {
  position: relative;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: clamp(56px, 7vw, 110px);
  overflow: hidden;
}

/* ═══════════ HERO V4 — Apple minimal, WOW immédiat (centré + parallax subtil) ═══════════ */
.hero-v4 {
  position: relative;
  padding-top: calc(var(--header-h) + 18px);
  padding-bottom: clamp(56px, 7vw, 120px);
  overflow: hidden;
}

.hero-v4-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-v4-glow {
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(circle at 50% 15%, rgba(79, 70, 229, 0.14), transparent 55%),
    radial-gradient(circle at 12% 30%, rgba(13, 148, 136, 0.10), transparent 52%),
    radial-gradient(circle at 88% 35%, rgba(0, 0, 0, 0.06), transparent 55%);
  opacity: 0.9;
  filter: blur(2px);
}

.hero-v4-rings {
  position: absolute;
  inset: -45% -25%;
  opacity: 0.75;
  background:
    radial-gradient(circle at 50% 40%,
      transparent 0 18%,
      rgba(0, 0, 0, 0.05) 18.2% 18.45%,
      transparent 18.7% 27%,
      rgba(79, 70, 229, 0.055) 27.2% 27.45%,
      transparent 27.7% 36%,
      rgba(13, 148, 136, 0.05) 36.2% 36.45%,
      transparent 36.7% 46%,
      rgba(0, 0, 0, 0.035) 46.2% 46.45%,
      transparent 46.7% 100%);
  filter: blur(0.2px);
}

.hero-v4-inner {
  position: relative;
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-v4-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.hero-v4-title {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); /* Réduit (était 4.9rem max) */
}

.hero-v4-em {
  background: linear-gradient(105deg, #000 0%, #111827 45%, #4f46e5 78%, #0d9488 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v4-title-sub {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: clamp(1.25rem, 1.6vw + 0.7rem, 2rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: var(--gray-700);
}

.hero-v4-sub {
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 1.05vw + 0.82rem, 1.25rem);
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 760px;
}

.hero-v4-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-v4-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-v4-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-v4-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 28px 60px -36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
}

.hero-orb::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(13, 148, 136, 0.12));
  opacity: 0.45;
  pointer-events: none;
}

.hero-orb span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: -0.01em;
}

.hero-orb-1 { left: 8%; top: 22%; }
.hero-orb-2 { right: 10%; top: 18%; }
.hero-orb-3 { left: 10%; top: 62%; }
.hero-orb-4 { right: 12%; top: 66%; }
.hero-orb-5 { right: 22%; top: 40%; }

.hero-v4-media {
  width: 100%;
  max-width: 1080px;
  position: relative;
  z-index: 2;
}

.folder-box {
  position: relative;
  width: 100%;
  padding: 10px; /* Space for the frame */
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.folder-box:hover {
  transform: scale(1.02);
}

.folder-cut-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  clip-path: polygon(0 0, 60% 0, 70% 30px, 100% 30px, 100% 100%, 0 100%);
}

.folder-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 32px;
  pointer-events: none;
}

.hero-v4-media-frame {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow:
    0 70px 140px -80px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-v4-media-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .hero-v4-rings,
  .hero-v4-glow,
  .hero-v4-media {
    transform: none !important;
  }
}

@media (max-width: 991px) {
  .hero-v4 {
    padding-top: calc(var(--header-h) + 8px);
  }

  .hero-v4-orbit {
    opacity: 0.55;
  }

  .hero-orb { display: none; }
  .hero-orb-5 { display: inline-flex; left: 50%; top: 18%; right: auto; transform: translateX(-50%); }
}

/* ═══════════ HERO V6 — Obsidian Platinum "The Ultimate Lens" ═══════════ */
.hero-v6 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian-deep);
  color: var(--white);
  padding: 140px 0 180px;
}

.hero-v6-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-v6-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}

.hero-v6-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: studio-sweep 12s linear infinite;
}

@keyframes studio-sweep {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

.hero-v6-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 3D Glass Deck */
.glass-deck-container {
  position: relative;
  height: 500px;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  position: absolute;
  width: 110px;
  height: 145px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--glow-color, rgba(255,255,255,0.2)); /* Colored Rim Light */
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 
    0 25px 50px -10px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  cursor: pointer;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 40px 80px -15px rgba(0,0,0,0.6),
    0 0 20px rgba(255,255,255,0.1);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 255, 255, 0.12) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Card Float Variants */
@keyframes card-float-1 {
  0%, 100% { transform: var(--base-transform) translateY(0) rotate(var(--base-rotation)); }
  50% { transform: var(--base-transform) translateY(-15px) rotate(calc(var(--base-rotation) + 2deg)); }
}
@keyframes card-float-2 {
  0%, 100% { transform: var(--base-transform) translateY(0) rotate(var(--base-rotation)); }
  50% { transform: var(--base-transform) translateY(12px) rotate(calc(var(--base-rotation) - 1.5deg)); }
}
@keyframes card-float-3 {
  0%, 100% { transform: var(--base-transform) translateX(0) translateY(0); }
  50% { transform: var(--base-transform) translateX(8px) translateY(-10px); }
}

.glass-card:hover::after {
  opacity: 1;
}

.g-card-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 3;
}

.brand-logo-color {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 1 !important;
  transition: var(--t);
  filter: none !important;
  background: #ffffff !important;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
}

/* Logo specific Glows (Intensified) */
.brand-logo-color::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: var(--glow-color, rgba(255,255,255,0.1));
  filter: blur(20px);
  opacity: 0.45;
  z-index: -1;
  border-radius: 50%;
  transition: opacity 0.4s ease;
}

.glass-card:hover .brand-logo-color::before {
  opacity: 0.6;
}

.g-card-1 { --glow-color: rgba(16, 185, 129, 0.3); } /* ChatGPT Green */
.g-card-2 { --glow-color: rgba(249, 115, 22, 0.3); } /* Claude Orange */
.g-card-3 { --glow-color: rgba(6, 182, 212, 0.3); }  /* Perplexity Cyan */
.g-card-4 { --glow-color: rgba(139, 92, 246, 0.3); } /* Mistral Purple */
.g-card-5 { --glow-color: rgba(59, 130, 246, 0.4); }  /* Gemini Blue */
.g-card-6 { --glow-color: rgba(37, 99, 235, 0.3); }  /* Copilot Blue */

.g-logo-antigravity {
  border-radius: 12px;
  background: white;
}

.g-logo-mistral {
  padding: 8px !important;
  background: white !important;
}

.g-logo-copilot {
  padding: 5px !important;
  background: white !important;
}

.glass-card:hover .brand-logo-color {
  opacity: 1 !important;
  transform: scale(1.08); /* No filter change here */
}

.g-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: var(--t);
}

.glass-card:hover .g-label {
  color: var(--white);
}

/* Antigravity Special Card */
.g-card-primary {
  width: 170px;
  height: 210px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 40px 80px -20px rgba(0,0,0,0.8),
    inset 0 1px 1px rgba(255,255,255,0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.antigravity-icon-obsidian {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 36px;
  background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
  -webkit-background-clip: text; background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* Card Positioning (Cloud Burst Layout - 100% Visibility) */
.g-card-1 { 
  --base-transform: translate3d(-130px, -160px, 40px) scale(0.98);
  --base-rotation: -6deg;
  animation: card-float-1 9s ease-in-out infinite;
}
.g-card-2 { 
  --base-transform: translate3d(140px, -140px, -30px) scale(0.98);
  --base-rotation: 8deg;
  animation: card-float-2 10.5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.g-card-3 { 
  --base-transform: translate3d(-30px, 180px, 70px) scale(0.98);
  --base-rotation: 2deg;
  animation: card-float-3 11s ease-in-out infinite;
  animation-delay: -3.s;
  z-index: 15;
}
.g-card-4 { 
  --base-transform: translate3d(-190px, 20px, 30px) scale(0.98);
  --base-rotation: -4deg;
  animation: card-float-2 8.5s ease-in-out infinite;
  animation-delay: -0.8s;
}
.g-card-5 { 
  transform: translate3d(0, -10px, 140px) scale(1.12); 
  z-index: 25; 
  box-shadow: 0 60px 120px -20px rgba(0,0,0,1), inset 0 1px 1px rgba(255,255,255,0.5);
  border-top-color: #3b82f6;
}
.g-card-6 { 
  --base-transform: translate3d(190px, 30px, 10px) scale(0.98);
  --base-rotation: 4deg;
  animation: card-float-1 10s ease-in-out infinite;
  animation-delay: -2s;
}

.g-card-1, .g-card-2, .g-card-3, .g-card-4, .g-card-6 {
  transform: var(--base-transform) rotate(var(--base-rotation));
}

/* Content Styles */
.hero-v6-content {
  text-align: left;
}

.hero-v6-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--platinum);
  margin-bottom: 24px;
}

.hero-v6-title {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #ffffff !important;
}

.hero-v6-em {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
}

.hero-v6-sub {
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  line-height: 1.55;
  color: var(--gray-400);
  margin: 32px 0 44px;
  max-width: 560px;
}

.hero-v6-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.btn-platinum {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.btn-platinum:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255,255,255,0.3);
}

.btn-ghost-platinum {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost-platinum:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--white);
}

.hero-v6-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v6-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
}

.hero-v6-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 5;
}

@media (max-width: 1080px) {
  .hero-v6-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 80px;
  }
  
  .hero-v6-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: 1;
  }
  
  .glass-deck-container {
    order: 2;
    height: 400px;
  }
  
  .hero-v6-ctas {
    justify-content: center;
  }
  
  .hero-v6-proof {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Deck container plus compact sur mobile */
  .glass-deck-container {
    height: 320px;
    perspective: 800px;
    order: 2;
  }

  /* Toutes les cartes réduites */
  .glass-card {
    width: 110px;
    height: 140px;
    padding: 14px;
    border-radius: 14px;
  }

  /* Card primaire (Gemini) — centrée et plus petite */
  .g-card-primary {
    width: 130px;
    height: 160px;
  }

  /* Repositionnement propre en grille 2x3 + Gemini au centre */
  .g-card-1 { transform: translate(-85px, -120px) rotate(-3deg); }
  .g-card-2 { transform: translate(85px, -120px) rotate(3deg); }
  .g-card-3 { transform: translate(-85px, 120px) rotate(2deg); }
  .g-card-5 { transform: translate(0, 0) scale(1.1); z-index: 10; }
  .g-card-4 { transform: translate(-85px, 0px) rotate(-2deg); }
  .g-card-6 { transform: translate(85px, 0px) rotate(2deg); }
  /* La carte 3 est déplacée en bas à gauche, g-card-6 en bas à droite */
  .g-card-3 { transform: translate(-85px, 120px) rotate(2deg); }
  .g-card-6 { transform: translate(85px, 120px) rotate(-2deg); }
  /* Ajustement final pour éviter les chevauchements */
  .g-card-1 { transform: translate(-90px, -110px) rotate(-3deg); }
  .g-card-2 { transform: translate(90px, -110px) rotate(3deg); }
  .g-card-4 { transform: translate(-100px, 5px) rotate(-2deg); }
  .g-card-6 { transform: translate(100px, 5px) rotate(2deg); }
  .g-card-3 { transform: translate(0, 110px) rotate(0deg); }

  /* Labels lisibles */
  .g-label {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  /* Logos légèrement réduits */
  .brand-logo-color {
    width: 36px;
    height: 36px;
  }
}

.hero-v3-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-v3-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 10%, rgba(79, 70, 229, 0.12), transparent 60%),
    radial-gradient(ellipse 55% 45% at 16% 25%, rgba(13, 148, 136, 0.10), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 35%, rgba(0, 0, 0, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,1) 70%);
}

.hero-v3-rings {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 50% 45%,
      transparent 0 22%,
      rgba(0, 0, 0, 0.045) 22.2% 22.6%,
      transparent 22.8% 31%,
      rgba(79, 70, 229, 0.05) 31.2% 31.6%,
      transparent 31.8% 40%,
      rgba(13, 148, 136, 0.045) 40.2% 40.6%,
      transparent 40.8% 100%);
  opacity: 0.8;
  filter: blur(0.2px);
  transform: translateY(-2%);
}

.hero-v3-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 980px;
}

.hero-v3-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.hero-v3-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  margin: 0 0 18px;
  color: var(--black);
}

.hero-v3-em {
  background: linear-gradient(105deg, #000000 0%, #1f2937 45%, #4f46e5 75%, #0d9488 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v3-sub {
  font-size: clamp(1.05rem, 1.1vw + 0.82rem, 1.25rem);
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 760px;
  margin: 0 0 26px;
}

.hero-v3-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-v3-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-v3-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Orbes outils (inspiré capture) */
.hero-v3-tools {
  position: absolute;
  inset: -40px 0 auto 0;
  height: 360px;
  pointer-events: none;
}

.tool-orb {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  animation: orb-float 6.5s ease-in-out infinite;
}

.tool-orb::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(60px circle at 50% 40%, rgba(79, 70, 229, 0.12), transparent 70%);
  opacity: 1;
  pointer-events: none;
}

.tool-orb-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
  color: var(--black);
}

.tool-orb-label {
  position: absolute;
  bottom: -18px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.orb-1 { left: 6%; top: 56%; animation-delay: -1.2s; }
.orb-2 { left: 14%; top: 18%; width: 84px; height: 84px; animation-delay: -3.1s; }
.orb-3 { right: 14%; top: 22%; width: 88px; height: 88px; animation-delay: -2.0s; }
.orb-4 { right: 6%; top: 58%; width: 96px; height: 96px; animation-delay: -4.2s; }

@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Media hero.png en “carte” */
.hero-v3-media {
  width: 100%;
  max-width: 1040px;
}

.hero-v3-media-frame {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow:
    0 55px 110px -55px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-v3-media-img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .tool-orb {
    animation: none;
  }
}

@media (max-width: 991px) {
  .hero-v3 {
    padding-top: calc(var(--header-h) + 12px);
  }

  .hero-v3-tools {
    height: 240px;
    opacity: 0.55;
  }

  .tool-orb {
    width: 76px;
    height: 76px;
    animation: none;
  }

  .tool-orb-label {
    display: none;
  }

  .orb-1 { left: 4%; top: 62%; }
  .orb-2 { left: 10%; top: 18%; }
  .orb-3 { right: 10%; top: 18%; }
  .orb-4 { right: 4%; top: 62%; }
}

.hero-inner-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.executive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  margin-top: 24px;
  transition: opacity 0.3s ease;
  letter-spacing: -0.01em;
}

.executive-link:hover {
  opacity: 0.7;
}

.executive-link svg {
  transition: transform 0.3s ease;
}

.executive-link:hover svg {
  transform: translateX(4px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-accent), var(--indigo-main));
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.18);
  flex-shrink: 0;
}

.hero-title-v2 {
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0.02em;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.75rem, 4.2vw + 1.5rem, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--black);
}

.hero-title-em {
  background: linear-gradient(105deg, #000000 0%, #1f2937 40%, #0d9488 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  font-size: clamp(1.5rem, 2vw + 0.8rem, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--gray-700);
  margin-top: 0.35em;
}

.hero-sub-v2 {
  font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.22rem);
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-glow {
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(13, 148, 136, 0.12);
}

.btn-glow:hover {
  box-shadow:
    0 12px 32px rgba(13, 148, 136, 0.18),
    0 0 0 1px rgba(13, 148, 136, 0.2);
}

.btn-ghost-strong {
  border: 2px solid var(--gray-300);
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-500);
}

.hero-trust-label {
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.hero-trust-link {
  color: var(--gray-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-trust-link:hover {
  color: var(--black);
}

/* Bloc visuel hero.png */
.hero-visual-v2 {
  position: relative;
  padding: 0;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.hero-photo-shell {
  position: relative;
  width: 100%;
}

.hero-photo-ring {
  position: absolute;
  inset: -3px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.35), rgba(79, 70, 229, 0.2), rgba(0, 0, 0, 0.06));
  z-index: 0;
  opacity: 0.9;
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow:
    0 50px 100px -40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-v2:hover .hero-photo {
  transform: scale(1.03);
}

.hero-photo-float {
  position: absolute;
  z-index: 2;
  bottom: 14%;
  left: -12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: hero-float-badge 5s ease-in-out infinite;
}

.hero-float-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.hero-float-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}

@keyframes hero-float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-float {
    animation: none;
  }

  .hero-visual-v2:hover .hero-photo {
    transform: none;
  }
}

@media (max-width: 991px) {
  .hero-inner-v2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub-v2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-visual-v2 {
    justify-self: center;
    max-width: 480px;
    order: -1;
  }

  .hero-photo-float {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 8%;
    animation: none;
  }
}

/* Compat anciennes classes hero (sans hero-v2) */
.hero:not(.hero-v2) {
  padding-top: var(--header-h);
  min-height: auto;
}

.hero-inner:not(.hero-inner-v2) {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-title:not(.hero-title-v2) {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-sub:not(.hero-sub-v2) {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 40px;
}

.main-hero-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ═══════════ PROOF ═══════════ */
.proof-section {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.proof-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.trust-logos {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.trust-logos::before,
.trust-logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
}

.trust-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50) 0%, transparent 100%);
}

.trust-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 80px;
  align-items: center;
  white-space: nowrap;
  animation: scroll-marquee 25s linear infinite;
  padding: 0 40px;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════ EXECUTIVE STATS BAR (PRESTIGE) ═══════════ */
.executive-stats-bar-wrap {
  position: relative;
  z-index: 10;
  margin-top: -40px; /* Chevauchement léger sur le hero */
  padding-bottom: 60px;
}

.executive-stats-bar {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--gray-50);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-label small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-300);
  margin-top: 2px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .executive-stats-bar {
    flex-direction: column;
    gap: 30px;
  }
  .stat-sep {
    width: 40px;
    height: 1px;
  }
}

.marquee-track img {
  height: 32px;
  opacity: 0.3;
  filter: grayscale(1) brightness(0);
  transition: var(--t);
}

.marquee-track img:hover {
  opacity: 0.8;
}

.stats-premium-banner {
  background: linear-gradient(165deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: clamp(20px, 3vw, 32px);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.stat-item-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num-blue {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-bold {
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.stat-sub {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* ═══════════ INDUSTRIES SECTOR HUB (PRECISION SEGMENT) ═══════════ */
.industries-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

.sector-hub {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sector-nav {
  display: flex;
  background: var(--gray-50);
  padding: 6px;
  border-radius: 14px;
  gap: 4px;
  align-self: center;
  width: 100%;
  max-width: 800px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.sector-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--gray-500);
  gap: 6px;
}

.sector-btn svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.sector-btn span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sector-btn:hover {
  color: var(--black);
  background: rgba(255,255,255,0.5);
}

.sector-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.sector-btn.active svg {
  opacity: 1;
  color: var(--teal-accent);
}

.sector-display {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 30px;
  min-height: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sector-display-content {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.sector-kpi-large {
  display: inline-block;
  padding: 4px 14px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.sector-kpi-large strong { color: var(--teal-accent); }

.sector-text-desc {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 24px;
}

.sector-testimonial {
  border-top: 1px solid var(--gray-50);
  padding-top: 20px;
}

.t-quote {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
}

.t-author {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--black);
}

@media (max-width: 850px) {
  .sector-nav { display: grid; grid-template-columns: repeat(3, 1fr); }
}

.sector-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════ SERVICES BLUEPRINT ARCHITECTURAL (UNIQUE) ═══════════ */
.expertise-blueprint-wrap {
  position: relative;
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 80px 0;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 30px 30px; /* Micro-grid aspect */
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 40px;
}

.blueprint-axis {
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 1px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.axis-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.1) 85%, transparent);
}

.axis-node {
  width: 10px;
  height: 10px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.node-top { margin-top: 40px; }
.node-bottom { margin-top: auto; margin-bottom: 40px; }

.node-mid {
  margin: auto 0;
  width: 0; height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-mini {
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-badge-mini .badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--teal-accent);
}

.trust-badge-mini .badge-txt {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.blueprint-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px; /* Espace pour l'axe central */
  position: relative;
  z-index: 1;
}

.blueprint-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pillar-annotation {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.pillar-ui-box {
  padding: 0;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pillar-left { text-align: right; justify-self: end; }
.pillar-left .pillar-ui-box { margin-left: auto; }
.pillar-right { text-align: left; justify-self: start; }

.expert-icon-reticle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--black);
  position: relative;
}

.pillar-left .expert-icon-reticle { margin-left: auto; }

.expert-icon-reticle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(0,0,0,0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.blueprint-pillar h3 {
  font-size: 1.6rem;
  font-weight: 850;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.highlight-accent {
  color: var(--teal-accent);
}

.blueprint-pillar p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 28px;
  flex: 1; /* Pousse le bouton vers le bas */
}

.blueprint-link {
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.blueprint-link:hover { opacity: 0.7; }

/* Connecteurs Photons */
.connector-line {
  position: absolute;
  top: 140px;
  height: 1px;
  background: rgba(0,0,0,0.08);
  width: 80px;
}

.connector-left {
  right: -80px;
  background: linear-gradient(to left, var(--teal-accent), rgba(0,0,0,0.08));
}

.connector-right {
  left: -80px;
  background: linear-gradient(to right, var(--teal-accent), rgba(0,0,0,0.08));
}

@media (max-width: 991px) {
  .expertise-blueprint-wrap {
    padding: 60px 20px;
  }
  .blueprint-axis { display: none; }
  .blueprint-pillars {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }
  .blueprint-pillar { justify-self: start; text-align: left; }
  .pillar-left .pillar-ui-box, .pillar-left .expert-icon-reticle { margin-left: 0; }
  .connector-line { display: none; }
}

.link-discover {
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t);
}

.link-discover:hover {
  text-decoration: underline;
}

/* ═══════════ OFFRES SECTION (ULTRA PREMIUM VERCEL) ═══════════ */
.offres-section {
  padding: var(--section-y) 0;
  background: var(--gray-25);
  position: relative;
}

.premium-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 840px; /* Réduit pour plus de densité */
  margin: 0 auto;
}

@media(min-width: 850px) {
  .premium-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.premium-pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 28px; /* Plus compact */
  border-radius: 12px; /* Plus moderne/sec */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  max-width: 380px; /* Taille optimale réduite */
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.premium-pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--black);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

/* On enlève le style sombre massif */
.p-card-dark {
  background: var(--white); /* Même fond pour l'unité */
  border-color: var(--black); /* Distinction par la bordure noir pur */
}

.p-popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--indigo-main);
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: white;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0 0 12px 12px;
}

.p-card-header {
  margin-bottom: 24px;
}

.p-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f4f4f5;
  color: #18181b;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.p-badge-dark {
  background: rgba(255,255,255,0.1);
  color: var(--gray-200);
}

.p-card-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.p-card-dark .p-card-header h3 {
  color: var(--white);
}

.p-card-price {
  margin-top: auto; /* Pousse le prix vers le bas */
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.05); /* Ligne de séparation fine */
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.p-label-starting {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.p-card-price .amount {
  font-size: 1.4rem; /* Réduction drastique de la taille */
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.p-currency {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.p-period {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.p-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.p-card-dark .p-card-desc {
  color: var(--gray-300);
}

.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.p-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.p-card-dark .p-features li {
  color: var(--gray-100);
}

.p-features svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #000000;
  flex-shrink: 0;
}

.p-card-dark .p-features svg {
  color: var(--white);
}

.p-price-discreet {
  margin-top: auto;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-50);
}

.p-actions {
  display: flex;
  gap: 8px; /* Tighter for minimalist look */
}

.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  white-space: normal; /* Autorise le retour à la ligne pour éviter la coupure */
  text-align: center;
}

.p-btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.p-btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-1.5px);
  box-shadow: 
    0 4px 10px rgba(0,0,0,0.1),
    0 10px 20px rgba(0,0,0,0.05);
}

.p-btn-outline {
  background: transparent;
  border: 1px solid var(--gray-100);
  color: var(--black);
}

.p-btn-outline:hover {
  background: #fafafa;
  border-color: var(--gray-300);
  transform: translateY(-1.5px);
}
.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(
    520px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(13, 148, 136, 0.09) 0%,
    rgba(0, 0, 0, 0.035) 42%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 10;
}

/* Cartes sombres — spotlight clair */
.p-card-dark.glow-card::before,
.bento-small.glow-card::before {
  background: radial-gradient(
    520px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(255, 255, 255, 0.12) 0%,
    rgba(13, 148, 136, 0.06) 38%,
    transparent 72%
  );
}

.glow-card:hover::before {
  opacity: 1;
}

/* Sur mobile/tactile : on garde le style, mais on retire les “hover effets” coûteux */
@media (hover: none), (pointer: coarse) {
  .glow-card::before,
  .glow-card:hover::before {
    opacity: 0 !important;
  }

  .bento-item:hover,
  .premium-pricing-card:hover,
  .p-card-dark:hover {
    transform: none !important;
  }

  .sector-card:hover .sector-card-inner {
    transform: none !important;
  }
}

/* Flip secteur : spotlight au-dessus de la face avant uniquement au survol carte */
.sector-card.glow-card::before {
  z-index: 5;
  border-radius: 12px;
}

.reveal.stagger-1 { transition-delay: 0.1s; }
.reveal.stagger-2 { transition-delay: 0.2s; }
.reveal.stagger-3 { transition-delay: 0.3s; }
.reveal.stagger-4 { transition-delay: 0.4s; }

.sector-card:hover, .offer-card:hover, .service-duo-card:hover {
  transition-delay: 0s !important;
}

.premium-list {
  list-style: none;
  margin-top: 24px;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--gray-700);
}

/* ═══════════ FUNDING V2 (LUMINOUS BENTO) ═══════════ */
.funding-v2-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.funding-v2-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.funding-v2-card {
  border-radius: 32px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.funding-v2-info {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.funding-v2-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 20px;
}

.funding-v2-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.funding-v2-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

.funding-v2-logos img {
  height: 44px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: all 0.3s ease;
}

.funding-v2-logos img:nth-child(1) {
  height: 52px;
}

.funding-v2-logos img:nth-child(2) {
  height: 75px; 
  transform: translateY(2px);
}

.funding-v2-info:hover .funding-v2-logos img {
  opacity: 1;
  filter: grayscale(0%);
}

.funding-v2-action {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.f-glow-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
  opacity: 0.6;
}

.funding-v2-action:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(20, 184, 166, 0.3);
  border-color: rgba(20, 184, 166, 0.4);
}

.f-action-content {
  position: relative;
  z-index: 2;
}

.f-action-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-accent);
  margin-bottom: 30px;
  box-shadow: 0 10px 20px -5px rgba(20, 184, 166, 0.2);
  transition: transform 0.3s ease;
}

.funding-v2-action:hover .f-action-icon {
  transform: scale(1.1) rotate(-10deg);
}

.f-action-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.f-action-content p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 40px;
  line-height: 1.5;
}

.f-btn-pill {
  display: inline-flex;
  align-items: center;
  background: var(--teal-accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.funding-v2-action:hover .f-btn-pill {
  transform: translateX(5px);
  background: #0f766e;
}

@media (max-width: 992px) {
  .funding-v2-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .funding-v2-title {
    font-size: 2.2rem;
  }
  .funding-v2-card {
    padding: 32px;
  }
}

.p-for {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-top: 12px;
  line-height: 1.45;
}

.p-for-dark {
  color: var(--gray-400);
}

.sector-cta-wrap {
  text-align: center;
  margin-top: 60px;
}

.btn-catalog {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t), color var(--t), transform var(--t);
}

.btn-catalog:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════ FAQ Luminous Elite (Bento) ═══════════ */
.faq-elite-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.faq-elite-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-header-side {
  position: sticky;
  top: 120px;
}

.faq-elite-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 24px;
}

.faq-elite-lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

.faq-contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.fcc-icon {
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal-accent);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-contact-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}

.faq-contact-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.fcc-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-accent);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.fcc-link:hover {
  color: #0f766e;
}

.faq-items-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-elite-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 0 32px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.faq-elite-item:hover {
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.05);
}

.faq-elite-item.expanded {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.08);
}

.faq-elite-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-elite-item.expanded .faq-elite-q {
  color: var(--teal-accent);
}

.icon-plus-minus {
  width: 24px;
  height: 24px;
  color: var(--gray-400);
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-elite-item.expanded .icon-plus-minus {
  color: var(--teal-accent);
  transform: rotate(90deg);
}

.faq-elite-item.expanded .icon-plus { display: none; }
.faq-elite-item.expanded .icon-minus { display: block !important; }

.faq-elite-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-elite-item.expanded .faq-elite-a {
  max-height: 400px;
}

.faq-elite-a p {
  padding-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.faq-elite-a p strong {
  color: var(--black);
  font-weight: 600;
}

@media (max-width: 992px) {
  .faq-elite-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-header-side {
    position: relative;
    top: 0;
  }
  .faq-elite-title {
    font-size: 2.2rem;
  }
}

/* ═══════════ EXECUTIVE BOOKING CARD (CONTACT) ═══════════ */
.contact-section {
  padding: 100px 0;
}

.executive-booking-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  display: grid;
  grid-template-columns: 420px 1fr;
}

.booking-info {
  padding: 60px;
  background: #fdfdfd;
  border-right: 1px solid var(--gray-100);
}

.booking-info h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--black);
}

.booking-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.6;
}

.booking-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
}

.booking-features li svg {
  color: var(--teal-accent);
}

.booking-calendly {
  background: var(--white);
}

.calendly-embed {
  height: 700px !important;
  min-height: 700px !important;
}

@media (max-width: 950px) {
  .executive-booking-card { grid-template-columns: 1fr; }
  .booking-info { padding: 40px; border-right: none; border-bottom: 1px solid var(--gray-100); }
  .booking-info h3 { font-size: 1.8rem; }
}

/* ═══════════ METHODOLOGY PHASE STEPS (PRESTIGE) ═══════════ */
.process-section {
  background: var(--white);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.methodology-pipeline-wrap {
  margin-top: 60px;
  position: relative;
}

.prog-executive-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding: 24px;
  background: var(--gray-25);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1025px) {
  .pipeline-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  border-color: var(--teal-accent);
}

.step-watermark {
  position: absolute;
  top: -10px;
  right: -5px;
  color: rgba(0,0,0,0.02);
  font-size: 6rem;
  font-weight: 900;
  pointer-events: none;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--teal-accent);
  text-transform: uppercase;
}

.step-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-accent);
  border-radius: 50%;
}

.step-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Connecteur Flux de Fond (Ligne laser) */
.pipeline-connector-flow {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.05) 80%, transparent);
  z-index: 1;
  display: none; /* Only desktop */
}

@media (min-width: 1025px) {
  .pipeline-connector-flow {
    display: block;
  }
}

@media (max-width: 768px) {
  .timeline-track-scroll {
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .timeline-track-wrapper {
    width: 600px;
    margin-bottom: 30px;
  }
  .timeline-cards {
    min-height: 220px;
  }
}

/* ═══════════ TESTIMONIALS (MASONRY & WATERMARK) ═══════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.testimonials-grid .testimonial-card:nth-child(2) {
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 36px 32px; /* Réduit (était 48px 40px) */
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}

.testimonial-card::before {
  content: '“';
  font-family: serif;
  position: absolute;
  top: -60px;
  left: 20px;
  font-size: 240px;
  line-height: 1;
  color: var(--black);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card p, .author {
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  color: var(--gray-800);
  font-size: 0.98rem; /* Plus précis */
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-icon {
  display: none;
}

.author-info strong {
  color: var(--black);
}

/* ═══════════ FAQ ═══════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
  margin: 0 auto;
}

/* ═══════════ FAQ LUXURY MINIMALIST ═══════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s ease;
}

.faq-q {
  padding: 24px 0; /* Plus fluide (était 32px) */
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--black);
  cursor: pointer;
  background: transparent;
  border: none;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.expanded .faq-q svg {
  transform: rotate(135deg); /* Effet "plus to x" */
  color: var(--black);
}

.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.expanded .faq-a {
  max-height: 900px;
  opacity: 1;
  padding-bottom: 32px;
}

.faq-a p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 90%;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 140px 0 60px;
  background: #ffffff;
  border-top: 1px solid var(--gray-100);
}

.footer-pre {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-nav a {
  color: var(--gray-500);
  font-size: 0.95rem;
  transition: all var(--t);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-logo {
  height: 140px;
  object-fit: contain;
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--gray-500);
}

.footer-nav a {
  color: var(--gray-500);
}

.footer-nav a:hover {
  color: var(--black);
}

.mini-badge {
  height: 52px;
  object-fit: contain;
  margin-top: 16px;
  transition: all var(--t);
}

.mini-badge:hover {
  transform: scale(1.05);
}

/* ═══════════ LUXURY REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (min-width: 901px) and (max-width: 1100px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 8px 10px;
  }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-sub,
  .hero-sub-lead,
  .hero-sub-v2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 420px;
  }

  .hero-trust {
    justify-content: center;
  }

  .section-header-services {
    text-align: center;
  }

  .section-header-services .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item,
  .bento-main {
    grid-column: span 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .offres-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ═══════════ ACCESSIBILITÉ — mouvement réduit ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.active {
    transition-duration: 0.01ms !important;
  }

  .t-card {
    filter: none !important;
    transition-duration: 0.2s !important;
  }

  .bento-item:hover,
  .premium-pricing-card:hover,
  .p-card-dark:hover {
    transform: none;
  }

  .noise-overlay {
    opacity: 0.035;
  }
}
/* ═══════════ PROGRAM PAGES (PLATINUM ARCHITECTURAL) ═══════════ */
.prog-page {
  background: #fbfbfb; /* Subtle off-white for depth */
}

.prog-hero {
  padding: 120px 0 60px; /* Plus serré */
  position: relative;
  overflow: hidden;
}

.prog-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(13, 148, 136, 0.03), transparent 50%);
  pointer-events: none;
}

.hero-v6-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem); /* Maîtrisé (était 7rem max) */
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  color: #fff;
}

.prog-title-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem); /* Moins massif */
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 24px;
}

.prog-hud-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}

.metric-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-500);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.metric-pill strong {
  color: var(--black);
  margin-right: 4px;
}

.prog-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Timeline Photon Program */
.program-agenda {
  padding: 100px 0;
  position: relative;
}

.photon-path-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}

/* Floating Lens Nav */
.floating-lens-nav {
  position: sticky;
  top: 140px;
  height: fit-content;
}

.lens-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lens-nav-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: all 0.4s ease;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
}

.lens-nav-item .dot {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.lens-nav-item.active a {
  color: var(--black);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lens-nav-item.active .dot {
  transform: scale(1.5);
  background: var(--teal-accent);
}

/* Agenda Steps */
.agenda-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

.agenda-step {
  position: relative;
  padding-left: 60px;
}

.agenda-step::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 12px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s ease;
}

.agenda-step:hover::before {
  border-color: var(--teal-accent);
  box-shadow: 0 0 15px var(--teal-accent);
  background: var(--teal-accent);
}

.agenda-step::after {
  content: "";
  position: absolute;
  left: 5px; top: 30px;
  bottom: -90px;
  width: 2px;
  background: var(--gray-100);
  z-index: 1;
}

.agenda-step:last-child::after {
  display: none;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal-accent);
  margin-bottom: 12px;
}

.bento-item h3 {
  font-size: 1.35rem; /* Plus fin */
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.agenda-step h4 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Bento Glass Cards */
.glass-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}

.glass-bento-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px;
  border-radius: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-bento-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.08);
}

.glass-bento-item h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

/* Invite CTA */
.prog-invite-block {
  background: var(--black);
  color: var(--white);
  padding: 80px;
  border-radius: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 140px;
}

.prog-invite-block h2 {
  font-size: 3.5rem;
  margin-bottom: 32px;
  color: #fff !important; /* Force white */
}

@media (max-width: 1024px) {
  .prog-hero-split,
  .photon-path-wrap,
  .glass-bento-grid {
    grid-template-columns: 1fr;
  }
  .floating-lens-nav {
    display: none;
  }
  .prog-invite-block {
    padding: 60px 32px;
    margin-top: 80px;
    border-radius: 24px;
  }
  .prog-invite-block h2 {
    font-size: 2.4rem;
  }
  .glass-bento-grid {
    margin-top: 40px;
    gap: 16px;
  }
}

/* ==========================================================================
   UTILITIES & CENTERING
   ========================================================================== */
.section-lead-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

/* ==========================================================================
   RESPONSIVE — 768px (tablettes & grands smartphones)
   ========================================================================== */
@media (max-width: 768px) {

  /* --- Bloc co-construction --- */
  .coconstruct-grid {
    grid-template-columns: 1fr !important;
  }
  .coconstruct-wrap {
    padding: 40px 24px !important;
    border-radius: 20px !important;
  }

  /* --- Hero V6 (homepage) --- */
  .hero-v6 {
    padding: 100px 0 80px;
    min-height: auto;
  }
  .hero-v6-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-v6-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }
  .hero-v6-ctas,
  .hero-v6-proof {
    justify-content: center;
  }
  .glass-deck-container {
    order: 2;
    height: 300px;
  }
  .hero-v6-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* --- Metric pills (pages formation) --- */
  .prog-hud-metrics {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
  }
  .metric-pill {
    flex: 1 1 calc(50% - 12px);
    min-width: 120px;
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  /* --- Hero pages formation --- */
  .prog-hero {
    padding: 100px 0 48px;
  }
  .prog-title-main {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .prog-lead {
    font-size: 1rem;
  }
  .prog-hero-split {
    gap: 40px;
  }
  .prog-hero-visual {
    display: none; /* masqué sur petit écran pour clarté */
  }

  /* --- Agenda / programme steps --- */
  .agenda-grid {
    gap: 48px;
  }
  .agenda-step {
    padding-left: 40px;
  }
  .agenda-step h4 {
    font-size: 1.15rem;
  }

  /* --- Glass bento (public/prérequis) --- */
  .glass-bento-item {
    padding: 28px 24px;
    border-radius: 20px;
  }
  .glass-bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  /* --- CTA invite block --- */
  .prog-invite-block {
    padding: 48px 24px;
    margin-top: 60px;
    border-radius: 20px;
  }
  .prog-invite-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .invite-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .invite-actions .btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }

  /* --- Pricing cards --- */
  .premium-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .premium-pricing-card {
    max-width: 100%;
  }

  /* --- Methodology pipeline --- */
  .pipeline-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-card {
    padding: 28px 24px;
  }
  .prog-executive-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* --- Testimonials --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .testimonial-card:nth-child(2) {
    margin-top: 0;
  }

  /* --- Sector hub --- */
  .sector-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .sector-btn span {
    font-size: 0.65rem;
  }
  .sector-display {
    padding: 20px 16px;
    min-height: 220px;
  }

  /* --- FAQ --- */
  .faq-q {
    font-size: 0.95rem;
    padding: 18px 0;
  }
  .faq-a p {
    font-size: 0.95rem;
  }

  /* --- Contact booking --- */
  .executive-booking-card {
    grid-template-columns: 1fr;
  }
  .booking-info {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }
  .booking-info h3 {
    font-size: 1.6rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 80px 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-pre {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-cta h3 {
    font-size: 1.4rem;
  }

  /* --- Stats bar --- */
  .executive-stats-bar {
    flex-direction: column;
    gap: 24px;
  }
  .stat-sep {
    width: 40px;
    height: 1px;
  }

  /* --- Blueprint services --- */
  .expertise-blueprint-wrap {
    padding: 48px 16px;
    border-radius: 20px;
  }
  .blueprint-axis {
    display: none;
  }
  .blueprint-pillars {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px (smartphones portrait)
   ========================================================================== */
@media (max-width: 480px) {

  /* --- Typographie globale --- */
  .section-title,
  .section-title-services {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* --- Nav actions compactes --- */
  .nav-actions .btn-sm {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  /* --- Hero V6 --- */
  .hero-v6-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }
  .hero-v6-sub {
    font-size: 0.95rem;
  }
  .hero-v6-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-v6-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- Metric pills — empilées sur très petits écrans --- */
  .prog-hud-metrics {
    flex-direction: column;
    gap: 10px;
  }
  .metric-pill {
    flex: 1 1 100%;
    width: 100%;
    border-radius: 16px;
    padding: 14px 20px;
  }

  /* --- Agenda steps --- */
  .agenda-step {
    padding-left: 28px;
  }

  /* --- Invite block --- */
  .prog-invite-block {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .prog-invite-block h2 {
    font-size: 1.7rem;
  }

  /* --- Pricing card buttons --- */
  .invite-actions .btn,
  .hero-ctas .btn {
    width: 100%;
    max-width: 100%;
    font-size: 0.9rem;
    padding: 14px 20px;
  }

  /* --- Glass bento --- */
  .glass-bento-item {
    padding: 24px 20px;
    border-radius: 16px;
  }

  /* --- Sector nav --- */
  .sector-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --- Step cards --- */
  .step-card {
    padding: 24px 20px;
  }
  .step-card h4 {
    font-size: 1.1rem;
  }

  /* --- Testimonials --- */
  .testimonial-card {
    padding: 28px 20px;
  }

  /* --- Footer --- */
  .footer-logo {
    height: 48px;
  }
}

/* ═══════════ B2C LANDING PAGE REFINEMENTS ═══════════ */
.b2c-hero {
  padding: 120px 0 80px;
}

.breadcrumb {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.prog-title-main {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 32px;
  line-height: 1.1;
}

.prog-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.highlight-b2c {
  font-weight: 700;
  color: var(--b2c-primary);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.b2c-btn-gradient {
  background: var(--b2c-gradient) !important;
  border: none !important;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-glass-card {
  max-width: 400px;
  margin-left: auto;
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}

.hero-stat-desc {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.hero-progress-fill {
  width: 85%;
  height: 100%;
  background: var(--b2c-primary);
  border-radius: 10px;
}

.hero-progress-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--b2c-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Bento Grid Enhanced */
.glass-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.glass-bento-item {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.glass-bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border-color: var(--b2c-border);
}

.glass-bento-item h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.comp-item svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* Agenda Steps */
.agenda-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.agenda-step {
  padding: 32px;
  border-left: 4px solid var(--b2c-primary);
  background: white;
  border-radius: 0 16px 16px 0;
  transition: var(--t);
}

.agenda-step:hover {
  transform: translateX(10px);
  background: var(--gray-50);
}

.step-num {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.agenda-step h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.agenda-step p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* Reassurance Section Icons */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.reassurance-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--b2c-primary);
}

/* Invite Block */
.prog-invite-block {
  padding: 100px 40px;
  border-radius: 32px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.prog-invite-block p.section-kicker {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}

.prog-invite-block h2 {
  color: white;
  margin-bottom: 24px;
}

/* Responsive adjustments for B2C */
@media (max-width: 991px) {
  .prog-hero-split {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .prog-hero-content {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
    flex-direction: column;
  }
  .hero-glass-card {
    margin: 0 auto;
  }
  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ═══════════ PREMIUM DESIGN SYSTEM REFINEMENTS ═══════════ */

/* Standardized Typography & Spacing */
.section-title-elite { 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin-bottom: 24px; 
  letter-spacing: -0.05em; 
  line-height: 1.05;
  font-weight: 800;
}

.section-description-elite { 
  color: var(--gray-600); 
  margin-bottom: 48px; 
  line-height: 1.7; 
  font-size: 1.15rem; 
  max-width: 720px; 
}

/* Premium Card Effects */
.b2c-premium-card {
  background: var(--b2c-glass);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border: 1px solid var(--b2c-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.b2c-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2Ij48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC43IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI24pIiBvcGFjaXR5PSIwLjI1Ii8+PC9zdmc+');
  opacity: 0.03;
  pointer-events: none;
}

.b2c-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.08);
  border-color: rgba(13, 148, 136, 0.3);
}

/* Agenda Refinement */
.agenda-step {
  padding: 40px;
  border-left: 6px solid var(--b2c-primary);
  background: #fff;
  border-radius: 4px 20px 20px 4px;
  margin-bottom: 24px;
}

.agenda-step h4 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

/* Footer Refinement */
.footer-b2c {
  border-top: 1px solid var(--gray-100);
  background: linear-gradient(to bottom, #fff, var(--gray-25));
  padding: 80px 0 60px;
}

/* Utility Animations */
/* Global reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ MODALITÉS REFINEMENT ═══════════ */
.modalite-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  padding: 40px !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
}

.modalite-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b2c-primary);
  margin-bottom: 8px;
}

.modalite-card-highlight {
  background: var(--b2c-gradient) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 20px 40px rgba(0, 77, 64, 0.2) !important;
}

.modalite-card-highlight .modalite-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.modalite-card-highlight .modalite-tag {
  color: rgba(255, 255, 255, 0.8) !important;
}

.modalite-card-highlight .modalite-desc {
  color: rgba(255, 255, 255, 0.9) !important;
}

.modalite-badge-premium {
  position: absolute;
  top: 20px;
  right: -35px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modalites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .modalites-grid { grid-template-columns: 1fr; }
}

/* ═══════════ IMPACT SECTION REFINEMENT ═══════════ */
.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .impact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.stat-card-premium {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.stat-card-premium:hover {
  transform: translateY(-5px);
  border-color: var(--b2c-secondary);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08);
}

.stat-value-elite {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--b2c-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label-elite {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 1.1rem;
}

.impact-visual-box {
  background: rgba(13, 148, 136, 0.03);
  border: 1px dashed var(--b2c-border);
  border-radius: 24px;
  padding: 40px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.curve-svg {
  filter: drop-shadow(0 0 8px rgba(13, 148, 136, 0.3));
}

.cpf-guarantee-card {
  background: linear-gradient(145deg, var(--b2c-deep) 0%, #002d26 100%);
  padding: 50px;
  border-radius: 32px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 77, 64, 0.4);
}

.cpf-guarantee-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════ MODALITÉS REFINEMENT ═══════════ */



