/* --- CSS Variables & Reset --- */
:root {
    --primary-bg: #0f0518;
    --secondary-bg: #1e1233;
    --accent-purple: #7c3aed;
    --accent-glow: #a855f7;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-radius: 20px;
    --font-main: 'Cairo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glow Effects */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(60, 20, 140, 0.4) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--accent-green);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(to right, #fff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tag {
    background: rgba(124, 58, 237, 0.2);
    color: #d8b4fe;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: inline-block;
    margin-bottom: 15px;
}

kbd {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 2px 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: var(--accent-glow);
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(15, 5, 24, 0.7);
    border-bottom: 1px solid var(--glass-border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

@media(max-width: 768px) {
    .nav-links { display: none; }
}

/* --- 1. Hero Section --- */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.hero-visual {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2e1065, #4c1d95);
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 20px 50px -10px rgba(76, 29, 149, 0.5);
    position: relative;
}

.hero-visual-inner {
    background: #0f0518;
    border-radius: 18px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.magic-wand-icon {
    font-size: 80px;
    color: var(--accent-glow);
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.prompt-box {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin-bottom: 20px;
    text-align: right;
    border: 1px solid rgba(255,255,255,0.1);
}

.arrow-down {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.result-box {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(16, 185, 129, 0.1));
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    text-align: right;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

/* --- 2. Features Section --- */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--card-radius);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-glow);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- 3. Use Cases Section --- */
.use-cases {
    padding: 80px 0;
    background: rgba(0,0,0,0.2);
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.use-case-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.use-case-item:hover, .use-case-item.active {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent-purple);
}

.use-case-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-window {
    background: #1e1e2e;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    min-height: 300px;
    position: relative;
}

.preview-window .after-label {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--accent-green);
    display: block;
    margin-bottom: 5px;
}

.code-block {
    font-family: 'Courier New', monospace;
    background: #000;
    padding: 15px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #d4d4d4;
}

/* Buttons Mockup in Preview */
.btn-small-mockup {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0.8;
    cursor: default;
}

@media(max-width: 768px) {
    .use-case-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}

/* --- 4. Social Proof --- */
.social-proof {
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.stat-item p {
    color: var(--text-gray);
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.stars { color: #fbbf24; margin-bottom: 10px; }

/* --- 5. Pricing --- */
.pricing {
    padding: 100px 0;
}

/* تحديث تنسيق البطاقة */
/* الحاوية التي تمسك البطاقات */
.pricing-wrapper {
    display: flex;           /* هذا هو السحر الذي يجعلها متجاورة */
    justify-content: center; /* توسيط البطاقات في المنتصف */
    gap: 30px;               /* مسافة بين البطاقتين */
    flex-wrap: wrap;         /* يسمح بنزول البطاقات تحت بعض في شاشات الجوال */
    align-items: flex-start; /* محاذاة من الأعلى */
}

/* تحديث تنسيق البطاقة */
.pricing-card {
    flex: 1;                 /* جعل البطاقات مرنة */
    min-width: 300px;        /* أقل عرض للبطاقة */
    max-width: 400px;        /* أقصى عرض للبطاقة */
    background: white;
    color: #1a0b2e;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease; /* حركة ناعمة عند التحويم */
    /* margin: 0 auto;  <-- احذف هذا السطر لأنه يسبب مشاكل مع الفليكس */
}

/* تأثير بسيط عند مرور الماوس */
.pricing-card:hover {
    transform: translateY(-10px);
}

/* تمييز البطاقة المدفوعة (Popular) */
.pricing-card.popular {
    border: 2px solid var(--accent-purple);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 1;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .pricing-wrapper {
        flex-direction: column; /* إرجاعها عمودية في الجوال */
        align-items: center;
    }
    
    .pricing-card {
        width: 100%; /* تأخذ العرض الكامل في الجوال */
    }
}

.badge {
    background: #e9d5ff;
    color: #7c3aed;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

/* تحديث كلاس السعر الرئيسي ليقبل العناصر بداخله */
.price {
    font-size: 3.5rem;
    font-weight: 900;
    display: flex;
    align-items: center; /* يضمن أن كل العناصر (القديم، الجديد، الشهر) على خط واحد */
    justify-content: center;
    gap: 15px; /* مسافة بين السعر القديم والجديد */
    flex-wrap: wrap; /* في الشاشات الصغيرة جداً يسمح بالنزول للأسفل */
}

/* حاوية الرقم والصورة معاً */
.price-val {
    display: flex;
    align-items: center;
    gap: 5px; /* مسافة صغيرة بين الرقم والصورة */
    color: #1a0b2e; /* لون الرقم */
}

/* تنسيق الصورة لتكون مضبوطة 100% */
.currency-icon {
    height: 0.6em; /* الارتفاع نسبي: 60% من حجم الخط الحالي */
    width: auto;   /* العرض يتغير تلقائياً للحفاظ على أبعاد الصورة */
    object-fit: contain;
    margin-top: 5px; /* تعديل بصري بسيط للنزول قليلاً إن احتاج الأمر */
}

/* تنسيق السعر القديم */
.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: normal;
}

/* تنسيق كلمة / شهر */
.period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    margin-right: 5px;
}



.features-list {
    margin: 30px 0;
    text-align: right;
    list-style: none;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-purple);
}

.discount-box {
    background: #d1fae5;
    color: #065f46;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- 6. Final CTA --- */
.final-cta {
    padding: 100px 0;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, #2e1065 0%, #0f0518 70%);
}

.cta-visual-icon {
    font-size: 100px;
    color: white;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px #a855f7);
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* Animations */
#preview-input, #preview-output {
    transition: opacity 0.2s ease-in-out;
    display: inline-block;
}
/* --- تنسيقات الشريط المتحرك (Marquee) --- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden; /* يخفي العناصر اللي تطلع برا الشاشة */
    padding: 20px 0;
    position: relative;
    /* تدرج لوني في الجوانب عشان يعطي شكل احترافي للاختفاء والظهور */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px; /* مسافة بين البطاقات */
    width: max-content; /* العرض حسب المحتوى */
    animation: scroll 35s linear infinite; /* الرقم 35 يتحكم بالسرعة، كل ما زاد صارت أبطأ */
}

/* توقف الحركة لما المستخدم يحط الماوس */
.marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    width: 350px; /* عرض ثابت للبطاقة */
    flex-shrink: 0; /* يمنع البطاقة انها تصغر */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: translateY(-5px); /* رفعة بسيطة عند التحويم */
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 15px 0;
    font-style: italic;
}

.testimonial-card .user-info h4 {
    color: var(--accent-glow);
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card .user-info span {
    font-size: 0.8rem;
    color: #666;
}

.video-showcase {
    padding-top: 20px;
    padding-bottom: 80px;
    position: relative;
    /* نجعل الخلفية متصلة بصرياً مع الهيرو */
}

.video-wrapper-outer {
    max-width: 900px; /* عرض مناسب للفيديو لا يكون عريض جداً */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* التوهج الخلفي (Purple Glow) */
.video-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-green));
    filter: blur(60px); /* تغبيش قوي لعمل تأثير التوهج */
    opacity: 0.25; /* شفافية عشان ما يكون مزعج */
    z-index: -1;
    border-radius: 50%;
}

/* حاوية الفيديو لجعلها متجاوبة 16:9 */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* النسبة القياسية لليوتيوب 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px; /* حواف ناعمة */
    border: 1px solid rgba(255, 255, 255, 0.1); /* إطار خفيف */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); /* ظل لإبراز الفيديو */
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* تحسين للجوال */
@media (max-width: 768px) {
    .video-showcase {
        padding-bottom: 60px;
    }
}

/* تعريف الحركة (Animation) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* نحرك الشريط لليمين بنسبة 50% لأننا كررنا المحتوى مرتين */
        /* ملاحظة: بما أن الموقع RTL، الاتجاه قد يختلف حسب المتصفح */
        /* استخدمنا القيمة الموجبة لتناسب الاتجاه العربي غالباً، لو تحرك بالعكس جرب تخليه سالب */
        transform: translateX(50%); 
    }
}

/* تعديل للجوال: نخلي السرعة أبطأ شوي لأن الشاشة صغيرة */
@media(max-width: 768px) {
    .marquee-track {
        animation-duration: 25s;
    }
    .testimonial-card {
        width: 280px;
    }
}
/* تحسين للجوال لضمان عدم تداخل العناصر */
@media (max-width: 480px) {
    .price {
        font-size: 2.8rem; /* تصغير الخط قليلاً في الجوال */
        gap: 10px;
    }
}