:root{
  --bg: #f6f8ff;
  --bg2: #ffffff;
  --ink: #0b1220;
  --muted: rgba(11,18,32,0.68);

  --stroke: rgba(11,18,32,0.10);

  --primary: #2563eb;
  --primary2: #7c3aed;
  --ok: #16a34a;

  --shadow: 0 16px 40px rgba(11,18,32,0.10);
  --shadow2: 0 12px 30px rgba(11,18,32,0.08);

  --r: 18px;
  --r2: 26px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Vazirmatn", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.85;
  background:
    radial-gradient(900px 520px at 85% 0%, rgba(124,58,237,0.10), transparent 60%),
    radial-gradient(900px 520px at 10% 0%, rgba(37,99,235,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--bg) 55%, #ffffff);
}

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

.small{ font-size: 0.92rem; }
.muted{ color: var(--muted); }
.sep{ opacity: .45; margin: 0 10px; }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.75);
}
.badge--ok{
  border-color: rgba(22,163,74,0.25);
  background: rgba(22,163,74,0.10);
  color: rgba(22,163,74,0.95);
  font-weight: 800;
}

.topbar{
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(11,18,32,0.07);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 60;
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding: 8px 0;
  gap: 14px;
}
.topbar__right{ display:flex; align-items:center; gap: 12px; flex-wrap:wrap; }
.topbar__left{ display:flex; align-items:center; gap: 10px; flex-wrap:wrap; }
.toplink{ color: rgba(11,18,32,0.85); font-weight: 700; }
.toplink:hover{ color: var(--primary); }

.header{
  position: sticky;
  top: 44px;
  z-index: 55;
  background: rgba(255,255,255,0.64);
  border-bottom: 1px solid rgba(11,18,32,0.07);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand{ display:flex; align-items:center; gap: 12px; min-width: 220px; }
.brand__logo{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(124,58,237,0.12));
  border: 1px solid rgba(11,18,32,0.10);
  box-shadow: var(--shadow2);
}
.brand__name{ display:block; font-weight: 900; letter-spacing: -0.2px; }
.brand__sub{ display:block; font-size: 0.9rem; color: var(--muted); margin-top: -2px; }

.nav{ position:relative; }
.nav__toggle{
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.75);
  color: var(--ink);
  display:none;
  cursor:pointer;
}
.nav__bars{
  width: 18px; height: 2px; background: rgba(11,18,32,0.75);
  display:block; position:relative; margin: auto;
}
.nav__bars::before, .nav__bars::after{
  content:"";
  width: 18px; height: 2px;
  background: rgba(11,18,32,0.75);
  position:absolute; left:0;
}
.nav__bars::before{ top:-6px; }
.nav__bars::after{ top:6px; }

.nav__list{
  display:flex; align-items:center; gap: 16px;
  list-style:none; padding:0; margin:0;
}
.nav__link{
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(11,18,32,0.78);
  font-weight: 800;
}
.nav__link:hover{ color: var(--primary); background: rgba(37,99,235,0.06); }
.nav__link.is-active{
  color: rgba(11,18,32,0.95);
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10));
  border: 1px solid rgba(37,99,235,0.18);
}
.nav__cta{ margin-inline-start: 6px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.80);
  color: rgba(11,18,32,0.92);
  box-shadow: var(--shadow2);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  font-weight: 900;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(11,18,32,0.18); }
.btn:active{ transform: translateY(0px); }
.btn--primary{
  border: 1px solid rgba(37,99,235,0.25);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 16px 40px rgba(37,99,235,0.18);
}
.btn--primary:hover{ box-shadow: 0 18px 44px rgba(124,58,237,0.18); }
.btn--ghost{ background: rgba(255,255,255,0.68); }

.hero{ padding: 36px 0 20px; }
.hero__grid{
  display:grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 22px; align-items:center;
}
.kicker{
  display:inline-block;
  color: rgba(11,18,32,0.86);
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(11,18,32,0.10);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
}
.hero__title{
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.25;
  margin: 14px 0 10px;
  letter-spacing: -0.5px;
}
.glow{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.hero__desc{ color: rgba(11,18,32,0.72); margin: 0 0 16px; }
.hero__actions{ display:flex; gap: 12px; flex-wrap:wrap; margin: 14px 0 18px; }

.hero__stats{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.stat{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: var(--shadow2);
}
.stat__num{ display:block; font-weight: 950; color: rgba(11,18,32,0.92); }
.stat__label{ display:block; color: var(--muted); font-size: 0.92rem; margin-top: -2px; }

.hero__visual .glass{
  border-radius: var(--r2);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,18,32,0.10);
  box-shadow: var(--shadow);
  padding: 18px;
}

.pagehero{ padding: 22px 0 8px; }
.pagehero__inner{
  display:grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 18px; align-items:center;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--r2);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.pagehero__title{ margin: 0; font-size: clamp(1.5rem, 2.3vw, 2.2rem); }
.pagehero__desc{ margin: 8px 0 0; color: var(--muted); }
.pagehero__img{
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(11,18,32,0.10);
  padding: 14px;
}

.section{ padding: 36px 0; }
.section--alt{
  background: rgba(37,99,235,0.03);
  border-top: 1px solid rgba(11,18,32,0.06);
  border-bottom: 1px solid rgba(11,18,32,0.06);
}
.section__head{ margin-bottom: 14px; }
.section__title{ margin: 0 0 6px; font-size: 1.45rem; }
.section__desc{ margin: 0; color: var(--muted); }
.section__cta{ margin-top: 16px; display:flex; gap: 12px; flex-wrap:wrap; }

.grid{ display:grid; gap: 14px; }
.cards{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards--wide{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.22);
  background: rgba(255,255,255,0.86);
}
.card__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(124,58,237,0.08));
  border: 1px solid rgba(11,18,32,0.10);
  display:grid; place-items:center;
  margin-bottom: 10px;
  overflow:hidden;
}
.card__title{ margin: 0 0 6px; font-size: 1.1rem; }
.card__text{ margin: 0 0 10px; color: var(--muted); }
.card__link{ color: rgba(37,99,235,0.95); font-weight: 950; }
.card__link:hover{ color: rgba(124,58,237,0.95); }

.split{
  display:grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 18px; align-items:center;
}
.frame{
  border-radius: var(--r2);
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(11,18,32,0.10);
  padding: 18px;
  box-shadow: var(--shadow);
}
.list{ margin: 12px 0 0; padding: 0 18px 0 0; color: rgba(11,18,32,0.76); }
.list li{ margin: 6px 0; }

.pillbox{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px; }
.pill{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  color: rgba(11,18,32,0.85);
  font-weight: 900;
  box-shadow: var(--shadow2);
}
.pill img{ width: 22px; height: 22px; border-radius: 6px; }

.gallery{ display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.shot{
  padding: 0; border: 0; background: transparent; cursor: pointer;
  border-radius: var(--r); overflow:hidden;
  outline: 1px solid rgba(11,18,32,0.10);
  box-shadow: var(--shadow2);
}
.shot img{ transition: transform .14s ease, filter .14s ease; }
.shot:hover img{ transform: scale(1.02); filter: saturate(1.06); }

.modal{ position: fixed; inset: 0; display:none; z-index: 80; }
.modal.is-open{ display:block; }
.modal__backdrop{ position:absolute; inset:0; background: rgba(11,18,32,0.55); backdrop-filter: blur(6px); }
.modal__content{
  position: relative;
  width: min(860px, calc(100% - 26px));
  margin: 8vh auto 0;
  border-radius: var(--r2);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11,18,32,0.14);
  box-shadow: var(--shadow);
  padding: 14px;
}
.modal__close{
  position:absolute; top: 10px; inset-inline-start: 10px;
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,0.14);
  background: rgba(255,255,255,0.85);
  color: rgba(11,18,32,0.92);
  cursor: pointer;
}
.modal__img{
  border-radius: 18px;
  border: 1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.80);
}

.faq{ display:grid; gap: 10px; }
.qa{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--r);
  padding: 10px 12px;
  box-shadow: var(--shadow2);
}
.qa summary{ cursor:pointer; font-weight: 950; }
.qa p{ color: var(--muted); margin: 8px 0 0; }

.notice{
  display:flex; gap: 12px; align-items:flex-start;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--r2);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.notice__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(124,58,237,0.08));
  border: 1px solid rgba(11,18,32,0.10);
}
.notice__title{ margin: 0 0 6px; }
.notice__text{ margin: 0; color: var(--muted); }

.steps{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.step{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.step__num{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight: 950;
  color: rgba(11,18,32,0.92);
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10));
  border: 1px solid rgba(11,18,32,0.10);
  margin-bottom: 10px;
}
.step__title{ margin: 0 0 6px; }
.step__text{ margin: 0; color: var(--muted); }

.contactgrid{ grid-template-columns: 0.9fr 1.1fr; align-items:start; }
.panel{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--r2);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.panel__title{ margin: 0 0 12px; }
.contactlist{ display:grid; gap: 10px; }
.contactitem{
  display:flex; gap: 12px; align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(11,18,32,0.10);
}
.contactitem__icon{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(11,18,32,0.10);
}

.form{ display:grid; gap: 12px; }
.field{ display:grid; gap: 6px; }
.field__label{ color: rgba(11,18,32,0.85); font-weight: 950; }
.field__input{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,0.14);
  background: rgba(255,255,255,0.88);
  color: rgba(11,18,32,0.92);
  outline: none;
}
.field__input:focus{
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}
.form__actions{ display:flex; gap: 12px; flex-wrap:wrap; }

.tip{
  display:flex; gap: 10px; align-items:flex-start;
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.14);
}
.tip__icon{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(11,18,32,0.10);
}
.tip__text{ margin: 0; color: rgba(11,18,32,0.84); }

.footer{ padding: 30px 0 88px; }
.footer__grid{ display:grid; grid-template-columns: 1.2fr 0.8fr 0.9fr; gap: 14px; }
.brand--footer .brand__logo{ width: 40px; height: 40px; }
.footer__title{ margin: 0 0 8px; font-size: 1.0rem; }
.footer__links{ list-style:none; padding:0; margin:0; display:grid; gap: 8px; }
.footer__links a:hover{ color: var(--primary); }
.footer__desc{ margin: 10px 0 0; }

.footer__bottom{
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(11,18,32,0.08);
  display:flex; justify-content:space-between; align-items:center;
  gap: 10px;
}

.stickybar{
  position: fixed;
  bottom: 10px;
  inset-inline: 10px;
  z-index: 70;
  display:none;
  gap: 10px;
}
.stickybar__btn{
  flex: 1;
  text-align:center;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(11,18,32,0.14);
  color: rgba(11,18,32,0.92);
  font-weight: 950;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.stickybar__btn--wa{
  background: rgba(22,163,74,0.14);
  border-color: rgba(22,163,74,0.25);
}

.checklist{ margin: 10px 0 0; padding: 0 18px 0 0; display:grid; gap: 8px; }
.checklist li{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow2);
}

@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards--wide{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr; }
  .pagehero__inner{ grid-template-columns: 1fr; }
  .hero__grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .contactgrid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav__list{
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-end: 0;
    width: min(340px, calc(100vw - 24px));
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(11,18,32,0.14);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    display:none;
  }
  .nav__list.is-open{ display:flex; }
  .nav__cta{ margin-inline-start: 0; }
  .stickybar{ display:flex; }
}
