@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;600;800&display=swap');
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Vazirmatn',Tahoma,Arial,sans-serif;background:#f7f9fc;color:#243447}
:root{
  --navy:#0a2240;
  --orange:#f39c12;
  --muted:#6b7c93;
  --card:#ffffff;
  --bg:#f7f9fc;
}
a{color:var(--navy);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:16px}

/* NAV */
.nav{position:sticky;top:0;z-index:20;background:var(--navy);color:#fff;box-shadow:0 6px 20px rgba(0,0,0,.08)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;padding:12px 16px}
.brand{display:flex;gap:10px;align-items:center}
.brand .logo{width:36px;height:36px;border-radius:10px;background:#fff;display:flex;align-items:center;justify-content:center;color:#0a2240;font-weight:800}
.brand .title{font-weight:800;font-size:18px;letter-spacing:.2px;line-height:1.2}
.brand small{display:block;opacity:.95;line-height:1.6}
.brand .phones{display:block;opacity:.9;font-size:13px}

.menu{display:flex;gap:12px;flex-wrap:wrap}
.menu a{color:#fff;padding:8px 12px;border-radius:12px}
.menu a.active,.menu a:hover{background:rgba(255,255,255,.15)}

/* burger */
.burger{display:none;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid rgba(255,255,255,.3);border-radius:10px;background:transparent;color:#fff;cursor:pointer}
.burger span{width:18px;height:2px;background:#fff;position:relative;display:block}
.burger span::before,.burger span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:#fff}
.burger span::before{top:-6px}
.burger span::after{top:6px}

/* HERO */
.hero{background:linear-gradient(180deg, #0a2240 0%, #152e52 100%);color:#fff}
.hero .container{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center;padding:36px 16px}
.hero h1{margin:0 0 10px 0;font-size:28px}
.hero p{opacity:.95;line-height:1.9}
.card{background:var(--card);border-radius:18px;box-shadow:0 10px 30px rgba(10,34,64,.08);padding:16px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.btn{display:inline-block;background:var(--orange);color:#000;padding:10px 14px;border-radius:12px;font-weight:700}
.btn.secondary{background:#fff;border:1px solid #e7eaf0}
.section{padding:22px 0}
.badge{display:inline-flex;align-items:center;gap:8px;background:#fff;padding:6px 10px;border-radius:999px;color:#0a2240;border:1px solid #e6edf7}
.footer{background:#0a2240;color:#fff;margin-top:32px}
.footer .container{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.table{width:100%;border-collapse:separate;border-spacing:0 10px}
.table th,.table td{text-align:right;padding:10px 12px;background:#fff}
.table th{background:#eff2f7}
.table tr td:first-child,.table tr th:first-child{border-radius:12px 0 0 12px}
.table tr td:last-child,.table tr th:last-child{border-radius:0 12px 12px 0}
.form{display:grid;gap:12px}
.input,.select,.textarea{width:100%;padding:12px;border:1px solid #d9e1ec;border-radius:12px;background:#fff}
label{font-weight:700;margin-bottom:4px;display:block}
.alert{padding:10px 12px;border-radius:12px;margin:8px 0}
.alert.ok{background:#e6ffed;color:#046b1d;border:1px solid #b5f3c3}
.alert.err{background:#ffeaea;color:#8a1f11;border:1px solid #ffc6c1}
.kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.kpis .card>div{font-size:13px;color:#6b7c93}
.kpis .card strong{font-size:22px;color:#0a2240}
.header-cta{display:flex;gap:8px;flex-wrap:wrap}

/* Responsive */
@media (max-width:900px){
  .hero .container{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .footer .container{grid-template-columns:1fr}
  .brand .title{font-size:16px}
  .brand small{font-size:12px}
  .brand .phones{font-size:12px}
  .menu{display:none;flex-direction:column;gap:6px;background:#0a2240;padding:10px;border-top:1px solid rgba(255,255,255,.12)}
  .menu.open{display:flex}
  .burger{display:flex}
  .hero h1{font-size:22px}
  .hero p{font-size:14px}
}
