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

img,
video {
  max-width: 100%;
  height: auto;
}

:root {
  /* Colors - Dark theme with emerald accents (Vizion design system) */
  --bg-primary: #0a0a0f;
  --bg-secondary: #13131a;
  --bg-tertiary: #1a1a24;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);

  /* Emerald palette — remplace le violet Vizion */
  --purple-200: #a7f3d0;   /* emerald-200 */
  --purple-300: #6ee7b7;   /* emerald-300 */
  --purple-400: #34d399;   /* emerald-400 */
  --purple-500: #10b981;   /* emerald-500 — couleur primaire */
  --purple-600: #059669;   /* emerald-600 */
  --purple-700: #047857;   /* emerald-700 */
  --purple-vibrant: #34d399;

  /* Variables rgba() — basées sur emerald-400 #34d399 = rgb(52,211,153) */
  --purple-400-rgba-03: rgba(52, 211, 153, 0.03);
  --purple-400-rgba-05: rgba(52, 211, 153, 0.05);
  --purple-400-rgba-06: rgba(52, 211, 153, 0.06);
  --purple-400-rgba-08: rgba(52, 211, 153, 0.08);
  --purple-400-rgba-1: rgba(52, 211, 153, 0.1);
  --purple-400-rgba-12: rgba(52, 211, 153, 0.12);
  --purple-400-rgba-15: rgba(52, 211, 153, 0.15);
  --purple-400-rgba-18: rgba(52, 211, 153, 0.18);
  --purple-400-rgba-2: rgba(52, 211, 153, 0.2);
  --purple-400-rgba-25: rgba(52, 211, 153, 0.25);
  --purple-400-rgba-3: rgba(52, 211, 153, 0.3);
  --purple-400-rgba-35: rgba(52, 211, 153, 0.35);
  --purple-400-rgba-4: rgba(52, 211, 153, 0.4);
  --purple-400-rgba-5: rgba(52, 211, 153, 0.5);
  --purple-400-rgba-6: rgba(52, 211, 153, 0.6);
  --purple-400-rgba-7: rgba(52, 211, 153, 0.7);
  --purple-400-rgba-8: rgba(52, 211, 153, 0.8);
  --purple-400-rgba-9: rgba(52, 211, 153, 0.9);
  --purple-400-rgba-1-full: rgba(52, 211, 153, 1);
  --purple-400-rgba-12-full: rgba(52, 211, 153, 1);
  --purple-400-rgba-14-full: rgba(52, 211, 153, 1);
  --purple-400-rgba-04: rgba(52, 211, 153, 0.04);
  --purple-400-rgba-0: rgba(52, 211, 153, 0);

  /* Variables rgba() — basées sur emerald-500 #10b981 = rgb(16,185,129) */
  --purple-500-rgba-08: rgba(16, 185, 129, 0.08);
  --purple-500-rgba-4: rgba(16, 185, 129, 0.4);
  --purple-500-rgba-05: rgba(16, 185, 129, 0.05);
  --purple-500-rgba-1: rgba(16, 185, 129, 0.1);
  --purple-500-rgba-2: rgba(16, 185, 129, 0.2);
  --purple-500-rgba-3: rgba(16, 185, 129, 0.3);
  --purple-500-rgba-45: rgba(16, 185, 129, 0.45);

  /* Variables rgba() — basées sur emerald-600 #059669 = rgb(5,150,105) */
  --purple-600-rgba-006: rgba(5, 150, 105, 0.06);
  --purple-600-rgba-008: rgba(5, 150, 105, 0.08);
  --purple-600-rgba-012: rgba(5, 150, 105, 0.12);
  --purple-600-rgba-003: rgba(5, 150, 105, 0.03);
  --purple-600-rgba-1: rgba(5, 150, 105, 0.1);
  --purple-600-rgba-15: rgba(5, 150, 105, 0.15);
  --purple-600-rgba-2: rgba(5, 150, 105, 0.2);
  --purple-600-rgba-25: rgba(5, 150, 105, 0.25);
  --purple-600-rgba-3: rgba(5, 150, 105, 0.3);
  --purple-600-rgba-4: rgba(5, 150, 105, 0.4);
  --purple-600-rgba-05: rgba(5, 150, 105, 0.05);

  /* Variables rgba() — basées sur emerald-300 #6ee7b7 = rgb(110,231,183) */
  --purple-300-rgba-3: rgba(110, 231, 183, 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;
  overflow-x: clip; /* clip au lieu de hidden : évite de créer un scroll container qui brise position: sticky */
}

/* ─── Scrollbar fine émeraude — identique à l'app Vizion ─── */
*::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.3);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 185, 129, 0.3) transparent;
}

/* ─── Sélection de texte — couleur émeraude Vizion ─── */
::selection {
  background: rgba(16, 185, 129, 0.25);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(16, 185, 129, 0.25);
  color: #ffffff;
}

/* Mobile: Allow scrolling - Force with !important */
@media (max-width: 768px) {
  html {
    overflow-x: clip !important;
    overflow-y: auto !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body {
    overflow-x: clip !important;
    height: auto !important;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero {
    padding-top: var(--space-128);
  }
}

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: clip; /* clip : ne crée pas de scroll container, préserve position: sticky */
  position: relative;
  min-height: 100vh;
  height: auto;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

/* Accessibilité : respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.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: min(420px, calc(100vw - 32px));
  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: min(380px, calc(100vw - 48px));
  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);
}

@media (max-width: 768px) {
  .notifications-carousel {
    height: 220px;
  }

  .notification {
    padding: var(--space-12);
    gap: var(--space-12);
  }

  .notification-logo,
  .notification-logo img {
    width: 28px;
    height: 28px;
  }

  .notification-brand {
    font-size: 13px;
  }

  .notification-time {
    font-size: 12px;
  }

  .notification-text {
    font-size: 13px;
  }

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

@media (max-width: 390px) {
  .notification {
    padding: var(--space-8) var(--space-10);
    gap: var(--space-8);
  }

  .notification-amount {
    font-size: 13px;
  }

  .notification-text {
    font-size: 12px;
  }
}

/* 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;
}

.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: 700;
  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-500), var(--purple-400));
  -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-500), var(--purple-400));
  -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: var(--space-16);
  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 {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.vturb-top-play-btn:hover,
.vturb-top-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.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: 24px;
  height: 24px;
  fill: white;
}

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

.vturb-top-fullscreen-btn {
  margin-right: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--purple-400);
  border: 1px solid var(--purple-400);
  padding: 4px;
  background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-600) 100%);
}

.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 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  object-fit: contain;
  background: #000;
  display: block;
  cursor: pointer;
  z-index: 1;
  border-radius: 12px;
  /* 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: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 12px 12px;
  cursor: pointer;
  overflow: hidden;
  z-index: 6;
}

.vturb-progress-fill {
  height: 100%;
  background: var(--purple-500);
  border-radius: 0 0 0 12px;
  position: relative;
  transition: width 0.1s linear;
  width: 0%;
  box-shadow: none;
}

.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 {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-4));
  position: relative;
}

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

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

.vturb-volume-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  transition: fill 0.2s ease;
}

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

.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(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  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:hover .vturb-volume-menu,
.vturb-volume-container.menu-open .vturb-volume-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.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 {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  filter: drop-shadow(0 4px 16px var(--purple-400-rgba-4));
}

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

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

.vturb-speed-btn svg {
  width: 24px;
  height: 24px;
  transition: fill 0.2s ease;
}

.vturb-speed-btn:hover svg {
  fill: var(--purple-300);
}

.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(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  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:hover .vturb-speed-menu,
.vturb-speed-container.menu-open .vturb-speed-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  backdrop-filter: blur(10px);
  /* 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;
}

/* S'assurer que l'overlay dans fake-vturb-player a le même fond */
.fake-vturb-player .vturb-sound-overlay {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px) !important;
}

.vturb-sound-overlay-content {
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid var(--purple-400-rgba-2);
  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 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;
}

.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: 80px;
  height: 80px;
}

.vturb-sound-off-icon {
  width: 80px;
  height: 80px;
  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: 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 */
  /* 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-500), var(--purple-400));
  -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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  backdrop-filter: blur(10px);
  /* 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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex !important;
  /* Visible par défaut pour afficher le bouton play - FORCER */
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* Au-dessus des autres overlays */
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease;
}

.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 */
}

.vturb-play-center-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  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;
}

/* Responsive - Lecteur vidéo mobile */
@media (max-width: 768px) {

  /* Conteneur vidéo */
  .vturb-video-player {
    border-radius: 12px;
    padding: 3px;
  }

  .vturb-video-player::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 9px;
  }

  .vturb-video-element {
    border-radius: 9px;
  }

  /* Contrôles */
  .vturb-controls {
    bottom: 30px;
    left: 3px;
    right: 3px;
    padding: 0 8px;
  }

  /* Boutons volume et vitesse */
  .vturb-volume-btn,
  .vturb-speed-btn {
    width: 40px;
    height: 40px;
  }

  .vturb-volume-btn svg {
    width: 24px;
    height: 24px;
  }

  .vturb-speed-btn svg {
    width: 20px;
    height: 20px;
  }

  /* 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 {
    position: relative;
    overflow: visible;
  }

  .vturb-volume-slider-container {
    height: 80px;
    max-height: calc(100vh - 200px);
  }

  .vturb-volume-icon-bottom {
    width: 24px;
    height: 24px;
  }

  .vturb-volume-icon-bottom svg {
    width: 18px;
    height: 18px;
  }

  /* 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 {
    position: relative;
    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;
      left: 0;
      transform: translateX(0);
      min-width: 90px;
    }

    .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-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-content {
    padding: 32px 24px;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
  }

  .vturb-play-title {
    font-size: 18px;
  }

  .vturb-play-subtitle {
    font-size: 13px;
  }

  .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 */
  .vturb-video-player {
    padding: 2px;
  }

  .vturb-video-player::before {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 8px;
  }

  .vturb-video-element {
    border-radius: 8px;
  }

  .vturb-controls {
    bottom: 26px;
    left: 2px;
    right: 2px;
    padding: 0 6px;
  }

  .vturb-volume-btn,
  .vturb-speed-btn {
    width: 36px;
    height: 36px;
  }

  .vturb-volume-btn svg {
    width: 20px;
    height: 20px;
  }

  .vturb-speed-btn svg {
    width: 18px;
    height: 18px;
  }

  .vturb-progress-bar {
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 20px;
    border-radius: 0 0 8px 8px;
  }

  .vturb-progress-fill {
    border-radius: 0 0 0 8px;
  }

  .vturb-sound-overlay-content {
    padding: 24px 20px;
    gap: 16px;
  }

  .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: 60px;
    height: 60px;
  }

  .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: 700;
  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;
}

/* La section methode doit avoir overflow visible pour les cartes */
#methode.section {
  overflow: visible;
}

.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(40px) saturate(180%);
  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: 700;
  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: 700;
  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(40px) saturate(180%);
  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: 700;
  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: 700;
  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: 700;
  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: 700;
  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: 700;
  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: 700;
  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: 700;
  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: 700;
  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: 700;
}

.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: var(--space-64);
  /* Espacement standard après le header */
}

.methode-header .section-header {
  margin-bottom: 0;
  /* Pas de margin-bottom supplémentaire car déjà géré par .methode-header */
}

.methode-main-title {
  font-size: clamp(28.8px, 3.6vw, 43.2px);
  font-weight: 700;
  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 !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-template-rows: 1fr auto;
  /* Première ligne prend tout l'espace disponible, deuxième ligne s'adapte au contenu */
  row-gap: calc(var(--space-24) * 0.9) !important;
  column-gap: calc(var(--space-24) * 0.9) !important;
  /* Gap explicite pour row et column pour garantir l'uniformité */
  margin-bottom: calc(var(--space-24) * 0.9) !important;
  align-items: stretch !important;
  /* Stretch pour que toutes les cartes aient la même hauteur dans leur ligne */
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Responsive pour methode-grid */
@media (max-width: 1024px) {
  .methode-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    /* Réinitialiser les rows pour permettre l'empilement naturel */
  }

  .methode-bottom-grid {
    grid-template-columns: 1fr !important;
  }

  /* Forcer toutes les cartes à s'empiler dans l'ordre naturel */
  .methode-card-large {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .methode-grid .methode-card.bento-card-choice {
    grid-column: 1 !important;
    grid-row: 2 !important;
    /* Deuxième position après la carte large */
  }

  .methode-card-community {
    grid-column: 1 !important;
    grid-row: 3 !important;
    /* Troisième position après la carte choix */
  }
}

.methode-bottom-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: unset !important;
  /* Remove previous gap */
  row-gap: calc(var(--space-24) * 0.9) !important;
  /* Gap vertical */
  column-gap: calc(var(--space-24) * 0.9) !important;
  /* Gap horizontal */
  margin-bottom: calc(var(--space-48) * 0.9) !important;
  align-items: stretch !important;
  /* Stretch pour que toutes les cartes aient la même hauteur */
  width: 100% !important;
  box-sizing: border-box !important;
}

.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(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Hauteur 100% pour s'adapter à la plus grande carte de la ligne/colonne */
  min-height: 0;
  box-sizing: border-box;
  margin: 0;
  /* Pas de marge, le gap de la grille gère tout l'espacement */
}

/* Limiter la largeur uniquement pour les cartes normales dans la grille principale */
.methode-grid .methode-card:not(.methode-card-large):not(.bento-card-choice):not(.methode-card-community) {
  max-width: 500px;
}

/* Les cartes communauté et liberté totale peuvent être plus larges */
.methode-grid .methode-card-community {
  max-width: 100%;
  height: auto;
}

.methode-grid .bento-card-choice {
  max-width: 100%;
}

.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-column: 1;
  /* Colonne 1 (gauche) */
  grid-row: span 2;
  height: fit-content;
  max-width: none;
  /* Pas de limitation de largeur pour la carte large */
}

.methode-card-wide {
  grid-column: span 1;
  max-width: none;
  /* Pas de limitation de largeur pour la carte wide */
}

.methode-card-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  /* Pas de marge, le gap de la grille gère tout l'espacement */
}

.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-16) * 0.9);
  /* Marge encore réduite pour diminuer davantage l'espace avec les modules */
  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: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  line-height: 1.4;
}

.methode-module-description {
  font-size: 12.6px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-top: var(--space-8);
  margin-bottom: 0;
}

/* Academy dynamic stats badges */
#academy-modules-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.methode-academy-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.methode-stat-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-vibrant);
  background: var(--purple-400-rgba-2);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

/* Module number circle */
.methode-module-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-vibrant);
}

/* Module meta (duration + lesson count) */
.methode-module-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.methode-module-duration,
.methode-module-lessons {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* "+ X autres modules" row */
.methode-module-more {
  border-style: dashed;
  border-color: var(--purple-400-rgba-3);
  background: transparent;
}

.methode-module-more .methode-module-name {
  color: var(--purple-vibrant);
  font-weight: 600;
}

/* 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: 13px;
    /* Taille adaptée pour mobile */
    white-space: normal;
    /* Permet les retours à la ligne */
  }

  .methode-module-description {
    font-size: 11.5px;
    /* Taille adaptée pour mobile */
    margin-top: var(--space-6);
  }
}

.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-card-community {
  height: fit-content;
  /* Hauteur fit-content pour garder sa taille naturelle compacte */
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  align-self: end;
  /* Aligné en bas de la cellule de grille */
  grid-column: 2;
  /* Colonne 2 (droite) */
  grid-row: 2;
  /* Deuxième ligne */
  /* Pas de marge en bas, le gap de la grille gère l'espacement */
}

.methode-card-community .methode-card-header {
  margin-bottom: calc(var(--space-12) * 0.9);
  /* Marge réduite pour rendre la carte plus compacte */
  flex-shrink: 0;
}

.methode-card-community .methode-card-description {
  margin-bottom: calc(var(--space-12) * 0.9);
  /* Marge réduite pour rendre la carte plus compacte */
  flex-shrink: 0;
}

.methode-card-community .methode-card-content {
  margin-top: 0;
  flex: 1;
}

.methode-community-members {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  /* Gap réduit pour rendre la carte plus compacte */
  margin-top: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Responsive pour la communauté */
@media (max-width: 768px) {
  .methode-community-members {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-16);
  }

  .methode-avatars-stack {
    justify-content: center;
    width: 100%;
  }

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

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

.methode-avatar-img,
.methode-avatar-circle {
  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;
}

.methode-avatar-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
}

.methode-avatar-img:first-child,
.methode-avatar-circle: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(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  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: 0%;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

@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: 0%;
  transform: translate(-50%, -50%);
}

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

.methode-progress-dot-3 {
  left: 100%;
  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: 0;
  margin: 0;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Pas de padding supplémentaire, le padding de la carte gère tout */
}

.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: 700;
  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: 700;
  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: 700;
  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(40px) saturate(180%);
  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);
}


/* Tablette 769px–1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    gap: 16px;
  }

  .faq-container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-screenshots-grid {
    gap: 12px;
  }

  .testimonials-screenshot-frame,
  .testimonials-screenshot-frame img {
    border-radius: 10px;
  }
}

/* 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;
    box-shadow: none !important;
    background: transparent !important;
    aspect-ratio: 16/9;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
  }

  .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;
  }

  .testimonials-screenshot-frame {
    aspect-ratio: 3/4;
  }
}

/* ============================================
   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(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) 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: 16px 20px;
    min-height: 64px;
    font-size: 15px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-item .faq-icon,
  .faq-item .faq-question svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
  }

  .faq-item .faq-question {
    min-height: 44px;
  }

  .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: 700;
  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);
  }
}

/* ── New Footer ── */
.footer-new {
  position: relative;
  padding: var(--section-spacing) 0 40px;
  overflow: hidden;
}

.footer-new-glow {
  display: none;
}

/* CTA block — card style */
.footer-cta-block {
  text-align: center;
  margin-bottom: 48px;
  padding: 48px 40px;
  background: linear-gradient(160deg, rgba(26, 19, 37, 0.7), rgba(5, 10, 8, 0.6));
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.footer-cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.5), transparent);
}

.footer-cta-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.footer-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 28px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(52, 211, 153, 0.25);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(52, 211, 153, 0.35);
}

/* Separator */
.footer-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.15), transparent);
  margin-bottom: 32px;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.footer-brand:hover img {
  transform: scale(1.05) rotate(6deg);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #34d399;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-16) var(--space-24);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--purple-400);
}

.btn-nav {
  padding: var(--space-8) var(--space-20);
  font-size: 0.875rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  color: #fff;
  border: none;
}

.btn-nav:hover {
  color: #fff;
  opacity: 0.95;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.nav-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-24);
  padding: var(--space-48);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.nav-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

.nav-mobile-link:hover {
  color: var(--purple-400);
}

.nav-mobile-cta {
  margin-top: var(--space-16);
}

.nav.is-open .nav-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@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);
  }

  .footer-links a {
    font-size: 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* 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-hamburger {
    display: flex;
  }

  .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: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
  -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-500), var(--purple-400));
}

.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(40px) saturate(180%);
  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: 700;
  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-500), var(--purple-400));
}

.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: 700;
  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: 700;
  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: 14px;
  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);
  margin-bottom: var(--space-64);
  position: relative;
  z-index: 1;
}

.comparison-cta-spacing {
  margin-bottom: var(--section-spacing);
}

.comparison-cta-spacing {
  margin-bottom: var(--section-spacing);
}

/* CTA dans la section avec stacked-cards - réduire l'espacement */
/* CTA dans la section avec stacked-cards - réduire l'espacement */
.comparison-cta.comparison-cta-spacing {
  margin-top: var(--space-24);
  margin-bottom: var(--space-48);
}

/* Surcharger pour la section avec stacked-cards */
section:has(.stacked-cards-wrapper) .comparison-cta {
  margin-top: var(--space-24);
  margin-bottom: var(--space-96);
}

/* Specific spacing for the hero CTA */
section:has(.stacked-cards-wrapper) .comparison-cta.comparison-cta-hero {
  margin-bottom: 250px;
}

.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 — 1 colonne à partir de 820px */
@media (max-width: 820px) {
  .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: 20px;
  }

  .comparison-title {
    font-size: 22px;
  }

  .comparison-emoji {
    font-size: 18px;
  }

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

  .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;
  font-size: 12px;
}

.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;
}

.pricing-scroll-bonus-additional-info {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  line-height: 1.4;
  margin-top: 0.75rem;
  padding-left: 0;
}

.pricing-scroll-bonus-additional-info svg {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-right: 6px;
}

/* 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 d'émeraude 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), var(--purple-600-rgba-4));
}

/* Badge revendeur pour bonus personnalisé */
.pricing-scroll-bonus-revendeur-badge {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  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: rgb(10, 7, 20);
  backdrop-filter: blur(8px);
  border: 1px solid var(--purple-400-rgba-4);
  border-radius: 6px;
  color: var(--purple-vibrant, #34d399);
  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: rgb(0, 0, 0);
  border: 1px solid var(--purple-400-rgba-4);
  border-radius: 6px;
  color: var(--purple-vibrant, #34d399);
  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 {
    max-width: 100%;
    width: 100%;
  }

  .pricing-scroll-card-inner {
    padding: 2rem;
  }

  .pricing-scroll-price-amount {
    font-size: 3.5rem;
  }

  .pricing-scroll-bonuses-list {
    gap: 12px;
  }
}

/* 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: 700;
  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(52, 211, 153, 0.2);
  border-top-color: var(--purple-vibrant, #34d399);
  border-right-color: var(--purple-vibrant, #34d399);
  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, #34d399);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple-vibrant, #34d399);
}

@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, #34d399);
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Scroll Reveal Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.animate-delay-5 { transition-delay: 0.5s; }

.animate-on-scroll.animate-scale {
  opacity: 0;
  transform: scale(0.92);
}

.animate-on-scroll.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.animate-on-scroll.animate-fade {
  opacity: 0;
  transform: none;
}

.animate-on-scroll.animate-fade.is-visible {
  opacity: 1;
}
/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  background: var(--purple-500, #10b981);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4), 0 2px 6px rgba(0,0,0,0.3);
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.2s ease;
}
.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-cta:hover {
  box-shadow: 0 6px 32px rgba(16, 185, 129, 0.6), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-1px) scale(1.02);
}
.sticky-cta .cta-diamond-icon {
  font-size: 0.85rem;
}

/* ── New Pricing Section (3 cards) ── */
.pricing-section-new {
  padding: var(--section-spacing) 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 40px auto 0;
}

.pricing-card {
  position: relative;
  background: linear-gradient(to bottom right, rgba(26, 19, 37, 0.8), rgba(5, 10, 8, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  border-color: color-mix(in srgb, var(--pack-color) 30%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px color-mix(in srgb, var(--pack-color) 12%, transparent);
}

.pricing-card--popular {
  border-color: color-mix(in srgb, var(--pack-color) 40%, transparent);
  background: linear-gradient(to bottom right, rgba(26, 19, 37, 0.9), rgba(5, 10, 8, 0.7));
  box-shadow: 0 0 30px color-mix(in srgb, var(--pack-color) 8%, transparent);
  transform: scale(1.03);
}

.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pack-color);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Card header */
.pricing-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.pricing-card-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--pack-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 4px 0 0;
  font-weight: 500;
}

/* Price block */
.pricing-card-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card-promo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-card-old-price {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.pricing-card-discount {
  font-size: 11px;
  font-weight: 700;
  color: #000;
  background: var(--purple-400, #34d399);
  padding: 2px 8px;
  border-radius: 20px;
}

.pricing-card-promo-label {
  font-size: 10px;
  color: var(--purple-400, #34d399);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card-amount {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing-card-period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  font-weight: 500;
}

/* Features list */
.pricing-card-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.pricing-card-features li svg {
  flex-shrink: 0;
  color: var(--purple-400, #34d399);
  margin-top: 2px;
}

.pricing-card-features li strong {
  color: #fff;
  font-weight: 700;
}

/* CTA button */
.pricing-card-cta {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 12px;
  background: var(--pack-color);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pricing-card-cta:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Trust row below cards */
.pricing-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.pricing-trust-item svg {
  color: var(--purple-400, #34d399);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card--popular {
    transform: none;
    order: -1;
  }

  .pricing-card--popular:hover {
    transform: translateY(-4px);
  }

  .pricing-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-grid {
    gap: 16px;
  }

  .pricing-card {
    padding: 28px 20px 24px;
  }
}

/* ── Pricing card: stats row ── */
.pricing-card-stats {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.pricing-stat {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.pricing-stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.pricing-stat-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-stat--green .pricing-stat-value {
  color: var(--purple-400, #34d399);
}

/* Section label */
.pricing-card-section-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* ── Tools grid (locked/unlocked) ── */
/* Compact tool icons row inside pricing cards */
.pricing-tools-icons {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.pricing-tool-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: default;
  position: relative;
}

.pricing-tool-icon--on {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--purple-400, #34d399);
}

.pricing-tool-icon--off {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.2);
  opacity: 0.45;
}

/* Custom tooltip — instant, no delay */
.pricing-tool-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  width: max-content;
  max-width: 200px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(20, 16, 32, 0.98), rgba(8, 12, 10, 0.98));
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(52, 211, 153, 0.08);
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease, transform 0.12s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pricing-tool-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(52, 211, 153, 0.2);
}

.pricing-tool-tooltip strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.pricing-tool-tooltip span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.pricing-tool-icon:hover .pricing-tool-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Keep off-state tooltips visible on hover too */
.pricing-tool-icon--off:hover {
  opacity: 1;
}

/* Pricing divider */
.pricing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 32px;
}

.pricing-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.2), transparent);
}

.pricing-divider-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* Tools showcase — integrated with pricing */
.tools-showcase {
  margin-bottom: 8px;
}

.tools-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.tools-showcase-card {
  background: linear-gradient(160deg, rgba(26, 19, 37, 0.7), rgba(5, 10, 8, 0.6));
  border: 1px solid color-mix(in srgb, var(--tool-color) 15%, transparent);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tools-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tool-color), transparent);
  opacity: 0.3;
}

.tools-showcase-card:hover {
  border-color: color-mix(in srgb, var(--tool-color) 35%, transparent);
  box-shadow: 0 4px 24px color-mix(in srgb, var(--tool-color) 8%, transparent);
  transform: translateY(-2px);
}

.tools-showcase-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tools-showcase-card-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--tool-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--tool-color) 15%, transparent);
  border-radius: 10px;
  color: var(--tool-color);
}

.tools-showcase-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--tag-color) 10%, transparent);
  color: var(--tag-color);
  border: 1px solid color-mix(in srgb, var(--tag-color) 15%, transparent);
}

.tools-showcase-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.tools-showcase-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .tools-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Feature list states */
.pricing-feat--on svg {
  color: var(--purple-400, #34d399);
}

.pricing-feat--off {
  opacity: 0.35;
}

.pricing-feat--off svg {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Reviews marquee section ── */
.reviews-section {
  padding: var(--section-spacing) 0;
  overflow: hidden;
}

.reviews-marquee {
  margin-top: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

/* Row 1 — text reviews, compact */
.reviews-marquee:first-of-type {
  margin-top: 32px;
}

/* Row 2 — proof grid, statique centré, 1 seule ligne visible */
.proof-grid-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviewsScroll 45s linear infinite;
}

.reviews-track--reverse {
  animation: reviewsScrollReverse 50s linear infinite;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

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

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

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

/* Card */
.review-card {
  width: 320px;
  flex-shrink: 0;
  padding: 20px;
  background: linear-gradient(160deg, rgba(26, 19, 37, 0.7), rgba(5, 10, 8, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(52, 211, 153, 0.2);
}

/* Head: avatar + identity + stars */
.review-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-card-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.review-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.review-card-badge {
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-badge-check {
  font-size: 8px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review-card-stars {
  font-size: 12px;
  color: #f59e0b;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Headline */
.review-card-headline {
  font-size: 17px;
  font-weight: 700;
  color: #34d399;
  line-height: 1.3;
}

/* Text */
.review-card-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Proof grid cards */
.proof-grid-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(26, 19, 37, 0.5);
  transition: border-color 0.3s, transform 0.3s;
}

.proof-grid-card:hover {
  border-color: rgba(52, 211, 153, 0.2);
  transform: scale(1.02);
}

.proof-grid-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 13px;
}

@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .proof-grid-wrapper {
    padding: 0 16px;
  }
}
