/* Simple Hero Section - No Strobe Effects */
.hero-simple {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Simple static background */
.hero-background-simple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient-static {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    #0066CC 0%, 
    #004499 25%,
    #0052A3 50%,
    #003875 75%,
    #002147 100%);
}

/* Hero Content Container */
.hero-content-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
}

/* Simple Badge */
.hero-badge-simple {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.badge-icon {
  font-size: 1.5rem;
}

/* Simple Title */
.hero-title-simple {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 2rem 0;
}

.hero-title-simple span {
  display: block;
}

.title-highlight {
  background: linear-gradient(45deg, #00D4AA, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Simple Description */
.hero-description-simple {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.description-highlight {
  background: rgba(0, 212, 170, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.description-emphasis {
  background: linear-gradient(45deg, #00D4AA, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Unified Stats & CTA Cards */
.hero-stats-cta-unified {
  display: flex !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  margin-bottom: 2rem !important;
  flex-wrap: wrap !important;
  perspective: 1200px !important;
}

.unified-card {
  position: relative !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
  backdrop-filter: blur(25px) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 28px !important;
  padding: 2.5rem 2rem 1.5rem !important;
  text-align: center !important;
  color: white !important;
  min-width: 220px !important;
  max-width: 280px !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 280px !important;
}

/* Dynamic gradient borders for different card types */
.unified-card.tools::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, #667EEA, #764BA2, #00D4AA);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.unified-card.guides::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, #10B981, #059669, #00D4AA);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.unified-card.comparatifs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED, #A855F7);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

/* Floating glow effect */
.unified-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.unified-card:hover::after {
  transform: translate(-50%, -50%) scale(2.5);
}

.unified-card:hover {
  transform: translateY(-10px) rotateX(8deg) rotateY(4deg) scale(1.03) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1)) !important;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    0 0 100px rgba(0, 212, 170, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
}

/* Card Header Styles */
.card-header {
  position: relative;
  z-index: 3;
  margin-bottom: 1.5rem;
}

.unified-card .stat-icon {
  font-size: 3rem !important;
  margin-bottom: 1.2rem !important;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)) !important;
  transition: all 0.5s ease !important;
  display: block !important;
}

.unified-card:hover .stat-icon {
  transform: scale(1.2) rotateY(15deg) !important;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)) !important;
}

.unified-card .stat-number {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  margin-bottom: 0.5rem !important;
  background: linear-gradient(135deg, #00D4AA 0%, #FF6B35 50%, white 100%) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: block !important;
  animation: shimmerText 4s ease-in-out infinite !important;
  transition: all 0.5s ease !important;
}

.unified-card:hover .stat-number {
  transform: scale(1.15) !important;
  text-shadow: 0 0 30px rgba(0, 212, 170, 0.7) !important;
}

.unified-card .stat-label {
  font-size: 1rem !important;
  opacity: 0.9 !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  color: white !important;
  transition: all 0.5s ease !important;
  margin-bottom: 0 !important;
}

.unified-card:hover .stat-label {
  opacity: 1 !important;
  transform: translateY(-3px) !important;
}

/* CTA Section */
.card-cta {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
}

.unified-card:hover .card-cta {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.cta-text {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: white !important;
  letter-spacing: 0.3px !important;
  transition: all 0.3s ease !important;
}

.cta-arrow {
  transition: all 0.5s ease !important;
  stroke: white !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
}

.unified-card:hover .cta-arrow {
  transform: translateX(4px) rotate(5deg) !important;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) !important;
}

/* Color-specific hover effects */
.unified-card.tools:hover {
  box-shadow: 
    0 25px 50px rgba(102, 126, 234, 0.3),
    0 0 100px rgba(102, 126, 234, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
}

.unified-card.guides:hover {
  box-shadow: 
    0 25px 50px rgba(16, 185, 129, 0.3),
    0 0 100px rgba(16, 185, 129, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
}

.unified-card.comparatifs:hover {
  box-shadow: 
    0 25px 50px rgba(139, 92, 246, 0.3),
    0 0 100px rgba(139, 92, 246, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
}

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

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

/* Enhanced CTA Buttons */
.hero-cta-simple {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-cta-simple {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  
  /* Default primary button style */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  color: #0066CC;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Animated background shimmer */
.btn-cta-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.btn-cta-simple:hover::before {
  left: 100%;
}

/* Button content positioning */
.btn-cta-simple > * {
  position: relative;
  z-index: 2;
}

.btn-cta-simple:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.25),
    0 0 60px rgba(0, 102, 204, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Secondary button variations */
.btn-cta-simple.secondary.guides {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(16, 185, 129, 0.85));
  color: white;
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 8px 32px rgba(16, 185, 129, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-cta-simple.secondary.guides:hover {
  box-shadow: 
    0 20px 40px rgba(16, 185, 129, 0.3),
    0 0 60px rgba(16, 185, 129, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.btn-cta-simple.secondary.comparatifs {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(139, 92, 246, 0.85));
  color: white;
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 8px 32px rgba(139, 92, 246, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-cta-simple.secondary.comparatifs:hover {
  box-shadow: 
    0 20px 40px rgba(139, 92, 246, 0.3),
    0 0 60px rgba(139, 92, 246, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.btn-icon {
  font-size: 1.2rem;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.btn-cta-simple:hover .btn-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.btn-arrow {
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.btn-cta-simple:hover .btn-arrow {
  transform: translateX(6px) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-simple {
    font-size: 2.5rem;
  }
  
  .hero-stats-cta-unified {
    gap: 1.5rem !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .unified-card {
    min-width: 280px !important;
    max-width: 320px !important;
    min-height: 240px !important;
    padding: 2rem 1.5rem 1.2rem !important;
    transform: none !important;
  }
  
  .unified-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 
      0 15px 30px rgba(0,0,0,0.3),
      0 0 60px rgba(0, 212, 170, 0.2) !important;
  }
  
  .unified-card .stat-number {
    font-size: 2.8rem !important;
  }
  
  .unified-card .stat-icon {
    font-size: 2.5rem !important;
  }
  
  .cta-text {
    font-size: 0.9rem !important;
  }

  /* Disable complex animations on mobile for performance */
  .unified-card::before,
  .unified-card::after {
    display: none !important;
  }
  
  .unified-card .stat-number {
    animation: none !important;
  }
}