/* إعدادات النظام الأساسية */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Readex Pro', sans-serif;
        } */

        :root {
            /* ألوان مستوحاة من لوجو FOZAN PLUS AI */
            --brand-blue: #0056ff;
            --brand-cyan: #22d3ee;
            --brand-silver: #e2e8f0;
            --card-bg: rgba(16, 26, 45, 0.5);
            --card-border: rgba(255, 255, 255, 0.08);
            --card-hover-border: rgba(34, 211, 238, 0.4);
            --text-main: #ffffff;
            --text-muted: #94a3b8;
        }

        /* 
           تطبيق الخلفية الخاصة بك مع تعديلها لتكون ثابتة ومحيطية 
        */
        body {
            position: relative;
            background: 
                radial-gradient(circle at 15% 20%, rgba(96,165,250,.12), transparent 40%),
                radial-gradient(circle at 85% 10%, rgba(34,211,238,.08), transparent 35%),
                linear-gradient(180deg, #0A0A14 0%, #0D1322 35%, #101A2D 100%);
            color: var(--text-main);
            min-height: 100vh;
            padding: 60px 20px 100px;
           
            overflow-x: hidden;
        }

        /* تأثير الشبكة (السطور المتقاطعة) الخاصة بك */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        /* تأثير التوهج في الزاوية الخاص بك */
        body::after {
            content: "";
            position: fixed;
            width: 700px;
            height: 700px;
            right: -250px;
            top: -250px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59,130,246,.12), transparent 70%);
            filter: blur(120px);
            z-index: 0;
            pointer-events: none;
        }

        /* الحاوية الرئيسية */
        .about-wrapper {
            max-width: 1200px;
            width: 100%;
            z-index: 1; /* ليكون فوق الخلفية */
            position: relative;
        }

        /* ترويسة اللوجو والترحيب */
        .brand-hero {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 1s ease-out;
        }

        .brand-logo {
            max-width: 220px;
            height: auto;
            margin: 0 auto 20px;
            display: block;
            filter: drop-shadow(0 0 25px rgba(0, 86, 255, 0.4));
            transition: transform 0.4s ease;
        }

        .brand-logo:hover {
            transform: scale(1.05);
        }

        .brand-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--brand-silver) 20%, var(--brand-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .brand-hero p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* نظام الشبكة (Bento Grid) */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }

        /* تنسيق البطاقات الزجاجية الراقية */
        .bento-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-top: 1px solid rgba(255, 255, 255, 0.15); /* إضاءة علوية خفيفة */
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0; right: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .bento-card:hover {
            transform: translateY(-8px);
            border-color: var(--card-hover-border);
            box-shadow: 0 20px 40px rgba(0, 86, 255, 0.2);
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        /* أحجام البطاقات */
        .col-12 { grid-column: span 12; }
        .col-8 { grid-column: span 8; }
        .col-4 { grid-column: span 4; }
        .col-6 { grid-column: span 6; }

        /* الأيقونات والعناوين داخل البطاقات */
        .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(0, 86, 255, 0.15), rgba(34, 211, 238, 0.15));
            border: 1px solid rgba(34, 211, 238, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--brand-cyan);
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
        }

        .bento-card h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-main);
            position: relative;
            z-index: 1;
        }

        .bento-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--brand-cyan);
            position: relative;
            z-index: 1;
        }

        .bento-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* تصميم القوائم (أهم الاشتراكات) */
        .ai-list {
            list-style: none;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }

        .ai-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .ai-list li:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(-5px);
            border-color: rgba(34, 211, 238, 0.2);
        }

        .ai-list li i {
            color: var(--brand-cyan);
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

        .ai-list li strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .ai-list li span {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* حاوية الباقات */
        .packages-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .tag {
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(0, 86, 255, 0.1), rgba(34, 211, 238, 0.1));
            border: 1px solid rgba(34, 211, 238, 0.2);
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--brand-silver);
        }

        /* أنيميشن الدخول */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* التجاوب (Responsive) */
        @media (max-width: 1024px) {
            .col-8, .col-4 { grid-column: span 12; }
            .col-6 { grid-column: span 6; }
        }

        @media (max-width: 768px) {
            body { padding: 40px 15px; }
            .col-6 { grid-column: span 12; }
            .brand-hero h1 { font-size: 2.2rem; }
            .bento-card { padding: 25px; }
        }