:root{
  --bg:#ffffff;
  --ink:#0b1b3a;
  --muted:#5b6b86;
  --line: rgba(13, 45, 102, .12);
  --blue:#0B3D91;
  --blue2:#1C7ED6;
  --ice:#EAF3FF;
  --card: rgba(255,255,255,.78);
  --shadow: 0 20px 60px rgba(11, 61, 145, .15);
  --shadow2: 0 10px 30px rgba(11, 61, 145, .12);
  --radius: 20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 50% -50%, rgba(28,126,214,.25), transparent 60%),
              radial-gradient(900px 450px at 100% 10%, rgba(11,61,145,.18), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1160px; margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  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}
.brand__logo{
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  box-shadow: 0 10px 30px rgba(11,61,145,.10);
  object-fit: cover;
  background:#fff;
}
.brand__text{line-height:1.05}
.brand__name{font-weight:800; letter-spacing:.6px; font-size:15px; text-transform:uppercase}
.brand__sub{font-weight:700; letter-spacing:4px; font-size:10px; color:var(--muted); text-transform:uppercase}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:700; font-size:13px}
.nav a:hover{color:var(--ink)}

.actions{display:flex; align-items:center; gap:10px}
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
}
.burger span{
  display:block; width:18px; height:2px; background:var(--ink);
  margin:4px auto; border-radius:99px;
}

.lang{
  display:flex; align-items:center; gap:8px;
  height:44px; padding:0 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  color:var(--ink);
}
.lang__dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 0 0 4px rgba(28,126,214,.16);
}

.langmenu{
  position:absolute;
  right:20px; top:76px;
  width:min(340px, calc(100% - 40px));
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow2);
  padding:10px;
}
.langmenu button{
  width:100%;
  border:1px solid transparent;
  background:transparent;
  border-radius:14px;
  padding:12px 12px;
  text-align:left;
  font-weight:800;
  color:var(--ink);
  cursor:pointer;
}
.langmenu button:hover{background:rgba(11,61,145,.06)}
.langmenu__hint{
  padding:10px 12px 6px;
  font-size:12px;
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
}
.btn--primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(11,61,145,.22);
}
.btn--primary:hover{filter:brightness(1.02)}
.btn--ghost:hover{background:rgba(11,61,145,.06)}
.btn--full{width:100%}

.mobile{
  display:none;
  padding:12px 20px 18px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
}
.mobile a{
  display:block;
  padding:10px 8px;
  color:var(--muted);
  font-weight:800;
}
.mobile a:hover{color:var(--ink)}

.hero{
  position:relative;
  overflow:hidden;
  padding: 56px 0 34px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .85fr;
  gap:26px;
  align-items:stretch;
}
.hero__copy{padding: 6px 0}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  font-weight:800;
  color:var(--muted);
}
.pill__dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 0 0 5px rgba(28,126,214,.14);
}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin: 0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  max-width: 52ch;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}

.trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust__item{
  min-width: 120px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius:18px;
  padding:12px 12px;
}
.trust__k{
  font-weight:900;
  letter-spacing:.6px;
}
.trust__t{
  color:var(--muted);
  font-weight:700;
  font-size:12px;
  margin-top:2px;
}

.hero__card .card{
  height:100%;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding:18px;
  backdrop-filter: blur(14px);
}
.card__top{display:flex; align-items:center; justify-content:space-between}
.badge{
  font-weight:900;
  font-size:12px;
  color:var(--blue);
  background: rgba(234,243,255,.9);
  border:1px solid rgba(11,61,145,.14);
  border-radius:999px;
  padding:8px 10px;
}
.seal{
  width:34px; height:34px;
  border-radius:14px;
  display:grid; place-items:center;
  color:var(--blue);
  background: rgba(11,61,145,.06);
  border:1px solid rgba(11,61,145,.14);
}
.card__title{margin:14px 0 6px; font-weight:900; font-size:18px}
.card__sub{color:var(--muted); font-weight:700; font-size:13px; line-height:1.55}
.check{margin:14px 0 14px; padding:0; list-style:none; display:grid; gap:10px}
.check li{
  position:relative;
  padding-left:28px;
  color:var(--muted);
  font-weight:700;
  line-height:1.45;
  font-size:13px;
}
.check li::before{
  content:"";
  position:absolute;
  left:0; top:2px;
  width:18px; height:18px;
  border-radius:6px;
  background: rgba(28,126,214,.14);
  border:1px solid rgba(11,61,145,.16);
  box-shadow: 0 10px 22px rgba(11,61,145,.08);
}
.check li::after{
  content:"";
  position:absolute;
  left:6px; top:7px;
  width:7px; height:4px;
  border-left:2px solid var(--blue);
  border-bottom:2px solid var(--blue);
  transform: rotate(-45deg);
}
.card__fine{
  margin-top:12px;
  color:rgba(91,107,134,.9);
  font-size:12px;
  font-weight:700;
}

.hero__bg{
  position:absolute;
  inset:-40% -20% auto -20%;
  height: 540px;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(28,126,214,.22), transparent 70%),
    radial-gradient(closest-side at 70% 60%, rgba(11,61,145,.20), transparent 72%);
  filter: blur(10px);
  pointer-events:none;
}
.hero__glow{
  position:absolute;
  inset:auto -10% -60% -10%;
  height: 520px;
  background:
    radial-gradient(closest-side at 50% 30%, rgba(28,126,214,.18), transparent 72%),
    radial-gradient(closest-side at 20% 70%, rgba(11,61,145,.12), transparent 70%);
  filter: blur(18px);
  pointer-events:none;
}

.section{padding: 56px 0}
.section--alt{background: linear-gradient(180deg, rgba(234,243,255,.55), rgba(255,255,255,.0))}
.section--cta{padding: 64px 0}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px}
.section__head h2{
  margin:0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing:-.4px;
}
.section__head p{
  margin:0;
  color:var(--muted);
  max-width: 54ch;
  line-height:1.65;
  font-weight:700;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 12px 30px rgba(11,61,145,.08);
}
.service__icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  color:var(--blue);
  background: rgba(234,243,255,.9);
  border:1px solid rgba(11,61,145,.14);
  margin-bottom:12px;
}
.service__icon svg{width:22px; height:22px}
.service h3{margin:0 0 6px; font-weight:900; letter-spacing:-.2px}
.service p{margin:0 0 10px; color:var(--muted); font-weight:700; line-height:1.6}
.service__meta{
  font-weight:900;
  font-size:12px;
  color:var(--blue);
  letter-spacing:.6px;
  text-transform:uppercase;
}

.features{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.feature{
  display:flex;
  gap:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: var(--radius);
  padding:18px;
}
.feature__k{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:900;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 14px 34px rgba(11,61,145,.20);
  flex: 0 0 auto;
}
.feature h3{margin:0 0 6px; font-weight:900}
.feature p{margin:0; color:var(--muted); font-weight:700; line-height:1.6}

.steps{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.steps li{
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  gap:12px;
}
.steps__n{
  width:38px; height:38px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  color:var(--blue);
  background: rgba(234,243,255,.9);
  border:1px solid rgba(11,61,145,.14);
  flex: 0 0 auto;
}
.steps__t{font-weight:900; margin-bottom:4px}
.steps__d{color:var(--muted); font-weight:700; line-height:1.55; font-size:13px}

.cta{
  border:1px solid rgba(11,61,145,.14);
  border-radius: 26px;
  background:
    radial-gradient(800px 360px at 30% 30%, rgba(28,126,214,.18), transparent 65%),
    radial-gradient(900px 400px at 100% 60%, rgba(11,61,145,.12), transparent 62%),
    rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  padding: 22px;
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap:18px;
  backdrop-filter: blur(14px);
}
.cta__left h2{margin:0 0 10px; font-size:30px; letter-spacing:-.4px}
.cta__left p{margin:0 0 10px; color:var(--muted); font-weight:700; line-height:1.7}
.cta__note{color:rgba(91,107,134,.95); font-weight:800; font-size:12px}

.form{
  border:1px solid rgba(11,61,145,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  padding: 16px;
}
label{display:block; font-weight:900; font-size:12px; color:var(--ink); letter-spacing:.3px}
input,select,textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(13, 45, 102, .14);
  background:#fff;
  font: inherit;
  color:var(--ink);
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color: rgba(28,126,214,.55);
  box-shadow: 0 0 0 5px rgba(28,126,214,.12);
}
textarea{resize:vertical; min-height:110px}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
.form__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.form__fine{
  margin-top:10px;
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  min-height: 18px;
}

.footer{
  padding: 34px 0 40px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.7);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.footbrand{display:flex; align-items:center; gap:12px}
.footbrand img{
  width:40px; height:40px; border-radius:14px;
  border:1px solid var(--line);
  object-fit:cover;
  background:#fff;
}
.footbrand__name{font-weight:900}
.footbrand__sub{font-weight:800; color:var(--muted); font-size:12px}
.footlinks{display:flex; gap:12px; flex-wrap:wrap}
.footlinks a{color:var(--muted); font-weight:800; font-size:13px}
.footlinks a:hover{color:var(--ink)}
.copy{color:var(--muted); font-weight:800; font-size:12px}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:inline-grid; place-items:center}
  .mobile{display:block}
  .hero__inner{grid-template-columns:1fr}
  .cta{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .langmenu{right:16px}
}
