/* ==============================================================
   DYLAN SITRUK - LANDING PAGE STYLES
   Premium Apple-inspired design system optimisé
   ============================================================== */

/* CSS CUSTOM PROPERTIES - DESIGN SYSTEM MINIMALISTE */
:root {
  /* Colors - Palette sobre et cohérente */
  --primary-bg: #ffffff;
  --surface: #fafbfc;
  --surface-elevated: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-primary: #2563eb;
  --accent-secondary: #0ea5e9;
  --accent-success: #059669;
  --accent-warning: #d97706;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --shadow-subtle: rgba(15, 23, 42, 0.04);
  --shadow-soft: rgba(15, 23, 42, 0.08);
  --shadow-medium: rgba(15, 23, 42, 0.12);
  --shadow-strong: rgba(15, 23, 42, 0.16);
  
  /* Typography - Système cohérent */
  --font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", system-ui, sans-serif;
  --font-mono: "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Spacing - Système harmonieux */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --section-padding-y: clamp(3rem, 8vw, 6rem);
  --section-padding-x: clamp(1rem, 4vw, 2rem);
  
  /* Layout */
  --container-max-width: 1140px;
  --container-padding: var(--section-padding-x);
  --content-max-width: 65ch;
  
  /* Border radius */
  --radius-none: 0;
  --radius-sm: 0.125rem;
  --radius-base: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal: 40;
  --z-popover: 50;
  --z-tooltip: 60;
  
  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
}

/* RESET ET BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  /* Empêcher complètement le débordement horizontal */
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100vw;
}

body {
  background: var(--primary-bg);
  color: var(--text-primary);
  /* Bloquer le scroll horizontal sur le body */
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100vw;
  line-height: var(--leading-normal);
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

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

ul {
  list-style: none;
}

/* PRÉVENTION GLOBALE DU SCROLL HORIZONTAL */
* {
  /* Empêcher tout dépassement horizontal */
  max-width: 100vw;
  overflow-x: hidden;
}

/* Containers et éléments spécifiques */
.container, .section, main, article, div, section {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  overflow: visible !important;
  max-width: 100%;
}

/* Prévenir les débordements sur les éléments de texte et contenus */
p, span, h1, h2, h3, h4, h5, h6, pre, code {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* UTILITIES */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  /* Prévention débordement */
  width: 100%;
  overflow-x: hidden;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-primary); }
.text-success { color: var(--accent-success); }
.text-warning { color: var(--accent-warning); }
.text-muted { color: var(--text-muted); }

/* Classes utilitaires pour prévention débordement */
.no-overflow {
  overflow: hidden;
}

.no-overflow-x {
  overflow-x: hidden;
}

.grid {
  display: grid;
  width: 100%;
  overflow-x: hidden;
}

/* Styles pour empêcher les débordements sur les éléments larges */
.clients-logos, 
.logos-track, 
.hero__content,
.section,
.process-steps__grid,
.formations-grid,
.case-studies__grid,
.faq__grid {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Media queries pour mobile - prévention débordement */
@media screen and (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Forcer tous les éléments à rester dans les limites */
  * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Éléments spécifiques qui peuvent déborder */
  h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
  }
  
  pre, code {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
  }
  
  /* Tables responsives */
  table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  /* Images et médias */
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* Correction spéciale pour les logos défilants */
  .clients-logos {
    overflow-x: hidden;
    width: 100%;
  }
  
  .logos-track {
    width: max-content;
    min-width: 100%;
    /* Assurer que l'animation ne cause pas de débordement */
    will-change: transform;
  }
  
  .client-logo {
    height: 60px; /* Plus petit sur mobile */
    max-width: 150px;
  }
  
  /* Correction pour les grilles qui peuvent déborder */
  .problems__grid,
  .approach__grid,
  .process-steps__grid,
  .formations-grid,
  .case-studies__grid,
  .faq__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Boutons mobile - éviter débordement texte */
  .btn {
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
}

.btn:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 1px 3px var(--shadow-soft);
}

.btn--primary:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px var(--shadow-medium);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--border-light);
}

.btn--secondary:hover {
  background: var(--surface);
  border-color: var(--accent-primary);
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
}

.btn--cta-main {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--cta-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn--cta-main:hover::before {
  left: 100%;
}

/* Bouton OBJECTIF responsive */
.btn--objective {
  text-align: center;
  max-width: 100%;
  line-height: 1.4;
  padding: var(--space-4) var(--space-6);
}

.btn__objective-content {
  display: inline-block;
  word-break: break-word;
}

@media (max-width: 768px) {
  .btn--objective {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    line-height: 1.3;
  }
  
  .btn__objective-content br {
    display: inline;
  }
  
  .btn__objective-content::after {
    content: " ";
    white-space: normal;
  }
  
  /* Bouton candidater responsive sur mobile */
  .btn--candidater {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.4;
    word-break: break-word;
    white-space: normal;
  }
  
  /* Bouton formation finale - meilleur contraste et espacement sur mobile */
  .btn--formation-final {
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    line-height: 1.4;
    background-color: var(--accent-primary);
    color: white;
    border: 2px solid var(--accent-primary);
    margin: var(--space-3) 0;
  }
  
  .btn--formation-final:hover {
    background-color: white;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.nav__logo {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text-primary);
}

.nav__tagline {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--font-medium);
}

.nav__menu {
  display: flex;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  transition: color var(--transition-base);
  position: relative;
}

.nav__link:hover {
  color: var(--accent-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: var(--space-2) var(--space-4);
  background: var(--accent-primary);
  color: white;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent-primary);
}

.nav__cta:hover {
  background: white;
  color: var(--accent-primary);
}

.nav__cta::after {
  display: none;
}

.nav__toggle {
  display: none;
  font-size: var(--text-xl);
  color: var(--text-primary);
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding: calc(var(--section-padding-y) + 4rem) 0 var(--section-padding-y);
  background: linear-gradient(135deg, var(--surface) 0%, var(--primary-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-6);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero__badge-icon {
  font-size: var(--text-base);
}

.hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-emphasis {
  position: relative;
}

.hero__title-emphasis::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-success), var(--accent-secondary));
  border-radius: var(--radius-full);
}

.hero__subtitle {
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__stats {
  margin-bottom: var(--space-8);
}

.stat {
  display: inline-block;
  text-align: center;
}

.stat__number {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--accent-success);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 300px;
}

.hero__proof {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-12);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* SECTIONS COMMUNES */
.section {
  padding: var(--section-padding-y) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CLIENTS LOGOS - BANDEAU DÉFILANT */
.clients-logos {
  margin-bottom: var(--space-8);
  overflow: hidden !important;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: var(--space-8) 0;
  box-shadow: 0 2px 20px var(--shadow-subtle);
  border: 1px solid var(--border-light);
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.clients-logos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.clients-logos::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.clients-logos__title {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  width: max-content;
  min-width: 200%;
  will-change: transform;
}

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

.client-logo {
  flex-shrink: 0;
  height: 80px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  filter: grayscale(100%) opacity(0.7);
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.client-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

/* Animation très lente pour voir tous les 27 logos clairement - 60s */
.logos-track {
  animation: scrollLogos 60s linear infinite;
}

/* Pause élégante sur hover de la section entière */
.clients-logos:hover .logos-track {
  animation-play-state: paused;
}

/* Animation plus fluide */
.logos-track {
  will-change: transform;
}

/* Responsive pour les logos sur mobile */
@media screen and (max-width: 768px) {
  .clients-logos {
    margin: 0 calc(-1 * var(--space-4));
    padding: var(--space-6) var(--space-4);
  }
  
  .client-logo {
    height: 60px;
    max-width: 150px;
    padding: var(--space-2) var(--space-3);
  }
}

/* TRUST BADGES - Version simplifiée pour sous le bandeau */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--accent-success);
  font-weight: var(--font-medium);
}

.trust-badge i {
  font-size: var(--text-xs);
}

/* HERO AUTHOR */
.hero__author {
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-xl);
  text-align: center;
}

.hero__author-info h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.hero__author-info p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* PROBLÈMES */
.problems {
  background: var(--surface);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .problems__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.problem-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 10px var(--shadow-subtle);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.problem-card__icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: var(--accent-warning);
  width: 80px;
  height: 80px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card__text h3 {
  font-size: var(--text-xl);
  color: var(--text-primary);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
}

.problem-card__text p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.problems__conclusion {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.05));
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

.problems__conclusion-text {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

/* TRANSFORMATION TIMELINE */
.transformation {
  background: var(--primary-bg);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline__item {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  position: relative;
}

.timeline__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 80px;
  width: 2px;
  height: 100%;
  background: var(--border-light);
}

.timeline__marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline__number {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: white;
}

.timeline__content {
  flex: 1;
  padding-top: var(--space-2);
}

.timeline__period {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--accent-primary);
  margin-bottom: var(--space-2);
}

.timeline__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.timeline__features {
  list-style: none;
  padding: 0;
}

.timeline__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.timeline__features i {
  flex-shrink: 0;
  margin-top: 2px;
}

/* APPROACH CARDS */
.approach {
  background: var(--surface);
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .approach__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.approach-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 10px var(--shadow-subtle);
  text-align: center;
  transition: all var(--transition-base);
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.approach-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: var(--text-2xl);
  color: white;
}

.approach-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.approach-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* PROGRAMMES */
.programmes {
  background: var(--primary-bg);
}

.programmes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.programme-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 10px var(--shadow-subtle);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid transparent;
}

.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.programme-card--featured {
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.programme-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.programme-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-success);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.programme-card__number {
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4);
}

.programme-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.programme-card__duration {
  font-size: var(--text-base);
  color: var(--accent-primary);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-4);
}

.programme-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

/* COMMENT ÇA FONCTIONNE - 3 ÉTAPES */
.process-steps {
  background: var(--primary-bg);
}

.process-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 10px var(--shadow-subtle);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-step__number {
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4);
}

.process-step__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.process-step__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.process-step__cta {
  margin-top: auto;
  padding-top: var(--space-4);
}

@media (max-width: 768px) {
  .process-steps__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* DOMAINES DE FORMATION */
.formations-section {
  background: #fafbfc;
  padding: var(--space-16) 0;
  margin: var(--space-12) 0;
}

.formations__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.formations__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.formation-domain {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
  text-align: left;
}

.formation-domain:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.formation-domain__icon {
  text-align: center;
  margin-bottom: var(--space-6);
  display: block;
}

.formation-domain__icon i {
  font-size: 3rem;
  color: var(--accent-primary);
  background: rgba(37, 99, 235, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.formation-domain:hover .formation-domain__icon i {
  transform: scale(1.1);
  background: rgba(37, 99, 235, 0.15);
}

.formation-domain__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
  text-align: center;
}

.formation-domain__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formation-domain__list li {
  padding: var(--space-3) 0;
  padding-left: var(--space-6);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.formation-domain__list li:last-child {
  border-bottom: none;
}

.formation-domain__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: var(--font-bold);
  font-size: 1.2em;
}

/* Responsive formations */
@media (max-width: 968px) {
  .formations-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .formations__title {
    font-size: var(--text-2xl);
  }
  
  .formations__subtitle {
    font-size: var(--text-base);
  }
}

@media (max-width: 768px) {
  .formations-section {
    padding: var(--space-12) 0;
  }
  
  .formation-domain {
    padding: var(--space-6);
  }
  
  .formation-domain__title {
    font-size: var(--text-lg);
  }
  
  .formation-domain__list li {
    font-size: var(--text-sm);
  }
}

/* ACCOMPAGNEMENT STRATÉGIQUE */
.strategic-accompagnement {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
  color: white;
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  margin-top: var(--space-8);
}

.strategic-accompagnement h3 {
  color: var(--accent-secondary);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  text-align: center;
}

.strategic-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.strategic-feature {
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.strategic-feature h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: white;
  margin-bottom: var(--space-2);
}

.strategic-feature p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .strategic-features {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ÉTUDES DE CAS */
.case-studies {
  background: var(--primary-bg);
}

.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.case-study {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 10px var(--shadow-subtle);
}

.case-study__header {
  margin-bottom: var(--space-6);
}

.case-study__client {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.case-study__before,
.case-study__after {
  margin-bottom: var(--space-4);
}

.case-study__before h4,
.case-study__after h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.case-study__before h4 {
  color: var(--accent-warning);
}

.case-study__after h4 {
  color: var(--accent-success);
}

.case-study__quote {
  font-style: italic;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-primary);
  padding-left: var(--space-4);
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .case-studies__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* STATISTIQUES RÉSULTATS */
.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  background: linear-gradient(135deg, var(--accent-success) 0%, var(--accent-primary) 100%);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.results-stat h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.results-stat p {
  font-size: var(--text-base);
  opacity: 0.9;
}

/* FAQ */
.faq {
  background: var(--surface);
}

.faq__grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-subtle);
}

.faq-item__question {
  padding: var(--space-6);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  transition: background var(--transition-base);
}

.faq-item__question:hover {
  background: var(--surface);
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-6) var(--space-6);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  display: none;
}

.faq-item.active .faq-item__answer {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.faq-item__toggle {
  font-size: var(--text-lg);
  color: var(--accent-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__toggle {
  transform: rotate(45deg);
}

/* CRÉDIBILITÉ */
.credibility {
  background: var(--primary-bg);
}

.credibility__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.credibility-logo {
  height: 50px;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.credibility-logo:hover {
  opacity: 1;
}

.credibility-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.expertise-stat {
  text-align: center;
  padding: var(--space-4);
}

.expertise-stat__number {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--accent-success);
  margin-bottom: var(--space-2);
}

.expertise-stat__label {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  text-align: center;
}

.cta-final__content > * {
  color: white;
}

.cta-final__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
}

.cta-final__subtitle {
  font-size: var(--text-xl);
  opacity: 0.9;
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.cta-final__stats .stat {
  text-align: center;
}

.cta-final__stats .stat__number {
  color: white;
  font-size: var(--text-3xl);
}

.cta-final__stats .stat__label {
  color: rgba(255, 255, 255, 0.8);
}

.cta-final__actions {
  margin-bottom: var(--space-8);
}

.cta-final__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  opacity: 0.9;
  margin-top: var(--space-4);
}

/* FORMULAIRE */
.lead-form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  margin-top: var(--space-12);
  backdrop-filter: blur(10px);
}

.lead-form-container h3 {
  color: white;
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
  text-align: center;
}

.lead-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-input {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  font-family: var(--font-family);
  transition: all var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: white;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* MOBILE CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  z-index: var(--z-fixed);
  transform: translateY(100%);
  transition: transform var(--transition-base);
  display: none;
}

.mobile-cta.show {
  transform: translateY(0);
}

.mobile-cta__button {
  width: 100%;
  justify-content: center;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 400px) {
  .mobile-cta__button {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-1);
    line-height: 1.2;
  }
  
  .mobile-cta__button i {
    margin-right: 4px;
    font-size: 0.9em;
  }
}

@media (max-width: 320px) {
  .mobile-cta__button {
    font-size: 11px;
    padding: 8px 4px;
  }
}

/* FOOTER */
.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-12) 0 var(--space-6);
}

.footer__clients {
  text-align: center;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__clients-title {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer__brand h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}

.footer__stats {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-3);
}

.footer__certifications {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__certifications p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-1);
}

.footer__contact h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  color: white;
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-base);
}

.footer__legal-link:hover {
  color: white;
  text-decoration: underline;
}

.footer__legal-notice {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: var(--space-2);
  line-height: var(--leading-relaxed);
}

.footer__stats i {
  color: var(--accent-primary);
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact i {
  color: var(--accent-primary);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* PHILOSOPHIE ET COHÉRENCE */
.approach__philosophy {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.philosophy-quote,
.coherence-note {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
}

.philosophy-quote {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
}

.coherence-note {
  background: linear-gradient(135deg, var(--accent-success), var(--accent-secondary));
  color: white;
}

.philosophy-quote h4,
.coherence-note h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
}

.philosophy-quote p,
.coherence-note p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .approach__philosophy {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* GARANTIES SECTION */
.guarantees {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  text-align: center;
}

.guarantees h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--accent-secondary);
  margin-bottom: var(--space-6);
}

.guarantees ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  text-align: left;
}

.guarantees li {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .guarantees ul {
    grid-template-columns: 1fr;
  }
}

/* CTA SIGNATURE */
.cta-final__signature {
  margin-top: var(--space-12);
  text-align: center;
}

.cta-final__signature blockquote {
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  padding-left: var(--space-4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.signature {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.cta-final__secondary {
  margin: var(--space-8) 0;
  text-align: center;
}

.cta-final__secondary p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left var(--transition-base);
    z-index: var(--z-modal);
  }

  .nav__menu.show {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-6);
  }

  .nav__toggle {
    display: block;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .problems__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  /* Bandeau logos mobile */
  .clients-logos {
    margin: 0 0 var(--space-6) 0;
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-4);
  }

  /* Réduire les dégradés sur mobile */
  .clients-logos::before,
  .clients-logos::after {
    width: 30px;
  }

  .client-logo {
    height: 60px;
    max-width: 150px;
    padding: var(--space-2) var(--space-3);
  }

  .logos-track {
    gap: var(--space-4);
  }

  .clients-logos__title {
    font-size: var(--text-xs);
    margin-bottom: var(--space-2);
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding-y: 2rem;
    --section-padding-x: 1rem;
  }

  .hero {
    padding-top: calc(var(--section-padding-y) + 3rem);
  }

  .nav {
    height: 3.5rem;
  }

  /* Ajustements logos pour très petits écrans */
  .clients-logos {
    padding: var(--space-4) var(--space-2);
    margin: 0 -0.5rem var(--space-4) -0.5rem;
  }

  .client-logo {
    height: 50px;
    max-width: 120px;
    padding: var(--space-1) var(--space-2);
  }

  .clients-logos::before,
  .clients-logos::after {
    width: 20px;
  }

  .hero__title {
    margin-bottom: var(--space-4);
  }

  .hero__subtitle {
    margin-bottom: var(--space-8);
  }

  .section__title {
    margin-bottom: var(--space-4);
  }
}

/* SECTION PARCOURS DYLAN */
.journey {
  background: var(--surface);
  padding: var(--space-16) 0;
}

.journey__intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}

.journey__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journey__portrait {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px var(--shadow-medium);
  object-fit: cover;
  aspect-ratio: 3/4;
  margin: 0 auto;
  display: block;
}

.journey__caption {
  margin-top: var(--space-4);
  text-align: center;
}

.journey__caption p {
  margin: var(--space-1) 0;
  font-size: var(--text-sm);
}

.journey__caption-sub {
  color: var(--text-muted);
  font-style: italic;
}

.journey__content {
  padding-left: var(--space-8);
}

.journey__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
}

.journey__subtitle {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
}

.journey__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

/* Timeline Premium */
.journey__timeline {
  margin-bottom: var(--space-20);
  padding: var(--space-12) 0;
}

.timeline__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* Ligne centrale verticale */
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
    rgba(59, 130, 246, 0.1) 0%, 
    rgba(59, 130, 246, 0.4) 50%, 
    rgba(59, 130, 246, 0.1) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

/* Étapes de la timeline */
.timeline__step {
  position: relative;
  margin-bottom: var(--space-16);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  z-index: 3;
}

/* Alternance gauche/droite */
.timeline__step--left {
  flex-direction: row;
}

.timeline__step--left .timeline__card {
  margin-right: calc(50% + var(--space-12));
  text-align: right;
}

.timeline__step--right {
  flex-direction: row-reverse;
}

.timeline__step--right .timeline__card {
  margin-left: calc(50% + var(--space-12));
  text-align: left;
}

/* Pastilles sur la ligne centrale */
.timeline__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  z-index: 4;
  border: 4px solid white;
}

.timeline__icon {
  font-size: 24px;
  filter: grayscale(100%) brightness(0) invert(1);
}

/* Cards premium */
.timeline__card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.1);
  max-width: 450px;
  position: relative;
  z-index: 3;
  transition: all var(--transition-slow);
}

.timeline__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

/* Badges des dates */
.timeline__badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Titres des cards */
.timeline__card-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
}

/* Texte des cards */
.timeline__card-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin: 0;
}

/* Mots-clés en surbrillance */
.timeline__highlight {
  color: var(--accent-primary);
  font-weight: var(--font-semibold);
}

/* Phrases d'insight */
.timeline__insight {
  font-size: var(--text-sm);
  color: #666;
  font-style: italic;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  line-height: var(--leading-relaxed);
}

/* Comparaison Erreurs vs Réussites */
.journey__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.comparison__column {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 4px 20px var(--shadow-subtle);
  transition: all var(--transition-base);
}

.comparison__column:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.comparison__column--errors {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--error);
}

.comparison__column--success {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-left: 4px solid var(--success);
}

.comparison__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
}

.comparison__title--errors {
  color: var(--error);
}

.comparison__title--success {
  color: var(--success);
}

.comparison__list {
  list-style: none;
  padding: 0;
}

.comparison__list li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-6);
  position: relative;
  line-height: var(--leading-relaxed);
}

.comparison__column--errors .comparison__list li::before {
  content: '❌';
  position: absolute;
  left: 0;
  top: 0;
}

.comparison__column--success .comparison__list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

/* Guide d'alignement */
.journey__alignment {
  margin-bottom: var(--space-16);
}

.alignment__content {
  background: var(--surface-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--border-light);
}

.alignment__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-8);
}

.alignment__checklist {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-6);
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.checklist__item i {
  color: var(--success);
  margin-top: 2px;
  flex-shrink: 0;
}

.checklist__item span {
  line-height: var(--leading-relaxed);
}

.alignment__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
  justify-self: center;
}

.alignment__portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-3) auto;
  box-shadow: 0 4px 15px var(--shadow-medium);
  display: block;
}

.alignment__signature {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

.alignment__result {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  border-left: 4px solid var(--accent-primary);
}

.alignment__result i {
  color: var(--accent-primary);
  margin-right: var(--space-2);
}

/* Conclusion */
.journey__conclusion {
  text-align: center;
}

.conclusion__quote {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.conclusion__quote i {
  font-size: var(--text-2xl);
  opacity: 0.3;
}

.conclusion__quote .fa-quote-left {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.conclusion__quote .fa-quote-right {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
}

.conclusion__quote p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin: 0;
  padding: 0 var(--space-8);
}

/* Responsive */
@media screen and (max-width: 968px) {
  .journey__intro {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }
  
  .journey__content {
    padding-left: 0;
  }
  
  .journey__comparison {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .alignment__checklist {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Timeline responsive - Mode vertical simple avec centrage */
  .timeline__container {
    padding: 0 var(--space-4);
  }
  
  /* Garder la ligne au centre sur mobile */
  .timeline__line {
    left: 50%;
    width: 2px;
  }
  
  .timeline__step--left,
  .timeline__step--right {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline__step--left .timeline__card,
  .timeline__step--right .timeline__card {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    max-width: 100%;
    margin-top: var(--space-8);
  }
  
  /* Garder les bulles au centre sur mobile */
  .timeline__dot {
    left: 50%;
    width: 50px;
    height: 50px;
    top: 0;
    transform: translate(-50%, 0);
  }
  
  .timeline__icon {
    font-size: 20px;
  }
  
  /* Alignement à gauche des bullet points sur mobile */
  .checklist__item {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .journey {
    padding: var(--space-12) 0;
  }
  
  .journey__portrait {
    max-width: 250px;
  }
  
  /* Centrage renforcé des photos sur mobile */
  .journey__photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
  
  .journey__portrait {
    margin: 0 auto;
  }
  
  .alignment__avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
  
  .alignment__portrait {
    margin: 0 auto var(--space-3) auto;
  }
  
  .journey__title {
    font-size: var(--text-xl);
  }
  
  /* Timeline mobile - Version compacte */
  .timeline__card {
    padding: var(--space-6);
  }
  
  .timeline__card-title {
    font-size: var(--text-base);
  }
  
  .timeline__card-text {
    font-size: var(--text-sm);
  }
  
  .timeline__step {
    margin-bottom: var(--space-12);
  }
  
  .comparison__column,
  .alignment__content {
    padding: var(--space-6);
  }
  
  .conclusion__quote {
    padding: var(--space-6);
  }
  
  .conclusion__quote p {
    font-size: var(--text-base);
    padding: 0 var(--space-6);
  }
}

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

@media (prefers-contrast: high) {
  :root {
    --shadow-subtle: rgba(0, 0, 0, 0.3);
    --shadow-soft: rgba(0, 0, 0, 0.4);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-strong: rgba(0, 0, 0, 0.6);
  }
}

/* PRINT STYLES */
@media print {
  .header,
  .nav__toggle,
  .btn,
  .hero__actions {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}