


  :root {
    --primary: #8b5cf6;
    --secondary: #6366f1;
    --accent: #ec4899;
    --dark: #1e293b;
    --light: #f8fafc;
    --success: #10b981;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
  }
  
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 40%);
    z-index: -1;
  }
  
  /* Pricing Section */
  .pricing {
    padding: 100px 5%;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  .popular {
    border: 2px solid var(--accent);
    transform: scale(1.05);
  }
  
  .popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
  }
  
  .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .price span {
    font-size: 1.2rem;
    color: #94a3b8;
  }
  
  .features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
  }
  
  .features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
  }
  
  .features li i {
    color: var(--success);
    margin-right: 10px;
  }
  
  .features li i.fa-times-circle {
    color: #f87171;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
  }

     /* Responsive */
     @media (max-width: 992px) {
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .hero-text {
            margin: 0 auto;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .hero-stats {
            justify-content: center;
        }
        
        .hero-visual {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .site-header nav ul {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        .hero-text h1 {
            font-size: 2.8rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 30px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
        }
    }