:root{
  --bg:#0b0b0d;
  --bg2:#121216;
  --card:#15151a;
  --text:#f7f7f7;
  --muted:#c9c9cf;
  --gold:#d4af37;
  --gold2:#b68f20;
  --border:rgba(255,255,255,.10);
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;height:100%}
body{
  background: radial-gradient(1200px 600px at 70% -10%, rgba(212,175,55,.10), transparent 60%),
              linear-gradient(180deg, #0b0b0d 0%, #0f0f13 100%);
  color:var(--text);
  font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  line-height:1.6;
}
a{color:var(--gold);text-decoration:none}
a:hover{opacity:.92}
.container{width:min(1200px,92%);margin:0 auto}
header{
  position:sticky; top:0; z-index:9999;
  background:rgba(11,11,13,.72);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; color:var(--text); font-weight:800; letter-spacing:.3px}
.brand img{height:34px;width:auto;display:block}
.brand .name{font-size:14px;opacity:.95}
.navlinks{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.lang{display:flex; gap:10px; align-items:center; opacity:.95}
.lang a{color:#ddd}
.lang a[aria-current="page"]{color:var(--gold)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:999px;
  border:1px solid var(--border);
  font-weight:700;
  transition:transform .08s ease, opacity .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-primary{background:linear-gradient(135deg,var(--gold),var(--gold2)); border-color:transparent; color:#141315}
.btn-ghost{background:transparent;color:var(--text)}
.hero{position:relative; overflow:hidden; padding:72px 0 34px}
.hero::after{
  content:""; position:absolute; inset:0;
  background:url("assets/hero.svg") center/cover no-repeat;
  opacity:.18; mix-blend:screen; pointer-events:none;
}
.hero-inner{position:relative; z-index:1; text-align:center}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.30);
  color:var(--gold); font-weight:700;
}
h1{margin:.45em 0 .25em; font-size:clamp(30px,4.8vw,56px); line-height:1.08}
.lead{max-width:900px; margin:10px auto 22px; color:var(--muted); font-size:clamp(16px,1.35vw,19px)}
.cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.section{padding:26px 0}
.grid{display:grid; gap:16px}
@media (min-width:860px){.grid.cols-3{grid-template-columns:repeat(3,1fr)}}
.card{
  background:rgba(21,21,26,.92);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.card h2,.card h3{margin:.2em 0 .35em}
.card p{margin:.2em 0; color:var(--muted)}
.kpi{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:16px}
.kpi .pill{
  padding:10px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(18,18,22,.7);
  color:#e9e9ee; font-weight:700;
}
.split{display:grid; gap:16px; align-items:start}
@media (min-width:920px){.split{grid-template-columns:1.25fr .75fr}}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:.35em 0}
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(18,18,22,.75);
  padding:22px 0;
  color:#bbb;
}
.footerrow{display:flex; gap:10px; flex-wrap:wrap; justify-content:space-between; align-items:center}
.small{opacity:.75; font-size:.92rem}
/* RTL support */
html[dir="rtl"] body{text-align:right}
html[dir="rtl"] .nav{flex-direction:row-reverse}
html[dir="rtl"] .brand{flex-direction:row-reverse}
html[dir="rtl"] .navlinks{justify-content:flex-start}
html[dir="rtl"] .lang{flex-direction:row-reverse}
