/* ═══════════════════════════════════════════════════════════════
   NEXORA Enterprise — Landing Page Styles
   ═══════════════════════════════════════════════════════════════ */

.landing { direction: rtl; }

/* ── Navbar ── */
.l-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-8);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.l-nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text);
}

.l-nav-brand i { color: var(--gold); font-size: 28px; }

.l-nav-links { display: flex; gap: var(--sp-3); }

/* ── Hero ── */
.l-hero {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  padding: var(--sp-20) var(--sp-8);
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 70vh;
}

.l-hero-text { flex: 1; }

.l-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-4);
  background: var(--gold-light);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--gold-dark);
  margin-bottom: var(--sp-5);
}

.l-hero-text h1 {
  font-size: var(--text-4xl);
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}

.l-hero-text h1 span { color: var(--gold); }

.l-hero-text p {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 540px;
  margin-bottom: var(--sp-8);
}

.l-hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.l-hero-visual {
  flex: 1;
  max-width: 480px;
}

.l-hero-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-4);
  box-shadow: var(--shadow-xl);
}

.l-hero-preview-header {
  display: flex;
  gap: 6px;
  margin-bottom: var(--sp-4);
}

.l-hero-preview-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.l-hero-preview-content {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  min-height: 200px;
}

.l-hero-stats {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.l-hero-stat { text-align: center; }
.l-hero-stat .num {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--primary);
}
.l-hero-stat .lbl {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ── Section ── */
.l-section {
  padding: var(--sp-20) var(--sp-8);
  max-width: var(--content-max);
  margin: 0 auto;
}

.l-section-head {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.l-section-head h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-3);
}

.l-section-head p {
  color: var(--text-secondary);
  font-size: var(--text-xl);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Features ── */
.l-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.l-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--duration-normal) var(--ease);
}

.l-feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.l-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto var(--sp-4);
}

.l-feature h3 { font-size: var(--text-xl); margin-bottom: var(--sp-2); }
.l-feature p { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--lh-normal); }

/* ── Roles ── */
.l-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.l-role {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  text-align: center;
  transition: all var(--duration-normal) var(--ease);
}

.l-role:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.l-role-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--sp-3);
  color: var(--text-inverse);
}

.l-role h4 { font-size: var(--text-lg); margin-bottom: var(--sp-1); }
.l-role p { color: var(--text-muted); font-size: var(--text-sm); }

/* ── CTA ── */
.l-cta {
  text-align: center;
  padding: var(--sp-20) var(--sp-8);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-inverse);
}

.l-cta h2 { font-size: var(--text-3xl); margin-bottom: var(--sp-4); }
.l-cta p { font-size: var(--text-xl); opacity: 0.85; margin-bottom: var(--sp-8); max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FAQ ── */
.l-faq { max-width: 720px; margin: 0 auto; }

.l-faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-3);
  padding: var(--sp-4);
  background: var(--surface);
}

.l-faq summary {
  font-weight: var(--fw-semibold);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-faq summary::-webkit-details-marker { display: none; }

.l-faq details[open] summary { color: var(--primary); margin-bottom: var(--sp-3); }

.l-faq .faq-answer { color: var(--text-secondary); line-height: var(--lh-normal); }

/* ── Footer ── */
.l-footer {
  text-align: center;
  padding: var(--sp-8);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .l-hero { flex-direction: column; text-align: center; padding: var(--sp-12) var(--sp-4); }
  .l-hero-text p { margin-left: auto; margin-right: auto; }
  .l-hero-actions { justify-content: center; }
  .l-hero-stats { justify-content: center; }
  .l-features { grid-template-columns: repeat(2, 1fr); }
  .l-roles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .l-features, .l-roles { grid-template-columns: 1fr; }
  .l-hero-visual { display: none; }
}
