:root{
  --bg:#ffffff;
  --ink:#0b0b0d;
  --muted:#5b616a;
  --line:rgba(0,0,0,.10);
  --soft:rgba(0,0,0,.04);
  --radius:18px;
  --shadow:0 18px 60px rgba(0,0,0,.10);
  --shadow2:0 10px 28px rgba(0,0,0,.10);
  --max:1140px;

  /* Accent (cool, premium) */
  --accent:#2e6ae6;
  --accent2:#1f55c7;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; width:100%; overflow-x:hidden}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  width:100%;
  overflow-x:hidden;
}
body[dir="rtl"]{font-family:Tajawal,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

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

/* Animated logo watermark across full page */
.bg-watermark{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.bg-watermark img{
  width:min(1350px, 145vw);
  max-width:none;
  opacity:.18;
  filter:grayscale(1) contrast(1.1);
  transform-origin:center;
  animation:logoWheelSpin 95s linear infinite;
}
@keyframes logoWheelSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@media (max-width: 640px){
  .bg-watermark img{
    width:190vw;
    opacity:.16;
  }
}
@media (prefers-reduced-motion: reduce){
  .bg-watermark img{animation:none}
}

/* Top bar */
.topbar{
  position:sticky; top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(16px);
  background:rgba(255,255,255,.70);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; gap:18px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__mark{width:44px;height:44px}
.brand__name{font-weight:700; line-height:1.1}
.brand__sub{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:18px; margin-inline:auto; flex-wrap:wrap; justify-content:center}
.nav a{
  font-size:14px;
  color:rgba(11,11,13,.78);
  padding:8px 10px;
  border-radius:999px;
}
.nav a:hover{background:var(--soft); color:rgba(11,11,13,.92)}

.lang{display:flex; gap:8px}
.lang__btn{
  border:1px solid var(--line);
  background:#fff;
  color:rgba(11,11,13,.78);
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
}
.lang__btn.is-active{
  border-color:rgba(46,106,230,.25);
  box-shadow:0 0 0 4px rgba(46,106,230,.10);
  color:var(--accent2);
}

/* Hero */
.hero{
  padding:70px 0 34px;
  position:relative;
  overflow:hidden; /* prevent any horizontal scroll on mobile */
}
.hero:before{
  content:"";
  position:absolute; inset:-140px -20vw auto -20vw;
  height:420px;
  background:radial-gradient(closest-side, rgba(46,106,230,.12), rgba(46,106,230,0));
  pointer-events:none;
  z-index:-1;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.hero__title{
  margin:0;
  font-size:44px;
  letter-spacing:-.02em;
}
.hero__lead{
  margin:14px 0 6px;
  font-size:18px;
  color:rgba(11,11,13,.78);
  line-height:1.8;
}
.hero__lead2{
  margin:0 0 18px;
  font-size:14px;
  color:rgba(11,11,13,.52);
  line-height:1.7;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn--primary{
  background:linear-gradient(180deg, var(--accent), var(--accent2));
  border-color:rgba(46,106,230,.30);
  color:#fff;
  box-shadow:0 14px 34px rgba(46,106,230,.24);
}
.btn--ghost{background:#fff}
.btn--full{width:100%}

.hero__chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.chip{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  color:rgba(11,11,13,.72);
  font-weight:600;
  font-size:13px;
}

/* Right hero card */
.hero__card{display:flex}
.heroCard{
  width:100%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  border-radius:24px;
  box-shadow:var(--shadow2);
  padding:18px;
}
.heroCard__kicker{font-weight:800; color:var(--accent2); font-size:13px; letter-spacing:.02em}
.heroCard__title{font-size:20px; font-weight:800; margin-top:10px}
.heroCard__bullets{margin-top:14px; display:grid; gap:10px}
.bullet{
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.8);
  border-radius:14px;
  padding:10px 12px;
  color:rgba(11,11,13,.74);
  font-weight:600;
}

/* Sections */
.section{padding:54px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(46,106,230,.04));
  border-top:1px solid rgba(0,0,0,.04);
  border-bottom:1px solid rgba(0,0,0,.04);
}
.sectionHead{text-align:center; margin-bottom:22px}
.sectionHead h2{margin:0; font-size:30px; letter-spacing:-.01em}
.sectionHead p{margin:10px auto 0; max-width:760px; color:rgba(11,11,13,.68); line-height:1.8}

/* About grid */
.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.80);
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.card--p{padding:20px}
.cardTitle{margin:0 0 10px; font-size:18px}
.p{margin:0 0 12px; color:rgba(11,11,13,.72); line-height:1.9}
.p:last-child{margin-bottom:0}

.ticks{display:grid; gap:10px; margin-top:14px}
.tick{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(46,106,230,.06);
  border:1px solid rgba(46,106,230,.14);
  color:rgba(11,11,13,.78);
  font-weight:700;
}

/* Services */
.services{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
.serviceCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  border-radius:22px;
  padding:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.serviceIcon{font-size:22px}
.serviceCard h3{margin:12px 0 8px; font-size:17px}
.serviceCard p{margin:0; color:rgba(11,11,13,.68); line-height:1.8}

/* Timeline */
.timeline{
  display:grid;
  gap:12px;
  max-width:920px;
  margin:0 auto;
}
.tlItem{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:14px;
  align-items:stretch;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  border-radius:22px;
  padding:14px 16px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.tlYear{
  font-weight:900;
  font-size:18px;
  color:rgba(11,11,13,.78);
  display:flex; align-items:center; justify-content:center;
  border-radius:16px;
  background:rgba(0,0,0,.03);
}
.tlTitle{font-weight:900; margin-top:2px}
.tlText{color:rgba(11,11,13,.68); line-height:1.8; margin-top:6px}

/* Compliance docs */
.compliance{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.docCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.86);
  border-radius:22px;
  padding:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin:0;
}
.docCard img{border-radius:14px}

/* Clients */
.clientsFrame{
  border:1px solid var(--line);
  background:rgba(255,255,255,.86);
  border-radius:24px;
  padding:14px;
  box-shadow:0 12px 34px rgba(0,0,0,.08);
  overflow:hidden;
}
.clientsImg{
  width:100%;
  border-radius:18px;

}


.clientsGrid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
}
.clientLogo{
  width:100%;
  height:92px;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:12px;
}
@media (max-width: 920px){
  .clientsGrid{grid-template-columns: repeat(4,1fr);}
  .clientLogo{height:86px;}
}
@media (max-width: 520px){
  .clientsGrid{grid-template-columns: repeat(2,1fr);}
  .clientLogo{height:84px;}
}


/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
.contactCard{padding:18px}
.contactCard--click:hover{transform:translateY(-1px); transition:transform .18s ease}
.contactLabel{font-weight:900; color:rgba(11,11,13,.78); margin-bottom:10px}
.contactVal{font-weight:800}
.ltr{direction:ltr; unicode-bidi:embed; display:inline-block}
.contactHint{margin-top:6px; color:rgba(11,11,13,.56); font-weight:700; font-size:13px}
.qr{width:140px; height:auto; border-radius:16px; border:1px solid rgba(0,0,0,.06); background:#fff; padding:8px}

/* Footer */
.footer{padding:26px 0 10px}
.footer__line{height:1px; background:rgba(0,0,0,.08); margin:10px 0 18px}
.footer__text{color:rgba(11,11,13,.56); font-weight:700; text-align:center}

/* Floating widget (small, bottom-right) */
.widget{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.92);
  border-radius:999px;
  padding:10px 12px;
  box-shadow:0 16px 40px rgba(0,0,0,.14);
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}
.widget__dot{
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 5px rgba(46,106,230,.14);
}
.widget__text{font-weight:900; color:rgba(11,11,13,.78); font-size:13px}

.widgetPanel{
  position:fixed;
  right:18px;
  bottom:74px;
  z-index:81;
  width:min(340px, calc(100vw - 36px));
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.96);
  border-radius:20px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  overflow:hidden;
  display:none;
}
.widgetPanel.is-open{display:block}
.widgetPanel__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.widgetPanel__title{font-weight:900}
.widgetPanel__close{
  width:32px; height:32px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:0;
}
.widgetPanel__body{padding:12px 14px 14px}
.field{display:grid; gap:6px; margin-bottom:10px}
.field__label{font-weight:900; color:rgba(11,11,13,.70); font-size:13px}
.field__input{
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:10px 12px;
  background:#fff;
  font:inherit;
}
.field__textarea{resize:none}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .nav{display:none}
  .services{grid-template-columns:1fr 1fr}
  .aboutGrid{grid-template-columns:1fr}
  .compliance{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .hero__title{font-size:34px}
  .contactGrid{grid-template-columns:1fr}
  .services{grid-template-columns:1fr}
}

/* Clients extras */
.clientsExtras{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.brandTile{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(10,20,30,.10);
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
  font-weight:600;
  letter-spacing:.2px;
}

/* QR link */
.qrLink{ display:inline-block; }
.qrHint{
  margin-top:10px;
  font-size:13px;
  color:rgba(20,30,40,.65);
}
