:root{
  --bg:#0b1020;
  --panel:#101a33;
  --card:#0f1830;
  --text:#eef2ff;
  --muted:#b7c1e6;
  --line:rgba(255,255,255,.10);
  --accent:#6ee7ff;
  --accent2:#7c5cff;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans Arabic", "Tahoma", sans-serif;
  background:
    radial-gradient(900px 450px at 15% 5%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(110,231,255,.18), transparent 55%),
    var(--bg);
  color:var(--text);
}

.container{max-width:1100px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.60);
  border-bottom: 1px solid var(--line);
  z-index:1000;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{width:36px;height:36px;border-radius:8px}
.brand__name{font-weight:800;letter-spacing:.3px}
.brand__tag{font-size:12px;color:var(--muted)}

.topbar__nav{display:flex; gap:12px; flex-wrap:wrap}
.navlink{
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  padding:6px 10px;
  border:1px solid transparent;
  border-radius:10px;
}
.navlink:hover{border-color:var(--line); background: rgba(255,255,255,.04)}
.navlink--muted{color:var(--muted)}

.hero{padding:38px 0 18px}
.grid{display:grid; gap:18px}
.grid--2{grid-template-columns: 1.2fr .8fr}
.grid--3{grid-template-columns: repeat(3, 1fr)}

.badge{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}

.h1{font-size:44px; line-height:1.15; margin:14px 0 10px}
.h2{font-size:24px; margin:0 0 10px}
.h3{font-size:18px; margin:0 0 6px}
.lead{font-size:18px; color:var(--muted); line-height:1.7; margin:0 0 12px}
.sublead{color:var(--muted); line-height:1.7; margin:0 0 14px}

.ticks{margin:14px 0 0; padding:0 18px 0 0; color:var(--text)}
.ticks li{margin:10px 0; color:var(--text)}
.ticks--ltr{padding-left:18px; padding-right:0}

.cta{display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:16px}
.cta--center{justify-content:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}
.btn--primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 14px 34px rgba(124,92,255,.22);
}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn:hover{transform: translateY(-1px)}

.note{margin:14px 0 0; color:var(--muted); font-size:13px}

.section{padding:34px 0}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card{
  background: rgba(16,26,51,.55);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.card--hero{padding:16px}
.card__footer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.mini{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:12px}
.mini__item{border:1px solid var(--line); border-radius:14px; padding:12px; background: rgba(255,255,255,.03)}
.mini__title{font-weight:800; margin-bottom:4px}
.mini__desc{color:var(--muted); font-size:13px; line-height:1.6}

.price{display:flex; align-items:baseline; justify-content:space-between; gap:10px}
.price__label{color:var(--muted); font-size:13px}
.price__value{font-size:22px; font-weight:900}
.small{color:var(--muted); font-size:12px; line-height:1.6}

.steps{display:grid; gap:10px; margin-top:14px}
.step{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:16px; border:1px solid var(--line); background: rgba(255,255,255,.03)}
.step__n{
  width:32px;height:32px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(124,92,255,.20);
  border:1px solid rgba(124,92,255,.35);
  font-weight:900;
}
.step__t{font-weight:900; margin-bottom:4px}
.step__d{color:var(--muted); line-height:1.6; font-size:14px}

.pricebox{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background: rgba(255,255,255,.03);
}
.pricebox__big{font-size:18px; font-weight:800; margin-bottom:6px}
.pricebox__small{color:var(--muted); font-size:13px; line-height:1.6}

.faq{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
  background: rgba(255,255,255,.03);
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{color:var(--muted); line-height:1.7; margin:10px 0 0}

.footer{
  padding:22px 0 34px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer__inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
.muted{color:var(--muted)}

.wa-float{
  position: fixed;
  width: 56px;
  height: 56px;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: #25D366;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.wa-float::before{
  content:"";
  width: 28px;
  height: 28px;
  background: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M19.11 17.2c-.27-.14-1.58-.78-1.83-.87-.25-.09-.43-.14-.61.14-.18.27-.7.87-.86 1.05-.16.18-.32.2-.59.07-.27-.14-1.15-.42-2.19-1.35-.81-.72-1.35-1.61-1.51-1.88-.16-.27-.02-.41.12-.55.12-.12.27-.32.41-.48.14-.16.18-.27.27-.46.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.84-2.03-.22-.53-.45-.46-.61-.47h-.52c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.29 0 1.35.98 2.66 1.12 2.84.14.18 1.93 2.95 4.67 4.14.65.28 1.15.45 1.54.58.65.21 1.25.18 1.72.11.52-.08 1.58-.65 1.8-1.28.22-.62.22-1.16.16-1.28-.07-.11-.25-.18-.52-.32z"/><path d="M16.03 3C9.38 3 4 8.38 4 15.03c0 2.34.67 4.52 1.83 6.37L4.62 28.5l7.28-1.9c1.78.98 3.83 1.54 6.13 1.54 6.65 0 12.03-5.38 12.03-12.03C30.06 8.38 22.68 3 16.03 3zm0 22c-2.13 0-4.11-.6-5.8-1.65l-.41-.25-4.32 1.13 1.15-4.21-.27-.43A9.9 9.9 0 0 1 6.1 15.03c0-5.46 4.46-9.93 9.93-9.93 5.47 0 9.93 4.46 9.93 9.93 0 5.47-4.46 9.97-9.93 9.97z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M19.11 17.2c-.27-.14-1.58-.78-1.83-.87-.25-.09-.43-.14-.61.14-.18.27-.7.87-.86 1.05-.16.18-.32.2-.59.07-.27-.14-1.15-.42-2.19-1.35-.81-.72-1.35-1.61-1.51-1.88-.16-.27-.02-.41.12-.55.12-.12.27-.32.41-.48.14-.16.18-.27.27-.46.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.84-2.03-.22-.53-.45-.46-.61-.47h-.52c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.29 0 1.35.98 2.66 1.12 2.84.14.18 1.93 2.95 4.67 4.14.65.28 1.15.45 1.54.58.65.21 1.25.18 1.72.11.52-.08 1.58-.65 1.8-1.28.22-.62.22-1.16.16-1.28-.07-.11-.25-.18-.52-.32z"/><path d="M16.03 3C9.38 3 4 8.38 4 15.03c0 2.34.67 4.52 1.83 6.37L4.62 28.5l7.28-1.9c1.78.98 3.83 1.54 6.13 1.54 6.65 0 12.03-5.38 12.03-12.03C30.06 8.38 22.68 3 16.03 3zm0 22c-2.13 0-4.11-.6-5.8-1.65l-.41-.25-4.32 1.13 1.15-4.21-.27-.43A9.9 9.9 0 0 1 6.1 15.03c0-5.46 4.46-9.93 9.93-9.93 5.47 0 9.93 4.46 9.93 9.93 0 5.47-4.46 9.97-9.93 9.97z"/></svg>') center/contain no-repeat;
}

@media (max-width: 920px){
  .grid--2{grid-template-columns: 1fr}
  .grid--3{grid-template-columns: 1fr}
  .h1{font-size:36px}
  .topbar__nav{display:none}
}
