        /* Force White Background & Speed Optimization */
        @import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

        body, html { background: #ffffff !important; margin: 0; padding: 0; color: #1e293b; overflow-x: hidden; }
        .entry-content { background: transparent !important; padding: 0 !important; max-width: 100% !important; }
        
        :root {
            --primary: #6d28d9;
            --primary-hv: #5b21b6;
            --primary-color: #6d28d9;
            --primary-light: #8b5cf6;
            --bg-dark: #0f172a;
            --accent: #fbbf24;
            --accent-color: #fbbf24;
            --card-bg: rgba(255, 255, 255, 0.04);
            --border: rgba(255, 255, 255, 0.08);
            --transition: all 0.25s ease;
        }

        #alkifah-pricing-page,
        #alkifah-pricing-page *,
        #pricing-wizard-container,
        #pricing-wizard-container * {
            font-family: 'Almarai', 'Cairo', 'Tahoma', sans-serif !important;
        }

        #pricing-wizard-container {
            width: 100%;
            max-width: 1000px;
            background: var(--bg-dark);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .wizard-hero {
            height: 450px;
            background-image: linear-gradient(rgba(12, 8, 30, 0.44), rgba(30, 27, 75, 0.38)), url('/wp-content/themes/blocksy/assets/legal/vision-2030-2000x1125%20copy.webp');
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            background-color: #1e1b4b;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .wizard-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 15, 30, 0.18);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding: 235px 20px 20px;
        }

        .hero-corner-logo {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 112px;
            height: 112px;
            z-index: 11;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 16px;
            padding: 8px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-corner-logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.6);
            letter-spacing: -1px;
            opacity: 0;
            animation: heroTextRise 900ms ease-out 120ms forwards;
        }

        .hero-content p {
            font-size: 1.5rem;
            color: #ffd84d;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 2px 0 rgba(0,0,0,0.65), 0 8px 24px rgba(0,0,0,0.7);
            background: rgba(15, 23, 42, 0.42);
            border: 1px solid rgba(255, 216, 77, 0.35);
            border-radius: 12px;
            padding: 10px 18px;
            display: inline-block;
            margin-top: 16px;
            opacity: 0;
            animation: heroTextRise 950ms ease-out 360ms forwards;
        }

        @keyframes heroTextRise {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-content h2,
            .hero-content p {
                animation: none;
                opacity: 1;
            }
        }

        .progress-tracker {
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 20px 0;
            background: rgba(0,0,0,0.3);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .progress-dot {
            width: 40px;
            height: 5px;
            border-radius: 4px;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: var(--primary);
            box-shadow: 0 0 15px var(--primary);
            width: 100px;
        }

        .progress-dot.completed {
            background: #22c55e;
        }

        .wizard-steps-content { 
            padding: 60px;
            min-height: 550px;
        }
        
        .step-panel h3 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: #ffffff;
            font-weight: 900;
            display: block;
            border-right: 5px solid var(--accent);
            padding-right: 20px;
        }

        .options-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .premium-card { 
            background: var(--card-bg);
            border: 1px solid var(--border);
            padding: 30px; 
            border-radius: 16px; 
            cursor: pointer; 
            transition: transform 0.2s ease, background 0.2s ease;
            text-align: center;
        }

        .premium-card:hover { 
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.02);
        }

        .premium-card.selected { 
            background: linear-gradient(135deg, rgba(109, 40, 217, 0.4), rgba(139, 92, 246, 0.1));
            border-color: var(--primary);
            box-shadow: 0 20px 80px -20px rgba(109, 40, 217, 0.6);
        }

        .premium-card h4 { font-size: 1.8rem; font-weight: 800; color: #ffffff; margin: 0; }
        .premium-card p { font-size: 1.1rem; color: #d1d5db; margin: 0; line-height: 1.6; }
        
        .card-badge {
            font-size: 1.1rem;
            text-transform: none;
            color: var(--accent);
            background: rgba(251, 191, 36, 0.12);
            border: 1px solid rgba(251, 191, 36, 0.25);
            padding: 8px 20px;
            border-radius: 12px;
            font-weight: 900;
            margin-top: 10px;
            display: inline-block;
        }

        .wizard-footer {
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0,0,0,0.4);
        }

        .btn-nav {
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .btn-prev { background: rgba(255,255,255,0.1); color: white; }
        .btn-next { background: var(--primary-color); color: white; }

        .summary-box {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 30px;
            padding: 40px;
        }

        #pdf-export-template { position: absolute; left: -9999px; width: 800px; padding: 50px; background: white; }
        .pdf-header { display: flex; justify-content: space-between; border-bottom: 3px solid var(--primary-color); padding-bottom: 20px; margin-bottom: 30px; }
        .pdf-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        .pdf-table th, .pdf-table td { padding: 12px; border-bottom: 1px solid #eee; text-align: right; }

        .feature-row {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 22px 25px;
            border-radius: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: var(--transition);
            color: #ffffff;
        }

        .feature-row:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--primary-light);
            transform: translateX(-5px);
        }

        .feature-row.checked {
            background: rgba(109, 40, 217, 0.2);
            border-color: var(--primary-color);
            box-shadow: inset 0 0 20px rgba(109, 40, 217, 0.1);
        }

        .feature-row input[type="checkbox"] {
            width: 22px;
            height: 22px;
            accent-color: var(--primary-color);
            cursor: pointer;
        }

        .feature-row span { font-size: 1.1rem; font-weight: 600; color: #fff; }
        .feature-row b { color: var(--accent-color); font-size: 1.1rem; }

        label { color: #ffffff; font-weight: 700; font-size: 1rem; }

        #payment-plan-select option,
        #language-select option {
            color: #111827;
            background: #ffffff;
        }

        .selected-indicator {
            margin-top: 8px;
            color: #cbd5e1;
            font-size: 0.9rem;
        }
        
        .step-panel {
            display: none;
            animation: panelFadeIn 0.6s ease-out;
        }

        @keyframes panelFadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step-panel.active { display: block; }
        
        .whatsapp-btn {
            background: #25d366;
            color: white;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 800;
            padding: 18px 40px;
            transition: var(--transition);
        }

        .whatsapp-btn:hover { background: #128c7e; transform: scale(1.05); }

        .summary-line { 
            display: flex; 
            justify-content: space-between; 
            padding: 15px 0; 
            border-bottom: 1px solid rgba(255,255,255,0.05);
            color: white;
        }
        .total-line { 
            font-weight: 900; 
            color: var(--primary-light); 
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding-top: 160px;
            }

            .hero-corner-logo {
                width: 86px;
                height: 86px;
                top: 12px;
                right: 12px;
                border-radius: 12px;
                padding: 6px;
            }
        }
