        body {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            background: var(--bg-primary, #1a1a1a);
            margin: 0;
            color: var(--text-primary, #fff);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ===== Banner ===== */
        .banner {
            background: rgba(167, 243, 0, 0.1);
            border: 1px solid rgba(167, 243, 0, 0.3);
            color: var(--text-primary, #fff);
            font-weight: 600;
            padding: 16px 28px;
            border-radius: 50px;
            max-width: 800px;
            margin: 40px auto 20px;
            text-align: center;
            font-size: 1em;
            backdrop-filter: blur(10px);
        }
        
        .banner strong {
            color: var(--primary-color, #a7f300);
        }

        .pricing-container {
            flex: 1;
            text-align: center;
            padding: 60px 20px 100px;
            max-width: 1600px;
            margin: 0 auto;
        }

        h1 {
            font-size: 3.2em;
            color: var(--text-primary, #fff);
            margin-bottom: 16px;
            font-weight: 700;
        }

        p.intro {
            font-size: 1.15rem;
            margin-bottom: 70px;
            color: var(--text-secondary, #aaa);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* ===== Pricing Cards ===== */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            justify-content: center;
            align-items: stretch;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg, rgba(30, 30, 30, 0.5));
            border-radius: 20px;
            padding: 40px 28px;
            border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            background: var(--card-hover, rgba(40, 40, 40, 0.7));
            border-color: rgba(167, 243, 0, 0.2);
            box-shadow: var(--shadow-lg, 0 20px 60px rgba(0, 0, 0, 0.4));
        }

        .pricing-card h2 {
            font-size: 1.6em;
            color: var(--text-primary, #fff);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .price {
            font-size: 2.8em;
            font-weight: 700;
            color: var(--primary-color, #a7f300);
            margin-bottom: 24px;
            line-height: 1;
        }

        .features {
            font-size: 0.9em;
            color: var(--text-secondary, #bbb);
            margin-bottom: 28px;
            line-height: 1.6;
            text-align: center;
            width: 100%;
            flex-grow: 1;
        }

        .features strong {
            color: var(--text-primary, #fff);
            font-weight: 600;
        }
        
        .save-text {
            display: inline-block;
            margin-top: 8px;
            color: var(--primary-color, #a7f300);
            font-size: 0.95em;
            font-weight: 600;
        }
        
        /* ===== Bonus Badge ===== */
        .bonus-badge {
            background: linear-gradient(135deg, rgba(167, 243, 0, 0.15) 0%, rgba(167, 243, 0, 0.08) 100%);
            border: 1px solid rgba(167, 243, 0, 0.3);
            color: var(--primary-color, #a7f300);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 16px;
            backdrop-filter: blur(10px);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.02); }
        }

        /* ===== Call to Action Buttons ===== */
        .cta-button {
            background: var(--bg-tertiary, rgba(255, 255, 255, 0.05));
            color: var(--text-primary, #fff);
            border: 2px solid var(--border-color, rgba(255, 255, 255, 0.1));
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 1.05em;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: var(--bg-secondary, rgba(255, 255, 255, 0.1));
            border-color: var(--primary-color, rgba(167, 243, 0, 0.5));
            transform: translateY(-2px);
        }

        .cta-button.primary {
            background: linear-gradient(135deg, var(--primary-color, #a7f300) 0%, var(--primary-hover, #92d900) 100%);
            color: var(--primary-text, #1a1a1a);
            border: none;
            box-shadow: 0 4px 15px rgba(167, 243, 0, 0.3);
        }

        .cta-button.primary:hover {
            box-shadow: 0 8px 25px rgba(167, 243, 0, 0.4);
            transform: translateY(-3px);
        }

        /* ===== Pro Card Styling ===== */
        .pro-card.highlight {
            border: 2px solid rgba(167, 243, 0, 0.5);
            background: var(--card-hover, rgba(40, 40, 40, 0.7));
            box-shadow: 0 20px 60px rgba(167, 243, 0, 0.25), 0 0 0 1px rgba(167, 243, 0, 0.1);
            z-index: 2;
            position: relative;
        }
        
        .pro-card.highlight::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(167, 243, 0, 0.6), rgba(167, 243, 0, 0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0.8;
        }

        .pro-card.highlight:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(167, 243, 0, 0.35), 0 0 0 1px rgba(167, 243, 0, 0.2);
        }

        .pro-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-color, #a7f300) 0%, var(--primary-hover, #92d900) 100%);
            color: var(--primary-text, #1a1a1a);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(167, 243, 0, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 4px 15px rgba(167, 243, 0, 0.3); }
            to { box-shadow: 0 6px 25px rgba(167, 243, 0, 0.5); }
        }

        /* ===== CTA Banner ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(167, 243, 0, 0.12) 0%, rgba(167, 243, 0, 0.06) 100%);
            border: 2px solid rgba(167, 243, 0, 0.25);
            color: var(--text-primary, #fff);
            font-size: 1.25em;
            font-weight: 600;
            padding: 24px 40px;
            border-radius: 16px;
            margin-top: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(167, 243, 0, 0.15);
            transition: all 0.3s ease;
        }
        
        .cta-banner:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(167, 243, 0, 0.25);
            border-color: rgba(167, 243, 0, 0.4);
        }
        
        /* ===== Responsive ===== */
        @media (max-width: 1200px) {
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                max-width: 800px;
            }
            
            .pricing-card {
                padding: 44px 32px;
            }
        }

        @media (max-width: 768px) {
            .pricing-container {
                padding: 40px 16px 80px;
            }

            h1 {
                font-size: 2.5em;
            }

            p.intro {
                font-size: 1em;
                margin-bottom: 50px;
            }

            .banner {
                font-size: 0.9em;
                padding: 14px 24px;
                margin: 30px 16px 20px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 450px;
            }

            .pricing-card {
                padding: 40px 28px;
            }

            .pro-badge {
                top: 16px;
                right: 16px;
                font-size: 0.8em;
                padding: 6px 14px;
            }

            .price {
                font-size: 3em;
            }

            .features {
                font-size: 0.95em;
            }
            
            .cta-banner {
                font-size: 1.1em;
                padding: 20px 28px;
                margin-top: 50px;
            }
            
            .bonus-badge {
                font-size: 0.8em;
                padding: 6px 12px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2em;
            }

            .pricing-card {
                padding: 36px 24px;
            }

            .pricing-card h2 {
                font-size: 1.6em;
            }

            .price {
                font-size: 2.8em;
                margin-bottom: 24px;
            }

            .features {
                font-size: 0.9em;
                margin-bottom: 28px;
            }

            .cta-button {
                padding: 14px 32px;
                font-size: 1em;
            }
            
            .cta-banner {
                font-size: 1em;
                padding: 18px 24px;
                margin-top: 40px;
            }
            
            .bonus-badge {
                font-size: 0.75em;
                padding: 6px 10px;
            }
        }