/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Variant Dark */
@custom-variant dark (&:is(.dark *));

/* CSS Variables from provided code */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: #030213;
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
  
  /* Text sizes */
  --text-2xl: 1.5rem;
  --text-xl: 1.25rem;
  --text-lg: 1.125rem;
  --text-base: 1rem;
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-input-background: var(--input-background);
  --color-switch-background: var(--switch-background);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  * {
    border-color: var(--border);
    outline-color: var(--ring);
    outline-opacity: 0.5;
  }

  body {
    background-color: var(--background);
    color: var(--foreground);
  }
}

/**
 * Base typography. This is not applied to elements which have an ancestor with a Tailwind text class.
 */
@layer base {
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) {
    h1 {
      font-size: var(--text-2xl);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    h2 {
      font-size: var(--text-xl);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    h3 {
      font-size: var(--text-lg);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    h4 {
      font-size: var(--text-base);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    p {
      font-size: var(--text-base);
      font-weight: var(--font-weight-normal);
      line-height: 1.5;
    }

    label {
      font-size: var(--text-base);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    button {
      font-size: var(--text-base);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    input {
      font-size: var(--text-base);
      font-weight: var(--font-weight-normal);
      line-height: 1.5;
    }
  }
}

html {
  font-size: var(--font-size);
}

:root {
  /* Colors - Dark theme with purple accents */
  --bg-primary: #0a0a0f;
  --bg-secondary: #13131a;
  --bg-tertiary: #1a1a24;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  
  --purple-300: #c4b5fd;
  --purple-400: #a78bfa;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-vibrant: #c4b5fd;
  
  /* Variables rgba() pour opacité - seront mises à jour dynamiquement par le script */
  --purple-400-rgba-03: rgba(167, 139, 250, 0.03);
  --purple-400-rgba-05: rgba(167, 139, 250, 0.05);
  --purple-400-rgba-06: rgba(167, 139, 250, 0.06);
  --purple-400-rgba-08: rgba(167, 139, 250, 0.08);
  --purple-400-rgba-1: rgba(167, 139, 250, 0.1);
  --purple-400-rgba-12: rgba(167, 139, 250, 0.12);
  --purple-400-rgba-15: rgba(167, 139, 250, 0.15);
  --purple-400-rgba-18: rgba(167, 139, 250, 0.18);
  --purple-400-rgba-2: rgba(167, 139, 250, 0.2);
  --purple-400-rgba-25: rgba(167, 139, 250, 0.25);
  --purple-400-rgba-3: rgba(167, 139, 250, 0.3);
  --purple-400-rgba-35: rgba(167, 139, 250, 0.35);
  --purple-400-rgba-4: rgba(167, 139, 250, 0.4);
  --purple-400-rgba-5: rgba(167, 139, 250, 0.5);
  --purple-400-rgba-6: rgba(167, 139, 250, 0.6);
  --purple-400-rgba-7: rgba(167, 139, 250, 0.7);
  --purple-400-rgba-8: rgba(167, 139, 250, 0.8);
  --purple-400-rgba-9: rgba(167, 139, 250, 0.9);
  --purple-400-rgba-1-full: rgba(167, 139, 250, 1);
  --purple-400-rgba-12-full: rgba(167, 139, 250, 1.2);
  --purple-400-rgba-14-full: rgba(167, 139, 250, 1.4);
  --purple-400-rgba-04: rgba(167, 139, 250, 0.04);
  --purple-400-rgba-0: rgba(167, 139, 250, 0);
  
  --purple-500-rgba-08: rgba(139, 92, 246, 0.08);
  --purple-500-rgba-4: rgba(139, 92, 246, 0.4);
  --purple-500-rgba-05: rgba(139, 92, 246, 0.05);
  --purple-500-rgba-1: rgba(139, 92, 246, 0.1);
  --purple-500-rgba-3: rgba(139, 92, 246, 0.3);
  --purple-500-rgba-45: rgba(139, 92, 246, 0.45);
  
  --purple-600-rgba-006: rgba(124, 58, 237, 0.06);
  --purple-600-rgba-008: rgba(124, 58, 237, 0.08);
  --purple-600-rgba-012: rgba(124, 58, 237, 0.12);
  --purple-600-rgba-003: rgba(124, 58, 237, 0.03);
  --purple-600-rgba-1: rgba(124, 58, 237, 0.1);
  --purple-600-rgba-15: rgba(124, 58, 237, 0.15);
  --purple-600-rgba-2: rgba(124, 58, 237, 0.2);
  --purple-600-rgba-25: rgba(124, 58, 237, 0.25);
  --purple-600-rgba-3: rgba(124, 58, 237, 0.3);
  --purple-600-rgba-4: rgba(124, 58, 237, 0.4);
  --purple-600-rgba-05: rgba(124, 58, 237, 0.05);
  
  --purple-300-rgba-3: rgba(196, 181, 253, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: var(--purple-400);
  
  /* Spacing - Multiple of 8 */
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --space-128: 128px;
  
  /* Section spacing - uniform spacing between sections */
  --section-spacing: var(--space-96);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--purple-400);
}

html {
  scroll-behavior: smooth;
}

/* Mobile: Allow scrolling - Force with !important */
@media (max-width: 768px) {
  html {
    /* Allow natural scrolling on mobile */
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    /* Allow natural scrolling on mobile */
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  /* Correction du bug de scroll mobile */
  overflow-y: auto;
  height: auto;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 30%, var(--purple-600-rgba-012) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--purple-400-rgba-1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, var(--purple-500-rgba-08) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, var(--purple-600-rgba-008) 0%, transparent 40%);
  pointer-events: none;
  animation: global-bg-float 30s infinite ease-in-out;
}

@keyframes global-bg-float {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.9;
    transform: scale(1.05) rotate(2deg);
  }
  66% {
    opacity: 0.95;
    transform: scale(0.98) rotate(-1deg);
  }
}

body > * {
  position: relative;
  z-index: 1;
}

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


/* Notifications Carousel - défilement infini iOS style */
.notifications-carousel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 260px;
  width: 420px;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  text-align: left;
}

.notification {
  position: absolute;
  left: 50%;
  width: 380px;
  transform: translateX(-50%);
  background: rgba(28, 28, 35, 0.85);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: var(--space-16);
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  will-change: transform;
  text-align: left;
}

.notification-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.notification-logo img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.notification-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.notification-brand {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.2;
  text-align: left;
}

.notification-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: var(--space-16);
  text-align: right;
}

.notification-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.1px;
  text-align: left;
}

.notification-amount {
  font-weight: 600;
  color: var(--text-primary);
}

/* Animation de défilement infini sans fade */
@keyframes scrollUp {
  0% {
    transform: translate(-50%, 520px);
  }
  100% {
    transform: translate(-50%, -120px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-128) 0 var(--section-spacing);
  overflow: hidden;
  background: transparent;
  z-index: 20; /* Au-dessus des notifications (z-index: 10) */
}

.hero::after {
  display: none;
}


.hero .container {
  position: relative;
  z-index: 21; /* Au-dessus du hero lui-même */
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-8) var(--space-24);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-32);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-8);
  margin-top: var(--space-128);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-48);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-16);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-80);
  align-items: center;
}

.hero-cta .btn {
  height: 48px;
  align-items: center;
}

/* Même hauteur pour les CTA dans comparison-cta (FAQ et autres sections) */
.comparison-cta .btn {
  height: 48px;
  align-items: center;
}

/* Appliquer la même hauteur à tous les CTA sauf Discord */
.btn-primary:not(.btn-discord-avatars),
.cta-premium:not(.btn-discord-avatars) {
  height: 48px;
  align-items: center;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg:last-child {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CTA Premium - Design innovant */
.cta-premium-wrapper {
  position: relative;
  display: inline-block;
}

.cta-premium-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: radial-gradient(circle, var(--purple-500-rgba-4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.cta-premium-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.cta-particle {
  position: absolute;
  font-size: 18px;
  opacity: 0;
  animation: particle-float 4s ease-in-out infinite;
}

.cta-particle:nth-child(1) {
  top: -10px;
  left: 10%;
  animation-delay: 0s;
}

.cta-particle:nth-child(2) {
  top: -15px;
  right: 15%;
  animation-delay: 0.8s;
}

.cta-particle:nth-child(3) {
  bottom: -10px;
  left: 20%;
  animation-delay: 1.6s;
}

.cta-particle:nth-child(4) {
  bottom: -15px;
  right: 10%;
  animation-delay: 2.4s;
}

.cta-particle:nth-child(5) {
  top: 50%;
  left: -10px;
  animation-delay: 3.2s;
}

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

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scale(1.2);
  }
}

.cta-premium {
  position: relative;
}

.cta-diamond-icon {
  flex-shrink: 0;
  font-size: 20px;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cta-premium:hover .cta-diamond-icon {
  animation-duration: 1.5s;
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: var(--text-primary);
  box-shadow: 0 4px 16px var(--purple-400-rgba-2);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  box-shadow: 
    0 8px 32px var(--purple-400-rgba-4),
    0 0 0 1px var(--purple-300-rgba-3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover .cta-diamond-icon {
  transform: scale(1.2) rotate(8deg) translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.9)) brightness(1.1);
  animation: icon-float 1.5s ease-in-out infinite;
}

.btn-primary:hover span:not(.cta-diamond-icon) {
  transform: translateX(2px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover svg:last-child {
  transform: translateX(6px) scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-primary > * {
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.15s;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--surface-hover);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.15);
}

.btn-secondary:hover .gift-icon {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1)) brightness(1.2);
}

.btn-secondary:hover svg:last-child {
  transform: translateX(4px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.btn-large {
  padding: var(--space-24) var(--space-48);
  font-size: 18px;
  border-radius: 24px;
}

.btn-compact {
  padding: var(--space-16) var(--space-24);
  font-size: 14px;
}

/* Discord Button - Style premium */
.btn-discord-avatars {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-8) var(--space-12);
  font-size: 12px;
  height: 36px;
  border-radius: 16px;
}

.btn-discord-avatars:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--surface-hover);
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(88, 101, 242, 0.2), 0 0 20px rgba(88, 101, 242, 0.15);
}

.btn-discord-avatars:hover .discord-icon {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 12px rgba(88, 101, 242, 1)) brightness(1.2);
}

.btn-discord-avatars:hover svg:last-child {
  transform: translateX(4px);
}

.btn-discord-avatars:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.discord-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  animation: discord-shine 2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(88, 101, 242, 0.6));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes discord-shine {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(88, 101, 242, 0.6)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(88, 101, 242, 1)) brightness(1.4);
  }
}

/* Discord CTA Wrapper */
.discord-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: var(--space-80);
}

.discord-cta-faq {
  margin-top: var(--space-24);
  margin-bottom: var(--space-24);
}

/* Discord CTA dans la section Méthode */
.discord-cta-methode {
  margin-top: var(--space-16);
  display: flex;
  justify-content: center;
}

.discord-cta-methode .btn-discord {
  width: auto;
  justify-content: center;
}

/* Discord button dans le header */
.btn-discord-header {
  flex-shrink: 0;
  margin: 0;
}

/* Discord button à côté des avatars */
.btn-discord-avatars {
  flex-shrink: 0;
  margin: 0;
  align-self: center;
}

/* Hero Testimonials */
.hero-testimonials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-24);
  margin-top: calc(var(--space-24) * -1);
  flex-wrap: wrap;
}

.testimonial-item {
  display: none;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-16);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--purple-400-rgba-15);
  border-radius: 29px;
  transition: all 0.3s ease;
}

.testimonial-item.show {
  display: flex;
}

.testimonial-item:hover {
  background: var(--purple-400-rgba-08);
  border-color: var(--purple-400-rgba-3);
  transform: translateY(-2px);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--purple-500);
  box-shadow: 0 0 14px var(--purple-400-rgba-3);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: left;
}

.testimonial-amount {
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.testimonial-period {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* Mobile: Grille 2x2 pour les témoignages hero */
@media (max-width: 768px) {
  .hero-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
    margin-top: calc(var(--space-24) * -1);
    max-width: 100%;
  }

  .testimonial-item {
    padding: var(--space-12) var(--space-12);
    border-radius: 20px;
    gap: var(--space-12);
    width: 100%;
  }

  .discord-cta-wrapper {
    margin-top: var(--space-12);
    margin-bottom: var(--space-12);
  }

  .discord-cta-wrapper .btn-discord {
    width: auto;
    max-width: 100%;
    padding: var(--space-8) var(--space-14);
    font-size: 12px;
  }

  .discord-cta-faq {
    margin-top: var(--space-16);
  }

  .discord-cta-methode {
    margin-top: var(--space-12);
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
    border-width: 1.5px;
    box-shadow: 0 0 10px var(--purple-400-rgba-25);
  }

  .testimonial-amount {
    font-size: 14px;
  }

  .testimonial-period {
    font-size: 11px;
  }
}

/* Video Hero */
.hero-video {
  margin-top: calc(var(--space-16) * 3);
  margin-bottom: calc(var(--space-32) * 2);
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-24);
}

/* Lecteur VTurb - Design exact avec couleurs adaptatives */
.vturb-video-player {
  position: relative;
  width: 100%;
  padding-top: 4px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: calc(56.25% + 4px); /* Ratio 16:9 + padding bottom */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-600) 100%);
  box-sizing: border-box;
}

/* Boutons en haut du lecteur vidéo */
.vturb-top-controls {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  z-index: 15;
  pointer-events: none;
}

.vturb-top-play-btn,
.vturb-top-fullscreen-btn {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, color-mix(in srgb, var(--purple-400) 10%, transparent), color-mix(in srgb, var(--purple-400) 5%, transparent), transparent);
  backdrop-filter: blur(4px);
  border: 1px solid color-mix(in srgb, var(--purple-400) 20%, transparent);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: auto;
  flex-shrink: 0;
  z-index: 20;
}

@media (min-width: 640px) {
  .vturb-top-play-btn,
  .vturb-top-fullscreen-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.vturb-top-play-btn:hover,
.vturb-top-fullscreen-btn:hover {
  color: white;
  border-color: color-mix(in srgb, var(--purple-400) 40%, transparent);
  background: transparent;
}

.vturb-top-play-btn:active,
.vturb-top-fullscreen-btn:active {
  transform: scale(0.95);
}

.vturb-top-play-btn svg,
.vturb-top-fullscreen-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

@media (min-width: 640px) {
  .vturb-top-play-btn svg,
  .vturb-top-fullscreen-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.vturb-top-play-btn {
  margin-left: 0;
}

.vturb-top-fullscreen-btn {
  margin-right: 0;
}

.vturb-video-player::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #000;
  border-radius: 12px;
  z-index: 0;
  overflow: hidden;
}

.vturb-video-element {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  background: #000;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  /* Masquer les contrôles natifs sur tous les navigateurs */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Masquer les contrôles natifs sur mobile */
.vturb-video-element::-webkit-media-controls {
  display: none !important;
}

.vturb-video-element::-webkit-media-controls-enclosure {
  display: none !important;
}

.vturb-video-element::-webkit-media-controls-panel {
  display: none !important;
}

.vturb-video-element::-webkit-media-controls-play-button {
  display: none !important;
}

.vturb-video-element::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.vturb-controls {
  position: absolute;
  bottom: 39px;
  left: 4px;
  right: 4px;
  background: transparent;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 5;
  /* S'assurer que les menus ne sortent pas du cadre */
  overflow: visible;
}

.vturb-video-player:hover .vturb-controls,
.vturb-video-player.controls-visible .vturb-controls {
  opacity: 1;
  pointer-events: all;
}

/* Masquer les contrôles uniquement quand l'overlay son est visible */
.vturb-video-player:not(.playing) .vturb-controls {
  opacity: 0;
  pointer-events: none;
}

.vturb-video-player:not(.playing):hover .vturb-controls {
  opacity: 1;
  pointer-events: all;
}

.vturb-play-pause {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
  padding: 0;
}

.vturb-play-pause:hover {
  opacity: 0.8;
}

.vturb-play-pause svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* Barre de progression non-linéaire - Style VTurb exact */
.vturb-progress-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vturb-progress-bar {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--purple-400) 15%, transparent), color-mix(in srgb, var(--purple-600) 10%, transparent));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--purple-400) 20%, transparent);
  border-top: none;
  border-radius: 0 0 12px 12px;
  cursor: pointer;
  overflow: hidden;
  z-index: 15;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--purple-400) 10%, transparent);
  width: calc(100% - 8px);
  box-sizing: border-box;
}

.vturb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-400) 0%, var(--purple-500) 50%, var(--purple-600) 100%);
  border-radius: 0 0 0 12px;
  position: relative;
  transition: width 0.1s linear;
  width: 0%;
  box-shadow: 0 0 12px color-mix(in srgb, var(--purple-400) 40%, transparent), inset 0 0 8px rgba(255, 255, 255, 0.1);
  z-index: 16;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vturb-progress-handle {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.vturb-progress-bar:hover .vturb-progress-handle {
  opacity: 1;
}

.vturb-time {
  display: flex;
  gap: 4px;
  color: white;
  font-size: 11px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.vturb-controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vturb-volume-container {
  position: relative;
  /* S'assurer que le menu reste dans le cadre */
  overflow: visible;
  display: inline-block;
}

.vturb-volume-btn {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, color-mix(in srgb, var(--purple-400) 10%, transparent), color-mix(in srgb, var(--purple-400) 5%, transparent), transparent);
  backdrop-filter: blur(4px);
  border: 1px solid color-mix(in srgb, var(--purple-400) 20%, transparent);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .vturb-volume-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.vturb-volume-btn:hover {
  color: white;
  border-color: color-mix(in srgb, var(--purple-400) 40%, transparent);
  background: transparent;
}

.vturb-volume-btn:active {
  transform: scale(0.95);
}

.vturb-volume-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  transition: fill 0.2s ease;
}

@media (min-width: 640px) {
  .vturb-volume-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.vturb-volume-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-400-rgba-1) 0%, var(--purple-600-rgba-008) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 16px 12px;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px var(--purple-400-rgba-3);
  border: 1px solid var(--purple-400-rgba-3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  overflow: hidden;
}

.vturb-volume-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--purple-400-rgba-05) 0%, var(--purple-600-rgba-003) 100%);
  pointer-events: none;
  z-index: -1;
}

.vturb-volume-container.menu-open .vturb-volume-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  z-index: 30;
}

.vturb-volume-slider-container {
  position: relative;
  width: 4px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vturb-volume-slider-vertical {
  position: absolute;
  width: 120px;
  height: 4px;
  transform: rotate(-90deg);
  transform-origin: center;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  z-index: 2;
  margin: 0;
}

.vturb-volume-slider-vertical::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.vturb-volume-slider-vertical::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.vturb-volume-slider-vertical::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.vturb-volume-slider-vertical::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.vturb-volume-slider-track {
  position: absolute;
  width: 4px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.vturb-volume-slider-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 2px;
  transform-origin: bottom;
  transition: transform 0.1s linear;
}

.vturb-volume-slider-handle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: bottom 0.1s linear;
}

.vturb-volume-icon-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-4));
  border-radius: 8px;
}

.vturb-volume-icon-bottom:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 20px var(--purple-400-rgba-6));
  background: var(--purple-400-rgba-1);
}

.vturb-volume-icon-bottom:active {
  transform: scale(0.95);
}

.vturb-volume-icon-bottom svg {
  width: 24px;
  height: 24px;
  transition: fill 0.2s ease;
}

.vturb-volume-icon-bottom:hover svg {
  fill: var(--purple-300);
}

.vturb-fullscreen-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: opacity 0.15s ease;
  padding: 0;
}

.vturb-fullscreen-btn:hover {
  opacity: 0.8;
}

.vturb-fullscreen-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.vturb-volume-slider {
  display: none;
}

/* Menu de vitesse */
.vturb-speed-container {
  position: relative;
  /* S'assurer que le menu reste dans le cadre */
  overflow: visible;
}

.vturb-speed-btn {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, color-mix(in srgb, var(--purple-400) 10%, transparent), color-mix(in srgb, var(--purple-400) 5%, transparent), transparent);
  backdrop-filter: blur(4px);
  border: 1px solid color-mix(in srgb, var(--purple-400) 20%, transparent);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .vturb-speed-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.vturb-speed-btn:hover {
  color: white;
  border-color: color-mix(in srgb, var(--purple-400) 40%, transparent);
  background: transparent;
}

.vturb-speed-btn:active {
  transform: scale(0.95);
}

.vturb-speed-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  transition: fill 0.2s ease;
}

@media (min-width: 640px) {
  .vturb-speed-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.vturb-speed-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--purple-400-rgba-1) 0%, var(--purple-600-rgba-008) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 8px 0;
  min-width: 140px;
  box-shadow: 0 20px 60px var(--purple-400-rgba-3);
  border: 1px solid var(--purple-400-rgba-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  overflow: hidden;
}

.vturb-speed-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--purple-400-rgba-05) 0%, var(--purple-600-rgba-003) 100%);
  pointer-events: none;
  z-index: -1;
}

.vturb-speed-container.menu-open .vturb-speed-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 30;
}

.vturb-speed-option {
  padding: 12px 20px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.vturb-speed-option:hover {
  background: var(--purple-400-rgba-15);
  color: var(--purple-300);
}

.vturb-speed-option.active {
  background: var(--purple-400-rgba-2);
  color: var(--purple-400);
  font-weight: 600;
}

.vturb-speed-option.active::after {
  content: '✓';
  color: var(--purple-400);
  font-weight: bold;
  margin-left: 12px;
  font-size: 16px;
}

/* Sous-titres */
.vturb-subtitles {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: var(--space-12) var(--space-24);
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  max-width: 80%;
  display: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vturb-subtitles.active {
  display: block;
}

/* Overlay son coupé - Design système */
.vturb-sound-overlay {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 25;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  pointer-events: auto;
  /* Assurer que les événements tactiles fonctionnent sur mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y; /* Permettre le scroll vertical mais empêcher le zoom */
  user-select: none;
  -webkit-user-select: none;
  /* Empêcher que le scroll ferme l'overlay */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* DÉSACTIVER DÉFINITIVEMENT l'overlay son ET play une fois que l'utilisateur a interagi */
.vturb-video-player.user-has-interacted .vturb-sound-overlay,
body.video-user-interacted .vturb-sound-overlay,
.vturb-video-player.user-has-interacted .vturb-play-overlay,
body.video-user-interacted .vturb-play-overlay,
.vturb-video-player.user-has-interacted #vturb-play-overlay,
body.video-user-interacted #vturb-play-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.vturb-sound-overlay-content {
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 24px;
  padding: 40px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 70%;
  margin: auto;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 30px var(--purple-400-rgba-05);
  backdrop-filter: blur(12px);
  /* Assurer que les événements tactiles fonctionnent sur mobile */
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vturb-sound-text-top {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.vturb-sound-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.vturb-sound-off-icon {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-4));
}

.vturb-sound-text-bottom {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.vturb-sound-overlay:hover .vturb-sound-overlay-content {
  transform: translate(-50%, -50%) scale(1.02);
  transition: transform 0.2s ease;
  border-color: var(--purple-400-rgba-4);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 40px var(--purple-400-rgba-1);
  background: rgba(20, 20, 28, 0.9);
}

.vturb-video-player.playing .vturb-sound-overlay {
  display: none !important;
}

/* Overlay de chargement - Style identique à son coupé */
.vturb-loading-overlay {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  display: none !important; /* Caché par défaut, affiché seulement au clic sur play - FORCER avec !important */
  visibility: hidden !important; /* Double protection */
  opacity: 0 !important; /* Triple protection */
  background: rgba(0, 0, 0, 0.95); /* Fond noir opaque pour masquer la vidéo pendant le chargement */
  align-items: center;
  justify-content: center;
  z-index: 15;
  border-radius: 12px; /* Même border-radius que la vidéo */
  overflow: hidden;
  /* Assurer que les événements tactiles fonctionnent sur mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

/* Forcer l'affichage seulement quand la classe .loading-active est ajoutée */
.vturb-loading-overlay.loading-active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.vturb-loading-overlay-content {
  background: linear-gradient(135deg, var(--purple-400-rgba-1) 0%, var(--purple-600-rgba-008) 100%);
  border: 1px solid var(--purple-400-rgba-3);
  border-radius: 24px;
  padding: 33.6px 44.8px; /* Réduit de 30% : 48px * 0.7 = 33.6px, 64px * 0.7 = 44.8px */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16.8px; /* Réduit de 30% : 24px * 0.7 = 16.8px */
  max-width: 90%;
  box-shadow: 0 20px 60px var(--purple-400-rgba-3);
  backdrop-filter: blur(10px);
  /* Assurer que les événements tactiles fonctionnent sur mobile */
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.vturb-loading-spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vturb-loading-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vturb-loading-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vturb-loading-circle-bg {
  stroke: var(--purple-400-rgba-2);
}

.vturb-loading-circle-progress {
  stroke: var(--purple-500);
  transition: stroke-dashoffset 0.3s ease;
}

.vturb-loading-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vturb-loading-text-top {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.vturb-loading-text-bottom {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Overlay de reprise de lecture - Style identique à l'overlay son coupé */
.vturb-resume-overlay {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  /* Assurer que les événements tactiles fonctionnent sur mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.vturb-resume-content {
  background: linear-gradient(135deg, var(--purple-400-rgba-1) 0%, var(--purple-600-rgba-008) 100%);
  border: 1px solid var(--purple-400-rgba-3);
  border-radius: 24px;
  padding: 48px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 90%;
  box-shadow: 0 20px 60px var(--purple-400-rgba-3);
  backdrop-filter: blur(10px);
  /* Assurer que les événements tactiles fonctionnent sur mobile */
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.vturb-resume-title {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.vturb-resume-options {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.vturb-resume-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-primary);
  padding: 0;
}

.vturb-resume-option:hover {
  transform: scale(1.05);
}

.vturb-resume-option:active {
  transform: scale(0.95);
}

.vturb-resume-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-4));
  transition: all 0.2s ease;
  opacity: 0.7;
}

.vturb-resume-icon svg {
  width: 32px;
  height: 32px;
}

.vturb-resume-option:hover .vturb-resume-icon {
  filter: drop-shadow(0 6px 20px var(--purple-400-rgba-6));
  opacity: 0.9;
}

.vturb-resume-option span {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.vturb-resume-overlay:hover .vturb-resume-content {
  transform: scale(1.02);
  transition: transform 0.2s ease;
  border-color: var(--purple-400-rgba-5);
  box-shadow: 0 24px 70px var(--purple-400-rgba-4);
}

.vturb-video-player.playing .vturb-resume-overlay {
  display: none !important;
}

/* Overlay play/pause au centre - Utilise le même design que vturb-sound-overlay-content */
.vturb-play-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.3);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 30 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  backdrop-filter: blur(2px);
  border-radius: 12px;
  overflow: visible !important;
  transition: background 0.2s ease, opacity 0.2s ease;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
}

.vturb-play-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Le .vturb-play-overlay utilise maintenant .vturb-sound-overlay-content pour le design */
.vturb-play-overlay .vturb-sound-overlay-content {
  /* Les styles sont déjà définis dans .vturb-sound-overlay-content */
  pointer-events: auto !important;
  z-index: 31 !important;
  position: relative;
}

.vturb-play-center-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 31 !important;
  position: relative;
  pointer-events: auto !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 24px var(--purple-400-rgba-4));
}

.vturb-play-center-btn:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 32px var(--purple-400-rgba-6));
}

.vturb-play-center-btn:active {
  transform: scale(0.95);
}

.vturb-play-center-btn svg {
  width: 80px;
  height: 80px;
}

.vturb-video-player.playing .vturb-play-overlay {
  display: none !important;
}

/* DÉSACTIVER DÉFINITIVEMENT l'overlay play une fois que l'utilisateur a interagi - RÈGLE RENFORCÉE */
.vturb-video-player.user-has-interacted .vturb-play-overlay,
body.video-user-interacted .vturb-play-overlay,
.vturb-video-player.user-has-interacted #vturb-play-overlay,
body.video-user-interacted #vturb-play-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Responsive - Lecteur vidéo mobile */
@media (max-width: 768px) {
  /* Conteneur vidéo */
  .hero-video {
    padding: 0 var(--space-16);
  }
  
  .vturb-video-player {
    border-radius: 12px;
    padding: 3px;
    padding-bottom: calc(56.25% + 6px); /* Ratio 16:9 + padding */
  }
  
  .vturb-video-player::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 9px;
  }
  
  .vturb-video-element {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 9px;
  }
  
  .vturb-sound-overlay,
  .vturb-play-overlay,
  .vturb-resume-overlay,
  .vturb-loading-overlay {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 9px;
  }
  
  .vturb-progress-bar {
    bottom: 3px;
    left: 3px;
    right: 3px;
    width: calc(100% - 6px);
    height: 24px;
    border-radius: 0 0 9px 9px;
    box-sizing: border-box;
  }
  
  .vturb-sound-overlay-content {
    padding: 28px 20px;
    gap: 18px;
    max-width: 75%;
  }
  
  .vturb-sound-text-top {
    font-size: 16px;
  }
  
  .vturb-sound-icon-wrapper {
    width: 64px;
    height: 64px;
  }
  
  .vturb-sound-off-icon {
    width: 64px;
    height: 64px;
  }
  
  .vturb-sound-text-bottom {
    font-size: 14px;
  }
  
  /* Contrôles en haut */
  .vturb-top-controls {
    top: 12px;
    padding: 0 12px;
  }
  
  /* Contrôles */
  .vturb-controls {
    bottom: 30px;
    left: 3px;
    right: 3px;
    padding: 0 8px;
    gap: 0.5rem;
  }
  
  /* Boutons volume et vitesse */
  .vturb-volume-btn,
  .vturb-speed-btn {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    flex-shrink: 0;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  
  .vturb-volume-btn svg,
  .vturb-speed-btn svg {
    width: 1rem;
    height: 1rem;
    pointer-events: none;
  }
  
  /* Menu volume - Responsive - Version réduite pour mobile */
  .vturb-volume-menu {
    width: 40px;
    padding: 8px 6px;
    margin-bottom: 6px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 100px);
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 100%;
    border-radius: 16px;
  }
  
  .vturb-volume-container.menu-open .vturb-volume-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
    z-index: 30 !important;
  }
  
  .vturb-volume-container {
    position: relative;
    overflow: visible;
    pointer-events: auto !important;
  }
  
  .vturb-volume-slider-container {
    height: 80px;
    max-height: calc(100vh - 200px);
    pointer-events: auto;
    touch-action: pan-y;
  }
  
  .vturb-volume-icon-bottom {
    width: 24px;
    height: 24px;
    pointer-events: auto;
    touch-action: manipulation;
    cursor: pointer;
  }
  
  .vturb-volume-icon-bottom svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
  }
  
  /* Menu vitesse - Responsive - Version réduite pour mobile */
  .vturb-speed-menu {
    min-width: 100px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 100px);
    padding: 4px 0;
    margin-bottom: 6px;
    right: 0;
    position: absolute;
    bottom: 100%;
    left: auto;
    border-radius: 16px;
  }
  
  .vturb-speed-container.menu-open .vturb-speed-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    z-index: 30 !important;
  }
  
  .vturb-speed-container {
    position: relative;
    overflow: visible;
  }
  
  .vturb-speed-option {
    padding: 8px 12px;
    font-size: 13px;
  }
    overflow: visible;
  }
  
  .vturb-speed-option {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  /* Sur très petits écrans, aligner le menu vitesse à gauche */
  @media (max-width: 480px) {
    .vturb-speed-menu {
      right: auto !important;
      left: 0 !important;
      transform: translateX(0) !important;
      min-width: 90px !important;
      max-width: calc(100vw - 20px) !important;
    }
    
    .vturb-speed-container:hover .vturb-speed-menu,
    .vturb-speed-container.menu-open .vturb-speed-menu {
      transform: translateX(0) translateY(0) !important;
    }
    
    .vturb-speed-option {
      padding: 6px 10px;
      font-size: 12px;
    }
    
    .vturb-volume-menu {
      width: 36px;
      padding: 6px 4px;
    }
    
    .vturb-volume-slider-container {
      height: 70px;
    }
  }
  
  /* Barre de progression */
  .vturb-progress-bar {
    bottom: 3px;
    left: 3px;
    right: 3px;
    height: 24px;
    border-radius: 0 0 9px 9px;
  }
  
  .vturb-progress-fill {
    border-radius: 0 0 0 9px;
  }
  
  /* Overlay son coupé */
  .vturb-sound-overlay-content {
    padding: 32px 24px;
    gap: 20px;
    max-width: 95%;
  }
  
  .vturb-sound-text-top {
    font-size: 16px;
  }
  
  .vturb-sound-icon-wrapper {
    width: 64px;
    height: 64px;
  }
  
  .vturb-sound-off-icon {
    width: 64px;
    height: 64px;
  }
  
  .vturb-sound-text-bottom {
    font-size: 14px;
  }
  
  /* Overlay de chargement - Mobile */
  .vturb-loading-overlay-content {
    padding: 22.4px 16.8px; /* Réduit de 30% : 32px * 0.7 = 22.4px, 24px * 0.7 = 16.8px */
    gap: 14px; /* Réduit de 30% : 20px * 0.7 = 14px */
    max-width: 95%;
  }
  
  .vturb-loading-spinner-wrapper {
    gap: 16px; /* Plus d'espace entre le cercle et le pourcentage sur mobile */
  }
  
  .vturb-loading-spinner {
    width: 64px;
    height: 64px;
  }
  
  .vturb-loading-percentage {
    font-size: 18px;
  }
  
  .vturb-loading-text-top {
    font-size: 16px;
  }
  
  /* Overlay de reprise - Version mobile optimisée */
  .vturb-resume-overlay {
    padding: 16px;
  }
  
  .vturb-resume-content {
    padding: 24px 20px;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
  }
  
  .vturb-play-center-btn svg {
    width: 70px;
    height: 70px;
  }
  
  .vturb-resume-title {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
  }
  
  .vturb-resume-options {
    gap: 12px;
    flex-direction: column;
    width: 100%;
  }
  
  .vturb-resume-option {
    width: 100%;
    min-width: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--purple-400-rgba-1);
    border: 1px solid var(--purple-400-rgba-2);
    border-radius: 12px;
    text-align: left;
  }
  
  .vturb-resume-option:active {
    background: var(--purple-400-rgba-2);
    transform: scale(0.98);
  }
  
  .vturb-resume-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .vturb-resume-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .vturb-resume-option span {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
  }
  
  /* Overlay play central */
  .vturb-play-center-btn svg {
    width: 80px;
    height: 80px;
  }
  
  /* Sous-titres */
  .vturb-subtitles {
    font-size: 14px;
    padding: 8px 12px;
    bottom: 50px;
  }
}

@media (max-width: 480px) {
  /* Petits écrans */
  .hero-video {
    padding: 0 var(--space-12);
  }
  
  .vturb-video-player {
    padding: 2px;
    padding-bottom: calc(56.25% + 4px); /* Ratio 16:9 + padding */
  }
  
  .vturb-video-player::before {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 8px;
  }
  
  .vturb-video-element {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 8px;
  }
  
  .vturb-sound-overlay,
  .vturb-play-overlay,
  .vturb-resume-overlay,
  .vturb-loading-overlay {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 8px;
  }
  
  /* Contrôles en haut */
  .vturb-top-controls {
    top: 8px;
    padding: 0 8px;
  }
  
  .vturb-top-play-btn,
  .vturb-top-fullscreen-btn {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .vturb-top-play-btn svg,
  .vturb-top-fullscreen-btn svg {
    width: 0.875rem;
    height: 0.875rem;
  }
  
  .vturb-controls {
    bottom: 26px;
    left: 2px;
    right: 2px;
    padding: 0 6px;
  }
  
  .vturb-volume-btn,
  .vturb-speed-btn {
    width: 2rem;
    height: 2rem;
  }
  
  .vturb-volume-btn svg,
  .vturb-speed-btn svg {
    width: 1rem;
    height: 1rem;
  }
  
  .vturb-progress-bar {
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 20px;
    border-radius: 0 0 8px 8px;
    border-top: none;
    width: calc(100% - 4px);
  }
  
  .vturb-progress-fill {
    border-radius: 0 0 0 8px;
  }
  
  .vturb-sound-overlay-content {
    padding: 24px 16px;
    gap: 16px;
    max-width: 80%;
    margin: 0 auto;
  }
  
  .vturb-sound-text-top {
    font-size: 15px;
  }
  
  .vturb-sound-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .vturb-sound-off-icon {
    width: 56px;
    height: 56px;
  }
  
  .vturb-sound-text-bottom {
    font-size: 13px;
  }
  
  .vturb-resume-overlay {
    padding: 12px;
  }
  
  .vturb-resume-content {
    padding: 20px 16px;
    gap: 16px;
    border-radius: 12px;
  }
  
  .vturb-resume-title {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.3;
  }
  
  .vturb-resume-options {
    gap: 10px;
  }
  
  .vturb-resume-option {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 10px;
  }
  
  .vturb-resume-icon {
    width: 20px;
    height: 20px;
  }
  
  .vturb-resume-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .vturb-resume-option span {
    font-size: 13px;
  }
  
  .vturb-play-center-btn svg {
    width: 70px;
    height: 70px;
  }
  
  .vturb-volume-menu {
    width: 45px;
    padding: 10px 8px;
    max-width: calc(100vw - 16px);
    max-height: calc(100vh - 80px);
  }
  
  .vturb-volume-slider-container {
    height: 90px;
    max-height: calc(100vh - 180px);
  }
  
  .vturb-speed-menu {
    min-width: 110px;
    max-width: calc(100vw - 16px);
    max-height: calc(100vh - 80px);
    padding: 4px 0;
    right: auto;
    left: 0;
    transform: translateX(0);
  }
  
  .vturb-speed-option {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  /* Overlay de chargement - Très petits écrans */
  .vturb-loading-overlay-content {
    padding: 24px 20px;
    gap: 16px;
  }
  
  .vturb-loading-spinner {
    width: 56px;
    height: 56px;
  }
  
  .vturb-loading-percentage {
    font-size: 16px;
  }
  
  .vturb-loading-text-top {
    font-size: 15px;
  }
  
  .vturb-loading-text-bottom {
    font-size: 13px;
  }
}

.gift-icon {
  flex-shrink: 0;
  font-size: 20px;
  display: inline-block;
  animation: gift-shine 2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gift-shine {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1)) brightness(1.4);
  }
}

.video-container {
  position: relative;
}

.video-rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-text {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 16px;
}

.video-subtitle {
  text-align: right;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: var(--space-24);
}

.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--purple-400-rgba-3);
  box-shadow: 0 20px 60px var(--purple-400-rgba-3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px var(--purple-400-rgba-4);
  border-color: var(--purple-400-rgba-5);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: var(--space-24);
  color: white;
  font-weight: 600;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
  margin-top: var(--space-40);
  padding: var(--space-32);
  background: linear-gradient(135deg, var(--purple-400-rgba-08), var(--purple-400-rgba-03));
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 24px;
}

.video-stat {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-8);
}

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

/* Disclaimer sous la vidéo */
.hero-video-disclaimer {
  margin-top: var(--space-24);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-disclaimer-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hero-video-disclaimer {
    margin-top: var(--space-16);
    padding: 0 var(--space-16);
  }
  
  .video-disclaimer-text {
    font-size: 11px;
  }
}

/* Section */
.section {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.section:first-of-type {
  margin-top: 0;
  padding-top: var(--section-spacing);
  position: relative;
  z-index: 1;
}

.section-dark {
  background: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-64);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-16);
}

.section-title-icon-wrapper {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title-icon {
  color: var(--purple-400);
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 8px var(--purple-400-rgba-5));
  animation: section-icon-float 3s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@keyframes section-icon-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-4px) rotate(5deg);
    opacity: 1;
  }
}


.section-title {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple-300);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-32);
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--purple-400-rgba-12) 0%, var(--purple-600-rgba-008) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid var(--purple-400-rgba-3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  line-height: 1.4;
  box-shadow: 
    0 4px 16px var(--purple-400-rgba-1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.section-title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-400);
  flex-shrink: 0;
  display: block;
  box-shadow: 
    0 0 8px var(--purple-400-rgba-6),
    0 0 16px var(--purple-400-rgba-3);
  animation: section-title-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-400);
  flex-shrink: 0;
  display: block;
  box-shadow: 
    0 0 8px var(--purple-400-rgba-6),
    0 0 16px var(--purple-400-rgba-3);
  animation: section-title-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes section-title-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 
      0 0 8px var(--purple-400-rgba-6),
      0 0 16px var(--purple-400-rgba-3);
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 
      0 0 12px var(--purple-400-rgba-1-full),
      0 0 24px var(--purple-400-rgba-6);
  }
}

.section-header:hover .section-title {
  border-color: var(--purple-400-rgba-5);
  background: linear-gradient(135deg, var(--purple-400-rgba-18) 0%, var(--purple-600-rgba-012) 100%);
  box-shadow: 
    0 6px 24px var(--purple-400-rgba-25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px var(--purple-400-rgba-2);
  transform: translateY(-1px);
  color: var(--purple-200);
}


.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  opacity: 0.9;
  font-weight: 500;
}

/* Bonus Grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
}

.bonus-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 20px;
  padding: var(--space-24);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--purple-400-rgba-2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.bonus-card:hover {
  border-color: var(--purple-400-rgba-5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--purple-400-rgba-4), 0 0 40px var(--purple-400-rgba-2);
  background: var(--purple-400-rgba-08);
}

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

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

.bonus-icon {
  font-size: 40px;
  margin-bottom: var(--space-16);
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-5));
  transition: transform 0.4s ease;
}

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

.bonus-number {
  position: absolute;
  top: var(--space-24);
  right: var(--space-24);
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-400-rgba-2), var(--purple-400-rgba-05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  z-index: 0;
  opacity: 0.6;
}

.bonus-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.bonus-card:hover h3 {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: var(--space-12);
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.bonus-card:hover .bonus-subtitle {
  opacity: 1;
  color: var(--purple-300);
}

.bonus-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-size: 14px;
}

/* Support Grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
}

.support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 20px;
  padding: var(--space-24);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.support-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--purple-400-rgba-2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.support-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.support-card:hover {
  border-color: var(--purple-400-rgba-5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--purple-400-rgba-4), 0 0 40px var(--purple-400-rgba-2);
  background: var(--purple-400-rgba-08);
}

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

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

.support-icon {
  font-size: 40px;
  margin-bottom: var(--space-16);
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-5));
  transition: transform 0.4s ease;
}

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

.support-number {
  position: absolute;
  top: var(--space-24);
  right: var(--space-24);
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-400-rgba-2), var(--purple-400-rgba-05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  z-index: 0;
  opacity: 0.6;
}

.support-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.support-card:hover h3 {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: var(--space-12);
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.support-card:hover .support-subtitle {
  opacity: 1;
  color: var(--purple-300);
}

.support-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-size: 14px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: var(--space-16);
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--purple-400-rgba-3);
  border-radius: 24px;
  padding: var(--space-24);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--purple-400-rgba-15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.bento-card:hover {
  border-color: var(--purple-400-rgba-4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--purple-400-rgba-3), 0 0 40px var(--purple-400-rgba-15);
  background: var(--purple-400-rgba-06);
}

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

.bento-large {
  grid-column: span 6;
  min-height: 280px;
}

.bento-medium {
  grid-column: span 6;
  min-height: 140px;
}

/* Specific positioning for bento layout */
.bento-grid > .bento-card:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 280px;
}

.bento-grid > .bento-card:nth-child(2) {
  grid-column: span 6;
  min-height: 140px;
}

.bento-grid > .bento-card:nth-child(3) {
  grid-column: span 6;
  min-height: 140px;
}

.bento-grid > .bento-card:nth-child(4) {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 280px;
}

.bento-grid > .bento-card:nth-child(5) {
  grid-column: span 6;
  min-height: 140px;
}

.bento-grid > .bento-card:nth-child(6) {
  grid-column: span 6;
  min-height: 140px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bento-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  font-size: 13px;
  margin-bottom: var(--space-16);
}

/* Live Badge */
.bento-live-badge {
  position: absolute;
  top: var(--space-16);
  left: var(--space-16);
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: var(--space-8) var(--space-16);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 10;
  animation: pulseLive 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulseLive {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
  }
}

/* Connections 1:1 */
.bento-connections {
  position: relative;
  height: 180px;
  margin-top: var(--space-20);
}

.connection-line {
  position: absolute;
  background: var(--purple-400-rgba-4);
  z-index: 1;
  overflow: visible;
  box-shadow: 0 0 8px var(--purple-400-rgba-6);
}

.connection-line::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -2px;
  width: 6px;
  height: 30px;
  background: linear-gradient(180deg, var(--purple-400-rgba-1-full), transparent);
  border-radius: 3px;
  animation: lineFlow 2.5s linear infinite;
  filter: blur(2px);
  box-shadow: 0 0 12px var(--purple-400-rgba-1-full);
}

.line-1 {
  width: 3px;
  height: 90px;
  top: 20px;
  left: 60px;
  transform: rotate(35deg);
  transform-origin: top left;
}

.line-2 {
  width: 3px;
  height: 100px;
  bottom: 50px;
  left: 80px;
  transform: rotate(-25deg);
  transform-origin: bottom left;
}

.line-3 {
  width: 3px;
  height: 70px;
  top: 80px;
  right: 100px;
  transform: rotate(50deg);
  transform-origin: top right;
}

@keyframes lineFlow {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(150px);
    opacity: 0;
  }
}

.bento-avatar {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 12px;
  z-index: 4;
  border: 3px solid var(--purple-400-rgba-6);
  box-shadow: 0 0 30px var(--purple-400-rgba-1-full), 0 0 60px var(--purple-400-rgba-5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% {
    box-shadow: 0 0 30px var(--purple-400-rgba-1-full), 0 0 60px var(--purple-400-rgba-5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px var(--purple-400-rgba-12-full), 0 0 80px var(--purple-400-rgba-7), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
  }
}

.bento-avatar.coach {
  top: 30px;
  left: 30px;
}

.bento-avatar.coach-small {
  width: 48px;
  height: 48px;
  bottom: 20px;
  right: 20px;
}

.avatar-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  opacity: 0.6;
  filter: blur(12px);
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite;
}

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

.bento-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bento-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.bento-icon.discord {
  bottom: 60px;
  left: 20px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  border-color: var(--purple-400-rgba-6);
  color: white;
  box-shadow: 0 4px 16px var(--purple-400-rgba-5);
}

.bento-icon.whatsapp {
  bottom: 20px;
  left: 70px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-color: rgba(37, 211, 102, 0.6);
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.bento-student {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  color: white;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12px;
  z-index: 3;
  box-shadow: 0 4px 20px var(--purple-400-rgba-7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.connection-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--purple-400-rgba-25);
  color: var(--purple-200);
  padding: 5px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  z-index: 5;
  border: 1px solid var(--purple-400-rgba-5);
  box-shadow: 0 2px 8px var(--purple-400-rgba-4);
  backdrop-filter: blur(10px);
}

/* Avatars Stack */
.bento-avatars {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.avatar-stack {
  display: flex;
  margin-left: calc(var(--space-16) * -1);
}

.stack-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  background-size: cover;
  background-position: center;
  margin-left: calc(var(--space-16) * -1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.stack-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
}

.members-count {
  color: var(--purple-300);
  font-weight: 700;
  font-size: 14px;
}

/* Live Visual */
.bento-live-visual {
  position: relative;
  height: 140px;
  margin-top: var(--space-16);
}

.live-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: 900;
  box-shadow: 0 0 40px var(--purple-400-rgba-1-full), 0 0 80px var(--purple-400-rgba-5), inset 0 2px 8px rgba(255, 255, 255, 0.3);
  animation: livePulse 2s ease-in-out infinite;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.live-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
  animation: livePulseGlow 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 40px var(--purple-400-rgba-1-full), 0 0 80px var(--purple-400-rgba-5), inset 0 2px 8px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 60px var(--purple-400-rgba-12-full), 0 0 120px var(--purple-400-rgba-7), inset 0 2px 8px rgba(255, 255, 255, 0.4);
  }
}

@keyframes livePulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.live-connection {
  position: absolute;
  width: 2px;
  height: 60px;
  background: var(--purple-400-rgba-4);
  bottom: 40px;
  right: 60px;
  transform: rotate(-45deg);
  animation: lineFlow 2s ease-in-out infinite;
}

/* Notifications */
.bento-notifications {
  position: relative;
  height: 200px;
  margin-top: var(--space-20);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.bento-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-14);
  background: var(--purple-400-rgba-12);
  border: 1px solid var(--purple-400-rgba-35);
  border-radius: 12px;
  width: calc(100% - 4px);
  left: 2px;
  animation: notifScroll 10s linear infinite;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.bento-notif:nth-child(1) {
  top: 0;
  animation-delay: 0s;
}

.bento-notif:nth-child(2) {
  top: 70px;
  animation-delay: -1.33s;
}

.bento-notif:nth-child(3) {
  top: 140px;
  animation-delay: -2.67s;
}

.bento-notif:nth-child(4) {
  top: 210px;
  animation-delay: -4s;
}

.bento-notif:nth-child(5) {
  top: 280px;
  animation-delay: -5.33s;
}

.bento-notif:nth-child(6) {
  top: 350px;
  animation-delay: -6.67s;
}

@keyframes notifScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-280px);
    opacity: 0;
  }
}

.bento-notif:hover {
  background: var(--purple-400-rgba-2);
  border-color: var(--purple-400-rgba-5);
  box-shadow: 0 6px 20px var(--purple-400-rgba-4);
  animation-play-state: paused;
}

.notif-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 8px var(--purple-400-rgba-5));
}

.notif-brand {
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 2px;
}

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

/* Guarantee Icon */
.bento-guarantee-icon {
  text-align: center;
  margin: var(--space-20) 0;
  position: relative;
  z-index: 1;
  animation: iconFloat 4s ease-in-out infinite;
}

.bento-guarantee-icon svg {
  filter: drop-shadow(0 0 25px var(--purple-400-rgba-8));
  animation: iconGlow 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes iconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 25px var(--purple-400-rgba-8)) drop-shadow(0 0 50px var(--purple-400-rgba-4));
  }
  50% {
    filter: drop-shadow(0 0 35px var(--purple-400-rgba-12-full)) drop-shadow(0 0 70px var(--purple-400-rgba-6));
  }
}

/* Phases */
.bento-phases {
  margin-top: var(--space-16);
  position: relative;
}

.phase-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  position: relative;
}

.phase-line {
  position: absolute;
  left: 11px;
  top: 32px;
  width: 2px;
  height: calc(100% + var(--space-8));
  background: var(--purple-400-rgba-2);
  z-index: 0;
}

.phase-item:last-child .phase-line {
  display: none;
}

.phase-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--purple-400-rgba-4);
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.phase-item.validated .phase-dot {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  border-color: var(--purple-500);
  box-shadow: 0 0 20px var(--purple-400);
}

.phase-item.validated .phase-dot::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.phase-item.pending .phase-dot {
  border-color: var(--purple-400);
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px var(--purple-400-rgba-5);
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--purple-400-rgba-6), 0 0 15px var(--purple-400-rgba-5);
  }
  50% {
    box-shadow: 0 0 0 10px var(--purple-400-rgba-0), 0 0 25px var(--purple-400-rgba-8);
  }
}

.phase-content {
  flex: 1;
}

.phase-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 3px;
}

.phase-status {
  font-size: 11px;
  color: var(--text-secondary);
}

.phase-item.validated .phase-status {
  color: var(--purple-300);
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-large,
  .bento-medium {
    grid-column: span 12;
  }
}

/* Méthode d'accompagnement Section */
.methode-header {
  margin-bottom: 0;
}

.methode-header .section-header {
  margin-bottom: var(--space-64);
}

.methode-main-title {
  font-size: clamp(28.8px, 3.6vw, 43.2px);
  font-weight: 800;
  color: #ffffff;
  margin: calc(var(--space-24) * 0.9) 0 calc(var(--space-16) * 0.9);
  line-height: 1.2;
}

.methode-subtitle {
  font-size: 16.2px;
  color: var(--text-primary);
  max-width: 630px;
  margin: var(--space-24) 0 0;
  line-height: 1.6;
  text-align: left;
}

.methode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--space-24) * 0.9);
  margin-bottom: calc(var(--space-24) * 0.9);
}

.methode-bottom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: calc(var(--space-24) * 0.9);
  margin-bottom: calc(var(--space-48) * 0.9);
}

.methode-card {
  background: linear-gradient(to bottom right, rgba(26, 19, 37, 0.8), rgba(5, 10, 8, 0.6));
  border: 1px solid var(--purple-400-rgba-3);
  border-radius: 21.6px;
  padding: calc(var(--space-24) * 0.9);
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}

.methode-card:has(.methode-download-icon-wrapper) {
  z-index: 10;
}

.methode-card:hover {
  border-color: var(--purple-400-rgba-5);
  box-shadow: 0 20px 60px var(--purple-400-rgba-2);
}

.methode-card-large {
  grid-row: span 2;
}

.methode-card-wide {
  grid-column: span 1;
}

.methode-card-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.methode-card-header {
  margin-bottom: calc(var(--space-24) * 0.9);
}

.methode-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.methode-icon-box {
  width: 43.2px;
  height: 43.2px;
  border-radius: 14.4px;
  background: var(--purple-400-rgba-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-vibrant);
  flex-shrink: 0;
}

.methode-card-header > .methode-icon-box:first-child {
  margin-bottom: var(--space-16);
}

.methode-card-top .methode-icon-box {
  margin-bottom: 0;
}

.methode-badge {
  padding: 5.4px 10.8px;
  border-radius: 7.2px;
  background: rgba(26, 19, 37, 0.8);
  border: 1px solid var(--purple-vibrant);
  color: var(--purple-vibrant);
  font-size: 10.8px;
  font-weight: 600;
}

.methode-card-title-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: calc(var(--space-4) * 0.9);
}

.methode-card-title {
  font-size: 19.8px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.methode-card-header > .methode-icon-box + .methode-card-title-wrapper {
  margin-top: 0;
}

.methode-card-header > .methode-icon-box + .methode-card-title {
  margin-top: 0;
}

.methode-card-description {
  font-size: 12.6px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: calc(var(--space-40) * 0.9);
  text-align: left;
}

.methode-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

/* Module Items */
.methode-module-item {
  display: flex;
  align-items: center;
  gap: calc(var(--space-16) * 0.9);
  padding: calc(var(--space-16) * 0.9);
  border-radius: 10.8px;
  border: 1px solid var(--purple-400-rgba-2);
  background: rgba(26, 19, 37, 0.5);
  transition: all 0.3s ease;
}

.methode-module-item:has(.methode-module-badge) {
  align-items: flex-start;
}

.methode-module-item:hover {
  border-color: var(--purple-400-rgba-4);
  background: rgba(26, 19, 37, 0.7);
}

.methode-module-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 7.2px;
  background: var(--purple-400-rgba-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-vibrant);
}

.methode-module-content {
  flex: 1;
}

.methode-module-header {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: 0;
}

.methode-module-item:has(.methode-module-badge) .methode-module-header {
  margin-bottom: var(--space-8);
}

.methode-module-number {
  font-size: 12.6px;
  color: #ffffff;
  font-weight: 600;
}

.methode-module-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.8px;
}

.methode-module-name {
  font-size: 10.8px;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile: Réduction légère de la taille du texte des modules pour éviter les retours à la ligne */
@media (max-width: 768px) {
  .methode-module-item {
    padding: calc(var(--space-12) * 0.9) calc(var(--space-12) * 0.9); /* Réduit légèrement le padding horizontal */
    gap: calc(var(--space-12) * 0.9); /* Réduit le gap entre l'icône et le contenu */
  }

  .methode-module-header {
    gap: 6px; /* Réduit de var(--space-8) à 6px pour gagner de l'espace */
  }

  .methode-module-number {
    font-size: 11.5px; /* Réduit de 12.6px à 11.5px */
  }

  .methode-module-separator {
    font-size: 10px; /* Réduit de 10.8px à 10px */
  }

  .methode-module-name {
    font-size: 10px; /* Réduit de 10.8px à 10px pour éviter les retours à la ligne */
    white-space: nowrap; /* Force le texte à rester sur une ligne */
  }
}

.methode-module-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-8) var(--space-16);
  border-radius: 6px;
  background: var(--purple-400-rgba-1);
  border: 1px solid var(--purple-400-rgba-4);
  color: var(--purple-vibrant);
  font-size: 11px;
  margin-top: var(--space-8);
  text-shadow: none;
  filter: none;
  box-shadow: none;
}

.methode-module-badge-inline {
  margin-top: 0;
  margin-left: var(--space-12);
  padding: var(--space-12) var(--space-24);
  font-size: 11px;
  gap: 6px;
  filter: none;
  text-shadow: none;
  box-shadow: none;
  border: 1px solid var(--purple-400-rgba-4);
  background: var(--purple-400-rgba-1);
}

/* Download Icon */
.methode-download-icon-wrapper {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.methode-download-icon {
  width: 22px;
  height: 22px;
  color: var(--purple-vibrant);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  filter: drop-shadow(0 0 4px var(--purple-400-rgba-5));
  z-index: 1;
  animation: iconSparkle 3.5s ease-in-out infinite;
}

@keyframes iconSparkle {
  0%, 100% {
    filter: drop-shadow(0 0 4px var(--purple-400-rgba-5));
    color: var(--purple-vibrant);
    transform: scale(1);
  }
  25% {
    filter: drop-shadow(0 0 8px var(--purple-400-rgba-8)) drop-shadow(0 0 12px var(--purple-400-rgba-6));
    color: #ffffff;
    transform: scale(1.05);
  }
  50% {
    filter: drop-shadow(0 0 12px var(--purple-400-rgba-1-full)) drop-shadow(0 0 16px var(--purple-400-rgba-8)) drop-shadow(0 0 20px var(--purple-400-rgba-4));
    color: #ffffff;
    transform: scale(1.1);
  }
  75% {
    filter: drop-shadow(0 0 8px var(--purple-400-rgba-8)) drop-shadow(0 0 12px var(--purple-400-rgba-6));
    color: #ffffff;
    transform: scale(1.05);
  }
}

.methode-download-icon-wrapper::before {
  display: none;
}

.methode-download-icon-wrapper:hover .methode-download-icon {
  transform: translateY(-3px) scale(1.15);
  animation: iconSparkle 2.5s ease-in-out infinite;
}

.methode-download-icon::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 60%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  pointer-events: none;
  animation: brilliantShine 3s ease-in-out infinite;
}

@keyframes brilliantShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    transform: translateX(0%) translateY(0%) rotate(45deg);
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

.methode-download-icon-wrapper:hover .methode-download-icon::after {
  animation: brilliantShine 1.5s ease-in-out infinite;
}

.methode-download-tooltip {
  position: absolute;
  bottom: calc(100% + var(--space-8));
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 16px 28px;
  background: rgba(10, 7, 20, 0.95);
  border: 1px solid var(--purple-400-rgba-4);
  border-radius: 8px;
  color: var(--purple-vibrant);
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  text-shadow: none;
  filter: none;
  z-index: 99999;
}

.methode-download-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--purple-400-rgba-4);
}
.methode-download-icon-wrapper:hover .methode-download-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.methode-module-badge-full {
  width: 100%;
  margin-top: var(--space-12);
  padding: var(--space-16);
}

.methode-module-badge svg {
  flex-shrink: 0;
}

/* Accordion */
.methode-module-accordion {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 12px;
  background: rgba(26, 19, 37, 0.5);
  margin: 0;
}

.methode-module-item.methode-module-accordion {
  padding: 0;
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 12px;
  background: rgba(26, 19, 37, 0.5);
}

.methode-module-accordion-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  padding: var(--space-16);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: auto;
  line-height: 1.4;
}

.methode-module-accordion-header:hover {
  background: var(--purple-400-rgba-05);
}

.methode-accordion-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.methode-module-accordion.active .methode-accordion-arrow {
  transform: rotate(90deg);
}

.methode-module-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.methode-module-accordion.active .methode-module-accordion-content {
  max-height: 500px;
}

.methode-accordion-list {
  padding: 0 var(--space-16) var(--space-16);
  border-left: 2px solid var(--purple-400-rgba-3);
  margin-left: 52px;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.methode-accordion-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.methode-accordion-item svg {
  margin-top: 2px;
  color: var(--purple-vibrant);
  flex-shrink: 0;
}

/* Community */
.methode-community-members {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  margin-top: var(--space-8);
  justify-content: space-between;
  flex-wrap: wrap;
}

.methode-avatars-stack {
  display: flex;
  align-items: center;
  margin-left: 0;
  transition: transform 0.3s ease;
}

.methode-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  object-fit: cover;
  margin-left: -10.8px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.methode-avatar-img:first-child {
  margin-left: 0;
}

.methode-avatar-img:hover {
  border-color: var(--purple-vibrant);
  z-index: 20;
}

.methode-members-count {
  font-size: 12.6px;
  color: rgba(255, 255, 255, 0.7);
}

/* Notification Center iOS Style */
.methode-notification-center {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 18px;
  overflow: hidden;
}

.methode-notif-center-header {
  display: flex;
  align-items: center;
  padding: var(--space-8) var(--space-16);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  gap: var(--space-8);
}

.methode-notif-icon-left {
  flex-shrink: 0;
}

.methode-notif-center-title {
  flex: 1;
  text-align: left;
}

.methode-notif-icon-right {
  flex-shrink: 0;
}

.methode-notif-center-close {
  flex-shrink: 0;
  margin-left: auto;
}

.methode-notif-icon-left {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.methode-notif-icon-left svg {
  width: 100%;
  height: 100%;
}

.methode-notif-icon-left.methode-notif-pulse {
  animation: notifPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes notifPulse {
  0% {
    transform: scale(1);
    color: rgba(255, 255, 255, 0.6);
  }
  50% {
    transform: scale(1.3);
    color: var(--purple-vibrant);
  }
  100% {
    transform: scale(1);
    color: rgba(255, 255, 255, 0.6);
  }
}

.methode-notif-center-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.methode-notif-center-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.methode-notif-center-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.methode-notif-center-list {
  display: flex;
  flex-direction: column;
  gap: 3.6px;
  padding: 5.4px 7.2px 0px 7.2px;
  height: 117px;
  overflow: hidden;
  position: relative;
}

.methode-notif-center-list::-webkit-scrollbar {
  width: 4px;
}

.methode-notif-center-list::-webkit-scrollbar-track {
  background: transparent;
}

.methode-notif-center-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.methode-notif-center-card {
  display: flex;
  align-items: center;
  gap: 7.2px;
  padding: 7.2px;
  border-radius: 7.2px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  width: 80%;
  margin: 0 auto 4.5px;
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  will-change: transform, opacity;
}

.methode-notif-center-card.methode-notif-entering {
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
}

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

.methode-notif-center-card.methode-notif-exiting {
  opacity: 0;
  transform: translateY(20px) scaleY(0);
  transform-origin: top;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 80%;
  left: 10%;
  right: 10%;
}

.methode-notif-center-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.methode-notif-center-icon {
  width: 28.8px;
  height: 28.8px;
  border-radius: 6.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.methode-notif-center-icon img {
  width: 28.8px;
  height: 28.8px;
  display: block;
  object-fit: cover;
  border-radius: 6.3px;
}

.methode-notif-center-content {
  flex: 1;
  min-width: 0;
}

.methode-notif-center-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
  gap: 6px;
}

.methode-notif-center-title-text {
  font-size: 10.8px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.1px;
  flex: 1;
  text-align: left;
}

.methode-notif-center-time {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  font-weight: 400;
}

.methode-notif-center-text {
  font-size: 9.9px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  letter-spacing: -0.1px;
  text-align: left;
}

.methode-notif-center-text strong {
  font-weight: 600;
  color: #ffffff;
}

/* Mobile: Ajustements pour les notifications de la section méthode */
@media (max-width: 768px) {
  .methode-notif-center-list {
    height: 160px; /* Augmenté de 117px à 160px pour afficher 2 notifications complètes */
    padding: 6px 8px 8px 8px; /* Légèrement augmenté le padding bottom */
    gap: 4px; /* Légèrement augmenté le gap entre les notifications */
  }

  .methode-notif-center-card {
    padding: 9px; /* Augmenté de 7.2px à 9px pour allonger les notifications */
    gap: 8px; /* Légèrement augmenté le gap interne */
    min-height: 50px; /* Hauteur minimale pour s'assurer que les notifications ne soient pas trop petites */
  }

  .methode-notif-center-icon {
    width: 32px; /* Légèrement augmenté de 28.8px à 32px */
    height: 32px;
  }

  .methode-notif-center-icon img {
    width: 32px;
    height: 32px;
  }

  .methode-notif-center-text {
    font-size: 10.5px; /* Légèrement augmenté de 9.9px pour meilleure lisibilité */
    line-height: 1.4; /* Légèrement augmenté pour plus d'espace */
  }

  .methode-notif-center-title-text {
    font-size: 11.5px; /* Légèrement augmenté de 10.8px */
  }

  .methode-notif-center-time {
    font-size: 9.5px; /* Légèrement augmenté de 9px */
  }
}

/* Phases Container */
.methode-phases-container {
  position: relative;
}

/* Progress Line */
.methode-progress-line {
  position: relative;
  width: calc(100% - 108px);
  height: 5.4px;
  background: var(--purple-400-rgba-15);
  border-radius: 9px;
  margin: 0 auto calc(var(--space-32) * 0.9);
  overflow: visible;
  box-shadow: inset 0 1.8px 3.6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.methode-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, 
    var(--purple-vibrant) 0%, 
    var(--purple-400-rgba-9) 50%,
    var(--purple-vibrant) 100%);
  background-size: 200% 100%;
  border-radius: 9px;
  animation: progressShine 2s ease-in-out infinite;
  box-shadow: 0 0 13.5px var(--purple-400-rgba-8), 
              0 0 27px var(--purple-400-rgba-4),
              inset 0 0.9px 1.8px rgba(255, 255, 255, 0.2);
  z-index: 1;
  transform-origin: left center;
}

@keyframes progressFill {
  0% {
    width: 1%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 99%;
  }
}

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

.methode-progress-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple-400-rgba-2);
  border: 2.7px solid var(--purple-400-rgba-4);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.methode-progress-dot.active {
  background: var(--purple-400-rgba-3);
  border-color: var(--purple-400-rgba-6);
  box-shadow: 0 0 10px var(--purple-400-rgba-5);
}

.methode-progress-dot.completed {
  background: var(--purple-vibrant);
  border-color: var(--purple-vibrant);
  box-shadow: 0 0 15px var(--purple-400-rgba-1-full),
              0 0 30px var(--purple-400-rgba-5);
}

.methode-progress-dot-1 {
  left: 1%;
  transform: translate(-50%, -50%);
}

.methode-progress-dot-2 {
  left: 50%;
  transform: translate(-50%, -50%);
}

.methode-progress-dot-3 {
  left: 99%;
  transform: translate(-50%, -50%);
}

.methode-progress-check {
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 9px;
  height: 9px;
  color: var(--bg-primary);
}

@keyframes dotActive {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 15px var(--purple-400-rgba-1-full),
                0 0 30px var(--purple-400-rgba-5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 20px var(--purple-400-rgba-12-full),
                0 0 40px var(--purple-400-rgba-7);
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    border-color: var(--purple-400-rgba-4);
    box-shadow: 0 0 0 0 var(--purple-400-rgba-0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--purple-400-rgba-7);
    box-shadow: 0 0 0 4px var(--purple-400-rgba-3);
  }
}

.methode-progress-dot-2.active {
  background: var(--purple-vibrant);
  border-color: var(--purple-vibrant);
  box-shadow: 0 0 15px var(--purple-400-rgba-1-full),
              0 0 30px var(--purple-400-rgba-5);
  animation: dotActive 2s ease-in-out infinite;
}

.methode-progress-dot-3.active {
  background: var(--purple-vibrant);
  border-color: var(--purple-vibrant);
  box-shadow: 0 0 15px var(--purple-400-rgba-1-full),
              0 0 30px var(--purple-400-rgba-5);
  animation: dotActive 2s ease-in-out infinite;
}

/* Phases Grid */
.methode-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--space-16) * 0.9);
  position: relative;
}

.methode-phase-card {
  padding: calc(var(--space-16) * 0.9);
  border-radius: 10.8px;
  border: 1px solid;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--space-16) * 0.9);
  min-height: 81px;
}

.methode-phase-top,
.methode-phase-title,
.methode-phase-status {
  position: relative;
  z-index: 10;
}

.methode-phase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-400-rgba-3), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.methode-phase-completed .methode-phase-glow {
  width: 200px;
  height: 200px;
  opacity: 1;
  animation: phaseGlow 2s ease-in-out infinite;
}

.methode-phase-pending .methode-phase-glow {
  width: 150px;
  height: 150px;
  opacity: 0.5;
  animation: phaseGlowPending 2s ease-in-out infinite;
}

.methode-phase-locked .methode-phase-glow {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

@keyframes phaseGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

@keyframes phaseGlowPending {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

.methode-phase-card {
  border-color: var(--purple-400-rgba-2);
  background: rgba(26, 19, 37, 0.3);
}

.methode-phase-card.phase-active {
  border-color: var(--purple-400-rgba-5);
  background: var(--purple-400-rgba-05);
  box-shadow: 0 0 15px var(--purple-400-rgba-2);
}

.methode-phase-card.phase-completed {
  border-color: var(--purple-vibrant);
  background: var(--purple-400-rgba-1);
  box-shadow: 0 0 20px var(--purple-400-rgba-3);
  animation: phaseCompleted 0.5s ease-out;
}

.methode-phase-card.phase-completed .methode-phase-glow {
  width: 200px;
  height: 200px;
  opacity: 1;
  animation: phaseGlow 2s ease-in-out infinite;
}

.methode-phase-card.phase-active .methode-phase-glow {
  width: 150px;
  height: 150px;
  opacity: 0.5;
  animation: phaseGlowPending 2s ease-in-out infinite;
}

.methode-phase-card.phase-completed .methode-phase-status {
  color: var(--purple-vibrant);
}

.methode-phase-card.phase-active .methode-phase-status {
  color: var(--purple-400-rgba-8);
}

@keyframes phaseCompleted {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 var(--purple-400-rgba-0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--purple-400-rgba-5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--purple-400-rgba-3);
  }
}

/* Anciennes classes pour compatibilité */
.methode-phase-completed {
  border-color: var(--purple-vibrant);
  background: var(--purple-400-rgba-1);
  animation: phaseCompleted 0.5s ease-out;
  box-shadow: 0 0 20px var(--purple-400-rgba-3);
}

.methode-phase-pending {
  border-color: var(--purple-400-rgba-4);
  background: rgba(26, 19, 37, 0.5);
}

.methode-phase-locked {
  border-color: var(--purple-400-rgba-2);
  background: rgba(26, 19, 37, 0.3);
}

.methode-phase-content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-8) * 0.9);
  flex: 1;
}

.methode-phase-top {
  display: flex;
  align-items: center;
  margin: 0;
  height: 21.6px;
}

.methode-phase-badge {
  font-size: 9.9px;
  color: var(--purple-vibrant);
  font-weight: 600;
  line-height: 21.6px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.methode-phase-pending .methode-phase-badge,
.methode-phase-locked .methode-phase-badge,
.methode-phase-card:not(.phase-completed):not(.phase-active) .methode-phase-badge {
  color: rgba(255, 255, 255, 0.7);
}

.methode-phase-card.phase-active .methode-phase-badge,
.methode-phase-card.phase-completed .methode-phase-badge {
  color: var(--purple-vibrant);
}

.methode-phase-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  background: var(--purple-400-rgba-2);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

.methode-phase-dot.completed {
  background: var(--purple-vibrant);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--purple-400-rgba-1-full),
              0 0 30px var(--purple-400-rgba-5);
}

.methode-phase-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 9px;
  font-weight: 700;
  color: inherit;
}

.methode-phase-number[style*="opacity: 1"],
.methode-phase-number[style*="transform"][style*="opacity: 1"] {
  transform: translate(-50%, -50%) scale(1) !important;
}

.methode-phase-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 10.8px;
  height: 10.8px;
  color: var(--bg-primary);
}

.methode-phase-check[style*="opacity: 1"],
.methode-phase-check[style*="transform"][style*="opacity: 1"] {
  transform: translate(-50%, -50%) scale(1) !important;
}


.methode-phase-title {
  font-size: 12.6px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.methode-phase-locked .methode-phase-title {
  color: rgba(255, 255, 255, 0.5);
}

.methode-phase-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.methode-phase-completed .methode-phase-status,
.methode-phase-card.phase-completed .methode-phase-status {
  color: var(--purple-vibrant);
}

.methode-phase-card.phase-3-celebration {
  border-color: var(--purple-vibrant);
  background: var(--purple-400-rgba-15);
  box-shadow: 0 0 40px var(--purple-400-rgba-5);
  animation: phase3Celebration 1s ease-out;
}

.methode-phase-card.phase-3-celebration .methode-phase-glow {
  width: 250px;
  height: 250px;
  opacity: 0.8;
  animation: phase3Glow 2s ease-in-out infinite;
}

.methode-phase-card.phase-3-celebration .methode-phase-dot {
  background: var(--purple-vibrant);
  color: var(--bg-primary);
  animation: dotCelebration 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px var(--purple-400-rgba-1-full);
}

.methode-phase-card.phase-3-celebration .methode-phase-title {
  color: #ffffff;
  animation: titleCelebration 0.8s ease-out;
  text-shadow: 0 0 10px var(--purple-400-rgba-5);
}

.methode-phase-card.phase-3-celebration .methode-phase-status {
  color: var(--purple-vibrant);
}

@keyframes phase3Celebration {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 var(--purple-400-rgba-0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 50px var(--purple-400-rgba-7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px var(--purple-400-rgba-5);
  }
}

@keyframes phase3Glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.4;
  }
}

@keyframes titleCelebration {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px var(--purple-400-rgba-5);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 20px var(--purple-400-rgba-8);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px var(--purple-400-rgba-5);
  }
}

/* Confetti Container */
.methode-confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}

.confetti-money {
  position: absolute;
  top: -50px;
  font-size: 20px;
  line-height: 1;
  animation: moneyRain linear forwards;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  will-change: transform, opacity;
  transform-origin: center;
}

@keyframes moneyRain {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(calc((var(--random-x, 50) - 50) * 0.3px)) rotate(calc(var(--random-rotation, 0) * 0.5deg));
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) translateX(calc((var(--random-x, 50) - 50) * 0.6px)) rotate(calc(var(--random-rotation, 0) * 1deg));
    opacity: 0;
  }
}

/* Phase 3 Celebration */
.methode-phase-locked.phase-3-celebration {
  animation: phase3Celebration 1s ease-out;
  border-color: var(--purple-vibrant);
  background: var(--purple-400-rgba-15);
  box-shadow: 0 0 40px var(--purple-400-rgba-5);
}

.methode-phase-locked.phase-3-celebration::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  background: linear-gradient(45deg, 
    var(--purple-vibrant), 
    var(--purple-400-rgba-5),
    var(--purple-vibrant));
  background-size: 200% 200%;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes phase3Celebration {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 var(--purple-400-rgba-0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--purple-400-rgba-1-full);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px var(--purple-400-rgba-5);
  }
}

.methode-phase-locked.phase-3-celebration .methode-phase-glow {
  width: 250px;
  height: 250px;
  opacity: 0.8;
  animation: phase3Glow 2s ease-in-out infinite;
}

@keyframes phase3Glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.5;
  }
}

.methode-phase-locked.phase-3-celebration .methode-phase-dot {
  background: var(--purple-vibrant);
  color: var(--bg-primary);
  animation: dotCelebration 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px var(--purple-400-rgba-1-full);
}

@keyframes dotCelebration {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--purple-400-rgba-1-full);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--purple-400-rgba-14-full);
  }
}

.methode-phase-locked.phase-3-celebration .methode-phase-title {
  color: #ffffff;
  animation: titleCelebration 0.8s ease-out;
  text-shadow: 0 0 10px var(--purple-400-rgba-5);
}

@keyframes titleCelebration {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px var(--purple-400-rgba-5);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 0 15px var(--purple-400-rgba-8);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px var(--purple-400-rgba-5);
  }
}

/* Guarantee */
.methode-guarantee-content {
  text-align: center;
  padding: var(--space-32);
}

.methode-guarantee-icon-wrapper {
  margin-bottom: var(--space-24);
  position: relative;
}

.methode-guarantee-icon-box {
  width: 86.4px;
  height: 86.4px;
  margin: 0 auto;
  border-radius: 14.4px;
  background: linear-gradient(to bottom right, var(--purple-400-rgba-3), var(--purple-400-rgba-1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-vibrant);
  position: relative;
  box-shadow: 0 0 27px rgba(166, 138, 250, 0.2);
}

.methode-guarantee-check {
  position: absolute;
  bottom: -7.2px;
  right: -7.2px;
  width: 28.8px;
  height: 28.8px;
  border-radius: 50%;
  background: var(--purple-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  box-shadow: 0 0 18px rgba(166, 138, 250, 0.8);
}

.methode-guarantee-title {
  font-size: 19.8px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--space-4) * 0.9);
  text-align: center;
}

.methode-guarantee-text {
  font-size: 12.6px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  text-align: center;
}

/* CTA */
.methode-cta {
  text-align: left;
  margin-top: var(--space-48);
}

/* Responsive */
@media (max-width: 1024px) {
  .methode-grid {
    grid-template-columns: 1fr;
  }
  
  .methode-card-large {
    grid-row: span 1;
  }
  
  .methode-bottom-grid {
    grid-template-columns: 1fr !important;
  }
  
  .methode-phases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .methode-main-title {
    font-size: 28px;
  }
  
  .methode-subtitle {
    font-size: 16px;
  }
  
  .methode-card {
    padding: var(--space-20);
  }
}

/* Notes */
.notes-container {
  max-width: 900px;
  margin: 0 auto;
}

.notes-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: var(--space-48);
  text-align: center;
}

.note-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple-500);
  border-radius: 16px;
  padding: var(--space-32);
  margin-bottom: var(--space-24);
  display: flex;
  gap: var(--space-24);
}

.note-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.note-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-8);
}

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

/* Pricing */
.pricing-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  color: var(--text-primary);
  padding: var(--space-8) var(--space-24);
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-32);
}

.pricing-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: var(--space-16);
}

.pricing-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-48);
}

.pricing-card {
  background: linear-gradient(135deg, var(--purple-400-rgba-05), rgba(236, 72, 153, 0.05));
  border: 2px solid var(--purple-500);
  border-radius: 32px;
  padding: var(--space-48);
  box-shadow: 0 0 60px var(--purple-400-rgba-3);
}

.price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  margin-bottom: var(--space-40);
}

.price-old {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.price-current {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-40);
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-24);
  color: var(--text-secondary);
  font-size: 14px;
}

/* Footer */
/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}


.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-32);
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 0;
}

.testimonials-header .section-header {
  margin-bottom: var(--space-64);
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-32);
  margin-top: 0;
}

.testimonial-card {
  background: transparent;
  border-radius: calc(1.75rem * 0.85);
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

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

.testimonial-video-section {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(177.78% * 0.85); /* Ratio 9:16 pour format vertical (16/9 inversé) réduit de 15% */
  overflow: hidden;
  border-radius: calc(1.75rem * 0.85);
  border: calc(2px * 0.85) solid var(--purple-400-rgba-15);
  background: rgba(19, 19, 26, 0.5);
  box-shadow: 0 calc(8px * 0.85) calc(32px * 0.85) rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* S'assurer que les enfants positionnés absolument sont visibles */
  z-index: 0;
}

.testimonial-card:hover .testimonial-video-section {
  border-color: var(--purple-400-rgba-4);
  box-shadow: 0 calc(16px * 0.85) calc(48px * 0.85) rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

.testimonial-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(1.75rem * 0.85);
  z-index: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  touch-action: none;
  background-color: rgba(19, 19, 26, 0.95);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  opacity: 1;
  visibility: visible;
}

.testimonial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(1.75rem * 0.85);
  display: block;
  background: rgba(19, 19, 26, 0.3);
  z-index: 2;
}

.testimonial-play-pause-button {
  position: absolute;
  top: calc(var(--space-16) * 0.85);
  left: calc(var(--space-16) * 0.85);
  z-index: 10;
  width: calc(44px * 0.85);
  height: calc(44px * 0.85);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.testimonial-play-pause-button:hover {
  transform: scale(1.1);
  opacity: 1;
}

.testimonial-play-pause-button.playing {
  opacity: 0.7;
}

.testimonial-play-pause-button.playing:hover {
  opacity: 1;
}

.testimonial-video-section:hover .testimonial-play-pause-button {
  opacity: 1;
}

.testimonial-play-icon,
.testimonial-pause-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}

.testimonial-play-pause-button:hover .testimonial-play-icon,
.testimonial-play-pause-button:hover .testimonial-pause-icon {
  transform: scale(1.05);
}

.testimonial-quality-badge {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.testimonial-quality-content {
  display: flex;
  align-items: center;
  gap: calc(0.5rem * 0.85);
  background: rgba(19, 19, 26, 0.95);
  backdrop-filter: blur(20px);
  border: calc(1px * 0.85) solid var(--purple-400-rgba-3);
  border-radius: calc(2rem * 0.85);
  padding: calc(0.75rem * 0.85) calc(1rem * 0.85);
  box-shadow: 0 calc(8px * 0.85) calc(24px * 0.85) rgba(0, 0, 0, 0.3);
  height: calc(44px * 0.85);
  box-sizing: border-box;
}

.testimonial-quality-content svg {
  width: calc(18px * 0.85);
  height: calc(18px * 0.85);
  color: var(--purple-400);
  flex-shrink: 0;
}

.testimonial-quality-content span:first-of-type {
  font-size: calc(0.875rem * 0.85);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.testimonial-quality-label {
  font-size: calc(0.75rem * 0.85);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1;
}

.testimonial-sound-button {
  position: absolute;
  top: calc(var(--space-16) * 0.85);
  right: calc(var(--space-16) * 0.85);
  z-index: 10;
  width: calc(44px * 0.85);
  height: calc(44px * 0.85);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.testimonial-sound-icon-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-400-rgba-9);
  border-radius: 50%;
  border: calc(2px * 0.85) solid rgba(255, 255, 255, 0.3);
}

.testimonial-sound-button:hover {
  transform: scale(1.1);
  opacity: 1;
}

.testimonial-sound-button.muted {
  opacity: 0.7;
}

.testimonial-sound-button.muted:hover {
  opacity: 1;
}

.testimonial-video-section:hover .testimonial-sound-button {
  opacity: 1;
}

.testimonial-sound-on-icon,
.testimonial-sound-off-icon {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-sound-button:hover .testimonial-sound-on-icon,
.testimonial-sound-button:hover .testimonial-sound-off-icon {
  transform: translate(-50%, -50%) scale(1.05);
}


/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--space-64) 0;
  }

  /* Afficher les vignettes sur mobile */
  .testimonial-video-section {
    border: none !important; /* Supprime la bordure visible */
    box-shadow: none !important; /* Supprime l'ombre pour un rendu plus propre */
    background: transparent !important; /* Supprime le fond qui crée l'effet de cadre */
  }

  .testimonial-thumbnail-overlay {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(19, 19, 26, 0.95) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    pointer-events: none !important; /* Important : ne pas bloquer les clics */
  }

  .testimonial-video {
    background: transparent !important;
    z-index: 2 !important;
  }

  .testimonial-play-pause-button {
    z-index: 10 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .testimonial-sound-button {
    z-index: 10 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  
  /* Masquer la vignette quand la vidéo est en lecture */
  .testimonial-play-pause-button.playing ~ .testimonial-thumbnail-overlay,
  .testimonial-video-section:has(.testimonial-play-pause-button.playing) .testimonial-thumbnail-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .testimonial-card:hover .testimonial-video-section,
  .testimonial-card:active .testimonial-video-section,
  .testimonial-video-section:hover {
    border: none !important; /* Maintient l'absence de bordure au survol */
    box-shadow: none !important;
    transform: none !important; /* Désactive le scale sur mobile */
    background: transparent !important;
  }
}

/* ============================================
   TÉMOIGNAGES SCREENSHOTS SECTION
   ============================================ */

.testimonials-screenshots-section {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}


.testimonials-screenshots-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-32);
  position: relative;
  z-index: 1;
}

.testimonials-screenshots-header {
  text-align: center;
  margin-bottom: 0;
}

.testimonials-screenshots-header .section-header {
  margin-bottom: var(--space-64);
}


.testimonials-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-16);
  margin-top: 0;
}

.testimonials-screenshot-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Format carré */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.testimonials-screenshot-item:hover {
  transform: translateY(-8px);
}

.testimonials-screenshot-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border: 2px solid var(--purple-400-rgba-15);
  border-radius: 1.75rem;
  padding: 4px;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonials-screenshot-item:hover .testimonials-screenshot-frame {
  border-color: var(--purple-400-rgba-4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

.testimonials-screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonials-screenshots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 968px) {
  .testimonials-screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-screenshots-section {
    padding: var(--space-64) 0;
  }

  .testimonials-screenshots-container {
    padding: 0 var(--space-24);
  }

  .testimonials-screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
  }
}

@media (max-width: 480px) {
  .testimonials-screenshots-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SECTION FAQ - PREMIUM DESIGN
   ============================================ */

.faq-section {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}


.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-32);
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.faq-header .section-header {
  margin-bottom: var(--space-64);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.faq-item {
  background: rgba(19, 19, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-400), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.faq-item:hover {
  border-color: var(--purple-400-rgba-3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.faq-item.active {
  background: linear-gradient(135deg, var(--purple-400-rgba-15) 0%, var(--purple-600-rgba-1) 100%);
  border-color: var(--purple-400-rgba-5);
  box-shadow: 
    0 20px 60px var(--purple-400-rgba-2),
    0 0 0 1px var(--purple-400-rgba-3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px var(--purple-400-rgba-1);
  transform: translateY(-2px);
}

.faq-item.active::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--purple-400), var(--purple-300), var(--purple-400), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-24) var(--space-32);
  min-height: 72px;
  position: relative;
  gap: var(--space-16);
}

.faq-item.active .faq-question {
  padding-bottom: var(--space-16);
}

.faq-question-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 60px);
  letter-spacing: -0.01em;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-item:hover .faq-question-text {
  color: var(--text-primary);
}

.faq-item.active .faq-question-text {
  color: var(--text-primary);
}

.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--purple-400-rgba-3);
  background: linear-gradient(135deg, var(--purple-400-rgba-1) 0%, var(--purple-600-rgba-1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-item:hover .faq-icon {
  border-color: var(--purple-400-rgba-5);
  background: linear-gradient(135deg, var(--purple-400-rgba-2) 0%, var(--purple-600-rgba-15) 100%);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--purple-400-rgba-3);
}

.faq-item.active .faq-icon {
  border-color: var(--purple-400-rgba-6);
  background: linear-gradient(135deg, var(--purple-400-rgba-25) 0%, var(--purple-600-rgba-2) 100%);
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 0 30px var(--purple-400-rgba-4);
}

.faq-icon svg {
  color: var(--purple-300);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 2px 4px var(--purple-400-rgba-3));
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-icon svg {
  color: var(--purple-200);
  filter: drop-shadow(0 0 8px var(--purple-400-rgba-6));
}

.faq-icon-plus {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.faq-icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.faq-item.active .faq-icon-plus {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-item.active .faq-icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 var(--space-32);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  transition: grid-template-rows 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease-out;
  opacity: 0;
  margin-top: 0;
}

.faq-answer > * {
  min-height: 0;
  overflow: hidden;
  max-width: 85%;
  padding-right: var(--space-16);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 var(--space-32) var(--space-24) var(--space-32);
  margin-top: 0;
  opacity: 1;
  transition: grid-template-rows 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s ease-in 0.2s,
              margin-top 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: var(--space-64) 0;
  }

  .faq-container {
    padding: 0 var(--space-24);
  }

  .faq-question {
    padding: var(--space-20) var(--space-24);
    min-height: 64px;
  }

  .faq-question-text {
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-24) var(--space-24) var(--space-24);
  }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final-section {
  position: relative;
  padding: var(--space-96) 0;
  margin: var(--space-96) 0;
  overflow: hidden;
}


.cta-final-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-32);
  position: relative;
  z-index: 1;
}

/* Carte principale */
.cta-final-card {
  position: relative;
  background: linear-gradient(135deg, var(--purple-600-rgba-008) 0%, var(--purple-400-rgba-06) 100%);
  border: 1px solid var(--purple-400-rgba-15);
  border-radius: 1.5rem;
  padding: var(--space-64) var(--space-48);
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Titre principal */
.cta-final-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-24);
  letter-spacing: -0.02em;
}

.cta-title-highlight {
  background: linear-gradient(135deg, var(--purple-300) 0%, var(--purple-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.cta-final-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto var(--space-40);
}

/* Boutons CTA */
.cta-final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-24);
  margin-bottom: var(--space-32);
  flex-wrap: wrap;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  background: linear-gradient(90deg, var(--purple-400) 0%, var(--purple-600) 100%);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  border-radius: 16px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--purple-400-rgba-4), 0 0 0 0 var(--purple-400-rgba-2);
  position: relative;
  overflow: hidden;
}

.cta-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.cta-button-primary:hover::before {
  left: 100%;
}

.cta-button-primary:hover {
  background: linear-gradient(90deg, var(--purple-300) 0%, var(--purple-500) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--purple-400-rgba-5), 0 0 0 0 var(--purple-400-rgba-3);
}

.cta-button-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--purple-400-rgba-3);
}

.cta-button-primary svg {
  transition: transform 0.25s ease;
}

.cta-button-primary:hover svg {
  transform: translateX(2px);
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary:active {
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
  .cta-final-section {
    padding: var(--space-64) 0;
    margin: var(--space-64) 0;
  }

  .cta-final-container {
    padding: 0 var(--space-24);
  }

  .cta-final-card {
    padding: var(--space-48) var(--space-32);
    border-radius: 1.25rem;
  }

  .cta-final-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-20);
  }

  .cta-final-description {
    font-size: 1rem;
    margin-bottom: var(--space-32);
  }

  .cta-final-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   RÉSULTATS CAROUSEL HORIZONTAL
   ============================================ */

.resultats-section {
  position: relative;
  background: var(--bg-primary);
  padding: var(--space-96) 0;
  overflow: hidden;
}

.resultats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-32);
}

.resultats-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.resultats-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--text-primary), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.resultats-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: row;
  will-change: transform;
  overflow: hidden;
  /* Permettre au contenu de dépasser pour le scroll infini */
  min-width: fit-content;
}

.resultats-slide {
  flex: 0 0 calc(50% - var(--space-12)); /* 2 slides visibles avec gap */
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  margin-right: var(--space-24);
  box-sizing: border-box;
}

.resultats-slide-frame {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
  background: var(--bg-secondary);
  border: 2px solid var(--purple-400-rgba-15);
  border-radius: 1.75rem;
  padding: var(--space-24);
  box-sizing: border-box;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px var(--purple-400-rgba-1) inset,
    0 0 60px var(--purple-400-rgba-05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.resultats-slide:hover .resultats-slide-frame {
  border-color: var(--purple-400-rgba-4);
  box-shadow: 
    0 16px 48px var(--purple-400-rgba-2),
    0 0 0 1px var(--purple-400-rgba-2) inset,
    0 0 80px var(--purple-400-rgba-1);
  transform: translateY(-4px);
}

.resultats-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .resultats-section {
    padding: var(--space-64) 0;
  }

  .resultats-container {
    padding: 0 var(--space-24);
  }

  .resultats-title {
    font-size: 2rem;
  }

  .resultats-carousel {
    height: 400px;
  }

  .resultats-slide {
    width: 100%; /* 1 slide visible sur mobile */
    padding: var(--space-16);
  }

  .testimonials-container {
    padding: 0 var(--space-24);
  }

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

.footer {
  position: relative;
  background: transparent;
  border-top: 1px solid var(--purple-400-rgba-15);
  padding: var(--space-48) 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--purple-600-rgba-05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-24);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.footer-brand:hover {
  transform: translateY(-2px);
}

.footer-brand img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-brand:hover img {
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--purple-400);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--purple-300);
  opacity: 1;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-32);
  }

  .footer-links {
    justify-content: center;
    gap: var(--space-16);
  }
}

/* Modal */
.modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 500px;
  width: calc(100% - 32px);
  border-radius: 24px;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-40);
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: var(--space-16);
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-24);
}

.modal-content input {
  width: 100%;
  padding: var(--space-16);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: var(--space-24);
}

.modal-content input:focus {
  outline: none;
  border-color: var(--purple-500);
}

.modal-actions {
  display: flex;
  gap: var(--space-16);
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: var(--space-16);
  }
  
  .nav-links a:not(.btn-nav) {
    display: none;
  }
  
  .hero {
    padding: var(--space-96) 0 var(--space-64);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  
  .note-card {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-card {
    padding: var(--space-32);
  }
  
  .price-current {
    font-size: 48px;
  }
}

/* Section Bonus Formation */
.section-bonus-formation {
  padding: var(--space-96) 0;
  position: relative;
  overflow: hidden;
}

.bonus-formation-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.bonus-formation-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-formation-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 600;
}

.bonus-formation-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
}

.bonus-formation-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-32);
  margin-bottom: var(--space-48);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.bonus-formation-item:last-child {
  margin-bottom: 0;
}

.bonus-formation-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-formation-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonus-formation-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: inherit;
  opacity: 0.3;
  filter: blur(12px);
  z-index: -1;
  transition: all 0.4s ease;
}

.bonus-formation-item:hover .bonus-formation-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px var(--purple-400-rgba-4);
}

.bonus-formation-item:hover .bonus-formation-icon::before {
  opacity: 0.5;
  filter: blur(16px);
}

.bonus-icon-gradient-1 {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
}

.bonus-icon-gradient-2 {
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
}

.bonus-icon-gradient-3 {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
}

.bonus-icon-gradient-4 {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
}

.bonus-icon-gradient-5 {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
}

.bonus-formation-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + var(--space-48));
  background: linear-gradient(to bottom, 
    var(--purple-400-rgba-4),
    var(--purple-400-rgba-2),
    var(--purple-400-rgba-4)
  );
  z-index: 1;
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.6;
    box-shadow: 0 0 8px var(--purple-400-rgba-3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 16px var(--purple-400-rgba-6);
  }
}

.bonus-formation-item:last-child .bonus-formation-line {
  display: none;
}

.bonus-formation-content {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.bonus-formation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 20px;
  padding: var(--space-24);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  width: 100%;
  max-width: 500px;
}

.bonus-formation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--purple-400-rgba-15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.bonus-formation-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bonus-formation-item:hover .bonus-formation-card {
  border-color: var(--purple-400-rgba-5);
  transform: translateX(8px);
  box-shadow: 0 12px 40px var(--purple-400-rgba-2);
  background: var(--purple-400-rgba-08);
}

.bonus-formation-item:hover .bonus-formation-card::before {
  opacity: 1;
}

.bonus-formation-item:hover .bonus-formation-card::after {
  opacity: 1;
}

.bonus-formation-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-12) 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  line-height: 1.3;
  flex-shrink: 0;
}

.bonus-formation-item:hover .bonus-formation-card-title {
  background: linear-gradient(135deg, var(--purple-300), var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-formation-card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 auto 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

.bonus-formation-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-16);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--purple-400-rgba-3);
}

.bonus-formation-item:hover .bonus-formation-value {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
  box-shadow: 0 6px 16px var(--purple-400-rgba-4);
  transform: scale(1.05);
}

/* Animation au scroll */
@media (min-width: 769px) {
  .bonus-formation-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .bonus-formation-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .bonus-formation-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .bonus-formation-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  .bonus-formation-item:nth-child(5) {
    transition-delay: 0.5s;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-formation-timeline {
    padding-left: 60px;
  }

  .bonus-formation-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .bonus-formation-icon svg {
    width: 24px;
    height: 24px;
  }

  .bonus-formation-line {
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
  }

  .bonus-formation-item {
    gap: var(--space-16);
  }

  .bonus-formation-content {
    max-width: 100%;
  }

  .bonus-formation-card {
    padding: var(--space-20);
    min-height: 140px;
    width: 100%;
    max-width: 100%;
  }

  .bonus-formation-card-title {
    font-size: 18px;
    margin-bottom: var(--space-8);
  }

  .bonus-formation-card-text {
    font-size: 13px;
  }

  .bonus-formation-value {
    font-size: 12px;
    padding: var(--space-8) var(--space-12);
    margin-top: var(--space-12);
  }
}

/* Section Bonus Timeline */
.section-bonus-timeline {
  background: #f5f5f5;
  padding: var(--space-96) 0;
}

.bonus-timeline-main-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: var(--space-64);
}

.bonus-timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}

.bonus-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-32);
  margin-bottom: var(--space-48);
}

.bonus-timeline-item:last-child {
  margin-bottom: 0;
}

.bonus-timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bonus-icon-emoji {
  font-size: 32px;
  line-height: 1;
}

.bonus-icon-1 {
  background: linear-gradient(135deg, var(--purple-300), var(--purple-400));
}

.bonus-icon-2 {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
}

.bonus-icon-3 {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
}

.bonus-timeline-line {
  position: absolute;
  left: 32px;
  top: 64px;
  width: 3px;
  height: calc(100% + var(--space-48));
  z-index: 1;
  transform: translateX(-50%);
}

.bonus-line-1 {
  background: linear-gradient(to bottom, 
    rgba(236, 72, 153, 0.6),
    rgba(251, 146, 60, 0.6)
  );
}

.bonus-line-2 {
  background: linear-gradient(to bottom, 
    rgba(251, 146, 60, 0.6),
    rgba(251, 146, 60, 0.8)
  );
}

.bonus-timeline-item:last-child .bonus-timeline-line {
  display: none;
}

.bonus-timeline-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: var(--space-24);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.bonus-timeline-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.bonus-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple-300);
  margin-bottom: var(--space-8);
  line-height: 1.3;
}

.bonus-card-text {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-timeline-container {
    padding-left: 60px;
  }

  .bonus-timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .bonus-icon-emoji {
    font-size: 24px;
  }

  .bonus-timeline-line {
    left: 24px;
    top: 48px;
    transform: translateX(-50%);
  }

  .bonus-timeline-item {
    gap: var(--space-16);
  }

  .bonus-timeline-card {
    padding: var(--space-20);
  }

  .bonus-card-title {
    font-size: 18px;
  }

  .bonus-card-text {
    font-size: 14px;
  }
}

/* Nouvelle Section Pricing Scroll */
.pricing-scroll-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.pricing-scroll-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--purple-500-rgba-05), rgba(236, 72, 153, 0.05), rgba(59, 130, 246, 0.05));
}

.pricing-scroll-hero-bg::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: var(--purple-500-rgba-1);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.pricing-scroll-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 384px;
  height: 384px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 1s;
}

.pricing-scroll-hero-content {
  text-align: center;
  max-width: 48rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.pricing-scroll-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--purple-400-rgba-1);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  border: 1px solid var(--purple-400-rgba-2);
  margin-bottom: 2rem;
}

.pricing-scroll-badge-dot {
  position: relative;
  display: flex;
  height: 0.75rem;
  width: 0.75rem;
}

.pricing-scroll-badge-dot::before {
  content: '';
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background: var(--purple-500);
  opacity: 0.75;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pricing-scroll-badge-dot::after {
  content: '';
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.75rem;
  width: 0.75rem;
  background: var(--purple-500);
}

.pricing-scroll-badge-text {
  color: var(--purple-400);
  font-size: 0.875rem;
}

.pricing-scroll-hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: linear-gradient(to bottom right, var(--text-primary), var(--purple-300));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.pricing-scroll-hero p {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-size: 1rem;
}

.pricing-scroll-scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.pricing-scroll-scroll-indicator svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: bounce 1s infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.25rem);
  }
}

/* Pricing Scroll Section */
.pricing-scroll-section {
  min-height: 100vh;
  position: relative;
  padding: var(--section-spacing) 0;
}

/* Section Comparaison Avant vs Après */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-40);
  margin-bottom: var(--space-48);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.comparison-column {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: var(--space-32);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.comparison-column-before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-column-before::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-column-after {
  background: linear-gradient(135deg, var(--purple-400-rgba-15) 0%, var(--purple-600-rgba-008) 100%);
  border: 1px solid var(--purple-400-rgba-3);
  box-shadow: 0 0 40px var(--purple-400-rgba-2);
}

.comparison-column-after::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, var(--purple-400-rgba-25) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-32);
  position: relative;
  z-index: 1;
}

.comparison-emoji {
  font-size: 40px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  animation: emoji-float 3s ease-in-out infinite;
}

.comparison-column-before .comparison-emoji {
  animation: emoji-sad 3s ease-in-out infinite;
}

.comparison-column-after .comparison-emoji {
  animation: emoji-happy 3s ease-in-out infinite;
}

@keyframes emoji-sad {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-3px) rotate(-2deg);
    opacity: 0.9;
  }
}

@keyframes emoji-happy {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-5px) rotate(5deg) scale(1.05);
    opacity: 1;
  }
}

.comparison-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  position: relative;
}

.comparison-column-before .comparison-title {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-column-after .comparison-title {
  color: var(--text-primary);
  text-shadow: 0 0 15px var(--purple-400-rgba-5);
}

.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  position: relative;
  z-index: 1;
}

.comparison-card {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-20) var(--space-24);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.comparison-card-positive {
  border: 2px solid var(--purple-400);
  background: linear-gradient(135deg, var(--purple-400-rgba-15) 0%, var(--purple-600-rgba-008) 100%);
  box-shadow: 
    0 4px 20px var(--purple-400-rgba-25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.comparison-card-positive::before {
  background: radial-gradient(circle at 50% 50%, var(--purple-400-rgba-2) 0%, transparent 70%);
}

.comparison-card-positive:hover {
  border-color: var(--purple-500);
  background: linear-gradient(135deg, var(--purple-400-rgba-25) 0%, var(--purple-600-rgba-012) 100%);
  box-shadow: 
    0 8px 30px var(--purple-400-rgba-4),
    0 0 40px var(--purple-400-rgba-3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.comparison-card-positive:hover::before {
  opacity: 1;
}

.comparison-card-negative {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  box-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 0.7;
}

.comparison-card-negative::before {
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
}

.comparison-card-negative:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  opacity: 0.85;
}

.comparison-card-negative:hover::before {
  opacity: 1;
}

.comparison-card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card-icon-positive {
  background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-600) 100%);
  color: white;
  box-shadow: 
    0 4px 15px var(--purple-400-rgba-4),
    0 0 20px var(--purple-400-rgba-3);
}

.comparison-card-positive:hover .comparison-card-icon-positive {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px var(--purple-400-rgba-5),
    0 0 30px var(--purple-400-rgba-4);
}

.comparison-card-icon-negative {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
}

.comparison-card-negative:hover .comparison-card-icon-negative {
  transform: scale(1.05);
  opacity: 0.9;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.comparison-card-text {
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.comparison-card-positive .comparison-card-text {
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--purple-400-rgba-3);
}

.comparison-card-negative .comparison-card-text {
  color: #ffffff;
  font-weight: 400;
}

.comparison-column-before .comparison-card-text {
  color: #ffffff !important;
}

.comparison-cta {
  display: flex;
  gap: var(--space-16);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: var(--space-64);
  position: relative;
  z-index: 1;
}

.comparison-cta .btn {
  flex: 0 1 auto;
  min-width: fit-content;
}

.comparison-cta .btn-discord {
  padding: var(--space-16) var(--space-24);
  font-size: 14px;
  font-weight: 600;
  opacity: 1;
}

/* Responsive pour la section Comparaison */
@media (max-width: 968px) {
  .comparison-container {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }

  .comparison-header {
    justify-content: center;
  }

  .comparison-column {
    padding: var(--space-24);
  }
}

@media (max-width: 768px) {
  .comparison-card {
    padding: var(--space-16) var(--space-20);
  }

  .comparison-title {
    font-size: 22px;
  }

  .comparison-emoji {
    font-size: 36px;
  }

  .comparison-card-text {
    font-size: 14px;
  }

  .comparison-column {
    padding: var(--space-20);
  }
}

/* Footer Section */
.pricing-scroll-footer {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  z-index: 0;
  margin-top: 0;
}

.pricing-scroll-footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary), var(--purple-500-rgba-05), var(--bg-primary));
}

.pricing-scroll-footer-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: linear-gradient(to bottom right, var(--purple-400-rgba-1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.pricing-scroll-footer-content {
  text-align: center;
  max-width: 42rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.pricing-scroll-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pricing-scroll-stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fbbf24;
}

.pricing-scroll-footer h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

.pricing-scroll-footer p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pricing-scroll-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  color: var(--muted-foreground);
}

.pricing-scroll-stat {
  text-align: center;
}

.pricing-scroll-stat-number {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-scroll-stat-label {
  font-size: 0.875rem;
}

.pricing-scroll-stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

.pricing-scroll-cta-button {
  position: relative;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to right, var(--purple-600), var(--purple-700));
  color: var(--text-primary);
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 8px 32px var(--purple-400-rgba-4);
}

.pricing-scroll-cta-button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

.pricing-scroll-cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.pricing-scroll-cta-button:hover::before {
  transform: translateX(100%);
}

.pricing-scroll-cta-button svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.pricing-scroll-cta-button:hover svg {
  transform: translateX(0.25rem);
}

.pricing-scroll-footer-note {
  color: var(--text-secondary);
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-scroll-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-scroll-stat-divider {
    display: none;
  }

  .pricing-scroll-cta-button {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   PRICING SCROLL SECTION - OPTIMIZED
   ============================================ */

.pricing-scroll-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: var(--space-96) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.pricing-scroll-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-32);
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Animated mesh background - simplifié et contenu pour éviter les débordements */
.pricing-scroll-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}

.pricing-scroll-mesh-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 40%;
  height: 40%;
  max-width: 400px;
  max-height: 400px;
  background: radial-gradient(circle, var(--purple-400-rgba-15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: pricing-scroll-mesh-rotate-1 25s linear infinite;
}

.pricing-scroll-mesh-2 {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 40%;
  height: 40%;
  max-width: 400px;
  max-height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: pricing-scroll-mesh-rotate-2 25s linear infinite;
}

@keyframes pricing-scroll-mesh-rotate-1 {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(45deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes pricing-scroll-mesh-rotate-2 {
  0% { transform: scale(1.1) rotate(45deg); }
  50% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(45deg); }
}

/* Content layout */
.pricing-scroll-content {
  position: relative;
  display: flex;
  gap: calc(var(--space-32) * 3);
  align-items: stretch;
  justify-content: center;
  z-index: 1;
  width: auto;
  margin: 0 auto;
}

/* Pricing Card Wrapper (65%) */
.pricing-scroll-card-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.pricing-scroll-card {
  position: relative;
  width: 100%;
  max-width: 24.64rem;
  perspective: 1500px;
  overflow: hidden;
  border-radius: 1.54rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-scroll-card-inner {
  position: relative;
  background: rgba(19, 19, 26, 0.95);
  backdrop-filter: blur(24px);
  border: 2px solid var(--purple-400-rgba-2);
  border-radius: 1.54rem;
  padding: 2.31rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
  isolation: isolate;
  contain: layout style paint;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Multi-layer glow effect */
.pricing-scroll-card-glow {
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--purple-400-rgba-4), var(--purple-500-rgba-3), var(--purple-600-rgba-4));
  border-radius: 1.7rem;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 70%, transparent 100%);
}

.pricing-scroll-card:hover .pricing-scroll-card-glow {
  opacity: 0.2;
}

/* Gradient orbs - réduits et contenus pour éviter les débordements */
.pricing-scroll-orb {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.2;
}

.pricing-scroll-orb-tr {
  top: -2rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--purple-400-rgba-08), transparent);
  animation: pricing-scroll-orb-1 12s ease-in-out infinite;
}

.pricing-scroll-orb-bl {
  bottom: -2rem;
  left: -2rem;
  background: linear-gradient(225deg, rgba(59, 130, 246, 0.08), transparent);
  animation: pricing-scroll-orb-2 12s ease-in-out infinite;
}

@keyframes pricing-scroll-orb-1 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(10px, 8px); }
}

@keyframes pricing-scroll-orb-2 {
  0%, 100% { transform: scale(1.1) translate(0, 0); }
  50% { transform: scale(1) translate(-8px, -10px); }
}

/* Premium shimmer */
.pricing-scroll-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 2.5rem;
}

.pricing-scroll-card:hover .pricing-scroll-shimmer {
  opacity: 1;
  animation: pricing-scroll-shimmer 2s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes pricing-scroll-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Card content */
.pricing-scroll-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
}

/* Premium badge */
.pricing-scroll-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.48125rem;
  padding: 0.48125rem 0.9625rem;
  background: var(--purple-400-rgba-1);
  backdrop-filter: blur(8px);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 9999px;
  margin-bottom: 1.925rem;
}

.pricing-scroll-crown-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--purple-500);
  animation: pricing-scroll-crown-rotate 3s linear infinite;
}

@keyframes pricing-scroll-crown-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pricing-scroll-badge span {
  color: var(--purple-500);
  font-weight: 600;
  font-size: 0.67375rem;
}

.pricing-scroll-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
  animation: pricing-scroll-badge-pulse 2.5s ease-in-out infinite;
}

@keyframes pricing-scroll-badge-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Pricing section */
.pricing-scroll-price-section {
  margin-bottom: 0.75rem;
  width: 100%;
  min-width: 260px;
  overflow: visible;
}

.pricing-scroll-price-old {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.pricing-scroll-price-strikethrough {
  font-size: 1.5rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.pricing-scroll-discount-badge {
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.pricing-scroll-price-main {
  margin-bottom: 0;
  min-height: 4.5rem;
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 1;
}

.pricing-scroll-price-amount {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-right: 0;
  padding-right: 0;
  white-space: nowrap;
  display: inline;
  vertical-align: baseline;
}

.pricing-scroll-price-note {
  display: flex;
  align-items: center;
  gap: 0.385rem;
  color: var(--text-secondary);
  font-size: 0.67375rem;
}

.pricing-scroll-price-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-500);
  opacity: 0.5;
}

.pricing-scroll-payment-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.7rem;
  margin-top: -0.7rem;
  padding: 0.5rem 0.75rem;
  background: var(--purple-400-rgba-08);
  border: 1px solid var(--purple-400-rgba-15);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  width: fit-content;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
  cursor: pointer;
}

.pricing-scroll-payment-option:hover {
  background: var(--purple-400-rgba-12);
  border-color: var(--purple-400-rgba-25);
}

.pricing-scroll-payment-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex: 0 1 auto;
  min-width: 0;
  overflow: visible;
}

.pricing-scroll-payment-label span {
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-scroll-payment-option svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--purple-500);
  flex-shrink: 0;
}

.pricing-scroll-payment-option strong {
  color: var(--purple-500);
  font-weight: 600;
}

.pricing-scroll-access-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--purple-400-rgba-05);
  border: 1px solid var(--purple-400-rgba-1);
  border-radius: 0.625rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.5;
  transition: all 0.2s ease;
  justify-content: center;
}

.pricing-scroll-access-note:hover {
  background: var(--purple-400-rgba-1);
  border-color: var(--purple-400-rgba-2);
}

.pricing-scroll-access-note svg {
  width: 16px;
  height: 16px;
  color: var(--purple-400);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.pricing-scroll-access-note span {
  color: var(--text-primary);
  font-weight: 500;
}

.pricing-scroll-access-note-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--purple-400-rgba-08), var(--purple-400-rgba-04));
  border: 1px solid var(--purple-400-rgba-15);
  border-radius: 0.875rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--purple-400-rgba-1);
  box-sizing: border-box;
}

.pricing-scroll-container > .pricing-scroll-access-note-full {
  width: 100%;
  max-width: calc(24.64rem + 21.56rem + calc(var(--space-32) * 3) - 3rem);
}

.pricing-scroll-access-note-full:hover {
  background: linear-gradient(135deg, var(--purple-400-rgba-12), var(--purple-400-rgba-06));
  border-color: var(--purple-400-rgba-25);
  box-shadow: 0 4px 12px var(--purple-400-rgba-15);
  transform: translateY(-1px);
}

.pricing-scroll-access-note-full svg {
  width: 18px;
  height: 18px;
  color: var(--purple-400);
  flex-shrink: 0;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 4px var(--purple-400-rgba-4));
}

.pricing-scroll-access-note-full span {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Toggle switch */
.pricing-scroll-payment-toggle {
  position: relative;
  display: inline-block;
  width: 2.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  pointer-events: none;
}

.pricing-scroll-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-scroll-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--purple-400-rgba-3);
  transition: 0.3s;
  border-radius: 1.5rem;
}

.pricing-scroll-toggle-slider:before {
  position: absolute;
  content: "";
  height: 0.875rem;
  width: 0.875rem;
  left: 0.1875rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  border-radius: 50%;
}

.pricing-scroll-toggle-input:checked + .pricing-scroll-toggle-slider {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  border-color: var(--purple-500);
}

.pricing-scroll-toggle-input:checked + .pricing-scroll-toggle-slider:before {
  transform: translateX(0.875rem) translateY(-50%);
  background-color: white;
}

.pricing-scroll-price-per-month {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  white-space: nowrap;
  vertical-align: baseline;
  display: inline;
  line-height: 1;
}

/* Features */
.pricing-scroll-features {
  display: flex;
  flex-direction: column;
  gap: 0.9625rem;
  margin-bottom: 1.925rem;
}

.pricing-scroll-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s;
  font-size: 0.875rem;
}

.pricing-scroll-feature-item:hover {
  transform: translateX(6px);
}

.pricing-scroll-feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-400-rgba-1);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 0.5625rem;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.pricing-scroll-feature-item:hover .pricing-scroll-feature-icon {
  background: var(--purple-400-rgba-2);
  border-color: var(--purple-400-rgba-4);
  transform: rotate(360deg);
}

.pricing-scroll-feature-item span {
  color: var(--text-primary);
  transition: color 0.2s;
}

.pricing-scroll-feature-item:hover span {
  color: var(--purple-500);
}

/* CTA Button */
.pricing-scroll-cta {
  position: relative;
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: var(--text-primary);
  border: none;
  border-radius: 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--purple-600-rgba-2);
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

#pricing-cta-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

#pricing-cta-text svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.pricing-scroll-cta:hover {
  box-shadow: 0 6px 16px var(--purple-600-rgba-3);
}

.pricing-scroll-cta:active {
  transform: scale(0.98);
}

.pricing-scroll-cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  animation: pricing-scroll-cta-shine 2s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes pricing-scroll-cta-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.pricing-scroll-cta svg {
  animation: pricing-scroll-cta-arrow 1.2s ease-in-out infinite;
}

@keyframes pricing-scroll-cta-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Trust indicator */
.pricing-scroll-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.pricing-scroll-trust svg {
  width: 1rem;
  height: 1rem;
  color: var(--purple-500);
  animation: pricing-scroll-trust-pulse 2s ease-in-out infinite;
}

@keyframes pricing-scroll-trust-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Bonus Wrapper (35%) */
.pricing-scroll-bonus-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
}

.pricing-scroll-bonus-content {
  width: 100%;
  max-width: 21.56rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Cadeau au-dessus du badge - Animation premium */
.pricing-scroll-bonus-gift-icon {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 0.77rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  z-index: 1;
}

.pricing-scroll-gift-container {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
}

.pricing-scroll-gift-box {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px var(--purple-400-rgba-4));
  animation: pricing-scroll-gift-float 3s ease-in-out infinite, pricing-scroll-gift-pulse 2s ease-in-out infinite;
  transform-origin: center center;
}

/* Animation de flottement du cadeau */
@keyframes pricing-scroll-gift-float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

/* Animation de pulsation pour simuler l'ouverture */
@keyframes pricing-scroll-gift-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.05) rotate(-1deg);
  }
  50% {
    transform: scale(1.08) rotate(0deg);
  }
  75% {
    transform: scale(1.05) rotate(1deg);
  }
}

/* Étoiles animées */
.pricing-scroll-star {
  position: absolute;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: pricing-scroll-star-appear 3s ease-in-out infinite;
}

.pricing-scroll-star-1 {
  top: -15px;
  left: 20px;
  animation-delay: 0s;
}

.pricing-scroll-star-2 {
  top: 10px;
  right: -10px;
  animation-delay: 0.5s;
}

.pricing-scroll-star-3 {
  bottom: -10px;
  left: 15px;
  animation-delay: 1s;
}

.pricing-scroll-star-4 {
  top: 25px;
  left: -15px;
  animation-delay: 1.5s;
}

.pricing-scroll-star-5 {
  bottom: 15px;
  right: 5px;
  animation-delay: 2s;
}

.pricing-scroll-star-6 {
  top: -5px;
  right: 20px;
  animation-delay: 2.5s;
}

@keyframes pricing-scroll-star-appear {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  10%, 90% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1) rotate(360deg);
  }
}

/* Particules/confettis */
.pricing-scroll-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: pricing-scroll-particle-fall 2.5s ease-out infinite;
}

.pricing-scroll-particle-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
}

.pricing-scroll-particle-2 {
  top: 30%;
  right: 25%;
  animation-delay: 0.3s;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
}

.pricing-scroll-particle-3 {
  bottom: 25%;
  left: 40%;
  animation-delay: 0.6s;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
}

.pricing-scroll-particle-4 {
  top: 50%;
  left: 20%;
  animation-delay: 0.9s;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
}

.pricing-scroll-particle-5 {
  bottom: 30%;
  right: 30%;
  animation-delay: 1.2s;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
}

@keyframes pricing-scroll-particle-fall {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateY(-10px) translateX(5px) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(20px) translateX(-10px) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(40px) translateX(15px) scale(0);
  }
}

/* Glow effect pulsant */
.pricing-scroll-gift-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--purple-400-rgba-3), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pricing-scroll-gift-glow-pulse 2s ease-in-out infinite;
}

@keyframes pricing-scroll-gift-glow-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Bonus header badge - simplifié avec padding réduit */
.pricing-scroll-bonus-header-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.385rem 0.5775rem;
  background: var(--purple-400-rgba-1);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 9999px;
  margin-bottom: 1.155rem;
  color: var(--text-primary);
  width: 100%;
}

.pricing-scroll-bonus-header-badge-content {
  display: flex;
  align-items: center;
  gap: 0.385rem;
}

.pricing-scroll-bonus-header-badge span {
  font-size: 0.86625rem;
  font-weight: 600;
}

.pricing-scroll-bonus-header-badge svg {
  width: 0.86625rem;
  height: 0.86625rem;
  color: var(--purple-500);
}

/* Conteneur pour centrer le contenu sans le cadeau */
.pricing-scroll-bonus-centered-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin-top: 80px;
}

/* Bonus cards list - espacement ajusté */
.pricing-scroll-bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 0.77rem;
}

/* Bonus card - agrandie */
.pricing-scroll-bonus-card {
  position: relative;
  background: rgba(19, 19, 26, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9625rem;
  padding: 1.155rem;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-scroll-bonus-card:hover {
  transform: translateX(4px);
  border-color: var(--purple-400-rgba-3);
}

.pricing-scroll-bonus-card-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.77rem;
  z-index: 1;
  margin-bottom: 0.77rem;
}

.pricing-scroll-bonus-icon {
  width: 2.695rem;
  height: 2.695rem;
  border-radius: 0.5775rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s;
  border: 1px solid var(--purple-400-rgba-2);
  font-size: 1.5rem;
  line-height: 1;
}

.pricing-scroll-bonus-card:hover .pricing-scroll-bonus-icon {
  transform: rotate(360deg);
}

.pricing-scroll-bonus-text {
  flex: 1;
  min-width: 0;
}

.pricing-scroll-bonus-title {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: 0.28875rem;
}

.pricing-scroll-bonus-description {
  color: var(--text-secondary);
  font-size: 0.67375rem;
  line-height: 1.5;
}

/* Gradient line - remplace la barre de progression */
.pricing-scroll-bonus-gradient-line {
  height: 2.31px;
  width: 100%;
  border-radius: 9999px;
  margin-top: 0.77rem;
  opacity: 0.6;
}

/* Gradient classes - nuances de violet différentes par carte */
.pricing-scroll-gradient-purple-1 {
  background: linear-gradient(135deg, var(--purple-400-rgba-35), var(--purple-500-rgba-45));
}

.pricing-scroll-gradient-purple-2 {
  background: linear-gradient(135deg, var(--purple-500-rgba-3), var(--purple-600-rgba-4));
}

.pricing-scroll-gradient-purple-3 {
  background: linear-gradient(135deg, var(--purple-600-rgba-25), var(--purple-400-rgba-35));
}

.pricing-scroll-gradient-purple-4 {
  background: linear-gradient(135deg, var(--purple-400-rgba-3), rgba(99, 102, 241, 0.4));
}

/* Badge revendeur pour bonus personnalisé */
.pricing-scroll-bonus-revendeur-badge {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.pricing-scroll-bonus-revendeur-info-icon {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  cursor: help;
  color: rgba(255, 255, 255, 0.7) !important;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}

.pricing-scroll-bonus-revendeur-info-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pricing-scroll-bonus-revendeur-text {
  cursor: help;
}

.pricing-scroll-bonus-revendeur-tooltip {
  position: fixed;
  transform: translateX(-50%) translateY(-100%);
  padding: 10px 14px;
  background: rgba(10, 7, 20, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--purple-400-rgba-4);
  border-radius: 6px;
  color: var(--purple-vibrant, #a78bfa);
  font-size: 11px;
  line-height: 1.5;
  white-space: normal;
  max-width: 280px;
  width: max-content;
  display: none;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* S'assurer que le tooltip reste dans l'écran */
  left: 50% !important;
  margin-left: 0;
  /* Ajuster la position si trop proche des bords */
  max-width: min(280px, calc(100vw - 20px));
}

.pricing-scroll-bonus-revendeur-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--purple-400-rgba-4);
}

/* S'assurer que le parent n'a pas overflow: hidden qui bloque le tooltip */
.pricing-scroll-bonus-card {
  overflow: visible !important;
}

.pricing-scroll-bonus-card-content {
  overflow: visible !important;
}

/* Tooltip unique pour le bonus revendeur */
.bonus-revendeur-tooltip-unique {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 14px;
  background: rgba(10, 7, 20, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--purple-400-rgba-4);
  border-radius: 6px;
  color: var(--purple-vibrant, #a78bfa);
  font-size: 11px;
  line-height: 1.5;
  white-space: normal;
  max-width: min(280px, calc(100vw - 40px));
  width: max-content;
  min-width: 200px;
  display: none;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  /* S'assurer que le tooltip reste dans l'écran */
  margin-left: 0;
}

/* Ajuster la position sur mobile pour éviter de sortir de l'écran */
@media (max-width: 768px) {
  .bonus-revendeur-tooltip-unique {
    max-width: calc(100vw - 20px);
    left: 50%;
    transform: translateX(-50%);
    /* Si le tooltip sort à droite, l'aligner à droite */
  }
  
  /* Si le tooltip est trop proche du bord gauche, l'aligner à gauche */
  .pricing-scroll-bonus-revendeur-info-icon:hover .bonus-revendeur-tooltip-unique {
    left: 0;
    transform: translateX(0);
  }
  
  /* Si le tooltip est trop proche du bord droit, l'aligner à droite */
  .pricing-scroll-bonus-revendeur-info-icon:last-child:hover .bonus-revendeur-tooltip-unique {
    left: auto;
    right: 0;
    transform: translateX(0);
  }
}

.bonus-revendeur-tooltip-unique::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--purple-400-rgba-4);
}

.pricing-scroll-bonus-revendeur-info-icon:hover .bonus-revendeur-tooltip-unique {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-scroll-content {
    flex-direction: column;
    gap: var(--space-48);
  }

  .pricing-scroll-card-wrapper,
  .pricing-scroll-bonus-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-scroll-section {
    padding: var(--space-64) 0;
  }

  .pricing-scroll-container {
    padding: 0 var(--space-24);
  }

  .pricing-scroll-card-inner {
    padding: 2rem;
  }

  .pricing-scroll-price-amount {
    font-size: 3.5rem;
  }
}

/* Bouton WhatsApp fixe - Bas à droite */
.whatsapp-cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: #25D366; /* Couleur officielle WhatsApp */
  border-radius: 50%;
  display: none; /* Masqué par défaut, sera affiché si le via l'active */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappBounce 2s ease-in-out infinite, whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-cta:hover,
.whatsapp-cta:active {
  transform: scale(1.1);
  background: #20BA5A; /* Version légèrement plus foncée au hover */
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
}

.whatsapp-cta-icon {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 2;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.whatsapp-cta:hover .whatsapp-cta-icon {
  transform: scale(1.05);
}

.whatsapp-cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulseRing 2s ease-out infinite;
  z-index: 1;
}

/* Animation de rebond */
@keyframes whatsappBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation de pulsation */
@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Animation de l'anneau de pulsation */
@keyframes whatsappPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Visible sur tous les appareils */
@media (max-width: 768px) {
  .whatsapp-cta {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-cta-icon {
    width: 32px;
    height: 32px;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .whatsapp-cta {
    /* display sera géré par JavaScript selon les réglages du via */
  }
}

/* ============================================
   AUTH PAGES - Login & Register
   ============================================ */

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) 0;
  position: relative;
}

/* Mobile: Allow scrolling for auth section */
@media (max-width: 768px) {
  .auth-section {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    height: auto !important; /* Allow content to expand beyond viewport */
    padding: var(--space-16) 0;
    overflow-y: visible !important; /* Allow natural scrolling */
    -webkit-overflow-scrolling: touch;
    align-items: flex-start; /* Start from top instead of center */
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
  
  .auth-container {
    padding: 0 var(--space-16);
    max-height: none !important; /* Remove height restriction */
  }
}

.auth-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-48);
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease;
}

.auth-logo:hover {
  transform: translateY(-2px);
  color: var(--purple-300);
}

.auth-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.auth-card {
  position: relative;
  width: 100%;
}

.auth-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 24px;
  padding: var(--space-48);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-card:hover .auth-card-inner {
  border-color: var(--purple-400-rgba-4);
  box-shadow: 
    0 20px 60px var(--purple-400-rgba-2),
    0 0 40px var(--purple-400-rgba-1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.auth-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    var(--purple-400-rgba-15) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.5;
  animation: authGlowPulse 4s ease-in-out infinite;
}

@keyframes authGlowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.auth-card-content {
  position: relative;
  z-index: 1;
}

.auth-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  text-align: center;
  letter-spacing: -0.02em;
}

.auth-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-32);
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.auth-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.auth-input {
  width: 100%;
  padding: var(--space-16) var(--space-20);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.auth-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--purple-400-rgba-5);
  box-shadow: 
    0 0 0 3px var(--purple-400-rgba-1),
    0 4px 12px var(--purple-400-rgba-15);
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.auth-hint {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: -4px;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-8);
  font-size: 16px;
  padding: var(--space-16) var(--space-32);
  height: 52px;
}

.auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.auth-message {
  padding: var(--space-16);
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
  margin-bottom: var(--space-24);
  transition: all 0.3s ease;
}

.auth-message-error {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #ff6b9d;
}

.auth-message-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: var(--space-32) 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
  position: relative;
  background: var(--bg-primary);
  padding: 0 var(--space-16);
  color: var(--text-tertiary);
  font-size: 14px;
}

.auth-footer {
  text-align: center;
  margin-top: var(--space-24);
}

.auth-footer-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-link {
  color: var(--purple-400);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.auth-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-400);
  transition: width 0.3s ease;
}

.auth-link:hover {
  color: var(--purple-300);
}

.auth-link:hover::after {
  width: 100%;
}

.auth-back {
  text-align: center;
  margin-top: var(--space-32);
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.auth-back-link:hover {
  color: var(--text-primary);
  transform: translateX(-4px);
}

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

.auth-back-link:hover svg {
  transform: translateX(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .auth-card-inner {
    padding: var(--space-32);
    border-radius: 20px;
  }

  .auth-title {
    font-size: 28px;
  }

  .auth-subtitle {
    font-size: 14px;
  }

  .auth-input {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

@media (max-width: 480px) {
  .auth-container {
    padding: 0 var(--space-16);
    max-height: none !important; /* Remove height restriction */
    display: flex;
    flex-direction: column;
  }

  .auth-card-inner {
    padding: var(--space-24);
  }

  .auth-header {
    margin-bottom: var(--space-24);
  }

  .auth-section {
    padding: var(--space-12) 0;
    height: auto !important; /* Allow content to expand */
  }
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030213;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-loader {
  transition: opacity 0.3s ease;
}

.page-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-loader-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(167, 139, 250, 0.2);
  border-top-color: var(--purple-vibrant, #a78bfa);
  border-right-color: var(--purple-vibrant, #a78bfa);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: relative;
}

.page-loader-spinner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--purple-vibrant, #a78bfa);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple-vibrant, #a78bfa);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation de pulsation pour le loader */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.page-loader-content {
  animation: pulse 2s ease-in-out infinite;
}

/* Texte optionnel pour le loader */
.page-loader-text {
  color: var(--purple-vibrant, #a78bfa);
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.5rem;
}

