:root {
  --bg: #070b14;
  --bg-elev: #0d1220;
  --bg-elev-2: #111830;
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.05);
  --text: #eef1f8;
  --text-dim: #9aa3ba;
  --text-dimmer: #6b7590;
  --accent-1: #22d3ee;
  --accent-2: #6366f1;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }


html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------- خلفية زخرفية ---------------------------------- */

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 15% -5%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(700px 500px at 100% 10%, rgba(99, 102, 241, 0.14), transparent 60%),
    radial-gradient(500px 400px at 50% 100%, rgba(34, 211, 238, 0.08), transparent 60%);
}
.bg-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 90%);
}

/* ---------------------------------- الرأس ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 20, 0.94);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .core { color: var(--text-dim); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.lang-toggle:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.18); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--gradient);
  color: #05070d;
  box-shadow: 0 8px 24px -8px rgba(34, 211, 238, 0.5);
}
.btn-primary:hover { box-shadow: 0 10px 30px -6px rgba(34, 211, 238, 0.65); }
.btn-ghost {
  background: var(--bg-elev);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.24); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
}
.hero-orb {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  animation: pulse-orb 6s ease-in-out infinite;
}
@keyframes pulse-orb {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 12px var(--accent-1);
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 22px;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: clamp(15px, 2vw, 18.5px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------------------------- قسم عام ---------------------------------- */

section { padding: 88px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p { color: var(--text-dim); font-size: 15.5px; }

/* ---------------------------------- بطاقات المزايا ---------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  background: var(--bg-elev-2);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #05070d;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 14.5px; }

/* ---------------------------------- كيف يعمل ---------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.step {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--accent-1);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
}
.step h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 14px; }

/* ---------------------------------- لماذا نحن ---------------------------------- */

.grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.015);
}
.mini-card .dot {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-card .dot svg { width: 19px; height: 19px; }
.mini-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.mini-card p { color: var(--text-dim); font-size: 13.5px; }

/* ---------------------------------- CTA ---------------------------------- */

.cta-section {
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.1), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.22);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: var(--text-dim); margin-bottom: 32px; max-width: 480px; margin-inline: auto; }

/* ---------------------------------- شريط تفتيت ---------------------------------- */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dimmer);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent-1); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--accent-1); font-weight: 700; }

/* ---------------------------------- بطاقات الخدمات ---------------------------------- */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
a.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}
.service-card.is-soon { opacity: 0.55; filter: grayscale(0.6); }
.service-card.is-soon:hover { transform: none; }
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--text-dim);
}
.service-card:not(.is-soon) .service-icon { background: var(--gradient); color: #05070d; }
.service-icon svg { width: 22px; height: 22px; }
.service-badge {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.badge-soon { background: rgba(255, 255, 255, 0.08); color: var(--text-dimmer); }
.badge-live { background: rgba(34, 211, 238, 0.14); color: var(--accent-1); }
.service-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--text-dim); font-size: 13.5px; }
.service-link { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--accent-1); }

/* ---------------------------------- بطاقات الأسعار ---------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 780px;
  margin: 0 auto;
}
.price-amount {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-amount span { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.price-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.is-highlight {
  border-color: rgba(34, 211, 238, 0.45);
  background: var(--bg-elev-2);
  box-shadow: 0 20px 50px -20px rgba(34, 211, 238, 0.35);
}
.price-tag {
  position: absolute;
  top: -13px;
  inset-inline-start: 28px;
  background: var(--gradient);
  color: #05070d;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.price-desc { color: var(--text-dim); font-size: 13.5px; margin-bottom: 18px; }
.price-limit {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-1);
  background: rgba(34, 211, 238, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  width: fit-content;
}
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}
.price-features li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-1); }
.price-btn { width: 100%; }
.price-note {
  text-align: center;
  color: var(--text-dimmer);
  font-size: 13.5px;
  max-width: 520px;
  margin: 36px auto 0;
}

/* ---------------------------------- جدول المقارنة ---------------------------------- */

.cmp-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
}
.cmp-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dim);
}
.cmp-head span:nth-child(2) { color: var(--text-dim); text-align: center; }
.cmp-head span:nth-child(3) { color: var(--accent-1); text-align: center; }
.cmp-group-title {
  padding: 14px 22px 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--accent-1);
  background: rgba(34, 211, 238, 0.04);
  text-transform: uppercase;
}
.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 12px 22px;
  border-top: 1px solid var(--border-soft);
  font-size: 13.5px;
}
.cmp-label { color: var(--text); }
.cmp-cell { display: flex; align-items: center; justify-content: center; }
.cmp-yes { color: var(--accent-1); }
.cmp-no { color: var(--text-dimmer); opacity: 0.5; }
.cmp-text { font-size: 12.5px; font-weight: 700; color: var(--text-dim); text-align: center; }

/* ---------------------------------- معاينة الخدمات (الرئيسية) ---------------------------------- */

.services-preview-foot { text-align: center; margin-top: 36px; }

/* ---------------------------------- لمحة من الداخل (لوحة تحكم) ---------------------------------- */

.dash-mock {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-elev-2));
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.6);
}
.dash-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.dash-mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.dash-mock-body { padding: 26px; }
.dash-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-tab {
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
}
.dash-tab.active { background: var(--gradient); color: #05070d; font-weight: 700; }
.dash-guard {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}
.dash-guard svg { width: 14px; height: 14px; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.dash-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.dash-stat .n { font-size: 21px; font-weight: 800; }
.dash-stat .l { font-size: 12px; color: var(--text-dimmer); margin-top: 2px; }
.dash-table { border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden; }
.dash-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  gap: 10px;
  padding: 12px 16px;
  font-size: 13px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}
.dash-row:last-child { border-bottom: none; }
.dash-row.head { color: var(--text-dimmer); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-row .cust { font-weight: 700; }
.dash-row .sub { color: var(--text-dimmer); font-size: 12px; }
.dash-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; width: fit-content; }
.pill-out { background: rgba(99, 102, 241, 0.16); color: #a5b4fc; }
.pill-delivered { background: rgba(52, 211, 153, 0.14); color: #6ee7b7; }
.pill-warn { background: rgba(239, 68, 68, 0.14); color: #fca5a5; }

/* ---------------------------------- جولة الشاشات (تبويبات فوق الإطار) ---------------------------------- */

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 22px;
}
.tour-tab {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-dim);
}
.tour-tab.active { background: var(--gradient); color: #05070d; border-color: transparent; }
.tour-panel { display: none; }
.tour-panel.active { display: block; }
.tour-caption {
  max-width: 640px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
}

/* شاشة تسجيل الطلب المصغّرة */
.reg-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reg-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 16px; }
.reg-card h4 { font-size: 12.5px; color: var(--text-dimmer); font-weight: 700; margin-bottom: 12px; }
.reg-field { margin-bottom: 12px; }
.reg-field label { display: block; font-size: 11px; color: var(--text-dimmer); margin-bottom: 5px; }
.reg-field .val { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-soft); border-radius: 8px; padding: 8px 10px; font-size: 13px; }
.reg-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.reg-pill { font-size: 11px; padding: 6px 11px; border-radius: 8px; border: 1px solid var(--border-soft); color: var(--text-dim); }
.reg-pill.active { border-color: var(--accent-1); color: var(--accent-1); background: rgba(34, 211, 238, 0.08); }
.reg-toggle-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-dim); background: rgba(34, 211, 238, 0.06); border: 1px solid rgba(34, 211, 238, 0.2); border-radius: 8px; padding: 8px 12px; margin-top: 10px; }
.reg-switch { width: 32px; height: 18px; border-radius: 999px; background: var(--gradient); position: relative; flex-shrink: 0; }
.reg-switch::after { content: ''; position: absolute; top: 2px; inset-inline-end: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; }

/* بطاقة طلب المندوب */
.courier-mock { max-width: 420px; margin: 0 auto; }
.courier-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 20px; }
.courier-id { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent-1); text-align: center; margin-bottom: 10px; }
.courier-name { font-size: 17px; font-weight: 800; text-align: center; margin-bottom: 14px; }
.courier-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--border-soft); font-size: 13px; }
.courier-row .k { color: var(--text-dimmer); font-size: 12px; }
.courier-row .v { font-weight: 700; }
.courier-actions { display: flex; gap: 10px; margin-top: 16px; }
.courier-btn { flex: 1; text-align: center; padding: 11px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.courier-btn.approve { background: var(--gradient); color: #05070d; }
.courier-btn.reject { background: rgba(239, 68, 68, 0.14); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }
.courier-btn.ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border: 1px solid var(--border-soft); }

@media (max-width: 560px) {
  .reg-mock { grid-template-columns: 1fr; }
}

/* ---------------------------------- بطاقات الشركاء ---------------------------------- */

.partner-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.partner-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.22); }
.partner-mark {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #05070d;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.partner-mark img { width: 100%; height: 100%; object-fit: cover; }
.partner-mark-pad { background: #ffffff; padding: 8px; }
.partner-mark-pad img { object-fit: contain; }
.partner-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.partner-role { display: block; font-size: 12.5px; color: var(--accent-1); font-weight: 700; margin-bottom: 10px; }
.partner-body p { color: var(--text-dim); font-size: 13.5px; margin-bottom: 14px; }
.partner-visit { font-size: 13px; font-weight: 700; color: var(--text); }

/* ---------------------------------- تذييل ---------------------------------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-col h5 { font-size: 13.5px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14px; color: var(--text-dim); }
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-dimmer);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------------------------------- استجابة ---------------------------------- */

@media (max-width: 900px) {
  .grid-2, .grid-3, .steps, .grid-2x3, .pricing-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-row { grid-template-columns: 1.6fr 1fr; }
  .dash-row .status, .dash-row .price { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .hero { padding: 80px 0 60px; }
  section { padding: 64px 0; }
  .btn { padding: 11px 20px; font-size: 13.5px; }
  .cta-section { padding: 44px 24px; }
  .cmp-head, .cmp-row { grid-template-columns: 1.6fr 0.8fr 0.8fr; padding-inline: 14px; font-size: 12px; }
  .cmp-group-title { padding-inline: 14px; }
}

[dir="ltr"] .btn svg,
[dir="ltr"] .nav-links {
  direction: ltr;
}

/* ─────────────────────── نافذة تسجيل الاهتمام ─────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 6, 12, 0.72); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal-box {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
}
.modal-close {
  position: absolute; inset-inline-end: 16px; top: 16px; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--border); background: var(--bg-elev-2);
  color: var(--text-dim); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.modal-close:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.24); }
.modal-box h3 { font-size: 21px; margin-bottom: 8px; padding-inline-end: 36px; }
.modal-lead { color: var(--text-dim); font-size: 13.5px; line-height: 1.7; margin-bottom: 4px; }
.modal-plan {
  display: inline-block; margin-bottom: 16px; font-size: 12.5px; color: var(--accent-1);
  background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px; padding: 4px 12px;
}
.modal-plan[hidden] { display: none; }
#signupForm { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
#signupForm .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#signupForm .field { display: flex; flex-direction: column; gap: 6px; }
#signupForm label { font-size: 12.5px; color: var(--text-dim); }
#signupForm input, #signupForm select {
  width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font: inherit; font-size: 14px;
}
#signupForm input:focus, #signupForm select:focus { outline: none; border-color: var(--accent-1); }
#signupForm select { appearance: none; cursor: pointer; }
#signupForm button[type="submit"] { width: 100%; justify-content: center; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { font-size: 13px; min-height: 18px; }
.form-msg-ok { color: #4fc882; }
.form-msg-err { color: #ef5a5a; }

@media (max-width: 520px) {
  #signupForm .field-row { grid-template-columns: 1fr; }
  .modal-box { padding: 26px 20px; }
}
