.pricing-hero {
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(21, 25, 50, 0.95) 100%);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(29, 233, 182, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .pricing-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .pricing-hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: white;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: left 0.3s;
        }

        .toggle-switch.active::after {
            left: 33px;
            background: #000;
        }

        .save-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--success);
            color: white;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-left: 0.5rem;
        }

        .pricing-section {
            padding: 4rem 0;
            background: var(--bg-primary);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 2px solid var(--border-glass);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
            border-color: var(--neon-blue);
        }

        .pricing-card.featured {
            border-color: var(--neon-blue);
            box-shadow: 0 16px 38px rgba(0, 217, 255, 0.18);
        }

        .pricing-card.featured::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, var(--neon-blue), var(--cyber-green));
            border-radius: 16px 0 0 16px;
        }

        .popular-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-blue));
            color: white;
            padding: 0.45rem 0.85rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 10px 24px rgba(0, 217, 255, 0.22);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .plan-description {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-currency {
            font-size: 1.5rem;
            color: var(--text-secondary);
        }

        .price-period {
            color: var(--text-secondary);
            font-size: 0.95rem;
            min-height: 1.5rem;
        }

        .plan-cta {
            display: block;
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin: 2rem 0 1rem;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            line-height: 1.2;
        }

        .plan-cta.primary {
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-blue));
            color: white;
            box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
        }

        .plan-cta.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6);
        }

        .plan-cta.secondary {
            background: transparent;
            color: var(--neon-blue);
            border: 2px solid var(--neon-blue);
        }

        .plan-cta.secondary:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
        }

        .features-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.65rem;
        }

        .features-list li {
            padding: 0.85rem 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.45;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
        }

        .features-list .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.25rem;
            min-width: 1.25rem;
            height: 1.25rem;
            margin-top: 0.1rem;
            border-radius: 999px;
            background: rgba(29, 233, 182, 0.1);
            color: var(--cyber-green);
            flex-shrink: 0;
            position: relative;
        }

        .features-list .icon::before {
            content: '';
            width: 0.34rem;
            height: 0.58rem;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            margin-top: -0.1rem;
        }

        .features-list .icon.unavailable {
            color: var(--text-muted);
            opacity: 0.3;
        }

        .comparison-section {
            padding: 4rem 0;
            background: var(--bg-secondary);
        }

        .comparison-table {
            margin-top: 3rem;
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th {
            background: rgba(0, 217, 255, 0.05);
            padding: 1.5rem 1rem;
            text-align: left;
            font-weight: 700;
            color: var(--text-primary);
            border-bottom: 2px solid var(--border-glass);
        }

        .comparison-table td {
            padding: 1.5rem 1rem;
            border-bottom: 1px solid var(--border-glass);
            color: var(--text-secondary);
        }

        .comparison-table tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        .check-icon {
            color: var(--cyber-green);
            font-size: 1.25rem;
        }

        .faq-section {
            padding: 4rem 0;
            background: var(--bg-primary);
        }


        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-glass);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--border-neon);
            box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
        }

        .faq-item h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .faq-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
