.pricing {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
  }
  
  .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
      radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
  }
  
  .bg-primary-soft {
    background-color: rgba(59, 130, 246, 0.1);
  }
  
  .badge.bg-primary-soft {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .pricing-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
  
  .plan-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    width: 48px;
    height: 48px;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-primary:hover {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
  }
  
  .btn-primary i {
    font-size: 1.1rem;
  }
  
  .popular-tag {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
  }
  
  .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
  }
  
  .amount {
    color: #60a5fa !important;
    font-size: 2.25rem;
  }
  
  .currency, .period {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  @media (max-width: 991.98px) {
    .pricing {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .pricing-card {
      margin-bottom: 1.5rem;
    }
  }