/* ============================================
   PRICING HERO - ULTIMATE ENHANCEMENT
   Premium hero section design
   ============================================ */

.pricing-hero-new {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%) !important;
}

/* Animated background pattern */
.pricing-hero-new::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%) !important;
  pointer-events: none !important;
  animation: heroBackgroundMove 20s ease-in-out infinite !important;
}

@keyframes heroBackgroundMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}

/* Enhanced badge */
.pricing-hero-badge {
  backdrop-filter: blur(20px) saturate(180%) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.pricing-hero-badge::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.6s ease !important;
}

.pricing-hero-badge:hover::before {
  left: 100% !important;
}

.pricing-hero-badge:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Enhanced title */
.pricing-hero-title-new {
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 2px 10px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
}

.pricing-hero-title-new .pricing-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 50%, #C7D2FE 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* Enhanced subtitle */
.pricing-hero-subtitle-new {
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.25),
    0 1px 5px rgba(0, 0, 0, 0.15) !important;
  opacity: 0.95 !important;
}

/* Enhanced CTA button */
.pricing-hero-cta-new {
  backdrop-filter: blur(20px) saturate(180%) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pricing-hero-cta-new::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease, height 0.6s ease !important;
}

.pricing-hero-cta-new:hover::before {
  width: 400px !important;
  height: 400px !important;
}

.pricing-hero-cta-new:hover {
  transform: translateY(-4px) scale(1.05) !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
}

.pricing-hero-cta-new i {
  transition: transform 0.3s ease !important;
}

.pricing-hero-cta-new:hover i {
  transform: translateX(4px) rotate(15deg) !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pricing-hero-new::after {
    animation: none !important;
  }
  
  .pricing-hero-badge,
  .pricing-hero-cta-new {
    transition: none !important;
  }
  
  .pricing-hero-badge:hover,
  .pricing-hero-cta-new:hover {
    transform: none !important;
  }
}

