:root{
  --bg:#0b1220;
  --card:#0f1a31;
  --muted:#98a2b3;
  --text:#e7ecf5;
  --accent:#2dd4bf;
  --accent2:#60a5fa;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Almarai", system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 85% 15%, rgba(45,212,191,.18), transparent 60%),
              radial-gradient(900px 600px at 15% 25%, rgba(96,165,250,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.8;
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin-inline:auto}

.topbar{
  background: rgba(0,0,0,.25);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  gap:12px;
}
.topbar__left{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.topbar__sep{color:rgba(231,236,245,.45)}
.topbar__item{color:rgba(231,236,245,.92)}
.topbar__item span{color:var(--accent)}
.badge{
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:rgba(231,236,245,.9);
  background: rgba(255,255,255,.04);
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:80px; height:80px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(45,212,191,.25), rgba(96,165,250,.25));
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight:800;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:13px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:12px; position:relative}
.nav__list{
  display:flex; gap:14px; list-style:none; margin:0; padding:0;
}
.nav__list a{
  color:rgba(231,236,245,.92);
  padding:8px 10px;
  border-radius:10px;
  transition:.2s ease;
}
.nav__list a:hover{background: rgba(255,255,255,.06)}
.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav__toggle span{
  display:block; height:2px; width:20px;
  margin:5px auto;
  background: rgba(231,236,245,.9);
  border-radius:2px;
}
.header__actions{display:flex; gap:10px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:rgba(231,236,245,.95);
  transition:.2s ease;
  font-weight:700;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.07)}
.btn--primary{
  background: linear-gradient(135deg, rgba(45,212,191,.22), rgba(96,165,250,.22));
  border-color: rgba(96,165,250,.35);
}
.btn--secondary{
  background: rgba(45,212,191,.10);
  border-color: rgba(45,212,191,.35);
}
.btn--ghost{background: transparent}

/* Hero */
.hero{padding:44px 0 22px}
.hero__inner{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch}
.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: rgba(231,236,245,.92);
}
.hero h1{
  margin:12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.25;
}
.accent{color: var(--accent)}
.hero__lead{color:rgba(231,236,245,.88); max-width: 60ch}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:20px;
}
.stat{
  padding:14px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.stat__num{font-size:22px; font-weight:800}
.stat__label{color:var(--muted); font-size:13px}

.hero__visual{position:relative}
.hero__bg{
  position:absolute; inset:0;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--border);
}
.card--visual{
  position:relative;
  z-index:2;
  margin-inline-start:auto;
  width:min(420px, 100%);
  border-radius: 26px;
  padding:16px;
  background: rgba(15,26,49,.75);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.card__header{display:flex; align-items:center; gap:8px; margin-bottom:12px}
.dot{width:10px; height:10px; border-radius:999px}
.dot--green{background: rgba(45,212,191,.9)}
.dot--yellow{background: rgba(250,204,21,.9)}
.dot--red{background: rgba(248,113,113,.9)}
.card__title{margin-inline-start:auto; color:rgba(231,236,245,.9); font-weight:700}
.card__body{display:grid; gap:10px}
.mini-row{display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border:1px solid var(--border); border-radius:14px; background: rgba(255,255,255,.03)}
.mini-row span{color:var(--muted)}
.progress{height:10px; border-radius:999px; border:1px solid var(--border); background: rgba(255,255,255,.03); overflow:hidden}
.progress__bar{height:100%; background: linear-gradient(90deg, rgba(45,212,191,.9), rgba(96,165,250,.9))}
.mini-note{color:var(--muted); font-size:13px}

/* Sections */
.section{padding:52px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0; font-size: clamp(22px, 3vw, 30px)}
.section__head p{margin:8px 0 0; color:rgba(231,236,245,.86); max-width: 70ch}

.grid{display:grid; gap:14px}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr))}
.grid.three{grid-template-columns: repeat(3, minmax(0,1fr))}

.panel, .card, .product{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.panel--muted{background: rgba(255,255,255,.02)}
.card h3, .panel h3, .product h3{margin:0 0 8px}
.card p, .product p{color:rgba(231,236,245,.85); margin:0 0 10px}

.checklist{margin:10px 0 0; padding:0; list-style:none; display:grid; gap:8px}
.checklist li{position:relative; padding-inline-start:26px; color:rgba(231,236,245,.88)}
.checklist li::before{
  content:"✓";
  position:absolute; inset-inline-start:0; top:0;
  color: var(--accent);
  font-weight:900;
}

.bullets{margin:0; padding-inline-start:18px; color:rgba(231,236,245,.86)}
.bullets li{margin:6px 0}

/* Filters + products */
.filters{display:flex; gap:8px; flex-wrap:wrap; margin:14px 0}
.filter{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: rgba(231,236,245,.92);
  cursor:pointer;
  font-weight:700;
}
.filter.is-active{
  border-color: rgba(45,212,191,.35);
  background: rgba(45,212,191,.10);
}
.product{transition:.2s ease}
.product:hover{transform: translateY(-2px); background: rgba(255,255,255,.05)}
.product__icon{font-size:26px; opacity:.9; margin-bottom:8px}
.product__meta{display:flex; gap:8px; flex-wrap:wrap}
.product__meta span{
  font-size:12px; color:rgba(231,236,245,.86);
  border:1px solid var(--border);
  padding:6px 9px;
  border-radius:999px;
  background: rgba(255,255,255,.02);
}

/* CTA strip */
.cta-strip{
  margin-top:16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(96,165,250,.25);
  background: rgba(96,165,250,.06);
}
.cta-strip p{margin:6px 0 0; color:rgba(231,236,245,.84)}

/* Contact cards (no form) */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.contact-card{
  display:flex; align-items:center; gap:12px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition:.2s ease;
}
.contact-card:hover{transform: translateY(-2px); background: rgba(255,255,255,.05)}
.contact-card__icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  font-size:18px;
}
.contact-card__title{font-weight:800}
.contact-card__value{color:rgba(231,236,245,.88)}
.note{margin-top:14px; color:var(--muted); font-size:13px}
.muted{color:var(--muted)}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.22);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.footer__brand{display:flex; align-items:center; gap:10px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{color:rgba(231,236,245,.88); padding:6px 8px; border-radius:10px}
.footer__links a:hover{background: rgba(255,255,255,.05)}
.footer__copy{color:var(--muted); font-size:13px}

/* Back to top */
.backtotop{
  position:fixed;
  inset-inline-end:16px;
  inset-block-end:16px;
  width:46px; height:46px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: rgba(231,236,245,.95);
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform: translateY(8px);
  transition:.2s ease;
}
.backtotop.is-visible{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr}
  .header__actions{display:none}
}
@media (max-width: 760px){
  .grid.two{grid-template-columns:1fr}
  .grid.three{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr}
  .nav__toggle{display:block}
  .nav__list{
    position:absolute;
    inset-inline-end: 0;
    inset-block-start: 58px;
    width:min(320px, 92vw);
    flex-direction:column;
    gap:8px;
    padding:12px;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(11,18,32,.92);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav__list.is-open{display:flex}
}
