/* ═══════════════════════════════════════════════════════
   landing-page-extra.css
   [SEC] انتقل من <style> inline + style="" attributes في index.html
   عشان نقدر نشيل 'unsafe-inline' من style-src في الـ CSP
   ═══════════════════════════════════════════════════════ */

/* ── Landing Slideshow Wrapper ─────────────────── */
.landing-slideshow-wrapper {
  max-width: 860px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
/* في صفحة البداية: اجعل الـ slideshow أوسع قليلاً وبدون border-radius صغيرة */
.landing-slideshow-wrapper #landing-slideshow {
  border-radius: 18px;
  overflow: hidden;
}
/* تعويض: الداشبورد له padding داخلي — صفحة البداية لا تحتاجه */
.landing-slideshow-wrapper .dss-viewport {
  min-height: 160px;
}
@media (max-width: 600px) {
  .landing-slideshow-wrapper {
    padding: 0 .5rem;
    margin-bottom: 1rem;
  }
}

/* ── Free Trial Quiz: شاشة اختيار الامتحان ─────────── */
.ftq-cat-screen { text-align: center; }
.ftq-cat-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 6px 0 22px;
}
.ftq-cat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 560px) {
  .ftq-cat-list { grid-template-columns: repeat(2, 1fr); }
}
.ftq-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bg-card), rgba(30,41,59,0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  color: var(--text-primary);
}
.ftq-cat-btn:hover,
.ftq-cat-btn:focus-visible {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(30,41,59,0.5));
  transform: translateY(-3px);
  outline: none;
}
.ftq-cat-icon { font-size: 1.6rem; }
.ftq-cat-label { font-size: 0.85rem; font-weight: 700; }
.ftq-cat-pill {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ftq-back-link {
  display: inline-block;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 4px 8px;
  font-family: inherit;
}
.ftq-back-link:hover { color: var(--primary); }

.hero-stats, .stats-container { flex-wrap: wrap; }

/* ── كلاسات بديلة عن style="" attributes ─────────── */

/* noscript banner */
.noscript-banner {
  background: #0f172a;
  color: #f1f5f9;
  text-align: center;
  padding: 16px;
  font-family: sans-serif;
  direction: rtl;
}
.noscript-banner a { color: #c9a84c; }

/* لوجو الشريط العلوي: حجم الإيموجي */
.nav-logo-emoji { font-size: 1.6rem; }

/* زر "إعادة تعيين الفلاتر" */
.no-results .btn-secondary { margin-top: 16px; }

/* خلفية قسم المميزات */
.features-section-bg {
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.02), transparent);
}

/* قائمة طرق التواصل داخل الـ FAQ */
.faq-contact-list {
  margin: 12px 0 0;
  padding-right: 20px;
  line-height: 2;
}
.faq-contact-note { margin-top: 12px; }

/* مجموعة أزرار الـ CTA النهائية — توسيط */
.hero-cta-group--center { justify-content: center; }

/* زر الدخول للمنصة داخل الـ CTA النهائية — أكبر حجمًا */
.btn-primary--cta-lg {
  font-size: 1.1rem;
  padding: 18px 48px;
}

/* سطر "آخر تحديث للمحتوى" في الفوتر */
.footer-meta {
  text-align: center;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
