        /* ========================================
       Hero Section
       ======================================== */

        .hero-section {
            position: relative;
            background: var(--gradient-primary);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            background: var(--secondary-color);
            top: -200px;
            left: -200px;
            animation: float 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--primary-color);
            bottom: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite 2s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--secondary-color);
            top: 40%;
            right: 20%;
            animation: float 10s ease-in-out infinite 1s;
        }

        .hero-content {
            padding: 40px 0;
            text-align: start;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: var(--secondary-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .hero-badge::before {
            display: none;
        }

        .hero-badge i {
            color: var(--secondary-color);
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            line-height: 1.25;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin: 0 0 32px 0;
            max-width: 580px;
        }

        .highlight-badge {
            display: inline-block;
            padding: 4px 14px;
            background: rgba(108, 206, 105, 0.15);
            border: 1px solid rgba(108, 206, 105, 0.3);
            border-radius: 8px;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 16px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            justify-content: start;
            flex-wrap: wrap;
        }

        .btn-hero-apple,
        .btn-hero-google {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-hero-apple {
            background: white;
            color: var(--text-dark);
        }

        .btn-hero-apple:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            color: var(--text-dark);
        }

        .btn-hero-google {
            background: rgba(255, 255, 255, 0.12);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
        }

        .btn-hero-google:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            color: white;
        }

        .btn-hero-apple i,
        .btn-hero-google i {
            font-size: 1.8rem;
        }

        .btn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .btn-text small {
            font-size: 0.7rem;
            opacity: 0.7;
        }

        .btn-text span {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .trust-signal {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--secondary-color);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .pulse-dot::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--secondary-color);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .trust-signal strong {
            color: white;
        }

        /* Phone Mockup */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
        }

        .phone-mockup {
            width: 280px;
            height: 560px;
            background: #1a1a2e;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
            position: relative;
        }

        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 28px;
            background: #1a1a2e;
            border-radius: 0 0 16px 16px;
            z-index: 2;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #0b555e, #1a2b3c);
            border-radius: 30px;
            overflow: hidden;
        }

        .phone-screenshot {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 30px;
        }


        .hero-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            line-height: 0;
        }

        .hero-wave svg {
            width: 100%;
            height: 80px;
        }

        .integration-section.bg-gray {
            background: #fff !important;
        }

        .integration-section.bg-gray::before {
            display: none !important;
        }


        .cta-demo-section.cta-section2 {
            position: relative;
            padding: 100px 0;
            background: var(--gradient-primary);
            overflow: hidden;
        }

        .cta-bg-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .cta-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .cta-shape-1 {
            width: 500px;
            height: 500px;
            background: var(--primary-color);
            top: -200px;
            right: -100px;
        }

        .cta-shape-2 {
            width: 300px;
            height: 300px;
            background: var(--secondary-color);
            bottom: -100px;
            left: -50px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-apple,
        .btn-cta-android,
        .btn-cta-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-cta-apple {
            background: white;
            color: var(--text-dark);
        }

        .btn-cta-apple:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            color: var(--text-dark);
        }

        .btn-cta-android {
            background: rgba(255, 255, 255, 0.12);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
        }

        .btn-cta-android:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            color: white;
        }

        .btn-cta-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-cta-whatsapp:hover {
            background: #20bd5a;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
            color: white;
        }

        .btn-cta-apple i,
        .btn-cta-android i,
        .btn-cta-whatsapp i {
            font-size: 1.3rem;
        }

        /* ========================================
       Keyframes for Animations
       ======================================== */

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* ========================================
       Responsive
       ======================================== */

        @media (min-width: 1540px) {
            .hero-section {
                min-height: 90vh;
            }
        }

        @media (max-width: 991.98px) {
            .hero-content {
                text-align: center;
            }

            .hero-subtitle {
                margin: 0 auto 32px;
            }

            .trust-signal,
            .hero-buttons {
                justify-content: center;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-visual {
                display: none;
            }

            .screenshot-info {
                margin-top: 30px;
            }

            .screenshot-number-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .app-phone-frame {
                width: 240px;
                height: 500px;
            }

            .screenshot-info h3 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-hero-apple,
            .btn-hero-google {
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-cta-apple,
            .btn-cta-android,
            .btn-cta-whatsapp {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .laptop-container {
                perspective: none;
            }

            .laptop {
                transform: none;
            }
        }

        @media (max-width: 575.98px) {
            .hero-section {
                padding-top: 60px;
            }

            .hero-content {
                padding: 20px 0;
            }

            .phone-screenshot {
                border-radius: 24px;
            }

            .btn-cta-apple,
            .btn-cta-android,
            .btn-cta-whatsapp {
                padding: 14px 24px;
                font-size: 0.9rem;
            }

            .screenshot-info {
                padding: 24px 20px;
            }

            .screenshot-info h3 {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 374.98px) {

            .btn-cta-apple i,
            .btn-cta-android i,
            .btn-cta-whatsapp i {
                font-size: 1rem;
            }

            .btn-cta-apple,
            .btn-cta-android,
            .btn-cta-whatsapp {
                padding: 12px 20px;
                font-size: 0.85rem;
            }
        }

        /* ========================================
       Screenshots Section & App Preview
       ======================================== */

        /* قسم المعاينة الأساسي */
        .screenshots-section {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .screenshots-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(108, 206, 105, 0.03) 0%, rgba(23, 170, 189, 0.02) 80%);
            pointer-events: none;
        }

        /* إطارات الهواتف (للبطاقات 1،3،4) */
        .phone-card {
            perspective: 1200px;
        }

        .app-phone-frame {
            width: 280px;
            height: 570px;
            background: #111218;
            border-radius: 48px;
            padding: 10px;
            box-shadow: var(--shadow-phone);
            position: relative;
            transition: all 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            transform-style: preserve-3d;
            margin: 0 auto;
        }

        .screenshot-showcase:hover .app-phone-frame {
            transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
            box-shadow: 0 55px 70px -20px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.6), 0 0 0 14px rgba(35, 35, 45, 0.1);
        }

        .app-phone-notch {
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 30px;
            background: #0a0a0f;
            border-radius: 22px;
            z-index: 12;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        .app-phone-notch::after {
            content: "";
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 42px;
            height: 12px;
            background: #1f2a2e;
            border-radius: 10px;
            opacity: 0.7;
        }

        .app-phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 40px;
            overflow: hidden;
            background: #eef2f5;
            position: relative;
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06);
        }

        .app-screenshot-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        /* بطاقات المعلومات الجانبية */
        .screenshot-info {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 48px;
            padding: 32px 30px;
            border: 1px solid rgba(23, 170, 189, 0.2);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
        }

        .screenshot-showcase:hover .screenshot-info {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(108, 206, 105, 0.3);
            box-shadow: 0 25px 45px -18px rgba(23, 170, 189, 0.25);
        }

        .screenshot-number-badge {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            box-shadow: 0 12px 18px -8px rgba(23, 170, 189, 0.4);
        }

        .screenshot-info h3 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0a2e32;
            margin-bottom: 16px;
        }

        .screenshot-info p {
            font-size: 1rem;
            color: #2c4b55;
            line-height: 1.7;
            font-weight: 500;
        }

        .screenshot-features-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .screenshot-features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e3d45;
            padding: 6px 0;
        }

        .screenshot-features-list li i {
            color: var(--secondary-color);
            font-size: 1.1rem;
            background: rgba(108, 206, 105, 0.15);
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
        }

        /* تنسيقات خاصة بالصور داخل الهواتف (استخدام صور توضيحية جذابة) */
        .custom-screen-bg {
            background: linear-gradient(145deg, #132e35, #1e4c55);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        /* زخرفة خلفية */
        .floating-glow {
            position: absolute;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(108, 206, 105, 0.2) 0%, rgba(23, 170, 189, 0) 80%);
            border-radius: 50%;
            filter: blur(45px);
            z-index: 0;
            pointer-events: none;
        }

        /* حركات التمرير */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .screenshot-showcase {
            margin-bottom: 90px;
        }

        .screenshot-showcase:last-child {
            margin-bottom: 0;
        }

        /* ========================================
             Laptop 3D Styling
             ======================================== */

        .laptop-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1500px;
            /* يعطي عمقًا ثلاثي الأبعاد */
        }

        .laptop {
            position: relative;
            width: 100%;
            max-width: 600px;
            transform-style: preserve-3d;
            transform: rotateX(5deg) rotateY(-5deg);
            /* زاوية ميل اللابتوب الكلية */
            transition: transform 0.5s ease;
        }

        /* تأثير عند تمرير الماوس */
        .laptop-container:hover .laptop {
            transform: rotateX(0deg) rotateY(0deg);
        }

        .laptop__screen {
            position: relative;
            width: 100%;
            padding-top: 62.5%;
            /* نسبة عرض الشاشة 16:10 */
            background-color: #000;
            border-radius: 12px 12px 2px 2px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transform-style: preserve-3d;
            z-index: 2;
        }

        .laptop__screen img {
            position: absolute;
            top: 5px;
            left: 5px;
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            object-fit: cover;
            border-radius: 8px;
        }

        .laptop__base {
            position: relative;
            width: 110%;
            /* القاعدة أعرض قليلاً من الشاشة */
            height: 15px;
            background-color: #a3a3a3;
            /* لون ألومنيوم القاعدة */
            border-radius: 0 0 15px 15px;
            margin-top: -5px;
            margin-right: -5%;
            /* لتوسيط القاعدة */
            box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.2);
            transform-origin: top center;
            transform: rotateX(30deg);
            /* ميل قاعدة اللابتوب للأسفل */
            z-index: 1;
        }

        .laptop__shadow {
            position: absolute;
            bottom: -30px;
            left: 5%;
            width: 100%;
            height: 40px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            filter: blur(10px);
            transform: rotateX(90deg);
            /* ظل مسطح على الأرض */
            z-index: 0;
        }