    :root {
            --bg-color: #050509;
            --primary-glow: #01E3F1;
            --text-gray: #b0b0b0;
            --white: #ffffff;
            --nav-bg: rgba(5, 5, 9, 0.9);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- Navbar Styles --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--nav-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(1, 227, 241, 0.1);
            
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 8%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo img {
            height: 50px; /* ظبط مقاس اللوجو بتاعك */
            transition: transform 0.3s ease;
        }
        .logo img:hover {
    transform: scale(1.05);
}

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
}

        .nav-links a:hover, .nav-links a.active {
    color: var(--primary-glow) !important;
    opacity: 1;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}
/* --- الجزء الخاص بالمنيو والأزرار في الموبايل --- */
@media screen and (max-width: 768px) {
    /* 1. إخفاء أزرار الديسكتوب اللي بره */
    .auth-btns {
        display: none !important;
    }

    /* 2. تحويل القائمة لشكل رأسي */
    .nav-links {
        display: none; /* هتظهر لما تضيف class 'active' بالجافا سكريبت */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0b0b0b; /* نفس لون الخلفية الغامق */
        padding: 20px 0;
        gap: 15px;
        z-index: 1000;
    }

    /* 3. إظهار القائمة لما تدوس على الـ Toggle */
    .nav-links.active {
        display: flex !important;
    }

    /* 4. تنسيق أزرار Register و Login جوه المنيو */
    .nav-links li.mobile-auth {
        display: block !important;
        width: 80%; /* عشان الزرار ميبقاش لازق في الحواف */
    }

    .nav-links li.mobile-auth a {
        display: block;
        width: 100%;
        padding: 12px 0;
        text-align: center;
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
    }

    /* زر الـ Outline (Register) */
    .btn-outline {
        border: 1px solid #00bcd4;
        color: #00bcd4;
    }

    /* زر الـ Solid (Login) */
    .btn-outline2 {
        background-color: #00bcd4;
        color: #000;
        border: none;
    }
}

/* --- تأكيد إخفاء أزرار الموبايل في شاشة الكمبيوتر --- */
@media screen and (min-width: 769px) {
    .mobile-auth {
        display: none !important;
    }
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-glow);
    transition: 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}
        .auth-btns .btn-outline {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--primary-glow);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
        }
         
        .btn-outline:hover {
            background: var(--primary-glow);
            color: var(--bg-color);
            box-shadow: 0 0 15px var(--primary-glow);
        }
         
        .btn-outline2{
           background: var(--primary-glow);
            border: 1.5px solid var(--primary-glow);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
             cursor: pointer;
    text-decoration: none;
    display: inline-block;
        }
.btn-outline2:hover {
            background: var(--primary-glow);
            color: var(--bg-color);
            box-shadow: 0 0 15px var(--primary-glow);
        }
        .btn-outline2 {
    background: var(--primary-glow);
    color: #000 !important; /* لون النص أسود أو غامق جداً عشان يبان فوق الفسفوري */
}

.btn-outline {
    border: 1px solid rgba(1, 227, 241, 0.4); /* تخفيف حدة البوردر */
    background: rgba(1, 227, 241, 0.05); /* خلفية خفيفة جداً */
}

/* تحسين شكل الأزرار */
.btn-outline, .btn-outline2 {
    padding: 0.6rem 1.8rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 10px; /* زاوية أنعم */
}

/* تأثير نبض خفيف للزرار الأساسي */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(1, 227, 241, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(1, 227, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(1, 227, 241, 0); }
}

.btn-outline2 {
    animation: pulse 2s infinite;
}
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--primary-glow);
            transition: 0.3s;
        }

        /* --- Hero Section Styles --- */
        .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* إضافة Linear Gradient فوق الصورة عشان الكلام يظهر */
    background: 
        linear-gradient(90deg, rgba(5, 5, 9, 0.9) 0%, rgba(5, 5, 9, 0.4) 50%, transparent 100%),
        url('hreo.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 0 8%;
}

       .hero-container {
    flex-direction: column; /* الكلام فوق بعضه زي الصور البريميوم */
    max-width: 900px;
}

        .hero-text {
            flex: 1;
        }

       .hero-text h1 {
    font-size: 4.5rem; /* كبرناه أكتر */
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #fff 60%, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        .highlight {
            color: var(--primary-glow);
            text-shadow: 0 0 20px rgba(1, 227, 241, 0.4);
        }

        .hero-text p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 550px;
            margin-bottom: 2.5rem;
        }

        .scan-btn {
            background: var(--primary-glow);
            color: #000;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s ease;
            box-shadow: 0 5px 20px rgba(1, 227, 241, 0.3);
        }

        .scan-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(1, 227, 241, 0.5);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            max-width: 650px;
            filter: drop-shadow(0 0 50px rgba(1, 227, 241, 0.15));
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* --- Responsive Queries --- */
        @media (max-width: 992px) {
            .hero-text h1 { font-size: 2.8rem; }
            .nav-links { gap: 1rem; }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--bg-color);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: 0.4s;
            }

            .nav-links.active { left: 0; }

            .hero-container {
                flex-direction: column;
                text-align: center;
                margin-top: 50px;
            }

            .hero-text p { margin: 0 auto 2rem auto; }
            .scan-btn { margin: 0 auto; }
            
            .auth-btns { display: none; } /* مخفية للموبايل لتبسيط التصميم */
        }

        /* Section Container */
.features {
    padding: 80px 8%;
    background-color: #050509;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: linear-gradient(to right, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-glow);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Grid System */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 أعمدة في الديسكتوب */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Style */
.feature-card {
    background-color: #121217;
    border-radius: 24px;
    overflow: hidden; /* ضروري جداً لقص حواف الصورة لتتبع انحناء الكارت */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: #01E3F1;
    box-shadow: 0 10px 30px rgba(1, 227, 241, 0.1);
}

/* Image Wrapper */
.card-img-wrapper {
    width: 100%;
    height: 220px; /* يمكنك زيادة الارتفاع حسب رغبتك */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* فاصل بسيط بين الصورة والنص */
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    /* السطر القادم هو الأهم: يجعل الصورة تملأ الكارت بالكامل */
    object-fit: cover; 
    /* إزالة أي هوامش كانت موجودة */
    padding: 0;
    display: block;
}

/* Text inside Card */
.card-text {
    padding: 30px 25px;
    text-align: left; /* المحاذاة لليسار زي الصور */
}

.card-text h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-text p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive (Mobile & Tablets) --- */

@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr); /* كارتين في الصف للتابلت */
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 5%;
    }

    .features-container {
        grid-template-columns: 1fr; /* كارت واحد في الصف للموبايل */
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-text {
        padding: 20px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 8%;
    background-color: var(--bg-color); /* #050509 */
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: #0d0d14; /* أفتح من الخلفية بلمسة بسيطة */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* حركة عند تمرير الماوس */
.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 227, 241, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(1, 227, 241, 0.1);
}

.step-img {
    width: 100%;
    aspect-ratio: 4/3; /* عرض مناسب لصور الخطوات */
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(1, 227, 241, 0.1);
    background: #000;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1); /* عشان الصور تنطق أكتر */
}
.step-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 9, 0.8));
}
.step-info {
    padding: 30px;
    text-align: left;
    position: relative;
}
.step-info::before {
    content: attr(data-number); /* هنضيف دي في الـ HTML */
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(1, 227, 241, 0.03); /* رقم شفاف جداً */
    z-index: 0;
}

.step-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-info h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
}
.step-info p {
    color: var(--text-dim); /* #b0b0b0 */
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Responsive (الموبايل والتابلت) --- */

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 5%;
    }

    .steps-grid {
        grid-template-columns: 1fr; /* كارت واحد في الصف */
        gap: 25px;
    }

    .step-info h3 {
        font-size: 1.2rem;
    }
}

.pricing {
    padding: 100px 5%;
    background-image: url('9a42d615ecaa60f2b8715838b0e1071542048ee5.png'); /* حط اسم ملف الصورة بتاعك هنا */
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 أعمدة للكروت */
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    align-items: stretch; /* يخلي كل الكروت طول واحد مهما كان الكلام */
}

.price-card {
    background: rgba(255, 255, 255, 0.05); /* شفافية خفيفة جداً */
    backdrop-filter: blur(10px); /* تأثير الزجاج */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 15px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden; /* عشان تأثير اللمعة اللي هنعمله */
}

.price-card:nth-child(3) {
    border: 1px solid var(--primary-glow);
    background: rgba(1, 227, 241, 0.03);
    transform: scale(1.05); /* خليه أكبر سنة بسيطة */
    z-index: 2;
}

/* إضافة كلمة "Recommended" فوق الكارت المميز */
.price-card:nth-child(3)::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-glow);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 0;
    letter-spacing: 1px;
}

/* تأثير الهوفر "الطرش" */
.price-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(1, 227, 241, 0.1);
}
/* الكارت الأول المميز في الصورة */
.highlight-card {
    background: rgba(1, 227, 241, 0.05);
    border: 1px solid rgba(1, 227, 241, 0.3);
}

.card-icon img {
    width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(1, 227, 241, 0.5));
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);

}

.amount span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.features-list {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
    flex-grow: 1;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0 12px 25px;
    margin-bottom: 0;

}

.features-list li {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

/* علامة الـ Bullet المضيئة */
.features-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.price-card:nth-child(3) .btn-outline-card {
    background: var(--primary-glow);
    color: #000;
    font-weight: 800;
}
.btn-primary {
    background: var(--accent-color);
    color: #000;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline-card {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-card:hover {
    background: rgba(1, 227, 241, 0.1);
}

/* --- Responsive (الموبايل) --- */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(3, 1fr); /* 3 كروت في الصف للتابلت */
    }
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr; /* كارت واحد للموبايل */
        padding: 0 10%;
    }
}

.final-cta {
    position: relative;
    width: 100%;
    min-height: 600px; /* أو حسب ارتفاع الصورة عندك */
    display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: flex-start; /* الكلام يبدأ من الشمال فوق الصورة */
    padding: 0 10%;
    
    /* ضبط صورة الخلفية */
   background: 
        radial-gradient(circle at 20% 50%, rgba(1, 227, 241, 0.15) 0%, transparent 50%),
        linear-gradient(90deg, rgba(5, 5, 9, 0.9) 0%, rgba(5, 5, 9, 0.2) 100%),
        url('bd7b39182f41cee9c276f5ae396081101a65f89c.png') no-repeat center center;
        background-size: cover;
    border-top: 1px solid rgba(1, 227, 241, 0.1);
    border-bottom: 1px solid rgba(1, 227, 241, 0.1);
    overflow: hidden;
}
@keyframes buttonPulse {
    0% { box-shadow: 0 0 20px rgba(1, 227, 241, 0.5); }
    50% { box-shadow: 0 0 40px rgba(1, 227, 241, 0.8); }
    100% { box-shadow: 0 0 20px rgba(1, 227, 241, 0.5); }
}
cta-btn-glow {
    animation: buttonPulse 3s infinite ease-in-out;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* بيدي شكل رسمي أكتر */
}
/* طبقة تعتيم اختيارية لو الصورة فاتحة ومحتاج تبرز الكلام */
.final-cta::after {
    content: '</>';
    position: absolute;
    right: 10%;
    bottom: 10%;
    font-family: monospace;
    font-size: 15rem;
    color: rgba(1, 227, 241, 0.03);
    font-weight: 900;
    transform: rotate(-15deg);
    pointer-events: none;
}
cta-btn-glow:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: #fff;
    color: #050509;
}

.cta-overlay-content {
    position: relative;
    z-index: 2; /* عشان يكون فوق طبقة التعتيم */
    max-width: 600px;
}

.cta-overlay-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, #a2f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-overlay-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn-glow {
    background-color: #01E3F1;
    color: #000;
    border: none;
    padding: 16px 45px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(1, 227, 241, 0.5);
    transition: all 0.3s ease;
}

.cta-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(1, 227, 241, 0.8);
    background-color: #fff; /* يقلب أبيض عند الهوفر لمسة بريميوم */
}

/* --- Responsive (الموبايل) --- */
@media (max-width: 768px) {
    .final-cta {
        justify-content: center; /* الكلام يتوسط في الموبايل */
        text-align: center;
        min-height: 450px;
        padding: 0 5%;
    }

    .cta-overlay-content h2 {
        font-size: 2.2rem;
    }

    .cta-overlay-content p {
        font-size: 1rem;
    }
}

.main-footer {
    padding: 80px 0 30px;
    background: #050509; /* نفس لون الخلفية الأساسي */
    border-top: 1px solid rgba(1, 227, 241, 0.1);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
}

/* الجزء الشمال */
.footer-brand {
    flex: 1.5;
}
.footer-logo span {
    background: linear-gradient(to right, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #01E3F1; /* لون الهيدينج اللبني */
    margin-bottom: 20px;
}

.footer-logo img {
    height:70px;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 450px;
}

/* الجزء اليمين */
.footer-links-wrapper {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #01E3F1;
}

/* السوشيال ميديا والأيقونات */
.footer-social {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.social-column a:hover {
    color: var(--primary-glow) !important;
    transform: translateX(5px); /* حركة بسيطة يمين بتدي إحساس بالتفاعل */
}



/* الخط الفاصل اللي في الصورة */
.v-line {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    height: 60px;
    justify-content: center;
}

/* --- Responsive (الموبايل) --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .v-line {
        border-left: none;
        padding-left: 0;
        height: auto;
    }
}

.scan-wrapper {
    min-height: 100vh;
    background: url('9a42d615ecaa60f2b8715838b0e1071542048ee5.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

/* مسار الصفحة فوق على الشمال */
.breadcrumb {
    align-self: flex-start;
    margin-left: 5%;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 30px;
}
.breadcrumb i { margin-right: 8px; }
.breadcrumb span { color: #01E3F1; font-weight: bold; }

/* الكارت الكبير */
.main-scan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(1, 227, 241, 0.2); /* البوردر المضيء */
    border-radius: 40px;
    width: 100%;
    max-width: 1100px;
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
@keyframes borderPulse {
    0% { border-color: rgba(1, 227, 241, 0.2); box-shadow: 0 0 20px rgba(0,0,0,0.5); }
    50% { border-color: rgba(1, 227, 241, 0.6); box-shadow: 0 0 30px rgba(1, 227, 241, 0.1); }
    100% { border-color: rgba(1, 227, 241, 0.2); box-shadow: 0 0 20px rgba(0,0,0,0.5); }
}

.main-scan-card {
    animation: borderPulse 4s infinite ease-in-out;
    /* باقي الكود بتاعك زي ما هو */
}

.scan-logo-large {
    width: 100px;
   
}

.scan-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.scan-header p {
    color: #b0b0b0;
    margin-bottom: 40px;
}

/* الصندوق الداخلي الغامق */
.inner-scan-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(1, 227, 241, 0.4);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    position: relative;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(1, 227, 241, 0.02));
    /* إضافة نمط تقني خفيف */
    background-image: 
        linear-gradient(rgba(1, 227, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 227, 241, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.image-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    outline: none;
}

/* الأزرار */
.scan-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-cyan {
    background: #01E3F1;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #01E3F1;
    color: #01E3F1;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex; /* اتعدلت عشان الـ label */
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(1, 227, 241, 0.1);
    transform: translateY(-3px);
}

/* الموبايل */
@media (max-width: 768px) {
    .scan-actions { flex-direction: column; }
    .main-scan-card { padding: 40px 20px; }
}
.contact-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5%;
    background: radial-gradient(circle at 10% 20%, rgba(1, 227, 241, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(1, 227, 241, 0.05) 0%, transparent 40%);
}

.contact-container {
    border-radius: 30px;
    display: flex;
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    background: rgba(18, 18, 23, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(1, 227, 241, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* الجزء الأيسر */
.contact-info {
    flex: 1;
    background: #18181f; /* أغمق قليلاً للتمييز */
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #18181f 0%, #0d0d14 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, #01E3F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: auto; /* لدفع السوشيال ميديا للأسفل */
    color: #01E3F1;
    text-shadow: 0 0 10px rgba(1, 227, 241, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.social-icon {
    background: rgba(255, 255, 255, 0.03) !important; /* لون موحد بريميوم */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-icon:hover {
    border-color: #01E3F1;
    color: #01E3F1;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(1, 227, 241, 0.2);
}



/* الجزء الأيمن (الفورم) */
.contact-form-wrapper {
    flex: 1.5;
    padding: 60px 50px;
}

.contact-form-wrapper h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    color: #808080;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    background: rgba(1, 227, 241, 0.02);
    box-shadow: 0 0 15px rgba(1, 227, 241, 0.1);
}


.submit-btn {
    background: #01E3F1;
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.submit-btn:hover::after {
    left: 100%;
}

/* موبايل */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        padding: 40px;
    }
    .input-row {
        flex-direction: column;
    }
}

/* الخلفية العامة للصفحة */
.hero-page {
    background-color: #050509;
    background-image: 
        radial-gradient(circle at 50% 50%, #0a192f 0%, #050509 100%),
        url('9a42d615ecaa60f2b8715838b0e1071542048ee5.png'); /* اختياري: صورة نقاط صغيرة كنجوم */
    background-attachment: fixed;
    color: #fff;
    padding: 100px 5% 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(1, 227, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 227, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.main-title {
   font-size: 3rem;
    background: linear-gradient(to bottom, #fff 50%, #01E3F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 80px;
}

/* شبكة الكروت */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

/* الكارت المطور */
.feature-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(1, 227, 241, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card-v2 img {
    animation: iconFloat 4s ease-in-out infinite;
    transition: 0.3s ease;
}

.feature-card-v2:hover {
    border-color: #01E3F1;
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(1, 227, 241, 0.15);
}

/* تأثير التوهج خلف الأيقونة */
.feature-card-v2 img {
    
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(1, 227, 241, 0.5));
}

.feature-card-v2 h3 {
    position: relative;
    padding-bottom: 10px;
}

.feature-card-v2 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #01E3F1;
    box-shadow: 0 0 10px #01E3F1;
}

.feature-card-v2 p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mission-container {
    margin-top: 120px;
    padding: 60px;
    background: radial-gradient(circle at center, rgba(1, 227, 241, 0.05) 0%, transparent 70%);
    border-radius: 40px;
}
/* سكشن الأزرار السفلي */
.mission-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mission-container p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-get-started {
    background: #01E3F1;
    color: #000;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(1, 227, 241, 0.4);
    transition: 0.3s;
}
.btn-get-started:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(1, 227, 241, 0.6);
    background-color: #fff;
}
.btn-view-pricing {
    background: transparent;
    color: #01E3F1;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: bold;
    border: 1px solid #01E3F1;
    cursor: pointer;
}

/* للتجاوب مع الموبايل */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 1.8rem; }
}

.pricing-page {
    background-color: #050509;
    background-image: radial-gradient(circle at 50% 50%, #0a1b2e 0%, #050509 100%);
    padding: 100px 5%;
    text-align: center;
    color: #fff;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.03); /* تأثير زجاجي شفاف جداً */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(1, 227, 241, 0.15);
    border-radius: 25px;
    padding: 40px 30px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #01E3F1;
    box-shadow: 0 10px 40px rgba(1, 227, 241, 0.1);
}

.icon-box img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(1, 227, 241, 0.6));
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #fff;
}

.price span {
    font-size: 0.9rem;
    color: #888;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.plan-features li {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    font-size: 6px; /* نقطة صغيرة كأنها دائرة */
    color: #01E3F1;
}

/* الأزرار */
.btn-cyan-fill {
    width: 100%;
    background: #01E3F1;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline-cyan {
    width: 100%;
    background: transparent;
    color: #01E3F1;
    border: 1px solid rgba(1, 227, 241, 0.5);
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-cyan:hover {
    background: rgba(1, 227, 241, 0.1);
    border-color: #01E3F1;
}

/* التجاوب للموبايل */
@media (max-width: 768px) {
    .pricing-title { font-size: 1.8rem; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* --- تنسيق شريط التمرير (Scrollbar) --- */

/* 1. المتصفحات اللي بتدعم Webkit (زي Chrome, Edge, Safari) */

/* مساحة الشريط ككل */
::-webkit-scrollbar {
    width: 10px; /* عرض الشريط الرأسي */
    height: 10px; /* ارتفاع الشريط الأفقي */
}

/* الخلفية اللي بيمشي عليها الشريط */
::-webkit-scrollbar-track {
    background: #050509; /* نفس لون خلفية الصفحة الغامق */
}

/* الجزء المتحرك (المقبض) */
::-webkit-scrollbar-thumb {
    background: #01E3F1; /* اللون الفسفوري بتاعك */
    border-radius: 10px; /* يخلي حواف الشريط دائرية */
    border: 2px solid #050509; /* بيدي مسافة بسيطة بين الشريط والحافة */
}

/* تأثير عند تمرير الماوس فوق الشريط */
::-webkit-scrollbar-thumb:hover {
    background: #00c4d1; /* يغمق شوية عند الهوفر */
}

/* 2. متصفح Firefox (بيدعم خصائص مختلفة) */
* {
    scrollbar-width: thin;
    scrollbar-color: #01E3F1 #050509;
}
/* تنسيق قسم الترحيب بالكامل */
.user-welcome-section {
    display: flex;
    align-items: center;
    gap: 15px; /* مسافة بين الاسم والزرار */
    font-family: inherit;
}

/* تنسيق جملة Welcome */
.welcome-text {
    color: #fff; /* لون أبيض */
    font-size: 16px;
}

.welcome-text b {
    color: #4db6ac; /* لون تركواز هادي للاسم */
    font-weight: 600;
}

/* تنسيق زرار Logout الاحترافي */
.btn-logout {
    background: transparent;
    border: 2px solid #ff4d4d; /* إطار أحمر */
    color: #ff4d4d;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease; /* أنيميشن ناعم */
}

/* تأثير عند الوقوف بالماوس على الزرار (Hover) */
.btn-logout:hover {
    background: #ff4d4d; /* يملأ أحمر */
    color: #fff; /* النص يبقى أبيض */
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5); /* إضاءة خفيفة */
}

/* منع التداخل مع أي زراير تانية */
.whale-launcher-style {
    position: fixed; bottom: 30px; right: 30px;
    width: 75px; height: 75px; z-index: 9999; cursor: pointer;
}
.whale-launcher-style img {
    width: 100%; border-radius: 50%; border: 2px solid #00bcd4;
    position: relative; z-index: 2; background: #000;
}
.whale-pulse-effect {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: rgba(0, 188, 212, 0.4); animation: whale-pulse-anim 2s infinite; z-index: 1;
}
@keyframes whale-pulse-anim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whale-glass-card {
    position: fixed; bottom: 115px; right: 30px; width: 330px;
    background: rgba(15, 15, 15, 0.98); backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 182, 172, 0.4); border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6); z-index: 9999;
    display: flex; flex-direction: column; overflow: hidden;
}
.whale-hidden { display: none !important; }

.whale-chat-header {
    background: linear-gradient(135deg, #00bcd4, #4db6ac);
    padding: 12px 15px; display: flex; align-items: center; gap: 10px;
}
.whale-status { width: 8px; height: 8px; background: #00ff00; border-radius: 50%; box-shadow: 0 0 8px #00ff00; }
.whale-title h5 { margin: 0; color: #000; font-size: 14px; font-weight: bold; }
.whale-title span { font-size: 10px; color: rgba(0,0,0,0.7); }
#whale-close-btn { margin-left: auto; background: none; border: none; font-size: 24px; cursor: pointer; color: #000; }

.whale-chat-body { padding: 15px; max-height: 280px; overflow-y: auto; background: #0a0a0a; }
.whale-msg-bubble {
    background: rgba(77, 182, 172, 0.15); padding: 10px 14px;
    border-radius: 12px 12px 12px 0; margin-bottom: 12px;
    border: 1px solid rgba(77, 182, 172, 0.3); font-size: 13px; color: #e0e0e0; line-height: 1.4;
}

.whale-chat-footer { padding: 12px; background: #111; border-top: 1px solid #222; }
.whale-buttons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.whale-buttons-grid button {
    background: #1a1a1a; border: 1px solid #4db6ac; color: #4db6ac;
    padding: 8px; border-radius: 8px; cursor: pointer; font-size: 12px; transition: 0.2s;
}
.whale-buttons-grid button:hover { background: #4db6ac; color: #000; font-weight: bold; }
.user-msg {
    background: #00bcd4 !important;
    color: #000 !important;
    border-radius: 12px 12px 0 12px !important;
    margin-left: auto;
    border: none !important;
    font-weight: 600;
    max-width: 80%;
    text-align: right;
}

.whale-msg-bubble i {
    color: #4db6ac;
    font-size: 12px;
}
/* تنسيق الحاوية الرئيسية لضمان البعد عن الناف بار والفوتر */
.tunnel-page-wrapper {
    padding: 100px 20px; /* 100px فوق وتحت عشان ميزنقش في الناف بار */
    min-height: calc(100vh - 200px); /* بيضمن إن المحتوى واخد مساحة كويسة طولياً */
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
}

.tunnel-container {
    max-width: 900px;
    width: 100%;
}

.tunnel-header {
    text-align: center;
    margin-bottom: 50px;
}

.tunnel-header {
    color: #00bcd4; /* لون السيان بتاعك */
    font-size: 2.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tunnel-header p {
    color: #888;
    font-size: 1.1rem;
}

/* الكروت الزجاجية */
.info-card, .setup-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.info-card h3, .setup-section h3 {
    color: #4db6ac;
    margin-bottom: 15px;
}

.feature-grid {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.feature-item {
    background: rgba(77, 182, 172, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4db6ac;
    border: 1px solid rgba(77, 182, 172, 0.2);
}

/* صناديق الأكواد */
.step {
    margin-bottom: 25px;
}

.step label {
    display: block;
    color: #666;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.code-box {
    background: #000;
    border: 1px solid #222;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border 0.3s;
}

.code-box:hover {
    border-color: #00bcd4;
}

.code-box code {
    color: #eee;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.95rem;
}

.copy-btn {
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s;
}

.copy-btn:hover {
    color: #00bcd4;
    transform: scale(1.1);
}

.wwa-section {
    padding: 120px 5%;
    background: #050505;
    overflow: hidden;
}

.wwa-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* الجزء البصري */
.wwa-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.wwa-glow-effect {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    animation: wwaPulse 3s infinite alternate;
}

.wwa-main-logo {
    width: 220px;
    filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.2));
    z-index: 5;
}

/* الكلام والتعريف */
.wwa-info {
    flex: 1.5;
    min-width: 350px;
}

.wwa-badge {
    color: #4db6ac;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: bold;
    border-left: 3px solid #00bcd4;
    padding-left: 10px;
    margin-bottom: 20px;
    display: block;
}

.wwa-title {
    font-size: 2.4rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.wwa-cyan { color: #00bcd4; }

.wwa-description {
    color: #999;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* سكشن الدقة 85% */
.wwa-accuracy-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.wwa-accuracy-header {
    display: flex;
    justify-content: space-between;
    color: #eee;
    margin-bottom: 10px;
    font-weight: 500;
}

.wwa-percent { color: #00bcd4; font-weight: bold; }

.wwa-progress-bg {
    height: 6px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.wwa-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4db6ac, #00bcd4);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    border-radius: 10px;
}

.wwa-hint { font-size: 0.8rem; color: #555; }

/* Animation */
@keyframes wwaPulse {
    from { opacity: 0.4; transform: scale(1); }
    to { opacity: 0.8; transform: scale(1.1); }
}

@media (max-width: 768px) {
    .wwa-container { flex-direction: column; text-align: center; }
    .wwa-badge { border-left: none; border-bottom: 2px solid #00bcd4; padding: 0 0 5px 0; }
}