:root{
  --blue:#0a1f8f;
  --blue2:#0b2edb;
  --ink:#0b1020;
  --text:#1b2541;
  --muted:#5b647a;
  --bg:#f6f7fb;
  --card:#ffffff;
  --line:rgba(12,18,38,.10);
  --shadow: 0 14px 40px rgba(11,16,32,.10);
  --shadow2: 0 10px 24px rgba(11,16,32,.10);
  --radius:18px;
}

*{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: radial-gradient(1200px 600px at 12% -10%, rgba(11,46,219,.10), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(10,31,143,.10), transparent 60%),
              var(--bg);
}

a{color:inherit}
img{max-width:100%; height:auto; display:block}

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

.muted{color:var(--muted); line-height:1.7}
.kicker{letter-spacing:.14em; text-transform:uppercase; font-weight:700; font-size:.78rem; color:rgba(10,31,143,.75)}
h1,h2,h3{margin:0; color:var(--ink)}
h1{font-size:clamp(2.1rem, 4vw, 3.3rem); line-height:1.06; letter-spacing:-.03em}
h2{font-size:clamp(1.55rem, 2.3vw, 2.15rem); line-height:1.12; letter-spacing:-.02em}
h3{font-size:1.15rem}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.55rem;
  padding:.95rem 1.15rem;
  border-radius:999px;
  border:1px solid transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff; text-decoration:none;
  font-weight:800;
  box-shadow: 0 12px 28px rgba(11,46,219,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05); box-shadow: 0 16px 34px rgba(11,46,219,.26)}
.btn:active{transform: translateY(0px); box-shadow: 0 10px 20px rgba(11,46,219,.20)}
.btn--ghost{
  background: rgba(255,255,255,.6);
  color: var(--blue);
  border-color: rgba(10,31,143,.18);
  box-shadow:none;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover{box-shadow: var(--shadow2)}
.btn--small{padding:.7rem 1rem; font-weight:800}
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.65);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(12px);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:10px 0}
.topbar__left,.topbar__right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.topbar__pill{
  font-size:.9rem; text-decoration:none;
  padding:.45rem .7rem; border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(10,31,143,.12);
}
.dot{
  display:inline-block; width:8px; height:8px; border-radius:999px;
  background: #22c55e; margin-right:.4rem;
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}
.header{
  position:sticky; top:52px; z-index:40;
  background: rgba(246,247,251,.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__logo{height:44px; width:auto}
.brand__name{font-weight:900; letter-spacing:-.02em; color:var(--ink)}
.brand__sub{font-size:.9rem; color:var(--muted)}
.nav{display:flex; gap:12px; align-items:center}
.nav__link{
  text-decoration:none; padding:.55rem .75rem;
  border-radius:999px; font-weight:700; color:rgba(11,16,32,.78);
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.nav__link:hover{background: rgba(11,46,219,.08); color:var(--blue); transform: translateY(-1px)}
.nav__link.is-active{background: rgba(10,31,143,.10); color:var(--blue)}
.header__cta{display:flex; gap:10px; align-items:center}

.burger{
  display:none;
  width:44px; height:44px; border-radius:12px;
  border:1px solid rgba(10,31,143,.14);
  background: rgba(255,255,255,.7);
}
.burger span{display:block; width:18px; height:2px; background:var(--blue); margin:4px auto; border-radius:99px}

.mobileNav{
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px);
}
.mobileNav__links{padding:14px 20px; display:grid; gap:8px}
.mobileNav__cta{display:flex; gap:10px; margin-top:10px}

.hero{
  padding: clamp(28px, 4vw, 60px) 0 26px;
}
.hero__grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap: 28px; align-items:center;
}
.heroCard{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
  border: 1px solid rgba(10,31,143,.12);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroCard::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(900px 420px at 10% 0%, rgba(11,46,219,.18), transparent 55%),
              radial-gradient(700px 380px at 90% 20%, rgba(10,31,143,.18), transparent 52%);
  pointer-events:none;
}
.heroCard__inner{position:relative; padding: 32px}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero__trust{display:flex; gap:14px; flex-wrap:wrap; margin-top:18px}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:.65rem .85rem;
  border-radius:999px;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(10,31,143,.12);
  font-weight:700;
  color: rgba(11,16,32,.80);
}
.pill svg{width:18px; height:18px; fill:var(--blue)}
.heroSide{
  display:grid; gap:14px;
}
.stat{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(10,31,143,.12);
  box-shadow: var(--shadow2);
}
.stat__num{font-size:1.35rem; font-weight:900; color:var(--ink)}
.stat__label{color:var(--muted); margin-top:4px; line-height:1.5}

.section{padding: 40px 0}
.section--tight{padding: 26px 0}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}
.card{
  background: var(--card);
  border: 1px solid rgba(10,31,143,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 22px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{transform: translateY(-3px); box-shadow: var(--shadow)}
.card__icon{
  width:56px; height:56px; border-radius:16px;
  background: rgba(10,31,143,.08);
  display:grid; place-items:center;
  border: 1px solid rgba(10,31,143,.14);
  margin-bottom:14px;
}
.card__icon svg{width:30px; height:30px; fill:var(--blue)}
.card__title{font-size:1.25rem; font-weight:900}
.card__text{margin:10px 0 18px; color:var(--muted); line-height:1.8}
.card__action{margin-top:auto}
.card__action a{width:100%}

.split{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 22px; align-items:center;
}
.panel{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(10,31,143,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 24px;
}
.panel h2{margin-bottom:10px}
.panel ul{margin: 12px 0 0; padding-left: 18px; color:var(--muted); line-height:1.9}
.panel li{margin: 6px 0}

.reviews{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:stretch;
}
.reviewCard{
  background: #fff;
  border:1px solid rgba(10,31,143,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding:22px;
}
.stars{letter-spacing:2px; font-size:1.05rem}
.reviewMeta{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:.4rem .65rem;
  border-radius:999px;
  border:1px solid rgba(10,31,143,.14);
  background: rgba(10,31,143,.06);
  font-weight:800; color:var(--blue);
}
.badge svg{width:16px; height:16px; fill:var(--blue)}

.map{
  width:100%; height:340px;
  border:0; border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(10,31,143,.16);
  background: rgba(255,255,255,.9);
  font: inherit;
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color: rgba(11,46,219,.6); box-shadow: 0 0 0 4px rgba(11,46,219,.12)}
textarea{min-height:120px; resize:vertical}

.footer{
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(10,31,143,.95), rgba(9,23,95,.98));
  color: rgba(255,255,255,.88);
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer a{color: rgba(255,255,255,.92); text-decoration:none}
.footer__grid{
  padding: 28px 0;
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:18px;
}
.footer__brand{font-weight:900; letter-spacing:-.02em; font-size:1.15rem}
.footer__title{font-weight:900; margin-bottom:10px}
.footer__link{display:block; padding:6px 0; opacity:.92}
.footer__link:hover{opacity:1; text-decoration:underline}
.footer__meta{padding:6px 0; opacity:.92}
.footer__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.footer__bottom{padding: 12px 0 20px; border-top: 1px solid rgba(255,255,255,.10)}

.stickyCall{
  position:fixed; left:16px; right:16px; bottom:16px;
  display:none;
  text-decoration:none;
  padding: 14px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  font-weight:900;
  box-shadow: 0 14px 34px rgba(11,46,219,.30);
  text-align:center;
  z-index:60;
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .cards{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .reviews{grid-template-columns: 1fr}
  .nav, .header__cta{display:none}
  .burger{display:inline-grid; place-items:center}
  .stickyCall{display:block}
}

@media (max-width: 560px){
  .cards{grid-template-columns: 1fr}
  .topbar__right{display:none}
}