/* ZarAasan  */
:root{
  --bg:#f7f8fc;
  --surface:#ffffff;
  --surface2:#f1f3fb;
  --text:#0f172a;
  --muted:#475569;
  --primary:#2563eb;  /* blue */
  --primary2:#16a34a; /* green */
  --accent:#0ea5e9;   /* sky */
  --danger:#dc2626;
  --shadow: 0 18px 45px rgba(2,6,23,.10);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Vazirmatn", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
  direction:rtl;
}
a{color:inherit; text-decoration:none}
.container{max-width:1160px; margin:0 auto; padding:0 18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 18px; border-radius:14px; border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.85);
  color:var(--text); cursor:pointer; font-weight:700;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: #ffffff; border-color: rgba(15,23,42,.22); box-shadow: 0 10px 22px rgba(2,6,23,.08)}
.btn.primary{
  background: var(--primary);
  color:#fff;
  border-color: rgba(37,99,235,.35);
}
.btn.primary:hover{box-shadow: 0 14px 26px rgba(37,99,235,.22)}
.btn.success{
  background: var(--primary2);
  color:#fff;
  border-color: rgba(22,163,74,.35);
}
.btn.success:hover{box-shadow: 0 14px 26px rgba(22,163,74,.18)}
.btn.danger{
  background: var(--danger);
  color:#fff;
  border-color: rgba(220,38,38,.35);
}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 12px; border-radius:999px;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
  color:#1e3a8a;
  font-size:13px;
}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(247,248,252,.80);
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:40px; height:40px; border-radius:14px;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
}
.brand h1{margin:0; font-size:18px; letter-spacing:.2px}
.brand p{margin:0; font-size:12px; color:var(--muted)}
.links{display:flex; align-items:center; gap:14px}
.links a{
  padding:10px 10px; border-radius:12px;
  color:var(--muted);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  border:1px solid transparent;
}
.links a:hover{background: rgba(15,23,42,.04); color:var(--text)}
.links a.active{background: rgba(37,99,235,.10); color:var(--text); border-color: rgba(37,99,235,.18)}
.mobile-toggle{display:none}

.card{
  background: var(--surface);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{padding:42px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
.hero-card{padding:26px}
.hero h2{margin:0 0 12px; font-size:34px; line-height:1.35}
.hero .lead{margin:0 0 18px; color:var(--muted); font-size:15px; line-height:1.9}
.hero .cta{display:flex; gap:12px; flex-wrap:wrap}

.stats{
  padding:18px;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;
}
.stat{
  background: var(--surface2);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:12px;
}
.stat b{display:block; font-size:18px}
.stat span{color:var(--muted); font-size:12px}

.section{padding:30px 0}
.section h3{margin:0 0 14px; font-size:22px}
.section p{margin:0 0 16px; color:var(--muted); line-height:1.9}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{padding:18px; position:relative; overflow:hidden}
.feature:before{content:none}
.icon{
  width:46px; height:46px; border-radius:16px;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.16);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
  color:#1e3a8a;
}
.icon svg{width:22px; height:22px; opacity:.95}

.pricing{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.price-card{padding:20px}
.price-card h4{margin:0 0 6px; font-size:18px}
.price{font-size:28px; margin:10px 0 6px}

.small{color:var(--muted); font-size:13px; line-height:1.85}
ul.clean{padding:0; margin:12px 0 0; list-style:none; display:grid; gap:8px}
ul.clean li{display:flex; gap:10px; align-items:flex-start; color:var(--muted)}

.check{
  flex:0 0 auto;
  width:20px; height:20px; border-radius:8px;
  background: rgba(22,163,74,.12);
  border:1px solid rgba(22,163,74,.20);
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
  color:#14532d;
}
.check svg{width:14px; height:14px}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.form{padding:20px}
.field{display:grid; gap:8px; margin-bottom:12px}
label{color:var(--muted); font-size:13px}

input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: #fff;
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.helper{font-size:12px; color:var(--muted)}
hr.sep{border:none; border-top:1px solid rgba(15,23,42,.10); margin:14px 0}

.kbd{
  padding:3px 8px; border-radius:10px;
  border:1px solid rgba(15,23,42,.16);
  background: rgba(15,23,42,.04);
  font-size:12px; color:var(--muted);
}

.notice{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(220,38,38,.20);
  background: rgba(220,38,38,.07);
}
.success-box{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(22,163,74,.20);
  background: rgba(22,163,74,.08);
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.90);
  color:var(--muted);
  font-size:12px;
}

.map{
  width:100%; height:260px; border-radius:18px; border:1px solid rgba(15,23,42,.10);
  overflow:hidden; background: rgba(15,23,42,.03);
}

.fade-up{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.show{opacity:1; transform: translateY(0)}

.hero-side{padding:20px; overflow:hidden; position:relative}
.glow{display:none}
.mock{
  padding:18px;
  border-radius: 18px;
  background: var(--surface2);
  border:1px solid rgba(15,23,42,.10);
}
.mock h4{margin:0 0 10px}
.mock .row{
  display:flex; gap:10px; align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(14,165,233,.12);
}
.row:last-child{border-bottom:none}

.footer{
  padding:26px 0 34px;
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(247,248,252,.85);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
}
.footer h5{margin:0 0 10px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.copy{margin-top:14px; color:var(--muted); font-size:12px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .links{display:none}
  .mobile-toggle{display:inline-flex}
  .grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .hero h2{font-size:28px}
}
.mobile-menu{display:none; padding:10px 0 16px}
.mobile-menu a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.mobile-menu a:hover{background: rgba(15,23,42,.04); color:var(--text); border-color: rgba(15,23,42,.08)}
