:root {
  --brand-primary: #0d6efd;
  --brand-dark: #0a1a3c;
  --brand-accent: #ffc107;
  --ink: #10182b;
}

body {
  font-family: 'Inter', 'Cairo', sans-serif;
  color: var(--ink);
  background: #f7f8fb;
}
html[dir="rtl"] body { font-family: 'Cairo', 'Inter', sans-serif; }

.site-navbar {
  background: linear-gradient(90deg, var(--brand-dark), #142a5c);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--brand-accent); color: var(--brand-dark);
  font-weight: 800; font-size: .8rem; margin-inline-end: .4rem;
}

.hero {
  background: radial-gradient(circle at 20% 20%, #1c3a8a 0%, var(--brand-dark) 60%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(255,193,7,.18), transparent 45%);
}
.hero h1 { font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); }
.hero .lead { color: #c7d2f0; font-size: 1.15rem; }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-stats .num { font-size: 1.8rem; font-weight: 800; color: var(--brand-accent); }
.hero-stats .lbl { color: #c7d2f0; font-size: .85rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,193,7,.14); color: var(--brand-accent);
  border: 1px solid rgba(255,193,7,.35);
  padding: .4rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
}

.hero-features {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.4rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-feature {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: .6rem .9rem;
  font-size: .82rem; color: #dbe3fa; max-width: 190px;
}
.hero-feature .hf-ico { font-size: 1rem; }

section { padding: 4.5rem 0; }
.section-title { font-weight: 800; font-size: 2rem; }
.section-subtitle { color: #667; max-width: 640px; }

.app-card {
  background: #fff; border-radius: 16px; padding: 1.6rem;
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
  border: 1px solid #eef0f5;
  height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}
.app-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,23,42,.12); }
.app-icon {
  font-size: 1.8rem; width: 56px; height: 56px; border-radius: 14px;
  background: #eef3ff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.app-card h5 { font-weight: 700; }
.app-card p { color: #667; font-size: .92rem; min-height: 3.2em; }
.badge-soon { background: #fff3cd; color: #7a5b00; }

.card-panel {
  background: #fff; border-radius: 18px; padding: 2rem;
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
  border: 1px solid #eef0f5;
}

.how-step {
  text-align: center; height: 100%;
  padding: 1.6rem 1rem;
}
.how-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.how-step h6 { font-weight: 700; margin-bottom: .5rem; }
.how-step p { color: #667; font-size: .88rem; margin: 0; }

.cta-band {
  background: linear-gradient(120deg, var(--brand-primary), #1c3a8a);
  border-radius: 20px; padding: 3rem 2rem; text-align: center; color: #fff;
}
.cta-band h2 { font-weight: 800; margin-bottom: .6rem; }
.cta-band p { color: #dbe3fa; max-width: 560px; margin: 0 auto 1.4rem; }

.price-box {
  background: linear-gradient(135deg, #eef3ff, #f7f8fb);
  border-radius: 14px; padding: 1.2rem 1.5rem;
  border: 1px dashed #b9caf7;
  font-weight: 700; font-size: 1.4rem; color: var(--brand-primary);
}

.bank-card {
  border-radius: 14px; border: 1px solid #eef0f5; padding: 1.2rem;
  background: #fff;
}

.site-footer { background: var(--brand-dark); }
.site-footer .footer-links a { color: #c7d2f0; text-decoration: none; display: block; margin-bottom: .4rem; }
.site-footer .footer-links a:hover { color: var(--brand-accent); }
.text-light-50 { color: #a9b6dc !important; }

/* Admin & app-instance shared look */
.admin-shell { min-height: 100vh; background: #f2f4fa; }
.admin-sidebar { background: var(--brand-dark); color: #fff; min-height: 100vh; }
.admin-sidebar a { color: #c7d2f0; text-decoration: none; display: block; padding: .6rem 1rem; border-radius: 8px; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.08); color: #fff; }
.stat-card { background: #fff; border-radius: 14px; padding: 1.2rem; box-shadow: 0 4px 16px rgba(15,23,42,.06); }
