/* BRAVOO V4 - NIVEAU AGENCE PREMIUM */
/* Refonte complète par Viktor — Mars 2026 */

/* ========================================
   RESET & BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* PALETTE DARK MODE SPOTIFY */
  --primary: #1DB954;              /* Vert Spotify — CTAs, accents */
  --primary-light: #1ED760;        /* Vert clair — hover */
  --primary-dark: #169C46;         /* Vert foncé */
  
  /* Couleurs secondaires */
  --success: #1DB954;
  --accent: #F5C518;               /* Jaune doré — accents secondaires, étoiles */
  --white: #FFFFFF;
  
  /* Texte */
  --text-primary: #FFFFFF;         /* Texte principal — blanc */
  --text-secondary: #B3B3B3;      /* Texte secondaire — gris clair */
  --text-muted: #727272;           /* Texte tertiaire */
  
  /* Backgrounds */
  --bg-page: #121212;              /* Fond principal — noir Spotify */
  --bg-surface: #181818;           /* Cartes, surfaces élevées */
  --bg-surface-hover: #282828;     /* Hover sur les cartes */
  --bg-section-alt: #0A0A0A;      /* Sections alternées — noir plus profond */
  --bg-gradient-hero: linear-gradient(165deg, #121212 0%, #181818 100%);
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --h1-size: 48px;
  --h1-weight: 800;
  --h2-size: 36px;
  --h2-weight: 700;
  --body-size: 16px;
  --body-weight: 400;
  
  /* Spacing */
  --section-spacing: 120px;
  
  /* Effects */
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-radius-card: 16px;
  --border-radius-button: 12px;
  --border-radius-pill: 9999px;
  
  /* Grain texture */
  --grain-opacity: 0.02;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Grain texture globale */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: var(--grain-opacity);
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' fill='%23FFF'/%3E%3C/svg%3E");
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.1;
  color: var(--text-primary);
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.2;
  color: var(--text-primary);
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  padding: 20px 0;
  transition: box-shadow 0.3s ease;
}

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

.logo {
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s ease;
  overflow: visible;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-brav {
  color: var(--text-primary);
}

.logo-oo {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  font-size: 34px;
  vertical-align: baseline;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  overflow: visible;
  padding-right: 8px;
  padding-top: 14px;
}

/* Étoile de réussite sur le logo */
.logo-oo::after {
  content: '★';
  position: absolute;
  top: -12px;
  right: -4px;
  font-size: 14px;
  -webkit-text-fill-color: #F5C518;
  background: none;
  -webkit-background-clip: unset;
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.5));
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline animé qui grandit depuis la gauche */
.nav-links a:not(.cta-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:not(.cta-nav):hover::after {
  width: 100%;
}

.nav-links a:not(.cta-nav):hover {
  color: var(--white);
}

.cta-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--border-radius-button);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover */
.cta-nav:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.3);
}

/* Glow pulsant subtil */
.cta-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s ease;
}

.cta-nav:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--border-radius-button);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
  animation: gentleGlow 3s ease-in-out infinite;
}

/* Glow pulsant subtil pour les CTA principaux */
@keyframes gentleGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
  }
  50% {
    box-shadow: 0 4px 24px rgba(29, 185, 84, 0.4);
  }
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(29, 185, 84, 0.4);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--bg-page);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 80px 0 var(--section-spacing);
  background: var(--bg-gradient-hero);
  overflow: hidden;
  position: relative;
}

/* Blobs/shapes décoratives animées lentement — vert à faible opacité */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.03;
  filter: blur(80px);
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatBlob1 20s ease-in-out infinite;
}

.hero::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  animation: floatBlob2 25s ease-in-out infinite;
}

@keyframes floatBlob1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

@keyframes floatBlob2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, -50px) scale(1.15);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

/* Mot-clé en gradient dans le h1 avec highlight décoratif */
.hero h1 {
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

/* Animation mot par mot pour le titre hero */
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero h1 .word.highlight {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-light), #F5C518, var(--primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             shimmer 3s ease-in-out infinite 0.8s;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Soulignement décoratif qui se DESSINE sous "Réussis" */
.hero h1 .word.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.4);
  animation: underlineDraw 0.8s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineDraw {
  to {
    width: 100%;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: ctaEntrance 0.8s 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes ctaEntrance {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Vibration subtile au load pour attirer l'attention */
.hero-ctas .btn-primary {
  animation: ctaEntrance 0.8s 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
             vibrate 0.3s 1.8s ease-in-out;
}

@keyframes vibrate {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 0;
  animation: fadeIn 0.8s 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ========================================
   MOCKUP iPHONE 3D (LE HÉROS)
   ======================================== */
.phone-3d-container {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: phoneSlideIn 1s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes phoneSlideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-3d {
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1E2230 0%, #1C1F2E 100%);
  border-radius: 48px;
  padding: 12px;
  position: relative;
  transform: rotateY(-12deg) rotateX(3deg);
  box-shadow: 
    30px 40px 80px rgba(0, 0, 0, 0.25),
    15px 20px 40px rgba(5, 150, 105, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  
  /* FLOTTEMENT PERMANENT + GLOW PULSANT */
  animation: phoneFloat 6s ease-in-out infinite, phoneGlow 4s ease-in-out infinite;
}

/* Glow vert pulsant derrière le phone */
@keyframes phoneGlow {
  0%, 100% {
    filter: drop-shadow(0 20px 40px rgba(29, 185, 84, 0.2));
  }
  50% {
    filter: drop-shadow(0 25px 50px rgba(29, 185, 84, 0.35));
  }
}

/* Animation de flottement permanent avec ombre qui bouge */
@keyframes phoneFloat {
  0%, 100% {
    transform: rotateY(-12deg) rotateX(3deg) translateY(-8px);
    box-shadow: 
      30px 48px 90px rgba(0, 0, 0, 0.3),
      15px 24px 50px rgba(5, 150, 105, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  50% {
    transform: rotateY(-12deg) rotateX(3deg) translateY(8px);
    box-shadow: 
      30px 35px 70px rgba(0, 0, 0, 0.2),
      15px 18px 35px rgba(5, 150, 105, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
}

/* Reflet brillant en haut du phone */
.phone-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  border-radius: 48px 48px 0 0;
  pointer-events: none;
  z-index: 2;
}

.phone-3d:hover {
  transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #1A1A1A 0%,
    #222222 25%,
    #1C1C1C 50%,
    #202020 75%,
    #1A1A1A 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  position: relative;
  padding: 20px 16px;
}

/* Gradient pastel animé qui shift colors lentement */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Reflet de lumière qui se déplace lentement sur l'écran */
.phone-screen::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes lightSweep {
  0%, 100% {
    transform: translate(-100%, -100%);
  }
  50% {
    transform: translate(50%, 50%);
  }
}

.dynamic-island {
  width: 120px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 5;
}

/* ========================================
   PRESS LOGOS
   ======================================== */
.press-section {
  padding: 40px 0;
  background: var(--bg-section-alt);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.press-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.press-logos {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

/* Marquee CSS infini */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Styles typographiques différents pour simuler des logos */
.press-logo {
  font-size: 18px;
  font-weight: 700;
  color: #9CA3AF;
  opacity: 0.75;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

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

.press-logo:nth-child(1) {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 20px;
}

.press-logo:nth-child(2) {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.press-logo:nth-child(3) {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 17px;
}

.press-logo:nth-child(4) {
  font-weight: 600;
  font-size: 18px;
}

.press-logo:nth-child(5) {
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 17px;
}

/* ========================================
   MARQUEE/TICKER - BANDEAU DÉFILANT
   ======================================== */
.ticker-section {
  background: var(--primary);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ticker-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.ticker-content {
  display: flex;
  gap: 80px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

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

.ticker-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::before {
  content: '★';
  color: #F5C518;
  font-size: 20px;
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.4));
}

/* ========================================
   CATALOGUE SECTION
   ======================================== */
.catalogue-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-page);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
}

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

.catalogue-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.catalogue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--primary);
  border-radius: 16px 0 0 16px;
  transition: height 0.4s ease;
}

.catalogue-card:hover::before {
  height: 100%;
}

.catalogue-card:hover {
  background: var(--bg-surface-hover);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-subtle);
}

.catalogue-icon {
  font-size: 48px;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
  color: var(--primary);
}

.catalogue-icon svg {
  width: 40px;
  height: 40px;
}

.catalogue-card:hover .catalogue-icon {
  transform: scale(1.1) rotate(-5deg);
}

.catalogue-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.catalogue-card p {
  font-size: 14px;
  margin-bottom: 12px;
}

.catalogue-badge {
  display: inline-block;
  background: rgba(29, 185, 84, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-section-alt);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-subtle);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  border-color: var(--primary);
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
}

/* ========================================
   APP IN ACTION
   ======================================== */
.app-action-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-page);
}

.mockups-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.phone-mini {
  width: 200px;
  height: 420px;
  background: linear-gradient(145deg, #1E2230 0%, #1C1F2E 100%);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.phone-mini:hover {
  transform: translateY(-8px);
}

.phone-mini-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6B7280;
  padding: 16px;
  text-align: center;
}

/* ========================================
   FEATURES
   ======================================== */
.features-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-section-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-card);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  background: var(--bg-surface-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
  border-color: var(--border-subtle);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-8deg);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-page);
}

.testimonials-banner {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--bg-surface);
  border-radius: var(--border-radius-card);
  border: 1px solid var(--border-subtle);
}

.testimonials-banner h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.testimonials-banner p {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-card);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  border-radius: var(--border-radius-card) 0 0 var(--border-radius-card);
  transition: width 0.3s ease;
}

.testimonial-card:hover::before {
  width: 4px;
}

.testimonial-card:hover {
  background: var(--bg-surface-hover);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-left: 28px;
}

.testimonial-text::before {
  content: '«';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 15px;
}

.author-context {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.verified-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  padding: 80px 0;
  background: var(--bg-section-alt);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Pattern overlay (dots) */
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-item h3 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: none;
}

.stats-item p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-page);
}

.pricing-card {
  max-width: 500px;
  margin: 60px auto 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-card);
  padding: 48px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: var(--bg-surface-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
}

.price-tag {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-period {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin: 32px 0;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========================================
   CTA FINAL
   ======================================== */
.final-cta-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-section-alt);
  text-align: center;
}

.final-cta-section h2 {
  margin-bottom: 24px;
}

.final-cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 60px 0 40px;
  background: var(--bg-section-alt);
  color: var(--text-muted);
}

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

.footer-brand p {
  margin: 16px 0;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 14px;
}

.footer .logo-brav {
  color: var(--white);
}

.hero-compact {
  padding: 60px 0;
}

.pricing-compact {
  padding-top: 0;
}

/* ========================================
   ANIMATIONS SCROLL
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Section headers : h2 depuis la gauche, p depuis le bas */
.section-header h2 {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header.visible h2 {
  opacity: 1;
  transform: translateX(0);
}

.section-header p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header.visible p {
  opacity: 1;
  transform: translateY(0);
}

/* Catalogue cards : depuis le bas avec scale */
.catalogue-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.catalogue-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Feature cards : alternent gauche/droite */
.feature-card {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.feature-card:nth-child(odd) {
  transform: translateX(-40px);
}

.feature-card:nth-child(even) {
  transform: translateX(40px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Testimonial cards : fade-in + scale */
.testimonial-card {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Step cards */
.step-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE - 4 BREAKPOINTS
   ======================================== */

/* Grand desktop (>1024px) : déjà défini par défaut */

/* Petit desktop (768px - 1024px) */
@media (max-width: 1024px) {
  :root {
    --h1-size: 40px;
    --h2-size: 32px;
    --section-spacing: 80px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-grid {
    gap: 40px;
  }

  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

/* Tablette (480px - 768px) */
@media (max-width: 768px) {
  :root {
    --h1-size: 32px;
    --h2-size: 28px;
    --section-spacing: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    padding: 20px;
    box-shadow: var(--card-shadow-hover);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
  }

  .trust-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .phone-3d-container {
    order: -1;
  }

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

  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-container::before {
    display: none;
  }

  .mockups-row {
    flex-direction: column;
    align-items: center;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

/* Mobile (<480px) */
@media (max-width: 480px) {
  :root {
    --h1-size: 28px;
    --h2-size: 24px;
    --body-size: 15px;
    --section-spacing: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

  .phone-3d {
    width: 240px;
    height: 500px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price-tag {
    font-size: 42px;
  }

  .stats-item h3 {
    font-size: 36px;
  }
  
  /* Réduire les animations lourdes sur mobile */
  .phone-3d {
    animation: phoneFloatMobile 8s ease-in-out infinite;
  }
  
  @keyframes phoneFloatMobile {
    0%, 100% {
      transform: rotateY(-8deg) rotateX(2deg) translateY(-4px);
    }
    50% {
      transform: rotateY(-8deg) rotateX(2deg) translateY(4px);
    }
  }
  
  .hero::before,
  .hero::after {
    display: none;
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .phone-3d {
    animation: none;
  }
  
  .ticker-content {
    animation: none;
  }
  
  .press-logos {
    animation: none;
  }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), #F5C518);
  z-index: 10000;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.5);
  transition: width 0.1s ease-out;
}

/* ========================================
   PARTICULES FLOTTANTES HERO
   ======================================== */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(29, 185, 84, 0.6);
  animation: particleFloat 12s ease-in-out infinite;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), -100px) scale(1);
    opacity: 0;
  }
}

/* Positions aléatoires des particules */
.particle:nth-child(1) { left: 10%; animation-delay: 0s; --tx: 20px; }
.particle:nth-child(2) { left: 20%; animation-delay: 1.5s; --tx: -30px; }
.particle:nth-child(3) { left: 30%; animation-delay: 3s; --tx: 40px; }
.particle:nth-child(4) { left: 40%; animation-delay: 4.5s; --tx: -20px; }
.particle:nth-child(5) { left: 50%; animation-delay: 6s; --tx: 30px; }
.particle:nth-child(6) { left: 60%; animation-delay: 7.5s; --tx: -40px; }
.particle:nth-child(7) { left: 70%; animation-delay: 9s; --tx: 25px; }
.particle:nth-child(8) { left: 80%; animation-delay: 10.5s; --tx: -35px; }
.particle:nth-child(9) { left: 15%; animation-delay: 2s; --tx: 15px; }
.particle:nth-child(10) { left: 25%; animation-delay: 3.5s; --tx: -25px; }
.particle:nth-child(11) { left: 35%; animation-delay: 5s; --tx: 35px; }
.particle:nth-child(12) { left: 45%; animation-delay: 6.5s; --tx: -15px; }
.particle:nth-child(13) { left: 55%; animation-delay: 8s; --tx: 20px; }
.particle:nth-child(14) { left: 65%; animation-delay: 9.5s; --tx: -30px; }
.particle:nth-child(15) { left: 75%; animation-delay: 11s; --tx: 40px; }
.particle:nth-child(16) { left: 85%; animation-delay: 0.5s; --tx: -20px; }
.particle:nth-child(17) { left: 12%; animation-delay: 2.5s; --tx: 25px; }
.particle:nth-child(18) { left: 42%; animation-delay: 4s; --tx: -35px; }
.particle:nth-child(19) { left: 62%; animation-delay: 5.5s; --tx: 30px; }
.particle:nth-child(20) { left: 82%; animation-delay: 7s; --tx: -25px; }

/* ========================================
   PAGES LÉGALES
   ======================================== */

.content-section {
  padding: 80px 0 120px;
  background: var(--bg-page);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: var(--bg-surface);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.legal-card:hover {
  background: var(--bg-surface-hover);
  box-shadow: var(--card-shadow);
}

.legal-card h2 {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.legal-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-card ul li {
  margin-bottom: 12px;
}

.legal-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-card a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.legal-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-section {
    padding: 60px 0 80px;
  }
  
  .legal-card {
    padding: 24px;
    margin-bottom: 16px;
  }
  
  .legal-card h2 {
    font-size: 20px;
  }
  
  .legal-card p,
  .legal-card ul {
    font-size: 15px;
  }
}
