/* ============================================
   STRATEGIX — Styles Premium
   Version 1.0
============================================ */

/* Variables */
:root {
  --black: #0D0D0D;
  --dark: #111118;
  --dark-2: #1A1A2E;
  --dark-3: #16213E;
  --white: #F0EDE8;
  --white-2: #C8C4BC;
  --silver: #A8A4A0;
  --blue: #4F8EF7;
  --blue-2: #2563EB;
  --violet: #7B2FBE;
  --violet-2: #9D4EDD;
  --gradient-1: linear-gradient(135deg, #4F8EF7 0%, #7B2FBE 100%);
  --gradient-2: linear-gradient(135deg, #7B2FBE 0%, #4F8EF7 100%);
  --gradient-glass: linear-gradient(135deg, rgba(79,142,247,0.08) 0%, rgba(123,47,190,0.08) 100%);
  /* ── Variante A : Plus Jakarta Sans + Inter (active) ──────── */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* ── Variante B : DM Sans (activable via .typo-b sur body) ─── */
  --font-display-b: 'DM Sans', sans-serif;
  --font-body-b: 'Inter', sans-serif;
  --transition: cubic-bezier(0.76, 0, 0.24, 1);
  --nav-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   CURSOR
============================================ */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s var(--transition), height 0.3s var(--transition), background 0.3s ease;
  mix-blend-mode: normal;
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(79, 142, 247, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--transition), width 0.4s var(--transition), height 0.4s var(--transition), border-color 0.3s ease;
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  mix-blend-mode: difference;
}

.cursor-follower.hover {
  width: 80px;
  height: 80px;
  border-color: transparent;
}

/* ============================================
   LOADER
============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.35s ease;
}
/* Loader masqué → ne plus capter les clics */
.page-loader[style*="display: none"],
.page-loader[style*="display:none"] {
  pointer-events: none;
}
.page-loader[style*="opacity: 0"],
.page-loader[style*="opacity:0"] {
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.loader-s {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
  animation: loaderBar 1.6s var(--transition) forwards;
}

@keyframes loaderBar {
  to { width: 200px; }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--silver);
  opacity: 0;
  animation: fadeIn 0.5s ease 0.8s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: var(--gradient-1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.025em;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 142, 247, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--white-2);
  letter-spacing: 0.01em;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--transition);
  background: transparent;
  -webkit-font-smoothing: antialiased;
}

.btn-secondary:hover {
  border-color: var(--blue);
  background: rgba(79, 142, 247, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: gap 0.3s var(--transition), opacity 0.3s ease;
}

.btn-ghost:hover {
  gap: 14px;
  opacity: 0.8;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.3s var(--transition);
}

/* ============================================
   MOBILE MENU
============================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--transition), opacity 0.3s ease;
}

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

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--transition), opacity 0.4s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

.mobile-menu.active .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link:hover {
  color: var(--blue);
}

.mobile-cta {
  margin-top: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--transition) 0.4s, opacity 0.4s ease 0.4s;
}

.mobile-menu.active .mobile-cta {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(79, 142, 247, 0.25);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(79, 142, 247, 0.04);
  -webkit-font-smoothing: antialiased;
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  -webkit-font-smoothing: antialiased;
}

.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  word-spacing: 0;
  font-feature-settings: 'ss01' 1, 'kern' 1;
}

/* Variante B override */
.typo-b .headline-xl {
  font-family: var(--font-display-b);
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--white);
  word-spacing: 0;
  font-feature-settings: 'kern' 1;
}

.typo-b .headline-lg {
  font-family: var(--font-display-b);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.headline-md {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--white);
  word-spacing: 0;
  font-feature-settings: 'kern' 1;
}

.typo-b .headline-md {
  font-family: var(--font-display-b);
  font-weight: 500;
  letter-spacing: -0.014em;
}

.cf-fit-header .headline-md {
  line-height: 1.25;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--silver);
}

.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--silver);
}

/* ============================================
   LAYOUT UTILS
============================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* ============================================
   REVEAL ANIMATIONS
   RÈGLE : opacity:0 appliqué UNIQUEMENT par JS (gsap.set)
   sur les éléments certifiés hors-viewport.
   En CSS pur → tout visible (pas de dépendance GSAP/CDN).
============================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(79, 142, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float1 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float2 10s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background: var(--gradient-1);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -30px) scale(1.05); }
  66% { transform: translate(20px, -10px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(0.95); }
  66% { transform: translate(-10px, 20px) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.15; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.22; transform: translateY(-50%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 1;
}
/* anim-ready supprimé — hero toujours visible en CSS */

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 40px;
  opacity: 1;
  font-feature-settings: 'ss01' 1, 'kern' 1;
  -webkit-font-smoothing: antialiased;
}

/* Variante B : DM Sans, plus éditorial, fine */
.typo-b .hero-title {
  font-family: var(--font-display-b);
  font-size: clamp(42px, 6vw, 94px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero-title .accent {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.78;
  color: var(--silver);
  max-width: 540px;
  margin-bottom: 52px;
  opacity: 1;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 1;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-font-smoothing: antialiased;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Floating device mockup */
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(480px, 38vw);
  z-index: 1;
  opacity: 1;
}

.device-frame {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  animation: deviceFloat 6s ease-in-out infinite;
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.device-screen {
  background: var(--dark-2);
  border-radius: 12px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.device-screen-content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dsc-nav {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  width: 60%;
}

.dsc-hero {
  height: 40%;
  background: var(--gradient-glass);
  border-radius: 10px;
  border: 1px solid rgba(79,142,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.dsc-hero::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--gradient-1);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  top: -20px;
  right: -20px;
}

.dsc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: dotPulse 2s ease-in-out infinite;
}

.dsc-dot:nth-child(2) { animation-delay: 0.3s; background: var(--violet); }
.dsc-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.dsc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

.dsc-card {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.dsc-metrics {
  display: flex;
  gap: 8px;
}

.dsc-metric {
  flex: 1;
  background: rgba(79, 142, 247, 0.08);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(79, 142, 247, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dsc-metric-val {
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-display);
}

.dsc-metric-bar {
  height: 2px;
  background: rgba(79,142,247,0.2);
  border-radius: 1px;
  overflow: hidden;
}

.dsc-metric-fill {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 1px;
  animation: barFill 3s ease-in-out infinite alternate;
}

.dsc-metric-fill:nth-child(1) { width: 75%; }
.dsc-metric-fill:nth-child(2) { width: 60%; animation-delay: 0.5s; }

@keyframes barFill {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* ============================================
   CLIENTS SECTION
============================================ */
.clients-section {
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  margin-bottom: 40px;
}

.clients-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  opacity: 0.3;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.client-logo:hover {
  opacity: 0.7;
  filter: grayscale(0);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-card {
  background: var(--black);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 70px);
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.028em;
  margin-bottom: 12px;
  -webkit-font-smoothing: antialiased;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ============================================
   SERVICES / EXPERTISES
============================================ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Carte cliquable — lien pleine surface */
.expertise-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.expertise-card:hover {
  border-color: rgba(79, 142, 247, 0.4);
  transform: translateY(-5px);
  background: rgba(79, 142, 247, 0.04);
}

/* Suppression du ::after bloquant — on utilise un glow subtil à la place */
.expertise-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(79,142,247,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.expertise-card:hover::before {
  opacity: 1;
}

.expertise-icon {
  width: 52px;
  height: 52px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79, 142, 247, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.expertise-card:hover .expertise-icon {
  background: rgba(79,142,247,0.15);
  border-color: rgba(79,142,247,0.4);
}

.expertise-number {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: rgba(79, 142, 247, 0.35);
  letter-spacing: 0.14em;
  z-index: 1;
}

.expertise-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
}

.expertise-pain {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(239,68,68,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.expertise-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--silver);
  position: relative;
  z-index: 1;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
}

.expertise-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 20px;
}

.expertise-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: gap 0.25s ease;
  pointer-events: auto;
}
.expertise-card:hover .expertise-cta {
  gap: 12px;
}

/* ============================================
   PROJECTS SECTION
============================================ */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: padding-left 0.4s var(--transition);
  cursor: none;
}

.project-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 0;
  bottom: 0;
  right: -48px;
  background: rgba(79, 142, 247, 0.03);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-item:hover::before {
  opacity: 1;
}

.project-item:hover {
  padding-left: 8px;
}

.project-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

.project-info {
  flex: 1;
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.018em;
  transition: color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

.project-item:hover .project-title {
  color: var(--blue);
}

.project-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.project-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--silver);
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.project-visual {
  width: 180px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.project-item:hover .project-thumb {
  transform: scale(1.08);
}

/* Project cards grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--transition), border-color 0.3s ease;
  cursor: none;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 142, 247, 0.25);
}

.project-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

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

.project-card-body {
  padding: 28px 28px 24px;
}

.project-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.012em;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

.project-card-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   METHOD TIMELINE
============================================ */
.method-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.method-step {
  background: var(--black);
  padding: 40px 28px;
  position: relative;
  transition: background 0.3s ease;
  cursor: none;
}

.method-step:hover {
  background: rgba(79, 142, 247, 0.04);
}

.method-step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.method-step-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.method-step-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  -webkit-font-smoothing: antialiased;
}

.method-step-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.method-step-connector {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 40px;
  background: var(--gradient-1);
  transform: translateY(-50%);
  opacity: 0.3;
}

/* ============================================
   WHY US SECTION
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-glass);
  border: 1px solid rgba(79, 142, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.008em;
  -webkit-font-smoothing: antialiased;
}

.why-feature-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver);
  line-height: 1.68;
  letter-spacing: 0.005em;
}

.why-visual {
  position: relative;
}

.why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.why-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  -webkit-font-smoothing: antialiased;
}

.why-card-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 32px;
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-badge {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.2);
  color: var(--blue);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(79, 142, 247, 0.08) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
  -webkit-font-smoothing: antialiased;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 48px;
  letter-spacing: 0.005em;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(79, 142, 247, 0.4), transparent);
}

/* ============================================
   SERVICES PAGE
============================================ */
.services-hero {
  padding: 200px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 0%, rgba(79, 142, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 0%, rgba(123, 47, 190, 0.08) 0%, transparent 50%);
}

.service-poles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-pole {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.service-pole:hover {
  border-color: rgba(79, 142, 247, 0.2);
}

.service-pole-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  cursor: none;
  transition: background 0.3s ease;
}

.service-pole-header:hover {
  background: rgba(79, 142, 247, 0.03);
}

.service-pole-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-pole-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid rgba(79, 142, 247, 0.2);
}

.service-pole-icon.blue { background: rgba(79, 142, 247, 0.1); }
.service-pole-icon.violet { background: rgba(123, 47, 190, 0.1); }
.service-pole-icon.green { background: rgba(16, 185, 129, 0.1); }
.service-pole-icon.orange { background: rgba(245, 158, 11, 0.1); }

.service-pole-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.012em;
  margin-bottom: 4px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

.service-pole-sub {
  font-size: 14px;
  color: var(--silver);
}

.service-pole-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.service-pole.open .service-pole-toggle {
  transform: rotate(45deg);
  background: var(--gradient-1);
  border-color: transparent;
}

.service-pole-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition);
}

.service-pole.open .service-pole-body {
  max-height: 800px;
}

.service-pole-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 48px 48px;
}

.service-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-item:hover {
  border-color: rgba(79, 142, 247, 0.2);
  background: rgba(79, 142, 247, 0.03);
}

.service-item-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
}

.service-item-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
}

/* ============================================
   AGENCE PAGE
============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--transition), border-color 0.3s ease;
  cursor: none;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 142, 247, 0.25);
}

.team-card-img {
  aspect-ratio: 1;
  background: var(--gradient-glass);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.team-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0.06;
}

.team-card-body {
  padding: 24px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.008em;
  -webkit-font-smoothing: antialiased;
}

.team-role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
}

/* ============================================
   VALUES SECTION
============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}

.value-item {
  background: var(--black);
  padding: 48px 36px;
  transition: background 0.3s ease;
}

.value-item:hover {
  background: rgba(79, 142, 247, 0.04);
}

.value-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.value-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-method:hover {
  border-color: rgba(79, 142, 247, 0.25);
  background: rgba(79, 142, 247, 0.03);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient-glass);
  border: 1px solid rgba(79, 142, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 12px;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-note {
  padding: 16px 20px;
  background: rgba(79, 142, 247, 0.06);
  border-left: 2px solid var(--blue);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: var(--silver);
  font-style: italic;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-label span.required {
  color: var(--blue);
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(168, 164, 160, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  background: rgba(79, 142, 247, 0.05);
}

.form-select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A4A0' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.form-rgpd {
  font-size: 12px;
  color: var(--silver);
  flex: 1;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: white;
  border: none;
  cursor: none;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 142, 247, 0.4);
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-submit:hover::before {
  opacity: 1;
}

.form-submit span, .form-submit svg {
  position: relative;
  z-index: 1;
}

/* ============================================
   PAGE HEADERS
============================================ */
.page-header {
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(79, 142, 247, 0.07) 0%, transparent 60%);
}

.page-header-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(79, 142, 247, 0.4), transparent);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  margin-top: 20px;
  letter-spacing: 0.005em;
}

.footer-legal-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-legal-info p {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(168,164,160,0.45);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-2);
  margin-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}

.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 12px;
  transition: color 0.3s ease;
  letter-spacing: 0.005em;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--silver);
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--silver);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   SECTION DIVIDER
============================================ */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ============================================
   SCROLL PROGRESS
============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-1);
  z-index: 2000;
  transform-origin: left;
  transform: scaleX(0);
}

/* ============================================
   SUCCESS STATE
============================================ */
.form-success {
  text-align: center;
  padding: 48px;
  display: none;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(79, 142, 247, 0.1);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

/* ============================================
   NOISE OVERLAY
============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1280px) {
  .container, .nav-container, .footer-container {
    padding: 0 32px;
  }
  
  .hero-content {
    padding: 0 32px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-title {
    max-width: 100%;
  }
  
  .method-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Expertise: 3 → 2 colonnes sur tablette */
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  
  .container, .nav-container, .footer-container {
    padding: 0 24px;
  }
  
  .hero-content {
    padding: 0 24px;
  }
  
  .section {
    padding: 80px 0;
  }

  .nav-links, .nav-cta {
    display: none;
  }
  
  .nav-burger {
    display: flex;
  }
  
  .cursor, .cursor-follower {
    display: none;
  }
  
  body { cursor: auto; }
  a, button, .nav-burger { cursor: pointer; }
  
  .hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 40px 32px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full {
    grid-column: span 1;
  }
  
  .contact-form {
    padding: 28px 24px;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .project-item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  
  .project-visual {
    display: none;
  }
  
  .service-pole-items {
    grid-template-columns: 1fr;
    padding: 0 24px 32px;
  }
  
  .service-pole-header {
    padding: 24px;
  }
  
  .cta-content {
    padding: 0 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.06;
    letter-spacing: -0.025em;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .method-steps {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   CONTACT PAGE — REFONTE COMPLÈTE v2
   Layout 2 colonnes, orienté conversion
============================================ */

/* ─── HERO CONTACT ───────────────────────── */
.contact-hero {
  padding-top: var(--nav-height);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 75%);
}

.contact-hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,142,247,0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.contact-hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123,47,190,0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 100px;
}

/* ─── COLONNE GAUCHE ─────────────────────── */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16px;
}

.contact-eyebrow {
  margin-bottom: 28px;
}

.contact-main-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-main-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  word-spacing: 0.03em;
  color: var(--silver);
  max-width: 500px;
  margin-bottom: 36px;
}

/* Badges de rassurance */
.contact-reassure {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.reassure-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-2);
  padding: 9px 16px 9px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.01em;
  word-spacing: 0.04em;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.reassure-badge:hover {
  border-color: rgba(79,142,247,0.25);
  background: rgba(79,142,247,0.05);
}

.reassure-icon {
  font-size: 14px;
  width: 26px;
  height: 26px;
  background: var(--gradient-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Preuve sociale */
.contact-social-proof {
  margin-bottom: 40px;
}

.csp-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.csp-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.csp-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.csp-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.csp-label {
  font-size: 11px;
  color: var(--silver);
  font-weight: 400;
}

.csp-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.csp-testimonial {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.csp-quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.4;
  margin-bottom: 8px;
}

.csp-quote-text {
  font-size: 14px;
  line-height: 1.72;
  word-spacing: 0.04em;
  color: var(--white-2);
  font-style: italic;
  margin-bottom: 18px;
}

.csp-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.csp-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}

.csp-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.csp-author-role {
  font-size: 11px;
  color: var(--silver);
}

/* Alternatives de contact */
.contact-alternatives {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-alt-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  word-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.contact-alt-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-alt-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--transition);
}

.contact-alt-link:hover {
  border-color: rgba(79,142,247,0.25);
  background: rgba(79,142,247,0.04);
  transform: translateX(4px);
}

.contact-alt-icon {
  font-size: 18px;
  width: 38px;
  height: 38px;
  background: var(--gradient-glass);
  border-radius: 10px;
  border: 1px solid rgba(79,142,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-alt-label {
  font-size: 11px;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-alt-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

/* ─── COLONNE DROITE : FORMULAIRE ─────────── */
.contact-right {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-form-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.form-card-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(79,142,247,0.03);
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0em;
  word-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.form-card-sub {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  word-spacing: 0.03em;
}

.contact-form-inner {
  padding: 28px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ─── Champs de formulaire ────────────────── */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.cf-group.cf-full {
  grid-column: span 2;
}

.cf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  word-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
}

.req {
  color: var(--blue);
  margin-left: 2px;
}

.cf-optional {
  color: rgba(168,164,160,0.5);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}

.cf-input,
.cf-select,
.cf-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: rgba(168,164,160,0.35);
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--blue);
  background: rgba(79,142,247,0.05);
  box-shadow: 0 0 0 3px rgba(79,142,247,0.12);
}

.cf-input.error,
.cf-select.error,
.cf-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.cf-error {
  font-size: 11px;
  color: #ef4444;
  font-weight: 500;
  display: none;
  margin-top: 2px;
}

.cf-error.visible {
  display: block;
}

/* Select wrapper */
.cf-select-wrap {
  position: relative;
}

.cf-select-wrap .cf-select {
  padding-right: 40px;
  cursor: pointer;
}

.cf-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.cf-select option {
  background: #1A1A2E;
  color: var(--white);
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Submit */
.cf-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.cf-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--gradient-1);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cf-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cf-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(79,142,247,0.4);
}

.cf-submit-btn:hover::before {
  opacity: 1;
}

.cf-submit-btn:disabled {
  opacity: 0.65;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.cf-submit-text,
.cf-submit-arrow {
  position: relative;
  z-index: 1;
}

.cf-microcopy {
  font-size: 12px;
  line-height: 1.7;
  word-spacing: 0.04em;
  color: var(--silver);
  text-align: center;
}

.cf-microcopy strong {
  color: var(--white-2);
}

.cf-rgpd {
  font-size: 11px;
  color: rgba(168,164,160,0.5);
  text-align: center;
  line-height: 1.5;
}

.cf-rgpd a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── SUCCESS STATE ───────────────────────── */
.cf-success {
  display: none;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 24px;
  overflow: hidden;
}

.cf-success.show {
  display: block;
}

.cf-success-inner {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.cf-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(79,142,247,0.1);
  border: 2px solid rgba(79,142,247,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cf-success-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.cf-success-text {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
}

.cf-success-text strong {
  color: var(--white-2);
}

.cf-success-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  padding: 24px;
  background: rgba(79,142,247,0.04);
  border: 1px solid rgba(79,142,247,0.1);
  border-radius: 14px;
}

.cf-success-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--white-2);
  text-align: left;
}

.cf-success-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* ─── PROCESS STEPS ──────────────────────── */
.contact-process {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(79,142,247,0.05) 0%, transparent 60%);
}

.cp-header {
  margin-bottom: 64px;
}

.cp-steps {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.cp-step {
  flex: 1;
  padding: 36px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s var(--transition);
  position: relative;
}

.cp-step:hover {
  border-color: rgba(79,142,247,0.25);
  transform: translateY(-4px);
}

.cp-step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cp-step-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.cp-step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0em;
  word-spacing: 0.04em;
  line-height: 1.3;
}

.cp-step-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  word-spacing: 0.03em;
  margin-bottom: 16px;
}

.cp-step-tag {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  word-spacing: 0.06em;
}

.cp-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  flex-shrink: 0;
}

.cp-connector-line {
  width: 40px;
  height: 1px;
  background: rgba(79,142,247,0.25);
}

/* ─── FIT GRID ────────────────────────────── */
.contact-fit {
  padding: 100px 0;
}

.cf-fit-header {
  margin-bottom: 64px;
}

.cf-fit-header .headline-md {
  line-height: 1.25;
  word-spacing: 0.04em;
}

.cf-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cf-fit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--transition);
}

.cf-fit-item:hover {
  border-color: rgba(79,142,247,0.2);
  background: rgba(79,142,247,0.03);
  transform: translateY(-3px);
}

.cf-fit-icon {
  font-size: 20px;
  width: 42px;
  height: 42px;
  background: var(--gradient-glass);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-fit-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  word-spacing: 0.04em;
  line-height: 1.35;
}

.cf-fit-text p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
  word-spacing: 0.03em;
}

/* ─── TRUST SECTION ──────────────────────── */
.contact-trust {
  padding: 100px 0;
  background: var(--black);
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: start;
}

.ct-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.ct-stat {
  background: var(--black);
  padding: 28px 24px;
  transition: background 0.3s ease;
}

.ct-stat:hover {
  background: rgba(79,142,247,0.04);
}

.ct-stat-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.ct-stat-label {
  font-size: 12px;
  color: var(--silver);
  font-weight: 400;
  letter-spacing: 0.01em;
  word-spacing: 0.04em;
}

/* Engagements */
.ct-engagements {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 28px;
}

.ct-eng-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ct-eng-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-eng-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  word-spacing: 0.04em;
}

.ct-eng-list li strong {
  color: var(--white-2);
}

.ct-eng-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-1);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Témoignage confiance */
.ct-testi-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
}

.ct-testi-quote {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.35;
  margin-bottom: 8px;
}

.ct-testi-text {
  font-size: 14px;
  line-height: 1.78;
  word-spacing: 0.04em;
  color: var(--white-2);
  font-style: italic;
  margin-bottom: 20px;
}

.ct-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.ct-testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.ct-testi-role {
  font-size: 11px;
  color: var(--silver);
}

.ct-testi-stars {
  font-size: 13px;
  color: #F59E0B;
  margin-left: auto;
}

/* Logos clients trust */
.ct-logos {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.ct-logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 24px;
}

.ct-logos-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ct-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.25;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.ct-logo:hover {
  opacity: 0.55;
  filter: none;
}

/* ─── FAQ CONTACT ────────────────────────── */
.contact-faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:has(.faq-answer[style*="max-height"]) {
  border-color: rgba(79,142,247,0.2);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: 0em;
  word-spacing: 0.04em;
  line-height: 1.35;
}

.faq-btn:hover {
  background: rgba(79,142,247,0.04);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition), background 0.3s ease, border-color 0.3s ease;
  color: var(--white);
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.78;
  word-spacing: 0.03em;
}

.faq-answer-inner strong {
  color: var(--white-2);
}

/* ─── RESPONSIVE CONTACT ─────────────────── */
@media (max-width: 1200px) {
  .contact-hero-inner {
    gap: 48px;
  }

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

  .ct-testi-card {
    grid-column: span 2;
  }

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

@media (max-width: 1024px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-right {
    position: static;
  }

  .contact-main-title {
    font-size: clamp(32px, 5vw, 48px);
  }

  .cp-steps {
    flex-direction: column;
    gap: 16px;
  }

  .cp-connector {
    flex-direction: row;
    padding: 0;
  }

  .cp-connector-line {
    width: 1px;
    height: 24px;
  }

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

  .ct-testi-card {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-inner {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .contact-form-inner {
    padding: 20px 20px 24px;
  }

  .form-card-header {
    padding: 24px 20px 18px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-group.cf-full {
    grid-column: span 1;
  }

  .cf-fit-grid {
    grid-template-columns: 1fr;
  }

  .contact-reassure {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .csp-stats {
    gap: 16px;
  }

  .ct-logos-list {
    gap: 28px;
  }

  .cp-step {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .csp-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .csp-sep {
    display: none;
  }

  .contact-alt-links {
    gap: 8px;
  }
}

/* ============================================
   TYPOGRAPHIE GLOBALE — Anti-aliasing + base
============================================ */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ============================================
   VARIANTE B — DM Sans (activable via .typo-b sur <body>)
   Appliquer class="typo-b" sur <body> pour activer
============================================ */
.typo-b {
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

.typo-b .hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(42px, 6vw, 94px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
}

.typo-b .headline-xl {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.typo-b .headline-lg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.typo-b .headline-md {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.typo-b .cta-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.022em;
}

.typo-b .expertise-title,
.typo-b .project-title,
.typo-b .project-card-title,
.typo-b .service-pole-title,
.typo-b .value-title,
.typo-b .team-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.typo-b .stat-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.typo-b .mobile-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.typo-b .logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.typo-b .why-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.028em;
}

.typo-b .contact-main-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.typo-b .form-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* ============================================
   PAGE PREVIEW TYPOGRAPHIE (/typo-preview)
============================================ */
.typo-preview-wrap {
  min-height: 100vh;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.typo-preview-header {
  text-align: center;
  margin-bottom: 80px;
}

.typo-variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.typo-variant-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
}

.typo-variant-card.active-variant {
  border-color: rgba(79,142,247,0.3);
  background: rgba(79,142,247,0.02);
}

.typo-variant-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.typo-variant-label .active-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.typo-preview-hero-a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  margin-bottom: 20px;
}

.typo-preview-hero-b {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  margin-bottom: 20px;
}

.typo-preview-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}

.typo-preview-ui {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.typo-preview-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.typo-preview-section-a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.typo-preview-section-b {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.typo-preview-stat-a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.028em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-font-smoothing: antialiased;
}

.typo-preview-stat-b {
  font-family: 'DM Sans', sans-serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.025em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-font-smoothing: antialiased;
}

.typo-note {
  background: rgba(79,142,247,0.05);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .typo-variants {
    grid-template-columns: 1fr;
  }
  .typo-preview-wrap {
    padding: 60px 24px;
  }
}


/* ═══════════════════════════════════════════════════════════
   PAGE SERVICES — STYLES COMPLETS (sv-*)
   ═══════════════════════════════════════════════════════════ */

/* ── S1 HERO ─────────────────────────────────────────────── */
.sv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.sv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.sv-hero-glow-1 {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,142,247,0.12) 0%, transparent 65%);
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.sv-hero-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123,47,190,0.10) 0%, transparent 65%);
  filter: blur(80px);
  animation: float 10s ease-in-out infinite reverse;
}

.sv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.sv-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-hero-eyebrow {
  margin-bottom: 24px;
}

.sv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  margin-bottom: 24px;
}

.sv-hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--silver);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Badges hero */
.sv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.sv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.18);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.sv-badge-icon {
  font-size: 14px;
  color: var(--blue);
}

.sv-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Bloc confiance droite */
.sv-hero-right {
  display: flex;
  justify-content: flex-end;
}

.sv-trust-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
}

.sv-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 28px;
}

.sv-trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sv-trust-val {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-font-smoothing: antialiased;
}

.sv-trust-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.02em;
}

.sv-trust-sep {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.sv-trust-quote {
  margin-bottom: 24px;
}

.sv-trust-quote-mark {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.5;
  margin-bottom: 8px;
}

.sv-trust-quote p {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 16px;
}

.sv-trust-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sv-trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.sv-trust-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.sv-trust-role {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--silver);
  margin-top: 1px;
}

.sv-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.sv-trust-logo {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(168,164,160,0.5);
  text-transform: uppercase;
}

/* ── S2 PILIERS ───────────────────────────────────────────── */
.sv-pillars {
  padding: 120px 0;
}

.sv-pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.sv-intro-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--silver);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sv-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}

.sv-pillar {
  background: var(--dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s ease;
}

.sv-pillar:hover {
  background: rgba(79,142,247,0.04);
}

.sv-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sv-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sv-pi-blue   { background: rgba(79,142,247,0.12); border: 1px solid rgba(79,142,247,0.2); color: var(--blue); }
.sv-pi-violet { background: rgba(123,47,190,0.12); border: 1px solid rgba(123,47,190,0.2); color: #9D4EDD; }
.sv-pi-green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); color: #10B981; }
.sv-pi-orange { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); color: #F59E0B; }

.sv-pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: rgba(79,142,247,0.4);
  letter-spacing: 0.1em;
}

.sv-pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  -webkit-font-smoothing: antialiased;
}

.sv-pillar-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--silver);
  margin-bottom: 20px;
}

.sv-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-pillar-list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(168,164,160,0.8);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.sv-pillar-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
  opacity: 0.7;
}

/* ── S3 FIT ───────────────────────────────────────────────── */
.sv-fit {
  padding: 120px 0;
}

.sv-fit-header {
  margin-bottom: 56px;
}

.sv-fit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}

.sv-fit-item {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--dark);
  align-items: flex-start;
  transition: background 0.3s ease;
}

.sv-fit-item:hover {
  background: rgba(79,142,247,0.04);
}

.sv-fit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(79,142,247,0.10);
  border: 1px solid rgba(79,142,247,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.sv-fit-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-fit-content strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.sv-fit-content p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--silver);
  margin: 0;
}

/* ── S4 PACKAGES ─────────────────────────────────────────── */
.sv-packages {
  padding: 120px 0;
}

.sv-packages-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.sv-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.sv-package {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sv-package:hover {
  border-color: rgba(79,142,247,0.25);
  transform: translateY(-4px);
}

.sv-package--featured {
  background: rgba(79,142,247,0.05);
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-8px);
}

.sv-package--featured:hover {
  transform: translateY(-12px);
}

.sv-pkg-featured-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  align-self: flex-start;
}

.sv-pkg-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sv-pkg-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(79,142,247,0.10);
  border: 1px solid rgba(79,142,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sv-pkg-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sv-pkg-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.sv-pkg-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
}

.sv-pkg-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sv-pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sv-pkg-list li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.85;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sv-pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.7;
}

.sv-pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sv-pkg-delay {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
}

.sv-pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sv-pkg-cta:hover {
  background: rgba(79,142,247,0.10);
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-1px);
}

.sv-pkg-cta--primary {
  background: var(--gradient-1);
  border-color: transparent;
}

.sv-pkg-cta--primary:hover {
  opacity: 0.88;
  background: var(--gradient-1);
}

/* ── S5 POURQUOI STRATEGIX ────────────────────────────────── */
.sv-why {
  padding: 120px 0;
}

.sv-why-header {
  margin-bottom: 64px;
}

.sv-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}

.sv-why-item {
  display: flex;
  gap: 20px;
  padding: 36px 32px;
  background: rgba(17,17,24,0.95);
  transition: background 0.3s ease;
}

.sv-why-item:hover {
  background: rgba(79,142,247,0.04);
}

.sv-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sv-why-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.sv-why-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

/* ── S6 PREUVES ──────────────────────────────────────────── */
.sv-proof {
  padding: 120px 0;
}

.sv-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.sv-proof-stat {
  flex: 1;
  min-width: 120px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-proof-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.sv-proof-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-font-smoothing: antialiased;
}

.sv-proof-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Témoignages */
.sv-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
}

.sv-testi {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-testi-quote {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.4;
  margin-bottom: 12px;
}

.sv-testi-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  color: var(--white);
  opacity: 0.85;
  flex: 1;
  margin-bottom: 24px;
}

.sv-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sv-testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.sv-testi-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.sv-testi-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  margin-top: 1px;
}

.sv-testi-tag {
  margin-left: auto;
  padding: 4px 10px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
}

/* Logos preuve */
.sv-proof-logos {
  text-align: center;
}

.sv-proof-logos-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.6;
}

.sv-proof-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.sv-proof-logo {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(168,164,160,0.35);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.sv-proof-logo:hover {
  color: rgba(168,164,160,0.65);
}

/* ── S7 PROCESSUS ─────────────────────────────────────────── */
.sv-process {
  padding: 120px 0;
}

.sv-process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.sv-process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.sv-process-step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sv-process-step:hover {
  border-color: rgba(79,142,247,0.25);
  transform: translateY(-4px);
}

.sv-process-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.sv-process-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.sv-process-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

.sv-process-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.03em;
  align-self: flex-start;
}

.sv-process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}

.sv-process-connector::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0.4;
  border-radius: 2px;
}

/* ── S8 FAQ ──────────────────────────────────────────────── */
.sv-faq {
  padding: 120px 0;
}

.sv-faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.sv-faq-header {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  overflow: hidden;
}

.sv-faq-item {
  background: rgba(17,17,24,0.95);
  overflow: hidden;
  transition: background 0.2s ease;
}

.sv-faq-item:hover {
  background: rgba(79,142,247,0.03);
}

.sv-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  transition: color 0.2s ease;
}

.sv-faq-btn:hover {
  color: var(--blue);
}

.sv-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}

.sv-faq-item.open .sv-faq-icon {
  transform: rotate(45deg);
  background: rgba(79,142,247,0.10);
  border-color: rgba(79,142,247,0.25);
  color: var(--blue);
}

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

.sv-faq-item.open .sv-faq-answer {
  max-height: 400px;
}

.sv-faq-answer-inner {
  padding: 0 28px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--silver);
}

.sv-faq-answer-inner strong {
  color: var(--white);
  font-weight: 600;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .sv-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .sv-process-connector {
    display: none;
  }
}

@media (max-width: 1024px) {
  .sv-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sv-hero-right {
    justify-content: flex-start;
  }
  .sv-trust-card {
    max-width: 100%;
  }
  .sv-faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sv-faq-header {
    position: static;
  }
  .sv-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sv-pillars {
    padding: 80px 0;
  }
  .sv-pillars-grid {
    grid-template-columns: 1fr;
  }
  .sv-fit-list {
    grid-template-columns: 1fr;
  }
  .sv-packages-grid {
    grid-template-columns: 1fr;
  }
  .sv-package--featured {
    transform: none;
  }
  .sv-package--featured:hover {
    transform: translateY(-4px);
  }
  .sv-proof-stats {
    flex-direction: column;
    gap: 0;
  }
  .sv-proof-sep {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
  .sv-testimonials {
    grid-template-columns: 1fr;
  }
  .sv-process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .sv-why-grid {
    grid-template-columns: 1fr;
  }
  .sv-proof-logos-row {
    gap: 24px;
  }
  .sv-hero-title {
    font-size: clamp(30px, 8vw, 44px);
  }
}

@media (max-width: 480px) {
  .sv-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .sv-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .sv-hero-ctas .btn-primary,
  .sv-hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .sv-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sv-faq-btn {
    font-size: 14px;
    padding: 20px 20px;
  }
  .sv-faq-answer-inner {
    padding: 0 20px 20px;
  }
  .sv-pkg-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .sv-pkg-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   PAGES LÉGALES — styles communs
   ═══════════════════════════════════════════════════════════ */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-block {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}

.legal-block p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--silver);
}

.legal-block p.mt-16 {
  margin-top: 16px;
}

.legal-block p strong {
  color: var(--white);
  font-weight: 600;
}

.legal-block a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(79,142,247,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.legal-block a:hover {
  color: var(--white);
  text-decoration-color: rgba(255,255,255,0.4);
}

.legal-block code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--blue);
}

/* Table légale clé/valeur */
.legal-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
}

.legal-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: baseline;
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-key {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-val {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

.legal-val a {
  color: var(--blue);
  text-decoration: none;
}

.legal-val a:hover {
  text-decoration: underline;
}

/* Liste légale */
.legal-list {
  margin: 16px 0 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  padding-left: 20px;
  position: relative;
}

.legal-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
  opacity: 0.7;
}

.legal-list li strong {
  color: var(--white);
  font-weight: 600;
}

.legal-list li a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(79,142,247,0.3);
}

/* Table cookies */
.legal-cookie-table {
  margin-top: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 13px;
}

.legal-cookie-header {
  display: grid;
  grid-template-columns: 160px 120px 1fr 140px;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(79,142,247,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-cookie-row {
  display: grid;
  grid-template-columns: 160px 120px 1fr 140px;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--silver);
  line-height: 1.5;
  align-items: center;
}

.legal-cookie-row:last-child {
  border-bottom: none;
}

.legal-cookie-row span:first-child {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--white);
}

@media (max-width: 768px) {
  .legal-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px;
  }
  .legal-key {
    font-size: 10px;
    opacity: 0.65;
  }
  .legal-cookie-header,
  .legal-cookie-row {
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
  }
  .legal-cookie-header span:nth-child(3),
  .legal-cookie-row span:nth-child(3),
  .legal-cookie-header span:nth-child(4),
  .legal-cookie-row span:nth-child(4) {
    grid-column: span 2;
  }
}

/* ============================================
   SPRINT 1 — NOUVELLES CLASSES
   Hero trust bar, resend-style, project-meta,
   device badges, accessibility focus states
============================================ */

/* ── HERO TRUST BAR (above-the-fold) ─────── */
.hero-trust-bar {
  position: absolute;
  top: calc(var(--nav-height) + 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  /* Visible par défaut */
  opacity: 1;
  transition: opacity 0.4s ease;
}
/* anim-ready hero-trust-bar supprimé */
.hero-trust-bar.visible,
#heroTrustBar.revealed {
  opacity: 1;
}

.htb-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 8px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.htb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white-2);
}

.htb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px rgba(79,142,247,0.7);
  flex-shrink: 0;
  animation: htb-pulse 2s ease-in-out infinite;
}

.htb-dot--green {
  background: #10B981;
  box-shadow: 0 0 6px rgba(16,185,129,0.7);
  animation-delay: 0.5s;
}

.htb-dot--violet {
  background: var(--violet-2);
  box-shadow: 0 0 6px rgba(157,78,221,0.7);
  animation-delay: 1s;
}

@keyframes htb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.htb-sep {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
}

@media (max-width: 600px) {
  .htb-inner { gap: 10px; padding: 6px 14px; font-size: 11px; }
  .htb-sep { display: none; }
  .htb-item:nth-child(5) { display: none; }
}

/* ── HERO TITLE RESEND-STYLE (lignes reveal) */
.hero-title .ht-line {
  display: block;
  overflow: hidden;
}

/* anim-ready ht-lines supprimé — lignes toujours visibles */

/* ── DEVICE BADGE (redesigné, positionné via CSS) */
.device-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.device-badge-2 {
  position: absolute;
  top: -20px;
  right: -24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.db-label {
  font-size: 10px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.db-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.db-sub {
  font-size: 13px;
  color: var(--silver);
  font-weight: 400;
}

.db-info {
  font-size: 11px;
  color: var(--silver);
  margin-top: 3px;
}

/* ── PROJECT ITEMS : meta résultats ─────── */
.project-item {
  display: grid;
  grid-template-columns: 56px 1fr auto 120px;
  gap: 0 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.project-item--link {
  display: grid;
  grid-template-columns: 56px 1fr auto 120px;
  gap: 0 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  cursor: pointer;
}

.project-meta {
  font-size: 12px;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  padding: 0 16px;
}

.project-item--link:hover .project-meta {
  opacity: 1;
  color: var(--blue);
}

.project-item--link:hover {
  background: rgba(255,255,255,0.01);
}

@media (max-width: 768px) {
  .project-item,
  .project-item--link {
    grid-template-columns: 44px 1fr 80px;
    grid-template-rows: auto auto;
  }
  .project-meta { display: none; }
}

/* ── FOCUS STATES (accessibility) ───────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── NAV BURGER aria-expanded ───────────── */
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── SKIP TO CONTENT (accessibility) ─────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--blue);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ── FOOTER LEGAL INFO ───────────────────── */
.footer-legal-info {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(168,164,160,0.6);
  line-height: 1.8;
}

.footer-legal-info p {
  margin: 0;
}

/* ── SCROLL PROGRESS BAR ─────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-1);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  transition: none;
}

/* lineReveal supprimé — H1 visible sans animation d'entrée */

/* hero-visual final */
