/* ============================================
   PRICING HERO - PROFESSIONAL DESIGN
   Enhanced hero section for better UX
   ============================================ */

.pricing-hero-new {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem) !important;
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%) !important;
}

.hero-background-pricing {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
}

.hero-gradient-pricing {
  position: absolute !important;
  top: -50% !important;
  right: -20% !important;
  width: 800px !important;
  height: 800px !important;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  filter: blur(60px) !important;
}

.hero-pattern-pricing {
  position: absolute !important;
  bottom: -30% !important;
  left: -10% !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  filter: blur(50px) !important;
}

.pricing-hero-content-new {
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 clamp(1rem, 4vw, 2rem) !important;
  position: relative !important;
  z-index: 1 !important;
}

.pricing-hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  padding: 0.75rem 1.5rem !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  border: 2px solid rgba(37, 99, 235, 0.2) !important;
  border-radius: 50px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #2563EB !important;
  margin-bottom: 2rem !important;
  box-shadow: 
    0 4px 12px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease !important;
}

.pricing-hero-badge:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 6px 16px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.pricing-hero-badge i {
  font-size: 1rem !important;
}

.pricing-hero-title-new {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.03em !important;
  color: #0F172A !important;
}

.pricing-gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #8B5CF6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.pricing-hero-subtitle-new {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem) !important;
  color: #64748B !important;
  line-height: 1.7 !important;
  margin-bottom: 2rem !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 400 !important;
}

.pricing-hero-cta-new {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2rem !important;
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%) !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  box-shadow: 
    0 4px 12px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: none !important;
}

.pricing-hero-cta-new:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 6px 16px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%) !important;
}

.pricing-hero-cta-new i {
  font-size: 1.125rem !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .pricing-hero-new {
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem) !important;
  }
  
  .pricing-hero-badge {
    padding: 0.625rem 1.25rem !important;
    font-size: 0.8125rem !important;
  }
  
  .pricing-hero-cta-new {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9375rem !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pricing-hero-badge,
  .pricing-hero-cta-new {
    transition: none !important;
  }
  
  .pricing-hero-badge:hover,
  .pricing-hero-cta-new:hover {
    transform: none !important;
  }
}

