/* ============================================================
   MAIN.CSS — spasoftwareoman.com
   Design: Navy + Gold | Inter EN | Noto Sans Arabic AR
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162535;
  --navy-light:  #1E3A5F;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dim:    rgba(201,168,76,0.15);
  --white:       #FFFFFF;
  --surface:     #F6F8FA;
  --surface-2:   #EDF2F7;
  --border:      #E2E8F0;
  --text:        #2D3748;
  --muted:       #718096;
  --green:       #2D9E6B;
  --max-w:       1180px;
  --r:           10px;
  --r-lg:        18px;
  --shadow:      0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.14);
  --t:           0.2s ease;
  --font-en:     'Inter', sans-serif;
  --font-ar:     'Noto Sans Arabic', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.lang-ar { font-family: var(--font-ar); direction: rtl; text-align: right; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- LANGUAGE TOGGLE ---- */
.t-ar { display: none; }
.lang-ar .t-en { display: none; }
.lang-ar .t-ar { display: revert; }

/* ---- CONTAINER ---- */
.wrap { width: min(calc(100% - 32px), var(--max-w)); margin-inline: auto; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}
.topbar a { color: var(--gold-light); transition: color var(--t); }
.topbar a:hover { color: var(--white); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  line-height: 1.4;
}
.lang-btn.active,
.lang-btn:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(13,27,42,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-icon img { width: 42px; height: 42px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-tag {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.nav-link:hover { background: var(--surface); color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; background: var(--surface); }

/* CTA button in nav */
.btn-nav {
  margin-left: 12px;
  padding: 8px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--navy-light); transform: translateY(-1px); }
.lang-ar .btn-nav { margin-left: 0; margin-right: 12px; }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-nav.open { display: block; pointer-events: auto; }
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.5);
}
.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 80vw);
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.lang-ar .mobile-panel { right: auto; left: 0; transform: translateX(-100%); }
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-close {
  align-self: flex-end;
  background: var(--surface);
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 8px;
  transition: background var(--t);
}
.mobile-link:hover, .mobile-link.active { background: var(--surface); color: var(--navy); }
.mobile-cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  cursor: pointer;
  border: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--navy); background: var(--surface); }

.btn-sm { padding: 8px 18px; font-size: 0.83rem; }

/* ============================================================
   HERO — INDEX
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.metric-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.08);
}
.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.metric-icon svg { width: 18px; height: 18px; color: var(--gold); }
.metric-label { font-size: 0.83rem; font-weight: 600; color: var(--white); }
.metric-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.card-footer a { color: var(--gold); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item { padding: 0 20px; }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.lang-ar .stat-item + .stat-item { border-left: none; border-right: 1px solid var(--border); }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--surface); }

.section-head { margin-bottom: 48px; }
.section-head.centered { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--gold-light); }
h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-dark h2.section-title { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ============================================================
   CARDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.section-gray .card { background: var(--white); }
.section-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.section-dark .card:hover { border-color: var(--gold); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--t);
}
.card:hover .card-icon { background: var(--gold-dim); }
.card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.card:hover .card-icon svg { color: var(--gold); }
.section-dark .card-icon { background: rgba(255,255,255,0.08); }
.section-dark .card-icon svg { color: var(--gold); }
.section-dark .card:hover .card-icon { background: var(--gold-dim); }

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.section-dark .card h3 { color: var(--white); }
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.section-dark .card p { color: rgba(255,255,255,0.55); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 70px 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .hero-kicker { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   TWO-COL SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.split-lg { grid-template-columns: 1.4fr 1fr; }
.split-reverse > *:first-child { order: 2; }
.split-reverse > *:last-child { order: 1; }
.split h2 { font-size: 1.7rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.01em; }
.split p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }

.split-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.module-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-dim);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.card-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.card-icon-lg svg { width: 28px; height: 28px; }
.card-center { text-align: center; align-items: center; display: flex; flex-direction: column; }
.card-center .card-icon { margin-inline: auto; }

/* ============================================================
   LIST ITEMS
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ============================================================
   STEPS (how it works)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 1px;
  background: var(--border);
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.section-gray .step-num { border-color: var(--surface); }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ============================================================
   ROLE TABLE
   ============================================================ */
.role-table { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.role-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.role-row:last-child { border-bottom: none; }
.role-label {
  background: var(--surface);
  padding: 18px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}
.lang-ar .role-label { border-right: none; border-left: 1px solid var(--border); }
.role-desc {
  padding: 18px 20px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 0.83rem; font-weight: 600; color: var(--navy); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.07);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 13px; font-size: 0.95rem; border-radius: 8px; margin-top: 4px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-item-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-item-value { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.contact-item-value a { color: var(--navy); }

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 10px;
  margin-top: 8px;
  transition: background var(--t), transform var(--t);
}
.wa-btn:hover { background: #1DB954; transform: translateY(-2px); }
.wa-btn svg { width: 22px; height: 22px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.trust-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.trust-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.trust-box p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.85rem; margin-top: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--t); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   MISC
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}
.section-dark .tag { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.25); }

.note {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 12px 16px;
  line-height: 1.6;
  margin-top: 20px;
}
.lang-ar .note { border-left: none; border-right: 3px solid var(--gold); border-radius: var(--r) 0 0 var(--r); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { padding: 70px 0 60px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left: none; }
  .lang-ar .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-left: none; }
  .lang-ar .stat-item:nth-child(3) { border-right: none; border-left: 1px solid var(--border); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .split-lg, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-reverse > *:first-child { order: 0; }
  .split-reverse > *:last-child { order: 0; }
  .split-icon-col { flex-direction: row; justify-content: flex-start; }
  .cta-banner { grid-template-columns: 1fr; gap: 28px; padding: 40px 28px; }
  .cta-actions { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .site-nav { display: none; }
  .btn-nav { display: none; }
  .ham { display: flex; }
  .role-row { grid-template-columns: 140px 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .page-hero { padding: 50px 0 44px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 0; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .lang-ar .step { text-align: right; }
  .step-num { width: 44px; height: 44px; font-size: 0.95rem; flex-shrink: 0; margin: 0; }
  .step-body { flex: 1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .role-row { grid-template-columns: 1fr; }
  .role-label { border-right: none; border-bottom: 1px solid var(--border); }
  .lang-ar .role-label { border-left: none; border-bottom: 1px solid var(--border); }
}
