:root{
  --bg:#0b1220;
  --card:#101a33;
  --text:#eaf0ff;
  --muted:#b7c2e2;
  --brand:#4aa3ff;
  --brand2:#6cf0d6;
  --border: rgba(255,255,255,.10);
  --shadow: 0 14px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Kufi Arabic", "Noto Sans Arabic", sans-serif;
  background: radial-gradient(1100px 700px at 20% 0%, rgba(74,163,255,.20), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(108,240,214,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.75;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1120px, 92%); margin-inline:auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#000; border:1px solid var(--border); border-radius:12px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.68);
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
}
.logo{
  width:38px; height:38px; border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow);
}
.brand h1{
  font-size:14px; margin:0; letter-spacing:.6px;
  text-transform:uppercase;
}
.brand span{display:block; font-size:12px; color:var(--muted); text-transform:none; letter-spacing:0}
.menu{
  display:flex; gap:14px; align-items:center;
}
.menu a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  transition:.2s ease;
}
.menu a:hover, .menu a.active{
  color:var(--text);
  background: rgba(255,255,255,.06);
}
.burger{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.hero{
  padding:64px 0 28px;
}
.hero-grid{
  display:grid; gap:22px;
  grid-template-columns: 1.25fr .85fr;
  align-items:stretch;
}
.card{
  background: rgba(16,26,51,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-main{
  padding:28px;
  overflow:hidden;
  position:relative;
}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}
.dot{
  width:9px; height:9px; border-radius:99px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.hero h2{
  margin:14px 0 10px;
  font-size:36px;
  line-height:1.2;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  max-width: 60ch;
}
.cta{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  color:var(--text);
  cursor:pointer;
  transition:.2s ease;
  font-weight:600;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08)}
.btn.primary{
  border-color: rgba(74,163,255,.35);
  background: linear-gradient(135deg, rgba(74,163,255,.26), rgba(108,240,214,.20));
}
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.stat{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.stat b{display:block; font-size:18px}
.stat small{color:var(--muted)}

.hero-side{
  padding:18px;
  display:grid; gap:12px;
}
.side-item{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.side-item h3{margin:0 0 6px; font-size:14px}
.side-item p{margin:0; color:var(--muted); font-size:13px}

.section{padding:26px 0}
.section h3{
  margin:0 0 12px;
  font-size:22px;
}
.grid-3{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.feature{
  padding:18px;
}
.feature h4{margin:0 0 6px}
.feature p{margin:0; color:var(--muted)}
.kpi{
  display:flex; gap:10px; align-items:center; margin-top:10px; color:var(--muted); font-size:13px
}

.banner{
  padding:22px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
}
.banner p{margin:0; color:var(--muted)}
.banner strong{color:var(--text)}

.page-head{
  padding:30px 0 10px;
}
.page-head h2{margin:0 0 6px; font-size:30px}
.page-head p{margin:0; color:var(--muted)}

.content{
  padding:18px;
}
.content h3{margin-top:22px}
.content p, .content li{color:var(--muted)}
.content a{color:var(--text); text-decoration:underline; text-underline-offset:3px}

.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:8px;
}
label{color:var(--muted); font-size:13px}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}

.footer{
  border-top:1px solid var(--border);
  margin-top:30px;
  padding:22px 0;
  color:var(--muted);
}
.footer-grid{
  display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.footer a{color:var(--text)}
.small{font-size:13px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:inline-flex}
  .menu.open{
    display:flex;
    position:absolute;
    right:4%;
    top:64px;
    flex-direction:column;
    width:min(360px, 92vw);
    background: rgba(11,18,32,.92);
    border:1px solid var(--border);
    border-radius:18px;
    padding:10px;
    box-shadow: var(--shadow);
  }
}
