.lp-page .header {
  height: 82px;
  display: flex;
  align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(22,75,127,.08);
}
.lp-page .header__inner {
  width: min(1342px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-page .header .logo {
  flex: 0 0 auto;
}

.lp-page .nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.lp-page .nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition: color .2s ease;
}

.lp-page .nav a:not(.btn):hover,
.lp-page .nav a:not(.btn):focus-visible {
  color: var(--blue3);
}

.lp-page .header .nav .btn {
  min-width: 226px;
  height: 40px;
  padding-inline: 30px;
  font-size: 16px;
  font-weight: 500;
}

.lp-page .nav-toggle {
  display: none;
}
