:root{
  --bg:#ffffff;
  --text:#0b1020;
  --muted:#5a657a;
  --line:#e7eaf0;
  --card:#ffffff;
  --shadow:0 12px 30px rgba(8, 20, 50, .12);
  --shadow2:0 16px 50px rgba(8, 20, 50, .10);
  --primary:#2563eb;
  --primary2:#1d4ed8;
  --radius:18px;
  --radius2:26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.35;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.logo{display:flex; align-items:center; gap:10px}
.logo__mark{
  width:34px; height:34px; border-radius:12px;
  background: radial-gradient(120% 120% at 30% 20%, #60a5fa 0%, #2563eb 55%, #0ea5e9 100%);
  box-shadow: 0 10px 22px rgba(37,99,235,.25);
}
.logo__text{font-weight:600}
.logo__text b{font-weight:800}

.nav{display:flex; gap:18px; align-items:center}
.nav a{
  font-weight:500; color:#18213a;
  padding:8px 10px; border-radius:10px;
}
.nav a:hover{background:#f4f6fb}

.topbar__actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px;
  padding:10px 14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  transition:.15s ease;
}
.btn--link{
  background:transparent;
  border-color:transparent;
  color:#1f2a44;
}
.btn--link:hover{background:#f4f6fb}

.btn--primary{
  background:var(--primary);
  color:#fff;
  border-color:rgba(0,0,0,0);
  box-shadow: 0 10px 22px rgba(37,99,235,.22);
}
.btn--primary:hover{background:var(--primary2)}
.btn--lg{padding:12px 18px; border-radius:14px}
.btn--block{width:100%}

.burger{
  width:42px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  display:none;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.burger span{width:18px; height:2px; background:#1f2a44; border-radius:3px}

.mobile{
  border-top:1px solid var(--line);
  background:#fff;
}
.mobile__inner{
  display:grid; gap:10px;
  padding:14px 0 18px;
}
.mobile__inner a{
  padding:10px 12px;
  border-radius:12px;
  background:#f7f9ff;
  border:1px solid #eef2ff;
}
.mobile__cta{margin-top:8px}

.hero{padding:46px 0 34px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:30px;
  align-items:start;
}
.hero h1{
  font-size:42px;
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.lead{
  color:var(--muted);
  font-size:16px;
  margin:0 0 18px;
  max-width:54ch;
}
.offices{margin-top:22px}
.offices p{margin:0 0 10px; color:#2a3653; font-weight:500}
.flags{display:flex; gap:10px; align-items:center}
.flags img{
  width:44px; height:30px;
  border-radius:8px;
  border:1px solid var(--line);
  box-shadow: 0 8px 16px rgba(8,20,50,.08);
}

.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.panel__head{
  padding:18px 18px 10px;
}
.panel__head h2{margin:0 0 4px; font-size:18px}
.panel__head p{margin:0; color:var(--muted); font-size:13px}
.form{padding:14px 18px 18px; display:grid; gap:12px}
.field label{display:block; font-size:12px; color:#2a3653; margin:0 0 6px; font-weight:600}
.field input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  font-size:14px;
  background:#fbfcff;
}
.field input:focus{border-color:rgba(37,99,235,.5); box-shadow:0 0 0 4px rgba(37,99,235,.12)}
.hint{color:var(--muted); font-size:11px}
.check{display:flex; gap:10px; align-items:center; font-size:13px; color:#243150}
.check input{width:16px; height:16px}
.fineprint{margin:0; color:var(--muted); font-size:11px; line-height:1.35}

.toast{
  margin-top:6px;
  padding:10px 12px;
  border-radius:14px;
  background:#f4faff;
  border:1px solid #dbeafe;
  color:#0b3b7a;
  font-size:13px;
}

.seen{padding:18px 0 6px}
.seen h3{
  margin:0 0 12px;
  font-size:16px;
  color:#18213a;
}
.seen__row{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fbfcff;
}
.seen__row img{height:22px; width:auto; opacity:.85}

.section{padding:44px 0}
.section--muted{background:#f7f9ff; border-top:1px solid #eef2ff; border-bottom:1px solid #eef2ff}
.section__title{
  margin:0 0 20px;
  font-size:26px;
  letter-spacing:-.01em;
}

.zig{
  display:grid;
  grid-template-columns: .88fr 1.12fr;
  gap:22px;
  align-items:center;
  padding:18px 0;
}
.zig--rev{grid-template-columns: 1.12fr .88fr}
.zig__img img{
  width:100%;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.zig__text h3{margin:0 0 10px; font-size:18px}
.zig__text p{margin:0; color:var(--muted); max-width:70ch}

.grid{display:grid; gap:16px}
.cards{
  grid-template-columns: repeat(3, 1fr);
}
.tcard{
  background:#fff;
  border:1px solid #eef2ff;
  border-radius:22px;
  padding:16px;
  box-shadow: 0 10px 30px rgba(8,20,50,.08);
}
.tcard__top{display:flex; gap:12px; align-items:center}
.avatar{width:46px; height:46px; border-radius:16px; border:1px solid var(--line)}
.stars{height:14px; width:auto; margin-top:4px; opacity:.9}
.tcard h4{margin:0; font-size:14px}
.tcard__stats{
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
  margin:12px 0 10px;
}
.tcard__stats div{
  border:1px solid #eef2ff;
  background:#fbfcff;
  border-radius:16px;
  padding:10px 10px;
}
.tcard__stats span{display:block; color:var(--muted); font-size:11px}
.tcard__stats b{font-size:14px}
.tcard p{margin:0; color:#34415f; font-size:13px}

.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  padding:16px 16px 14px;
  box-shadow: 0 10px 30px rgba(8,20,50,.06);
}
.feature img{width:38px; height:38px}
.feature h3{margin:10px 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:13px}

.cta{display:flex; justify-content:center; margin-top:18px}

.faq{display:grid; gap:10px}
.faq__q{
  width:100%;
  text-align:left;
  padding:14px 14px;
  background:#fff;
  border:1px solid #eef2ff;
  border-radius:18px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.faq__a{
  margin-top:-6px;
  padding:12px 14px 16px;
  background:#fbfcff;
  border:1px solid #eef2ff;
  border-radius:18px;
  color:#34415f;
}
.chev{
  width:10px; height:10px;
  border-right:2px solid #5b6b88;
  border-bottom:2px solid #5b6b88;
  transform: rotate(45deg);
  transition:.15s ease;
  margin-left:10px;
}
.faq__q[aria-expanded="true"] .chev{transform: rotate(225deg)}

.footer{
  padding:34px 0 22px;
  background:#0b1020;
  color:#e7ecff;
}
.logo--footer .logo__mark{box-shadow:none}
.logo--footer .logo__text{color:#fff}
.muted{color:rgba(231,236,255,.72)}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
  align-items:start;
}
.footer__links{
  display:grid;
  gap:10px;
  justify-items:start;
}
.footer__links a{
  color:#e7ecff;
  opacity:.9;
}
.footer__links a:hover{opacity:1; text-decoration:underline}
.footer__legal{
  margin-top:18px;
  border-top:1px solid rgba(231,236,255,.14);
  padding-top:14px;
}
.footer__legal p{margin:0 0 10px; font-size:12px; line-height:1.45}
.footer__legal p:last-child{margin:0}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero h1{font-size:36px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .features{grid-template-columns: repeat(2, 1fr)}
  .zig, .zig--rev{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .nav{display:none}
  .burger{display:flex}
  .cards{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
}
