        .price-badge {
            display: inline-block;
            background: #3b82f6;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 15px;
            font-size: 1.1rem;
        }

        .pricing-section {
            padding: 60px 20px;
            background: #111827;
            text-align: center;
            border-top: 1px solid #1e293b;
        }

        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .price-card {
            background: #161b27;
            border: 1px solid #3b82f6;
            padding: 40px;
            border-radius: 20px;
            width: 300px;
            transition: transform 0.3s;
        }

        .price-card:hover { transform: translateY(-10px); }

        .price-card h3 { color: #fff; margin-bottom: 10px; }
        .price-amount { font-size: 2.5rem; font-weight: 700; color: #3b82f6; }
        .price-unit { color: #94a3b8; font-size: 0.9rem; }
        
        .price-features { list-style: none; padding: 0; margin: 25px 0; color: #e2e8f0; text-align: left; }
        .price-features li { margin-bottom: 12px; font-size: 0.95rem; }
        .price-features li::before { content: "✓ "; color: #3b82f6; font-weight: bold; }

        .btn-buy {
            display: inline-block;
            background: #3b82f6;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            width: 100%;
        }