/* ============================================
   WELLNOT - Modern SaaS Website Styles
   Charte graphique: Dégradé teal foncé → turquoise
   ============================================ */

:root {
  /* Brand Colors - Wellnot Official Palette */
  --primary-dark: #134661;
  --primary: #064661;
  --primary-medium: #15B0BC;
  --primary-light: #15B0BC;
  --accent: #15B0BC;
  --accent-light: #EBE0C4;

  /* Warm Accent (beige/peach from branding) */
  --warm: #EBE0C4;
  --warm-light: #FFC28B;
  --warm-dark: #D4BA8A;

  /* Neutrals */
  --white: #FFFFFF;
  --bg-light: #F8FAFA;
  --bg-section: #F2F7F7;
  --text-dark: #134661;
  --text-medium: #4A5F68;
  --text-light: #7A8F98;
  --border: #E1EAEC;

  /* Gradients - Official Wellnot */
  --gradient-hero: linear-gradient(180deg, #134661 0%, #064661 25%, #15B0BC 50%, #EBE0C4 75%, #FFC28B 100%);
  --gradient-primary: linear-gradient(135deg, #134661 0%, #15B0BC 100%);
  --gradient-accent: linear-gradient(135deg, #15B0BC 0%, #EBE0C4 100%);
  --gradient-card: linear-gradient(180deg, rgba(19, 70, 97, 0.03) 0%, rgba(21, 176, 188, 0.03) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 61, 69, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 61, 69, 0.1);
  --shadow-lg: 0 8px 40px rgba(11, 61, 69, 0.15);
  --shadow-xl: 0 20px 60px rgba(11, 61, 69, 0.2);
  --shadow-glow: 0 0 40px rgba(74, 189, 172, 0.3);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-width: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  display: block;
}

section, .container {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 1.5px var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

/* Header button - white on blue */
.header .btn-outline {
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
}

.header .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(19, 70, 97, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 2rem;
}

.logo img {
  height: 50px;
  width: auto;
  transition: filter 0.4s ease;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.4s ease;
}

/* Navigation Dropdown */
.nav-item-dropdown {
  position: relative;
}

/* Chevron visible partout */
.nav-chevron {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: transform 0.3s ease;
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-left: 0.4rem;
  flex-shrink: 0;
  width: auto !important;
  height: auto !important;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
}

.nav-dropdown-toggle:hover {
  color: var(--white) !important;
}

.nav-dropdown-toggle:hover .nav-chevron {
  color: var(--white);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  z-index: 100;
  max-height: none;
  overflow: visible;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0.875rem 1.25rem;
  color: var(--text-dark);
  transition: background 0.2s ease;
}

.nav-dropdown-link:hover {
  background: rgba(21, 176, 188, 0.05);
}

.nav-dropdown-link i {
  display: none !important;
}

.nav-dropdown-link div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-dropdown-link strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-dropdown-link span {
  font-size: 0.8rem;
  color: var(--text-medium);
}

.nav-link:not(.nav-dropdown-link):not(.nav-dropdown-toggle) i {
  display: none;
}

.nav-dropdown-toggle i.nav-chevron {
  display: block !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

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


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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--white);
  color: var(--primary);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-close {
  display: none;
}

.mobile-only-btn {
  display: none;
}

/* Login button - responsive logic */
.btn-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Par défaut: texte visible sur grand écran */
.btn-login .login-text {
  display: inline;
}

.btn-login i {
  font-size: 1rem;
}

/* Moyen écran: icône seule pour économiser l'espace */
@media (max-width: 1200px) {
  .btn-login .login-text {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(80px + 3rem) 0 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(74, 189, 172, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(26, 158, 158, 0.15) 0%, transparent 50%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.hero-particles::after {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 0 3rem;
}

/* Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px #4ade80;
}

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

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-highlight {
  display: block;
  position: relative;
  color: var(--warm-light);
  text-shadow: 0 0 40px rgba(255, 194, 139, 0.5);
}

/* Word Rotation Animation */
.word-rotate {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}

.word-rotate .word {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.word-rotate .word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-glow {
  /* Style simplifié, identique aux autres boutons */
}

@keyframes glowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Counters - Separate wrapper */
.hero-counters-wrapper {
  margin-top: 3rem;
  background: rgba(19, 70, 97, 0.5);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 60px rgba(21, 176, 188, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-counters-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at top,
    rgba(21, 176, 188, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

.hero-counters-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.counter-item {
  text-align: center;
}

.counter-value {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-suffix {
  font-size: 1.25rem;
  color: var(--warm-light);
}

.counter-label {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.counter-subtext {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.counter-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.counter-divider {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-mockup-container {
  position: relative;
}

.hero-mockup {
  position: relative;
}

.mockup-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse at center, rgba(21, 176, 188, 0.25) 0%, transparent 60%);
  z-index: -1;
  animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.mockup-main {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: heroImageFloat 6s ease-in-out infinite;
}

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

/* Floating Elements Container */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--white);
  padding: 0.5rem 0.875rem 0.5rem 0.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 10;
  pointer-events: auto;
}

.floating-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.floating-icon.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.floating-icon.primary {
  background: rgba(19, 70, 97, 0.15);
  color: var(--primary);
}

.floating-icon.accent {
  background: rgba(21, 176, 188, 0.15);
  color: var(--primary-medium);
}

.floating-text span {
  font-size: 0.75rem;
  white-space: nowrap;
}

.floating-top {
  top: 5%;
  left: -3%;
  animation: floatElement 5s infinite ease-in-out;
}

.floating-right {
  top: 40%;
  right: -2%;
  animation: floatElement 6s infinite ease-in-out;
  animation-delay: -2s;
}

.floating-bottom {
  bottom: 10%;
  left: 0;
  animation: floatElement 5.5s infinite ease-in-out;
  animation-delay: -1s;
}

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

/* Scroll Indicator - Mouse Style */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 100;
  pointer-events: none;
  opacity: 0.4;
}

@media (max-width: 1024px) {
  .scroll-indicator {
    bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid #134661;
  border-radius: 15px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #134661;
  border-radius: 4px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

.scroll-text {
  color: rgba(19, 70, 97, 0.6);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Hero Responsive */
@media (max-width: 1200px) {
  .hero .container {
    padding: 0 2rem;
  }

  .hero-split {
    gap: 3rem;
  }
}

/* Landscape mode - compteurs sous l'image dans la colonne de droite */
@media (max-height: 900px) and (min-width: 1025px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .hero-split {
    display: contents;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-counters-wrapper {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-top: 0.75rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0.875rem 1.5rem;
  }

  .hero-mockup-container {
    max-height: 340px;
  }

  .hero-mockup-container img {
    max-height: 340px;
    object-fit: contain;
  }

  .hero {
    padding: calc(80px + 1rem) 0 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    margin-bottom: 1rem;
  }

  .hero-ctas {
    gap: 1rem;
  }

  .hero-counters {
    gap: 1.25rem;
  }

  .counter-value {
    font-size: 1.5rem;
  }

  .counter-label {
    font-size: 0.7rem;
  }

  .counter-subtext,
  .counter-live {
    font-size: 0.65rem;
  }

  .counter-divider {
    height: 30px;
  }
}

@media (max-width: 1024px) {
  .hero .container {
    padding: 0 1.5rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .floating-elements {
    display: none;
  }

  .hero-counters-wrapper {
    padding: 1.25rem 2rem;
  }

  .hero-counters {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(70px + 1.5rem);
  }

  .hero-counters-wrapper {
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .hero-counters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-around;
  }

  .counter-divider {
    display: none;
  }

  .counter-value {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-counters-wrapper {
    padding: 0.75rem 1rem;
    margin-top: 2rem;
  }

  .hero-counters {
    gap: 1rem;
  }

  .counter-value {
    font-size: 1.5rem;
  }

  .counter-label {
    font-size: 0.7rem;
  }

  .counter-subtext,
  .counter-live {
    font-size: 0.65rem;
  }
}

.floating-card i {
  font-size: 1rem;
}

.card-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.card-1 i { color: #22C55E; }

.card-2 {
  bottom: 30%;
  right: -5%;
  animation-delay: -2s;
}

.card-2 i { color: var(--accent); }

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: -4s;
}

.card-3 i { color: var(--primary); }

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

/* Duplicate scroll indicator removed */

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--bg-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
}

.trust-badge i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES (Common)
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(74, 189, 172, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.section-header-light .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-header-light .section-title {
  color: var(--white);
}

.section-header-light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

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

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.product-logo {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.product-logo .underscore {
  color: var(--accent);
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}

.product-badge.badge-new {
  background: var(--warm);
  color: var(--primary-dark);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.product-features i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.product-visual {
  margin: 1.5rem -2.5rem;
  padding: 0 2.5rem;
}

.product-visual img {
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.product-actions .btn {
  min-width: 180px;
}

/* Quand les 2 boutons sont visibles, ils prennent chacun la moitié */
body.show-pricing .product-actions .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }
}

/* Masquer le bouton tarifs par défaut */
.product-actions .pricing-btn {
  display: none;
}

/* Afficher le bouton tarifs quand le toggle est visible */
.pricing-toggle.visible ~ * .pricing-btn,
body.show-pricing .pricing-btn {
  display: inline-flex;
}

.product-card > .btn {
  margin-top: auto;
  align-self: center;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

/* Bento Grid Layout - 6 columns pour symétrie parfaite */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Small Bento Cards - span 2 columns */
.bento-small {
  grid-column: span 2;
}

/* Large Bento Cards - span 3 columns */
.bento-large {
  grid-column: span 3;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.bento-large .bento-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bento-large .bento-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.bento-large h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.bento-large p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Small Bento Cards */
.bento-small {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bento-icon-small {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border: 2px solid rgba(21, 176, 188, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.bento-icon-small i {
  font-size: 1.25rem;
  color: var(--primary);
}

.bento-card:hover .bento-icon-small {
  background: var(--gradient-primary);
}

.bento-card:hover .bento-icon-small i {
  color: var(--white);
}

.bento-small h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.bento-small p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Bento Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 1;
  }

  .bento-small {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-small {
    grid-column: span 1;
  }

  .bento-large {
    align-items: center;
    text-align: center;
  }

  .bento-small {
    padding: 1.25rem;
    align-items: center;
    text-align: center;
  }
}

/* ============================================
   IMPACT SECTION
   ============================================ */

.impact-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #134661 0%, #064661 50%, #0a5a6e 100%);
  position: relative;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* 2 premières cartes : grandes (span 3 colonnes) */
.impact-card:nth-child(1),
.impact-card:nth-child(2) {
  grid-column: span 3;
  padding: 2.5rem 2rem;
}

.impact-card:nth-child(1) .impact-icon,
.impact-card:nth-child(2) .impact-icon {
  width: 70px;
  height: 70px;
}

.impact-card:nth-child(1) .impact-icon i,
.impact-card:nth-child(2) .impact-icon i {
  font-size: 1.75rem;
}

.impact-card:nth-child(1) h3,
.impact-card:nth-child(2) h3 {
  font-size: 1.3rem;
}

/* 3 dernières cartes : petites (span 2 colonnes) */
.impact-card:nth-child(3),
.impact-card:nth-child(4),
.impact-card:nth-child(5) {
  grid-column: span 2;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.impact-card:hover .impact-icon {
  transform: scale(1.1);
}

.impact-card:hover .impact-number {
  opacity: 1;
}

.impact-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.impact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.impact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.impact-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Impact Quote */
.impact-quote {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.impact-quote blockquote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  position: relative;
  display: inline-block;
  line-height: 1.4;
  padding: 0 2rem;
}

.impact-quote blockquote::before,
.impact-quote blockquote::after {
  content: '"';
  font-size: 2.5rem;
  color: var(--accent);
  position: absolute;
  font-family: Georgia, serif;
}

.impact-quote blockquote::before {
  left: 0;
  top: -0.25rem;
}

.impact-quote blockquote::after {
  content: '"';
  right: 0;
  bottom: -0.75rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.how-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.how-text .section-tag {
  margin-bottom: 1rem;
}

.how-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.how-visual img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Video Placeholder */
.video-placeholder {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(225deg, rgba(255, 194, 139, 0.95) 0%, rgba(235, 224, 196, 0.92) 25%, rgba(21, 176, 188, 0.9) 50%, rgba(6, 70, 97, 0.92) 75%, rgba(19, 70, 97, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.video-play-btn {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.video-play-btn i {
  padding-left: 4px;
}

.video-label {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  width: calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  margin-bottom: 1rem;
}

.testimonial-quote i {
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.5;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--primary);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  display: none;
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

body.show-pricing .pricing-section {
  display: block;
}

/* Volume Slider */
.volume-slider-container {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.volume-label {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.volume-slider-wrap {
  position: relative;
  padding: 0 10px;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) 0%, var(--border) 0%, var(--border) 100%);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(19, 70, 97, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(19, 70, 97, 0.4);
}

.volume-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
}

.volume-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  cursor: grab;
  border: none;
  box-shadow: 0 2px 8px rgba(19, 70, 97, 0.3);
}

.volume-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding: 0 4px;
}

.volume-ticks span {
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 500;
  text-align: center;
  width: 40px;
  margin: 0 -15px;
}

.volume-ticks span:first-child {
  margin-left: 0;
  text-align: left;
}

.volume-ticks span:last-child {
  margin-right: 0;
  text-align: right;
}

.volume-display {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.volume-range {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.volume-acts {
  font-size: 1rem;
  color: var(--text-medium);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.pricing-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-featured:hover {
  border-color: var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
  padding: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.pricing-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-card:has(img) .pricing-icon {
  background: white;
}

.pricing-featured .pricing-icon {
  background: var(--gradient-primary);
}

.pricing-featured .pricing-icon i {
  color: var(--white);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.pricing-price {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.price-period {
  font-size: 1rem;
  color: var(--text-medium);
  margin-left: 0.25rem;
  transition: opacity 0.15s ease;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

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

.pricing-card > .btn {
  margin-top: auto;
  align-self: center;
}

.pricing-features i {
  color: var(--accent);
  font-size: 0.9rem;
}

.pricing-extras {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pricing-extra {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.pricing-extra i {
  color: var(--accent);
  font-size: 1.1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 2rem;
}

/* Pricing Toggle (admin) */
.pricing-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.pricing-toggle.visible {
  opacity: 0.7;
  pointer-events: auto;
}

.pricing-toggle.visible:hover {
  opacity: 1;
}

.pricing-toggle-switch {
  width: 36px;
  height: 20px;
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
  position: relative;
  transition: var(--transition);
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: var(--transition);
}

body.show-pricing .pricing-toggle-switch {
  background: var(--accent);
}

body.show-pricing .pricing-toggle-switch::after {
  left: 18px;
}

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

  .pricing-card {
    padding: 2rem;
  }

  .pricing-extras {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

/* Values Grid */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(19, 70, 97, 0.15);
  border-color: var(--primary-light);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* About Quote */
.about-quote {
  text-align: center;
  margin: 3rem 0 4rem;
  padding: 0 2rem;
}

.about-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
  position: relative;
  display: inline-block;
  line-height: 1.4;
}

.about-quote blockquote::before,
.about-quote blockquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
  position: absolute;
  font-family: Georgia, serif;
}

.about-quote blockquote::before {
  left: -1.5rem;
  top: -0.5rem;
}

.about-quote blockquote::after {
  content: '"';
  right: -1.5rem;
  bottom: -1rem;
}

/* Founders Section */
.founders-section {
  margin-bottom: 4rem;
}

.founders-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.founder-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.founder-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: var(--transition);
}

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

.founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 70, 97, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.founder-card:hover .founder-overlay {
  opacity: 1;
}

.founder-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.founder-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.founder-info {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.founder-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.founder-role {
  font-size: 0.9rem;
  color: var(--text-medium);
  display: block;
  margin-bottom: 0.75rem;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0077b5;
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  transition: var(--transition);
}

.founder-linkedin:hover {
  background: #005885;
  transform: scale(1.1);
}

/* Mission Statement */
.mission-statement {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-statement blockquote {
  position: relative;
  padding: 2rem 3rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-medium);
  margin-bottom: 3rem;
}

.mission-statement blockquote i {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-medium);
  opacity: 0.3;
}

.mission-statement blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

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

.mission-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mission-stat .stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 70, 97, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

/* Large Modal - Side by side layout */
.modal-large .modal-content {
  display: flex;
  max-width: 900px;
  overflow: hidden;
}

.modal-image-side {
  flex: 0 0 40%;
  min-height: 400px;
  position: relative;
}

.modal-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.modal-large .modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-medium);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-body {
  padding: 2.5rem;
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.modal-header span {
  display: block;
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0077b5;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.modal-linkedin:hover {
  background: #005885;
}

.modal-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.modal-text blockquote {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary-medium);
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* About Section Responsive */
@media (max-width: 1024px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

  .mission-stats {
    flex-direction: column;
    gap: 2rem;
  }

  /* Modal responsive */
  .modal {
    padding: 1rem;
  }

  .modal-large .modal-content {
    flex-direction: column;
    max-height: 95vh;
  }

  .modal-image-side {
    flex: 0 0 200px;
    min-height: 200px;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }
}

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

.cta-section {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.cta-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content {
  text-align: center;
}

.cta-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.cta-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
  background: var(--white);
  padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary);
}

.form-group select {
  cursor: pointer;
  color: var(--text-dark);
}

.cta-form .btn {
  margin-top: 1rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

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

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  flex-shrink: 0;
  width: 16px;
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: var(--accent);
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-visual {
    max-width: 700px;
  }

  .hero-benefits {
    gap: 1.5rem;
  }

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

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

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

  .impact-card:nth-child(1),
  .impact-card:nth-child(2),
  .impact-card:nth-child(3),
  .impact-card:nth-child(4),
  .impact-card:nth-child(5) {
    grid-column: span 1;
  }

  .how-content {
    grid-template-columns: 1fr;
  }

  .how-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-card {
    width: calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }

  .vision-content {
    grid-template-columns: 1fr;
  }

  .vision-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .vision-text {
    text-align: center;
  }

  .vision-text .section-title {
    text-align: center;
  }

  .vision-stats {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 1001;
    align-items: flex-start;
    gap: 0;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
  }

  .menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
  }

  /* Dropdown mobile - REFAIT PROPREMENT */
  .nav-item-dropdown {
    width: 100%;
  }

  /* Chevron visible sur mobile */
  .nav-chevron {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
    font-size: 0.875rem !important;
    color: var(--primary) !important;
  }

  .nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border) !important;
    cursor: pointer;
    pointer-events: auto !important;
    padding: 1rem 0 !important;
    font-size: 1.1rem !important;
    font-weight: 500;
    color: var(--text-dark) !important;
    text-align: left;
    line-height: 1.5;
  }

  .nav-dropdown-toggle:hover {
    color: var(--primary) !important;
  }

  .nav-dropdown-toggle span {
    flex: 1;
  }

  .nav-item-dropdown.active .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-item-dropdown.active .nav-dropdown-toggle {
    color: var(--primary) !important;
  }

  .nav-dropdown {
    position: static !important;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    box-shadow: none !important;
    margin-top: 0.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav-item-dropdown.active .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    margin-bottom: 1rem;
  }

  .nav-dropdown-link {
    display: flex !important;
    align-items: flex-start;
    gap: 0 !important;
    padding: 0.875rem 1rem !important;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .nav-dropdown-link:hover {
    background: rgba(21, 176, 188, 0.05);
  }

  .nav-dropdown-link i {
    display: none !important;
  }

  .nav-dropdown-link div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .nav-dropdown-link strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .nav-dropdown-link span {
    font-size: 0.8125rem;
    color: var(--text-medium);
    line-height: 1.3;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark) !important;
  }

  .nav-link:hover {
    color: var(--primary) !important;
  }

  .mobile-only-btn {
    display: none;
  }

  .nav-actions .btn-outline {
    display: inline-flex;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding-top: calc(70px + 3rem);
  }

  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-benefit {
    font-size: 0.9rem;
  }

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

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

  .impact-card:nth-child(1),
  .impact-card:nth-child(2),
  .impact-card:nth-child(3),
  .impact-card:nth-child(4) {
    grid-column: span 1;
  }

  .impact-card:nth-child(5) {
    grid-column: span 2;
  }

  .testimonial-card {
    width: 100%;
    min-width: 100%;
  }

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

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  /* Menu hamburger 100% width sur mobile */
  .nav-links {
    width: 100%;
    max-width: 100%;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .mobile-only-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
  }

  /* Modal fullscreen sur mobile */
  .modal {
    padding: 0;
  }

  .modal-content {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }

  .modal-large .modal-content {
    flex-direction: column;
  }

  .modal-image-side {
    flex: 0 0 240px;
    min-height: 240px;
    max-height: 240px;
    overflow: hidden;
    background: var(--bg-light);
  }

  .modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }

  .modal-header {
    margin-bottom: 1rem;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  .modal-header .badge {
    font-size: 0.75rem;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
  }

  /* Examples Modal Responsive - Mobile */
  .examples-modal-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }

  .examples-modal-inner {
    padding: 0 !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .modal-examples-header {
    padding: 0.875rem 1rem;
    padding-right: 3.5rem;
    border-radius: 0;
    flex-shrink: 0;
  }

  .modal-examples-header h3 {
    font-size: 1.3125rem !important;
    margin-bottom: 0.375rem !important;
    line-height: 1.3 !important;
  }

  .modal-subtitle {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
  }

  .examples-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .examples-grid {
    padding: 0.75rem;
    flex: 1;
    overflow-y: auto;
    gap: 0.75rem;
  }

  .example-row {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem;
    align-items: center;
  }

  .example-arrow {
    display: flex !important;
    transform: rotate(90deg);
    font-size: 1.25rem;
    color: var(--primary);
    opacity: 0.4;
    margin: 0.25rem 0;
  }

  .example-card {
    padding: 1rem;
    min-height: auto;
  }

  .example-number,
  .example-icon-solution {
    width: 32px;
    height: 32px;
    top: 0.875rem;
    left: 0.875rem;
    font-size: 0.8125rem;
  }

  .example-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    padding-top: 2.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .example-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .example-problem-card {
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
    border-left: 3px solid #ff6b6b;
  }

  .example-solution-card {
    background: linear-gradient(135deg, #f0fffe 0%, #e6fcfa 100%);
    border-left: 3px solid var(--primary);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-badge {
    font-size: 0.8rem;
  }

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

  .impact-card:nth-child(1),
  .impact-card:nth-child(2),
  .impact-card:nth-child(3),
  .impact-card:nth-child(4),
  .impact-card:nth-child(5) {
    grid-column: span 1;
  }

  /* Uniformiser toutes les impact-cards sur mobile avec la taille des petites cartes */
  .impact-icon {
    width: 60px !important;
    height: 60px !important;
  }

  .impact-icon i {
    font-size: 1.5rem !important;
  }

  .impact-card h3 {
    font-size: 1.1rem !important;
  }

  .impact-card {
    padding: 2rem 1.5rem !important;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========================================
   IMPACT EXAMPLES CTA & MODAL
   ======================================== */

.impact-examples-cta {
  text-align: center;
  margin-top: 3rem;
}

.impact-examples-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(21, 176, 188, 0.3);
}

.impact-examples-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 176, 188, 0.4);
}

.impact-examples-btn i {
  font-size: 1.25rem;
}

/* Examples Modal - Classes propres sans conflit */
.examples-modal-wrapper {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 1200px;
  width: 95vw;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.active .examples-modal-wrapper {
  transform: scale(1);
}

/* Scrollbar cachée */
.examples-modal-wrapper::-webkit-scrollbar {
  width: 0;
  display: none;
}

.examples-modal-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.examples-modal-inner {
  padding: 0;
}

.modal-examples-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
  padding: 2rem 3rem;
  border-bottom: 2px solid rgba(21, 176, 188, 0.1);
  z-index: 10;
  text-align: center;
  border-radius: 24px 24px 0 0;
}

.modal-examples-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--text-medium);
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0;
}

.examples-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid rgba(21, 176, 188, 0.2);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
}

.examples-modal-close:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.examples-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
}

.example-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  align-items: stretch;
}

.example-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  min-height: 140px;
}

.example-problem-card {
  background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
  border: 2px solid rgba(231, 76, 60, 0.12);
}

.example-solution-card {
  background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
  border: 2px solid rgba(21, 176, 188, 0.12);
}

.example-number {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  border: 2px solid rgba(231, 76, 60, 0.2);
}

.example-icon-solution {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-size: 1.25rem;
  border-radius: 10px;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(21, 176, 188, 0.2);
  z-index: 1;
}

.example-icon-solution i {
  display: block;
  font-weight: 900;
}

.example-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.875rem 0;
  padding-top: 3rem;
  line-height: 1.4;
}

.example-card p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.example-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
}

.examples-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(21, 176, 188, 0.1);
  text-align: center;
}

.examples-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* Responsive Examples Modal - Tablette */
@media (max-width: 820px) and (min-width: 481px) {
  .examples-modal-wrapper {
    width: 95vw;
    max-width: 95vw;
  }

  .modal-examples-header {
    padding: 1.5rem 2rem;
    padding-right: 4rem;
  }

  .modal-examples-header h3 {
    font-size: 1.5rem;
  }

  .modal-subtitle {
    font-size: 1rem;
  }

  .examples-grid {
    padding: 2rem;
    gap: 1.5rem;
  }

  .example-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .example-arrow {
    display: none;
  }

  .example-card {
    padding: 1.5rem;
  }

  .example-number,
  .example-icon-solution {
    width: 36px;
    height: 36px;
  }

  .example-card h4 {
    font-size: 1rem;
    padding-top: 2.5rem;
  }

  .example-card p {
    font-size: 0.9375rem;
  }
}



/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21, 176, 188, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(21, 176, 188, 0.3);
  box-shadow: 0 8px 24px rgba(21, 176, 188, 0.1);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(21, 176, 188, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(21, 176, 188, 0.02);
}

.faq-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 12px;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
  transform: scale(1.1);
}

.faq-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  padding-left: 64px;
}

.faq-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(21, 176, 188, 0.05), rgba(255, 136, 0, 0.05));
  border-radius: 20px;
  border: 2px dashed rgba(21, 176, 188, 0.2);
}

.faq-cta p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Responsive FAQ */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

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

  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding-left: 56px;
    font-size: 0.9375rem;
  }

  .faq-cta {
    padding: 2rem 1.5rem;
  }

  .faq-cta p {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem;
    gap: 0.75rem;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    border-radius: 8px;
  }

  .faq-text {
    font-size: 0.9375rem;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding-left: 0;
    font-size: 0.875rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Reduced motion preference */
@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;
  }
}

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-image {
  transform: scale(1);
  opacity: 1;
}

.lightbox-loader {
  position: absolute;
  display: none;
}

.lightbox-loader.active {
  display: block;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.lightbox.active .lightbox-prev,
.lightbox.active .lightbox-next {
  opacity: 1;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-caption {
  color: white;
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
  max-width: 600px;
  opacity: 0.9;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Lightbox trigger cursor */
img[data-lightbox] {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

img[data-lightbox]:hover {
  transform: scale(1.02);
}

/* Lightbox responsive */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 70vh;
  }
}

.check-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjust position when pricing-toggle is visible */
.back-to-top.has-pricing-toggle {
  bottom: 5rem;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .back-to-top.has-pricing-toggle {
    bottom: 4.5rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    opacity: 0;
    box-shadow: var(--shadow-md);
  }

  .back-to-top.show {
    opacity: 0.8;
  }

  .back-to-top.has-pricing-toggle {
    bottom: 4rem;
  }

  .back-to-top:hover {
    transform: translateY(-2px);
    opacity: 1;
  }
}

/* Form Messages */
.form-message {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
