:root {
  --bg: #f7f9ff;
  --bg-soft: #eef3ff;
  --surface: rgba(255,255,255,.92);
  --surface-strong: #ffffff;
  --surface-soft: #f8fbff;
  --stroke: rgba(31, 69, 140, .12);
  --stroke-strong: rgba(31, 69, 140, .18);
  --text: #10254c;
  --muted: #61759d;
  --primary: #2a62d5;
  --primary-strong: #1d4fb7;
  --accent: #ff8a3c;
  --accent-soft: rgba(255,138,60,.12);
  --primary-soft: rgba(42,98,213,.10);
  --success-bg: #eafbf1;
  --success-text: #1f7d47;
  --warning-bg: #fff5e7;
  --warning-text: #b76a00;
  --danger-bg: #fff0f0;
  --danger-text: #c33838;
  --shadow: 0 24px 60px rgba(25, 57, 120, .12);
  --shadow-soft: 0 12px 30px rgba(25, 57, 120, .08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(42,98,213,.10), transparent 24%),
    radial-gradient(circle at left center, rgba(255,138,60,.10), transparent 16%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.ns-container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.ns-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,249,255,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31,69,140,.08);
}
.ns-header-inner {
  min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.ns-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ns-brand img {
  width: 70px; height: 70px; object-fit: contain; border-radius: 18px;
  background: rgba(255,255,255,.95); padding: 8px; box-shadow: var(--shadow-soft);
}
.ns-brand strong { display: block; font-size: 24px; line-height: 1.05; font-weight: 900; }
.ns-brand small { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); font-weight: 800; }
.ns-nav { display: flex; align-items: center; gap: 6px; }
.ns-nav a {
  padding: 12px 16px; border-radius: 999px; color: var(--muted); font-weight: 800; font-size: 14px;
  transition: .2s ease;
}
.ns-nav a:hover, .ns-nav a.is-active { background: var(--primary-soft); color: var(--primary); }
.ns-header-actions { display: flex; align-items: center; gap: 10px; }
.ns-secondary-btn, .ns-google-btn, .ns-primary-btn, .ns-ghost-btn, .ns-button, .ns-chip-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 18px; border-radius: 16px; font-weight: 900; border: 0; cursor: pointer; transition: .2s ease;
}
.ns-google-btn, .ns-secondary-btn, .ns-chip-link, .ns-ghost-btn {
  background: var(--surface-strong); color: var(--text); border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}
.ns-google-btn:hover, .ns-secondary-btn:hover, .ns-chip-link:hover, .ns-ghost-btn:hover {
  transform: translateY(-1px); border-color: var(--stroke-strong);
}
.ns-primary-btn, .ns-button {
  background: linear-gradient(135deg, var(--primary), #4f8aff);
  color: #fff;
  box-shadow: 0 18px 34px rgba(42,98,213,.22);
}
.ns-primary-btn:hover, .ns-button:hover { transform: translateY(-2px); }
.g-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
}
.ns-user-chip {
  display: flex; align-items: center; gap: 12px; padding: 8px 12px; background: #fff; border: 1px solid var(--stroke);
  border-radius: 18px; box-shadow: var(--shadow-soft);
}
.ns-user-chip img, .avatar-fallback {
  width: 46px; height: 46px; border-radius: 14px; object-fit: cover; background: var(--primary-soft);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 900; color: var(--primary);
}
.ns-user-chip strong { display: block; font-size: 14px; }
.ns-user-chip a { display: inline-block; margin-top: 4px; color: var(--primary); font-size: 12px; font-weight: 800; }
.ns-nav-mobile-only { display: none; }
.ns-menu-btn {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--stroke);
  background: #fff; box-shadow: var(--shadow-soft); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.ns-menu-btn span { width: 20px; height: 2px; border-radius: 2px; background: var(--text); }
.ns-ticker-holder { padding-bottom: 10px; }
.dash-ticker-wrapper {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(42,98,213,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.dash-ticker-header {
  display:flex; align-items:center; gap:8px; padding: 10px 14px; background: linear-gradient(90deg, rgba(42,98,213,.08), rgba(255,138,60,.08));
  color: var(--text); font-size: 12px; font-weight: 800; border-bottom: 1px solid rgba(42,98,213,.08);
}
.dash-ticker-header .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.dash-ticker-body { overflow: hidden; }
.dash-ticker-track {
  display:inline-flex; gap: 24px; padding: 10px 16px; white-space: nowrap; animation: tickerMove 65s linear infinite;
}
.dash-ticker-item { display:inline-flex; gap:6px; align-items:center; color: var(--muted); font-size: 13px; font-weight:700; }
.dash-ticker-tag { background: rgba(42,98,213,.10); color: var(--primary); border-radius: 999px; padding: 4px 8px; font-size: 11px; font-weight: 900; }
@keyframes tickerMove { from { transform: translateX(-20%);} to { transform: translateX(40%);} }
main { min-height: 70vh; }
.hero { padding: 38px 0 20px; }
.hero-minimal { padding-top: 42px; }
.hero-poster-card {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
  border: 1px solid rgba(42,98,213,.10); border-radius: 34px; box-shadow: var(--shadow); padding: 18px; position: relative; overflow: hidden;
}
.hero-poster-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at top right, rgba(42,98,213,.12), transparent 18%), radial-gradient(circle at left bottom, rgba(255,138,60,.10), transparent 16%);
}
.hero-poster-image { width: 100%; border-radius: 26px; object-fit: cover; box-shadow: var(--shadow-soft); }
.hero-poster-actions {
  position: absolute; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: center; pointer-events: none;
}
.hero-poster-actions .ns-button { pointer-events: auto; }
.hero-services-strip { padding: 18px 0 8px; overflow: hidden; }
.hero-services-track {
  display: flex; gap: 16px; width: max-content; animation: servicesLoop 22s linear infinite;
}
.hero-services-strip:hover .hero-services-track { animation-play-state: paused; }
.service-pill {
  min-width: 250px; padding: 18px 18px; border-radius: 24px; background: rgba(255,255,255,.92); border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 14px;
}
.service-pill-icon {
  width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, var(--primary-soft), rgba(255,138,60,.16));
  color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900;
}
.service-pill strong { display: block; font-size: 17px; }
.service-pill span { display: block; font-size: 13px; color: var(--muted); font-weight: 700; }
@keyframes servicesLoop { from { transform: translateX(0); } to { transform: translateX(35%); } }
.section { padding: 22px 0 76px; }
.section-head { margin-bottom: 22px; }
.section-head h1, .section-head h2 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 56px); line-height: 1.1; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; font-weight: 700; line-height: 1.8; }
.page-hero { padding: 36px 0 18px; }
.page-hero-box {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  border: 1px solid rgba(42,98,213,.10); border-radius: 32px; box-shadow: var(--shadow); padding: 32px;
}
.page-hero-box h1 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 60px); line-height: 1.1; }
.page-hero-box p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; font-weight: 700; }
.grid-3, .grid-4, .cards-4, .simple-grid, .form-layout, .dashboard-grid, .request-grid {
  display: grid; gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4, .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.simple-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-layout, .request-grid { grid-template-columns: 1.08fr .92fr; align-items: start; }
.dashboard-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .panel, .form-card, .summary-card, .dashboard-card, .request-item {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  border: 1px solid rgba(42,98,213,.10);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.card, .panel, .dashboard-card, .request-item { padding: 24px; }
.card:hover { transform: translateY(-4px); transition: .2s ease; }
.card-icon {
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 20px;
  background: linear-gradient(135deg, rgba(42,98,213,.12), rgba(255,138,60,.14)); font-size: 28px; font-weight: 900; color: var(--primary);
}
.card h3, .panel h3, .summary-card h3, .dashboard-card h3, .request-item h3 { margin: 16px 0 8px; font-size: 24px; }
.card p, .panel p, .summary-card p, .dashboard-card p, .request-item p, .panel li {
  margin: 0; color: var(--muted); font-size: 16px; line-height: 1.9; font-weight: 700;
}
.panel ul { margin: 0; padding-right: 18px; }
.cta-box {
  margin-top: 20px; padding: 30px; border-radius: 32px; background: linear-gradient(135deg, var(--primary), #4180ff); color: #fff; box-shadow: 0 24px 42px rgba(42,98,213,.22);
}
.cta-box p { color: rgba(255,255,255,.92); }
.service-grid-link { margin-top: 18px; }
.form-card, .summary-card { padding: 0; overflow: hidden; }
.form-card-head, .summary-card-head {
  padding: 22px 24px; border-bottom: 1px solid var(--stroke); background: linear-gradient(180deg, rgba(42,98,213,.06), rgba(255,255,255,0));
}
.form-card-head h2, .summary-card-head h2 { margin: 0; font-size: 24px; }
.form-card-head p, .summary-card-head p { margin: 6px 0 0; color: var(--muted); font-weight: 700; font-size: 14px; }
.form-card-body, .summary-card-body { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 900; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border-radius: 16px; border: 1px solid var(--stroke); background: #fff; color: var(--text);
  padding: 14px 15px; outline: none; transition: .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: rgba(42,98,213,.30); box-shadow: 0 0 0 4px rgba(42,98,213,.10);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--muted); font-weight: 700; }
.alert {
  padding: 14px 16px; border-radius: 18px; font-weight: 800; margin-bottom: 16px;
}
.alert-success { background: var(--success-bg); color: var(--success-text); border: 1px solid rgba(31,125,71,.14); }
.alert-warning { background: var(--warning-bg); color: var(--warning-text); border: 1px solid rgba(183,106,0,.16); }
.alert-error { background: var(--danger-bg); color: var(--danger-text); border: 1px solid rgba(195,56,56,.16); }
.provider-preview, .payment-preview, .website-preview {
  display: flex; align-items: center; gap: 14px; min-height: 92px;
}
.preview-logo {
  width: 68px; height: 68px; object-fit: contain; border-radius: 18px; background: #fff; border: 1px solid var(--stroke); padding: 8px;
}
.preview-text h3 { margin: 0; font-size: 18px; }
.preview-text p { margin: 6px 0 0; color: var(--muted); font-size: 14px; font-weight: 700; line-height: 1.8; }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.price-item {
  border: 1px solid var(--stroke); border-radius: 18px; padding: 16px; background: var(--surface-soft);
}
.price-item span { display: block; font-size: 13px; color: var(--muted); font-weight: 800; margin-bottom: 8px; }
.price-item strong { display: block; font-size: 24px; }
.choice-grid { display: grid; gap: 12px; }
.choice-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 20px; border: 1px solid var(--stroke);
  background: #fff; padding: 14px; box-shadow: var(--shadow-soft);
}
.choice-left { display: flex; align-items: center; gap: 12px; }
.choice-logo {
  width: 54px; height: 54px; object-fit: contain; border-radius: 16px; background: #fff; border: 1px solid var(--stroke); padding: 7px;
}
.choice-text strong { display: block; font-size: 16px; }
.choice-text span { display: block; font-size: 13px; color: var(--muted); font-weight: 700; }
.empty-state { color: var(--muted); font-size: 14px; font-weight: 700; }
.status-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 999px; font-size: 13px; font-weight: 900;
}
.status-badge.is-pending { background: var(--warning-bg); color: var(--warning-text); }
.status-badge.is-review { background: #eef4ff; color: var(--primary); }
.status-badge.is-approved { background: var(--success-bg); color: var(--success-text); }
.status-badge.is-rejected { background: var(--danger-bg); color: var(--danger-text); }
.stat-number { display: block; font-size: 30px; font-weight: 900; margin-bottom: 6px; }
.stat-label { display: block; color: var(--muted); font-weight: 700; }
.request-item-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.request-item-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.request-item-meta span {
  padding: 8px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--muted); font-size: 13px; font-weight: 800;
}
.request-note {
  margin-top: 14px; padding: 14px 16px; border-radius: 18px; background: var(--surface-soft); border: 1px solid var(--stroke);
}
.request-proof { margin-top: 14px; }
.request-proof a { color: var(--primary); font-weight: 900; }
.info-list { display: grid; gap: 12px; margin-top: 18px; }
.info-list-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 14px; border: 1px solid var(--stroke); border-radius: 20px; background: #fff;
}
.info-list-item strong { display: block; font-size: 16px; margin-bottom: 4px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(42,98,213,.10), rgba(255,138,60,.12)); color: var(--primary); font-size: 13px; font-weight: 900; margin-bottom: 16px;
}
.reveal { opacity: 0; transform: translateY(18px); transition: .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.ns-footer {
  padding: 26px 0 30px; border-top: 1px solid rgba(31,69,140,.08); background: rgba(255,255,255,.55);
}
.ns-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ns-copy { color: var(--muted); font-weight: 800; }
.ns-footer-links { display: flex; gap: 10px; flex-wrap: wrap; }
.ns-footer-links a {
  padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--stroke); color: var(--muted); font-weight: 800;
}
@media (max-width: 1120px) {
  .grid-4, .cards-4, .dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-layout, .request-grid, .simple-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .ns-menu-btn { display: inline-flex; }
  .ns-nav-mobile-only { display: grid; gap: 10px; margin-top: 8px; }
  .ns-nav {
    display: none; position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,.98); border: 1px solid var(--stroke); border-radius: 24px; padding: 12px; box-shadow: var(--shadow);
  }
  .ns-nav.is-open { display: flex; }
  .ns-header-inner { min-height: 86px; }
  .ns-header-actions { display: none; }
}
@media (max-width: 760px) {
  .grid-3, .grid-4, .cards-4, .dashboard-grid { grid-template-columns: 1fr; }
  .form-grid, .price-grid { grid-template-columns: 1fr; }
  .hero-poster-actions { left: 16px; right: 16px; bottom: 16px; }
  .hero-services-track { animation-duration: 18s; }
  .service-pill { min-width: 220px; }
  .page-hero-box, .card, .panel, .form-card-head, .form-card-body, .summary-card-head, .summary-card-body, .dashboard-card, .request-item { padding: 20px; }
  .ns-brand img { width: 60px; height: 60px; }
  .ns-brand strong { font-size: 20px; }
}
