    /* --- إعدادات السيكشن العامة --- */
    .hero-section {
        background-color: #ffffff;
        /* 1. حذفنا min-height لمنع المساحات الوهمية */
        min-height: auto;
        display: flex;
        align-items: center;
        /* 2. جعلنا البادينج العلوي 0 ليلتصق بالناف بار تماماً */
        /* والبادينج السفلي 60px ليعطي مساحة مريحة قبل السيكشن التالي */
        padding: 0 0 60px 0;
        overflow: hidden;
    }

    .hero-section .inner-hero {
        max-width: 1250px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        padding-top: 40px;
    }

    /* --- تنسيق النصوص والأسطر --- */
    .hero-content {
        flex: 1;
        max-width: 50%;
    }

    .hero-content .hero-heading {
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
        /* ضبط تباعد أسطر العنوان */
        margin-bottom: 20px;
    }

    .hero-content .hero-description {
        font-size: 1.15rem;
        color: #555;
        line-height: 1.8;
        /* زيادة تباعد أسطر الوصف لسهولة القراءة */
        margin-bottom: 40px;
    }

    /* --- تنسيق الزر (الإصلاح الجذري) --- */
    .btn-primary {
        display: inline-block;
        background-color: #3498db;
        /* لون البراند الخاص بك */
        color: #ffffff !important;
        text-decoration: none !important;
        /* إزالة الخط تحت النص */
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 8px 15px rgba(52, 152, 219, 0.3);
        text-align: center;
    }

    .btn-primary:hover {
        background-color: #2980b9;
        transform: translateY(-3px);
        /* رفعة بسيطة عند التمرير */
        box-shadow: 0 12px 20px rgba(52, 152, 219, 0.4);
    }

    /* --- تنسيق الصورة --- */
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mockup-img {
        width: 100%;
        height: auto;
        max-width: 600px;
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    }

    /* --- ضبط الموبايل --- */
    @media (max-width: 991px) {
        .hero-section {
            padding-bottom: 40px;
        }

        .hero-section .inner-hero {
            flex-direction: column;
            text-align: center;
            padding: 0 15px;
            padding-top: 20px;
        }

        .hero-content,
        .hero-image {
            max-width: 100%;
        }

        .hero-content .hero-heading {
            font-size: 2.2rem;
            line-height: 1.3;
        }

        .btn-primary {
            width: 100%;
            /* الزر بعرض الشاشة في الموبايل */
            padding: 15px 20px;
        }

        .hero-image .mockup-img {
            max-width: 100%;
            width: 100vw;
            /* ملء الشاشة في الموبايل */
        }
    }

    /* تنسيق شريط المميزات الجديد */
    .features-bar {
        display: flex;
        flex-direction: row-reverse;
        /* لترتيب العناصر العربية من اليمين لليسار */
        justify-content: flex-end;
        /* لتبدأ من تحت الزر في اليسار (بما أن الصفحة إنجليزية) */
        align-items: center;
        gap: 20px;
        /* المسافة بين كل جملة وأخرى */
        margin-top: 30px;
        /* مسافة من الزر */
        flex-wrap: wrap;
        /* لضمان التوافق مع الموبايل */
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    /* تنسيق النجمة الزرقاء */
    .star-icon svg {
        width: 16px;
        height: 16px;
        color: #007bff;
        /* نفس اللون الأزرق في الصورة */
    }

    .feature-item span:not(.star-icon) {
        font-size: 14px;
        color: #555;
        font-weight: 500;
        font-family: 'Cairo', sans-serif;
        /* الخط المفضل لديك للتصاميم العربية */
    }

    /* تعديلات الموبايل لضمان التنسيق */
    @media (max-width: 991px) {
        .features-bar {
            justify-content: center;
            /* توسيط المميزات في الموبايل */
            flex-direction: row-reverse;
            gap: 15px;
        }
    }