/* landing.css */
/* تخصيصات إضافية للصفحة الرئيسية - Enterprise Feel */

/* 1. تأثير الزجاج (Glassmorphism) للهيدر */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* 2. النصوص المتدرجة (Gradient Text) للعناوين الفخمة */
.text-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. أنيميشن خفيف للظهور */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. تحسينات الهواتف (Mockup Frame) */
.mockup-frame {
    border: 8px solid #1e293b;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: white;
}