/* Flip Card effet (services) avec micro-animations */
.flip-card {
  background: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flip-card:hover {
  transform: translateY(-2px);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;

}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.flip-card-front {
  background: white;
  box-shadow: none;
}

.flip-card:hover .flip-card-front {
  box-shadow: none;
}

.flip-card-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #27ae5f, #1e8e4f);
  color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(39, 174, 95, 0.3);
}

/* Progress bar dans les stats avec animations fluides */
.stat-progress {
  width: 100%;
  background: var(--border-gray);
  border-radius: 8px;
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  position: relative;
}

.stat-progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2s infinite;
}

.stat-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #27ae5f, #1e8e4f);
  border-radius: 8px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
  position: relative;
  overflow: hidden;
}

/* Magnetic button effet amélioré */
.magnetic {
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  overflow: hidden;
}

.magnetic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.magnetic:hover::before {
  left: 100%;
}

.magnetic:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Tilt card effet sophistiqué */
.tilt-card {
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Floating element effet liquide */
.floating-element {
  animation: subtleFloat 8s ease-in-out infinite;
}

.floating-element:nth-child(even) {
  animation-delay: -4s;
}

/* Process timeline avec stagger */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-description {
  color: #666666 !important;
}

/* Testimonials slider avec slideshow wow */
.testimonials-slider {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 350px; /* Hauteur fixe pour éviter le bug */
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 50px 50px; /* Remis à 50px */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(100px) scale(0.95);
  pointer-events: none;
  min-height: 300px; /* Augmenté à 300px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-card.prev {
  transform: translateX(-100px) scale(0.95);
  z-index: 1;
}

.testimonial-quote {
  font-size: 19px; /* Augmenté un peu */
  line-height: 1.6;
  color: #2C2C2C;
  margin-bottom: 28px; /* Augmenté un peu */
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 60px; /* Réduit de 80px à 60px */
  color: rgba(39, 174, 95, 0.2);
  position: absolute;
  top: -15px; /* Ajusté */
  left: -15px; /* Ajusté */
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: 70%; /* Réduit la taille du logo à 70% */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff; /* Fond blanc */
  border: 3px solid #f0f0f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.author-info h4 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2C2C2C;
}

.author-info p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #666;
}

.company-name {
  font-size: 16px;
  font-weight: 700;
  color: #27ae5f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Site-wide icon utilities to match footer style */
.site-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  color: #27ae5f; /* default accent */
}

/* Variants */
.site-icon--green { color: #27ae5f; }
.site-icon--blue { color: #3b82f6; }
.site-icon--purple { color: #8b5cf6; }

/* LinkedIn special treatment */
.social-link.linkedin .site-icon {
  color: #0A66C2; /* official LinkedIn blue */
}

/* Improve visibility for social icons inside footer */
.footer-wow .social-links a .site-icon { color: white; }

/* Navigation du slideshow */
.testimonials-navigation {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(39, 174, 95, 0.1), rgba(39, 174, 95, 0.2));
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  visibility: visible !important;
  opacity: 1 !important;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border: 2px solid #27ae5f;
  border-radius: 50%;
  background: white;
  color: #27ae5f;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  visibility: visible !important;
  opacity: 1 !important;
}

.testimonial-nav:hover {
  background: #27ae5f;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(39, 174, 95, 0.3);
  border-color: #27ae5f;
}

.testimonial-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: scale(1);
  border-color: #ccc;
  background: #f5f5f5;
  color: #ccc;
}

.testimonial-dots {
  display: flex !important;
  gap: 12px;
  visibility: visible !important;
  opacity: 1 !important;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(39, 174, 95, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-dot.active {
  background: #27ae5f;
  transform: scale(1.3);
  border-color: #27ae5f;
}

.testimonial-dot:hover {
  background: #27ae5f;
  transform: scale(1.2);
  border-color: #27ae5f;
}

/* Responsive pour le slideshow testimonials */
@media (max-width: 768px) {
  .testimonials-slider {
    margin: 40px auto 0;
    border-radius: 16px;
    height: 280px; /* Hauteur fixe mobile */
  }
  
  .testimonial-card {
    padding: 35px 24px; /* Ajusté */
    min-height: 220px; /* Ajusté */
  }
  
  .testimonial-quote {
    font-size: 16px;
    margin-bottom: 20px; /* Réduit pour mobile */
  }
  
  .testimonial-quote::before {
    font-size: 50px; /* Ajusté pour mobile */
    top: -10px;
    left: -10px;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
  }
  
  .author-info h4 {
    font-size: 16px;
  }
  
  .author-info p {
    font-size: 13px;
  }
  
  .company-name {
    font-size: 14px;
  }
  
  .testimonials-navigation {
    padding: 20px;
    gap: 16px;
  }
  
  .testimonial-nav {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-dots {
    gap: 8px;
  }
  
  .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Utilitaires */
.text-reveal {
  /* Animation gérée par JavaScript */
}
/* Révélations et animations de scroll */
.reveal {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Statistiques */
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-green);
}
.stat-label {
  font-size: 14px;

}

/* Sections et titres */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  color: var(--accent-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-description {
  font-size: 18px;
  color: #666666 !important;
  max-width: 600px;
  margin: 0 auto;
}

/* Témoignages */
.testimonial-quote {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 80px;
  color: var(--accent-green);
  opacity: 0.2;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.author-info p {
  color: #666666 !important;
  font-size: 14px;
}

/* CTA section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  animation: shimmer 8s infinite;
}
.cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cta p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* components.css - Composants réutilisables */

/* Boutons principaux */
.btn-primary {
  background: var(--accent-green);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px 0 rgba(76, 175, 80, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(76, 175, 80, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-black);
  padding: 16px 32px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--primary-black);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--accent-green);
  color: white;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px 0 rgba(76, 175, 80, 0.4);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px 0 rgba(76, 175, 80, 0.5);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  padding: 20px 40px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cta-secondary:hover {
  background: white;
  color: var(--primary-black);
  transform: translateY(-3px);
}

/* Badges et labels */
.partner-badge {
  background: #714B67;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 20px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.06);
  min-width: 200px;
  justify-content: flex-start;
  backdrop-filter: none;
}
.badge-item:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  border-color: rgba(var(--primary-rgb), 0.3);
}
.badge-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.badge-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Service Cards - Modern & Premium Design avec micro-animations */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(39, 174, 95, 0.03) 0%, 
    rgba(59, 130, 246, 0.03) 50%,
    rgba(139, 92, 246, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--accent-green) 0%, 
    var(--accent-blue) 50%,
    #8b5cf6 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
  animation: serviceCardFloat 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
  animation: iconGlow 2s ease-in-out infinite;
}

.result-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.result-card:hover::after {
  transform: scaleX(1);
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 48px;
  position: relative;
}

/* Avatars et icônes */
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
}

/* Service Icons - Premium Design */
.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, 
    var(--accent-green) 0%, 
    var(--accent-blue) 70%,
    #8b5cf6 100%);
  background-size: 200% 200%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 28px;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.service-card:hover .service-icon {
  animation: gradientShift 3s ease infinite;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-icon:hover::before {
  opacity: 1;
}

/* Service Title & Description */
.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-black);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.service-card:hover .service-title {
  color: var(--accent-green);
}

.service-description {
  color: #666666 !important;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

/* Service Features - Enhanced */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 12px 0;
  color: #666666 !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 50px; /* Espacement optimisé */
  margin-left: 0; /* Alignement à gauche */
  line-height: 1.5;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 10px; /* Alignée à gauche avec marge */
  top: 54%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-features li::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid var(--accent-green);
  border-width: 0 2px 2px 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
  background: var(--accent-green);
  transform: translateY(-50%) scale(1.1);
}

.service-card:hover .service-features li::after {
  border-color: white;
  transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
}

.service-card:hover .service-features li {
  color: var(--primary-black);
}

/* =========================
     FAQ SECTION
     ========================= */
.faq {
  padding: 100px 0;
  background: #f8fafb;
}

.faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq .faq-item {
  background: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq .faq-item.active {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  background: white;
  transition: background 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq .faq-item.active .faq-question {
  background: #27ae5f;
  color: white;
}

.faq .faq-icon {
  font-size: 24px;
  font-weight: bold;
  margin-left: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.3s ease-out;
  position: relative;
  width: 100%;
}

.faq .faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq .faq-answer-content {
  padding: 24px 32px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

.faq .faq-answer-content strong {
  color: #1f2937;
  font-weight: 600;
}

/* =========================
     CONTACT FORM SECTION - REFACTORISÉ
     ========================= */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
     FORMULAIRE REFACTORISÉ
     ========================= */
.contact-form-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 0;
  width: 100%;
}

/* Header du formulaire */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 8px;
}

.form-header p {
  color: #666666 !important;
  font-size: 16px;
}

/* Sections du formulaire */
.form-section {
  border: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.form-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 24px;
  padding: 0;
  border: none;
  position: relative;
}

.form-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 2px;
}

/* Rows et fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  position: relative;
  margin-bottom: 24px;
}


/* Inputs, selects, textareas */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 0 8px 0;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  background: transparent;
  font-size: 16px;
  color: var(--primary-black);
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-field label {
  /* position: absolute; */
  top: 16px;
  left: 0;
  color: #9ca3af;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* États focus et valid */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-field input:valid,
.form-field select:valid,
.form-field textarea:valid {
  border-bottom-color: transparent;
}

.form-field input:focus + label,
.form-field select:focus + label,
.form-field textarea:focus + label,
.form-field input:valid + label,
.form-field select:not([value=""]):valid + label,
.form-field textarea:valid + label {
  top: -4px;
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 600;
}

/* Ligne de dégradé */
.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transition: width 0.3s ease;
}
.last-line {
  position: absolute;
  bottom: 6px;


}

.form-field input:focus ~ .form-line,
.form-field select:focus ~ .form-line,
.form-field textarea:focus ~ .form-line {
  width: 100%;
}

/* Styles spécifiques pour select */
.form-field select {
  cursor: pointer;
  color: #9ca3af;
}

.form-field select:valid:not([value=""]) {
  color: var(--primary-black);
}

.form-field select option {
  color: var(--primary-black);
}

.form-field select option[value=""] {
  color: #9ca3af;
}

/* Styles pour textarea */
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  border-bottom: 2px solid #e5e7eb;
}

.form-field textarea:focus {
  border-bottom-color: transparent;
}

/* Amélioration de la transition du label pour textarea */
.form-field textarea + label {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left top;
}

/* =========================
     CHECKBOXES REFACTORISÉES
     ========================= */
.form-checkbox {
  margin-bottom: -12px;
  width: 100%;
}

.form-checkbox:last-child {
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #666666 !important;
  cursor: pointer;
  line-height: 1.5;
  user-select: none;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  position: relative;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  background: white;
  display: block;
}

.checkbox-custom:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(39, 174, 95, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  opacity: 1;
}

.checkbox-text {
  flex: 1;
  line-height: 1.5;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  display: block;
  width: calc(100% - 44px);
  margin-top: 2px;
}

.checkbox-text a {
  color: var(--accent-green);
  text-decoration: none;
  display: inline;
  margin: 0;
  padding: 0;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* =========================
     ACTIONS DU FORMULAIRE
     ========================= */
.form-actions {
  margin-top: 40px;
  text-align: center;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
  opacity: 0;
}

.btn-submit .btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
}

.btn-submit.loading .btn-loading {
  display: block;
}

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.info-header {
  text-align: center;
  margin-bottom: 32px;
}

.info-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 8px;
}

.info-header p {
  color: #666666 !important;
  font-size: 16px;
}

.contact-methods {
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}

.contact-method:last-child {
  border-bottom: none;
}

.method-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(39, 174, 95, 0.1) 0%, rgba(39, 174, 95, 0.2) 100%);
  border: 2px solid rgba(39, 174, 95, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.method-icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(39, 174, 95, 0.1), transparent);
  transition: left 0.5s ease;
}

.method-icon-box:hover::before {
  left: 100%;
}

.method-icon-box:hover {
  transform: translateY(-2px);
  border-color: var(--accent-green);
  background: linear-gradient(135deg, rgba(39, 174, 95, 0.15) 0%, rgba(39, 174, 95, 0.25) 100%);
  box-shadow: 0 8px 25px rgba(39, 174, 95, 0.15);
}

.method-svg {
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.method-icon-box:hover .method-svg {
  transform: scale(1.1);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.method-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 4px;
}

.method-content a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
}

.method-content a:hover {
  text-decoration: underline;
}

.method-content p,
.method-content address {
  color: #666666 !important;
  font-size: 14px;
  font-style: normal;
  margin: 4px 0 0 0;
  line-height: 1.4;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
}

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

.trust-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  color: #666666 !important;
  font-weight: 500;
}

/* Statistiques */
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-green);
}
.stat-label {
  font-size: 14px;

}

/* Sections et titres */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  color: var(--accent-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-description {
  font-size: 18px;
  color: #666666 !important;
  max-width: 600px;
  margin: 0 auto;
}

/* Témoignages */
.testimonial-quote {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 80px;
  color: var(--accent-green);
  opacity: 0.2;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.author-info p {
  color: #666666 !important;
  font-size: 14px;
}

/* CTA section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  animation: shimmer 8s infinite;
}
.cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cta p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  visibility: visible !important;
  opacity: 1 !important;
}
.process-step {
  text-align: center;
  position: relative;
  background: white;
  padding: 40px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(39, 174, 95, 0.3);
}

.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-black);
}

.step-description {
  color: #666666 !important;
  font-size: 16px;
  line-height: 1.6;
}
.step-description {
  color: #666666 !important;
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.result-metric {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

/* Badges et labels */
.partner-badge {
  background: #714B67;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* opacity: 0.7; */
  transition: var(--transition);
}
.badge-item:hover {
  opacity: 1;
  transform: scale(1.05);
}
.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cards génériques */
.hero-card, .service-card, .result-card, .testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.service-card {
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.service-card:hover::before {
  transform: translateX(100%);
}

.service-card {
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.service-card:hover::before {
  transform: translateX(100%);
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.result-card:hover::after {
  transform: scaleX(1);
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Avatars et icônes */
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: white;
  transition: var(--transition);
}

/* Listes de features - Supprimé car dupliqué avec la version Enhanced ci-dessus */

/* Migration WOW Section */
.migration-wow {
  background: linear-gradient(135deg, 
    var(--primary-black) 0%, 
    var(--dark-gray) 50%, 
    var(--primary-black) 100%);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.migration-wow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(55, 208, 126, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(55, 208, 126, 0.05) 0%, transparent 40%);
  z-index: 1;
}


.migration-wow .container {
  position: relative;
  z-index: 2;
}

.migration-hero {
  text-align: center;
  margin-bottom: 80px;
}

.migration-hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.migration-hero .subtitle {
  font-size: 1.5rem;
  color: var(--light-gray);
  margin-bottom: 16px;
  font-weight: 600;
}

.migration-hero .description {
  font-size: 1.125rem;
  color: #666666 !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.migration-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.migration-stat {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.migration-stat:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-green);
}

.migration-stat .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
  margin-bottom: 8px;
}

.migration-stat .label {
  font-size: 1rem;
  color: var(--light-gray);
  font-weight: 600;
}

.migration-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.migration-feature {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.migration-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
  transform-origin: left;
}

.migration-feature:hover::before {
  transform: scaleX(1);
}

.migration-feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(55, 208, 126, 0.3);
}

.migration-feature:hover .icon {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 0 20px rgba(55, 208, 126, 0.4));
}

.migration-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: white;
  font-weight: 700;
}

.migration-feature p {
  color: #666666 !important;
  line-height: 1.6;
  margin-bottom: 24px;
}

.migration-feature ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.migration-feature li {
  color: var(--light-gray);
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.migration-feature li::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 52%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--accent-green);
}

.migration-feature li::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid var(--accent-green);
  border-width: 0 2px 2px 0;
}

.migration-cta {
  text-align: center;
  padding: 60px 40px;
  background: rgba(55, 208, 126, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(55, 208, 126, 0.2);
}

.migration-cta h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: white;
  font-weight: 700;
}

.migration-cta p {
  font-size: 1.125rem;

  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.migration-cta .btn-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--ease-smooth);
  border: none;
  font-size: 1.125rem;
}

.migration-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(55, 208, 126, 0.3);
}

/* ==========================================
   MOBILE RESPONSIVE - Uniformisation des largeurs
   ========================================== */

@media (max-width: 768px) {
  /* Uniformisation des largeurs de toutes les cards sur mobile */
  .hero-card,
  .service-card, 
  .result-card,
  .testimonial-card,
  .contact-form-container,
  .contact-info-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 24px !important;
  }

  /* Uniformisation des grilles sur mobile */
  .services-grid,
  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Trust badges responsive - 2 colonnes sur mobile */
  .trust-badges .badges-container {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: 20px 16px !important;
  }

  .trust-badges {
    padding: 40px 0 !important;
  }
  
  .badge-item {
    min-width: 140px !important;
    padding: 20px 16px !important;
    gap: 14px !important;
  }

  .badge-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .badge-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  /* Uniformisation des slideshows sur mobile */
  .testimonials-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 16px;
  }

  /* Uniformisation des paddings de section sur mobile */
  .section-header,
  .contact-header {
    padding: 0 16px;
    text-align: center;
  }

  /* Uniformisation des containers sur mobile */
  .container {
    padding: 0 16px;
  }
}

/* ==========================================
   GOOGLE REVIEWS WIDGET
   ========================================== */

.google-reviews-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.google-logo img {
  width: 60px;
  height: 20px;
}

.reviews-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars-container {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  animation: starTwinkle 2s ease-in-out infinite;
}

.stars svg:nth-child(1) { animation-delay: 0s; }
.stars svg:nth-child(2) { animation-delay: 0.2s; }
.stars svg:nth-child(3) { animation-delay: 0.4s; }
.stars svg:nth-child(4) { animation-delay: 0.6s; }
.stars svg:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.reviews-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.count {
  font-size: 12px;
  color: #666666 !important;
  font-weight: 500;
}

/* ==========================================
   SECTION WOW - DIFFÉRENCIATEURS
   ========================================== */

.wow-differentiators {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}


.wow-differentiators .container {
  position: relative;
  z-index: 2;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 60px 0;
}

.differentiator-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.differentiator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.differentiator-card:hover::before {
  transform: scaleX(1);
}

.differentiator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(39, 174, 95, 0.2);
}

.differentiator-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.differentiator-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border-radius: 16px;
}

.differentiator-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.differentiator-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 16px;
  line-height: 1.3;
}

.differentiator-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666666 !important;
  margin-bottom: 24px;
}

.differentiator-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-direction: column;
  

}

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

.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.differentiator-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;

}

.feature-tag {
  background: rgba(39, 174, 95, 0.1);
  color: #4CAF50 !important;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #4CAF50 !important;
}

.differentiator-clients {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.client-badge {
  background: linear-gradient(135deg, rgba(39, 174, 95, 0.05), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(39, 174, 95, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 200px;
}

.client-name {
  font-weight: 700;
  color: var(--primary-black);
  font-size: 14px;
}

.migration-type {
  font-size: 12px;
  color: #666666 !important;
  font-weight: 500;
}

.differentiator-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;

}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 174, 95, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(39, 174, 95, 0.1);
}

.service-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

.service-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-black);
}

/* CTA Section */
.wow-cta {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}


.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wow-cta .btn-primary {
  background: white;
  color: var(--accent-green);
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.wow-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .wow-differentiators {
    padding: 80px 0;
  }
  
  .differentiators-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
  }
  
  .differentiator-card {
    padding: 32px 24px;
  }
  
  .differentiator-icon {
    width: 56px;
    height: 56px;
  }
  
  .differentiator-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .differentiator-content h3 {
    font-size: 20px;
  }
  
  .differentiator-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .differentiator-services {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .client-badge {
    min-width: 180px;
  }
  
  .wow-cta {
    padding: 40px 24px;
    margin-top: 60px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}

/* ==========================================
   FAQ CATEGORIES TABS
   ========================================== */

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(39, 174, 95, 0.2);
  border-radius: 25px;

  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-tab:hover {
  background: rgba(39, 174, 95, 0.1);
  border-color: rgba(39, 174, 95, 0.4);
  color: var(--accent-green);
  transform: translateY(-2px);
}

.faq-tab.active {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-color: var(--accent-green);
  color: white;
  box-shadow: 0 4px 15px rgba(39, 174, 95, 0.3);
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-item.hidden {
  display: none;
}

/* Responsive FAQ Tabs */
@media (max-width: 768px) {
  .faq-categories {
    gap: 6px;
    margin: 30px 0;
  }
  
  .faq-tab {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* ==========================================
   MIGRATION MATRIX SECTION
   ========================================== */

.migration-matrix {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.migration-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 60px 0;
}

.migration-category {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.migration-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.migration-category.highlight {
  background: linear-gradient(135deg, rgba(39, 174, 95, 0.05), rgba(59, 130, 246, 0.05));
  border: 2px solid rgba(39, 174, 95, 0.2);
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 2px;
}

.migration-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.migration-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.migration-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.migration-item:hover::before {
  transform: scaleX(1);
}

.migration-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.migration-item.large {
  grid-column: span 2;
}

.source-app, .target-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.app-icon, .module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.app-icon.salesforce { background: #00A1E0; }
.app-icon.hubspot { background: #FF7A59; }
.app-icon.zendesk { background: #17494D; }
.app-icon.shopify { background: #96BF48; }
.app-icon.woocommerce { background: #96588A; }
.app-icon.quickbooks { background: #0077C5; }
.app-icon.sage { background: #00A651; }
.app-icon.chargebee { background: #FF6B6B; }
.app-icon.asana { background: #F06A6A; }
.app-icon.harvest { background: #F7941D; }
.app-icon.bamboo { background: #00A651; }
.app-icon.sap { background: #0F7B0F; }
.app-icon.dynamics { background: #0078D4; }

.module-icon {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  font-size: 20px;
}

.app-name, .module-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-black);
  text-align: center;
}

.migration-arrow {
  font-size: 24px;
  color: var(--accent-green);
  font-weight: 700;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.migration-cta {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}


.migration-cta .cta-content {
  position: relative;
  z-index: 2;
}

.migration-cta h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.migration-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.migration-cta .btn-primary {
  background: white;
  color: var(--accent-green);
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.migration-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Migration Matrix */
@media (max-width: 768px) {
  .migration-matrix {
 
    padding:0;
    overflow-x: hidden;
  }
  
  .migration-grid {
    gap: 24px;
    margin: 40px 0;
    width: 100%;
    max-width: 100%;
  }
  
  .migration-category {
    padding: 24px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .migration-items {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }
  
  .migration-item.large {
    grid-column: span 1;
  }
  
  .migration-item {
    gap: 8px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    flex-wrap: nowrap;
    overflow-x: hidden;
  }
  
  .migration-arrow {
    transform: rotate(90deg);
    flex-shrink: 0;
  }
  
  .source-app,
  .target-module {
    flex-shrink: 0;
    min-width: 0;
  }
  
  .app-name,
  .module-name {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .migration-cta {
    padding: 40px 24px;
    margin-top: 60px;
  }
  
  .migration-cta h3 {
    font-size: 24px;
  }
  
  .migration-cta p {
    font-size: 16px;
  }
}

/* ==========================================
   CONCEPT SLIDESHOW - INTERACTIF
   ========================================== */

.concept-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.concept-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(39, 174, 95, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.concept-section .container {
  position: relative;
  z-index: 2;
}

.concept-section .section-title {
  color: white;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.concept-section .section-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* Slideshow Container */
.concept-slideshow {
  margin: 80px 0;
  position: relative;
}

.slideshow-container {
  position: relative;
  height: 900px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

.slide-content {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.slide-header h3 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* Slide 1: Stats */
.slide-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 48px;
  height: 48px;
  color: #10b981;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Slide 2: Comparison */
.comparison-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.comparison-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  max-width: 300px;
}

.comparison-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.comparison-item.traditional {
  border-color: rgba(239, 68, 68, 0.3);
}

.comparison-item.opengraphy {
  border-color: rgba(34, 197, 94, 0.3);
}

.comparison-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.comparison-icon svg {
  width: 48px;
  height: 48px;
  color: #10b981;
}

.comparison-item.traditional .comparison-icon svg {
  color: #ef4444;
}

.comparison-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.comparison-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.comparison-arrow {
  font-size: 32px;
  color: #34d399;
  font-weight: 700;
  animation: arrowPulse 2s ease-in-out infinite;
}

/* Slide 3: Table */
.comparison-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: white;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table-cell {
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Slide 4: Performance Grid */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.performance-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.performance-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.performance-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.performance-icon svg {
  width: 48px;
  height: 48px;
  color: #10b981;
}

.performance-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.performance-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Slide 5: Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.advantage-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.advantage-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.advantage-icon svg {
  width: 48px;
  height: 48px;
  color: #10b981;
}

.advantage-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.advantage-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Slide 6: Savings Grid */
.savings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.saving-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.saving-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.saving-item.highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  border-color: rgba(34, 197, 94, 0.3);
}

.saving-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.saving-icon svg {
  width: 48px;
  height: 48px;
  color: #10b981;
}

.saving-value {
  font-size: 32px;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 8px;
}

.saving-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Slide 7: Timeline Comparison */
.timeline-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.timeline-traditional,
.timeline-opengraphy {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-traditional h4 {
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timeline-opengraphy h4 {
  color: #34d399;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timeline-steps {
  margin-bottom: 20px;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.step-duration {
  font-size: 16px;
  font-weight: 700;
  color: white;
  min-width: 80px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.timeline-total {
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* Slide 8: Testimonials */
.testimonials-slide {
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.testimonial-quote {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  text-align: center;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Navigation Controls */
.slideshow-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.slide-indicators {
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #34d399;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes arrowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Services Showcase */
.services-showcase {
  margin: 100px 0;
}

.showcase-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.showcase-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #22c55e);
  border-radius: 2px;
}

.services-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: stepReveal 0.8s ease forwards;
}

.service-step:nth-child(1) { animation-delay: 0.2s; }
.service-step:nth-child(2) { animation-delay: 0.4s; }
.service-step:nth-child(3) { animation-delay: 0.6s; }
.service-step:nth-child(4) { animation-delay: 0.8s; }
.service-step:nth-child(5) { animation-delay: 1.0s; }
.service-step:nth-child(6) { animation-delay: 1.2s; }

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

.service-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #22c55e);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.service-step:hover::before {
  transform: scaleX(1);
}

.service-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  position: relative;
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.step-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Workshop Highlight */
.workshop-highlight {
  background: linear-gradient(135deg, rgba(39, 174, 95, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 24px;
  padding: 60px 40px;
  margin: 80px 0;
  border: 1px solid rgba(39, 174, 95, 0.3);
  position: relative;
  overflow: hidden;
}

.workshop-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(39, 174, 95, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.workshop-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.workshop-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(39, 174, 95, 0.3);
}

.workshop-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  animation: iconFloat 3s ease-in-out infinite;
}

.workshop-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.workshop-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.workshop-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Concept CTA */
.concept-cta {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.concept-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.concept-cta .cta-content {
  position: relative;
  z-index: 2;
}

.concept-cta h3 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.concept-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.concept-cta .btn-primary {
  background: white;
  color: #3b82f6;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.concept-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Concept Slideshow */
@media (max-width: 768px) {
  .concept-section {
    padding: 80px 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  .concept-section .section-title {
    font-size: 32px;
  }
  
  .slideshow-container {
    height: 800px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .slide {
    padding: 40px 20px;
  }
  
  .slide-header h3 {
    font-size: 28px;
  }
  
  .slide-subtitle {
    font-size: 16px;
  }
  
  .slide-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .comparison-arrow {
    transform: rotate(90deg);
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .table-cell {
    padding: 12px 8px;
  }
  
  .performance-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .savings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .slideshow-navigation {
    gap: 20px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .nav-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .services-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .workshop-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .workshop-stats {
    justify-content: center;
    gap: 24px;
  }
  
  .concept-cta {
    padding: 40px 24px;
  }
  
  .concept-cta h3 {
    font-size: 24px;
  }
  
  .concept-cta p {
    font-size: 16px;
  }
}

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

.testimonials-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.testimonial-item {

  border-radius: 20px;
  padding: 32px;

  transition: all 0.3s ease;

}

.testimonial-item:hover {
  transform: translateY(-4px);

}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666666 !important;
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: var(--accent-green);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-text::after {
  content: '"';
  font-size: 60px;
  color: var(--accent-green);
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent-green);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.author-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.author-avatar img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.author-avatar:hover img {
  filter: grayscale(0%);
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  margin: 0 0 4px 0;
}

.author-info p {
  font-size: 14px;
  color: #666666 !important;
  margin: 0 0 8px 0;
}

.company-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section des logos clients */
.clients-logos-section {
  margin-top: 80px;
  text-align: center;
}

.clients-logos-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 40px;
  position: relative;
}

.clients-logos-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 2px;
}

.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 80px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.client-logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(55, 208, 126, 0.1), transparent);
  transition: left 0.5s ease;
}

.client-logo-item:hover::before {
  left: 100%;
}

.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-green);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0%) contrast(1);
  transition: all 0.3s ease;
}

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

.client-logo-item.text-logo {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  color: white;
}

.client-logo-item .company-name {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.client-logo-item.text-logo:hover .company-name {
  opacity: 1;
}

/* Responsive pour la nouvelle section testimonials */
@media (max-width: 768px) {
  .testimonials-new {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
  }

  .testimonial-item {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 40px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .clients-logos-section {
    margin-top: 60px;
  }

  .clients-logos-section h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .client-logo-item {
    height: 60px;
    padding: 15px;
  }

  .client-logo-item img {
    max-height: 40px;
  }

  .clients-logos-section {
    margin-top: 60px;
  }

  .clients-logos-section h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .client-logo-item {
    height: 60px;
    padding: 15px;
  }

  .client-logo-item img {
    max-height: 40px;
  }
}

/* Responsive pour migration section */
@media (max-width: 768px) {
  .migration-wow {
    padding: 80px 0;
  }
  
  .migration-hero {
    margin-bottom: 60px;
  }
  
  .migration-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .migration-feature {
    padding: 32px 24px;
  }
  
  .migration-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ====== SVG ICONS STYLING ====== */

/* Enhanced Badge Icons with SVG */
.badge-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2.5;
}

.badge-item .badge-icon {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  color: white;
}

/* Enhanced Service Icons with SVG */
.service-icon {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(39, 174, 95, 0.3);
  transition: all 0.4s ease;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2.5;
}

.service-icon:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 15px 30px rgba(39, 174, 95, 0.5);
}

/* Migration Feature Icons with SVG */
.migration-feature .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(39, 174, 95, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.migration-feature .icon svg {
  width: 36px;
  height: 36px;
  color: white;
  stroke-width: 2.5;
}

.migration-feature .icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 25px rgba(39, 174, 95, 0.4);
}

/* Testimonial Stars with SVG */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  fill: #fbbf24;
  transition: transform 0.2s ease;
}

.testimonial-stars svg:hover {
  transform: scale(1.1);
}

/* Header Navigation Icons */
.megamenu-section h4 svg,
.mobile-dropdown-menu svg {
  color: var(--accent-green);
  transition: all 0.3s ease;
}

.megamenu-section:hover h4 svg {
  color: var(--accent-blue);
  transform: scale(1.1);
}

/* IA & Automatisation Section */
.ai-automation-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.ai-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-text-content {
  z-index: 2;
}

.ai-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ai-feature {
  display: flex;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ai-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ai-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(39, 174, 95, 0.3);
  transition: all 0.3s ease;
}

.ai-feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 2.5;
}

.ai-feature:hover .ai-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(39, 174, 95, 0.4);
}

.ai-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-black);
}

.ai-feature p {
  color: #666666 !important;
  line-height: 1.6;
  margin: 0;
}

.ai-visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../assets/hero-bg-OG-odoo_Robot.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
}

.ai-visual-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.robot-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Forcer le container à être statique */
  animation: none !important;
  transform: none !important;
}

.robot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* Forcer l'image à être statique */
  animation: none !important;
  transform: none !important;
  /* Éliminer les bordures blanches */
  display: block;
  margin: 0;
  padding: 0;
}

.robot-container:hover .robot-image {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Restauration du robot-glow avec un effet plus sobre */
.robot-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #27ae5f, #3b82f6, #27ae5f);
  border-radius: 20px;
  opacity: 0.2;
  filter: blur(15px);
  z-index: -1;
  /* Suppression de l'animation de rotation */
  animation: none !important;
}

.ai-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ai-particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: #27ae5f;
  border-radius: 50%;
  opacity: 0.6;
  /* Suppression de l'animation */
  animation: none !important;
}

.ia-automation {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow: hidden;
  padding: 120px 0;
}

.ia-automation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite alternate;
}

.ia-automation .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 80vh;
}

.ia-text {
  z-index: 3;
}

.ia-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.ia-text .subtitle {
  font-size: 1.5rem;
  color: #60a5fa;
  margin-bottom: 32px;
  font-weight: 600;
}

.ia-text .description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.ia-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.ia-feature {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.ia-feature:hover {
  transform: translateX(8px);
  color: #3b82f6;
}

.ia-feature::before {
  content: '🤖';
  font-size: 1.5rem;
  margin-right: 16px;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.ia-feature span {
  font-size: 1.125rem;
  font-weight: 500;
}

.ia-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.robot-container {
  position: relative;
  width: 500px;
  height: 500px;
  animation: float 6s ease-in-out infinite;
}

.robot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 100px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.robot-container:hover .robot-image {
  transform: scale(1.05);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 120px rgba(59, 130, 246, 0.3);
}

.robot-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #10b981, #3b82f6);
  border-radius: 30px;
  opacity: 0.3;
  filter: blur(20px);
  animation: rotate 10s linear infinite;
  z-index: -1;
}

.ai-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  animation: particle-float 3s infinite linear;
  box-shadow: 0 0 10px currentColor;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; background: #3b82f6; }
.particle:nth-child(2) { top: 40%; left: 90%; animation-delay: 0.5s; background: #8b5cf6; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; background: #10b981; }
.particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 1.5s; background: #f59e0b; }
.particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 2s; background: #ef4444; }
.particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 2.5s; background: #06b6d4; }

.ia-cta {
  margin-top: 40px;
}

.ia-cta .btn {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border: none;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.ia-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

/* Animations - Supprimées pour l'image robot */

/* Animation rotate supprimée */

@keyframes particle-float {
  0% { 
    transform: translateY(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% { 
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

/* Responsive Design pour AI Automation Section */
@media (max-width: 1024px) {
  .ai-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .robot-container {
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ai-automation-section {
    padding: 80px 0;
  }

  .concept-slideshow{display: none;}
  
  .ai-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .robot-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  
  .ai-feature {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .ai-feature-icon {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .robot-container {
    width: 240px;
    height: 240px;
  }
  
  .ai-feature {
    padding: 16px;
  }
  
  .ai-feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .ai-feature-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Responsive Design pour IA Automation Section (ancienne) */
@media (max-width: 1024px) {
  .ia-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .ia-text h2 {
    font-size: 2.5rem;
  }
  
  .robot-container {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .ia-automation {
    padding: 80px 0;
  }
  
  .ia-text h2 {
    font-size: 2rem;
  }
  
  .ia-text .subtitle {
    font-size: 1.25rem;
  }
  
  .robot-container {
    width: 300px;
    height: 300px;
  }
  
  .ia-content {
    gap: 40px;
  }
}
