:root {
  --site-header-text: var(--ash-color-text, var(--b2c-text, #121a2b));
  --site-header-muted: var(--ash-color-text-muted, var(--b2c-muted, #52627d));
  --site-header-accent: var(--ash-color-primary, var(--b2c-primary, #4768eb));
  --site-header-accent-strong: var(--ash-color-primary-strong, var(--b2c-primary-strong, #3156dc));
  --site-header-line: var(--ash-color-border, var(--b2c-line, #dbe5ff));
  --site-header-pill: var(--ash-radius-pill, var(--b2c-radius-pill, 999px));
}

site-header {
  display: block;
}

site-header .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 12px 16px;
  border: 2px solid var(--site-header-accent-strong);
  border-radius: 10px;
  background: #ffffff;
  color: var(--site-header-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 26, 43, 0.18);
  transform: translateY(calc(-100% - 24px));
  transition: transform 0.18s ease;
}

site-header .skip-link:focus,
site-header .skip-link:focus-visible {
  color: var(--site-header-text);
  outline: 3px solid rgba(49, 86, 220, 0.28);
  outline-offset: 3px;
  transform: translateY(0);
}

#main-content:focus {
  outline: none;
}

site-header .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 18px;
}

site-header .header-shell.container {
  width: min(100% - 56px, 1156px);
  max-width: min(100% - 56px, 1156px);
}

site-header .header-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

site-header .site-header .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
}

site-header .site-header .brand img {
  width: 128px;
  max-width: 128px;
  height: auto;
}

site-header .site-nav {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

site-header .site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 0;
  color: var(--site-header-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background-image: linear-gradient(var(--site-header-accent), var(--site-header-accent));
  background-repeat: no-repeat;
  background-position: center calc(100% - 5px);
  background-size: 0 3px;
  transition: color 0.18s ease, background-size 0.18s ease;
}

site-header .site-nav a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--site-header-accent);
  display: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

site-header .site-nav a:hover,
site-header .site-nav a:focus-visible {
  color: var(--site-header-accent-strong);
}

site-header .site-nav a:focus-visible {
  border-radius: 10px;
  outline: 3px solid rgba(84, 118, 255, 0.18);
  outline-offset: -3px;
}

site-header .site-nav a.is-active,
site-header .site-nav a.is-active:hover,
site-header .site-nav a.is-active:focus-visible {
  color: var(--site-header-accent-strong);
  background: transparent;
  background-image: linear-gradient(var(--site-header-accent), var(--site-header-accent));
  background-repeat: no-repeat;
  background-position: center calc(100% - 5px);
  background-size: calc(100% - 20px) 3px;
  box-shadow: none;
}

site-header .site-nav a.is-active::after {
  opacity: 0;
  transform: scaleX(0);
}

site-header .site-header .header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

site-header .site-header .header-phone-link {
  display: none;
  color: var(--site-header-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

site-header .site-header .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--site-header-pill);
  font-family: var(--font-sans, var(--b2c-font, "Manrope", system-ui, sans-serif));
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

site-header .site-header .button:hover,
site-header .site-header .button:focus-visible {
  transform: translateY(-1px);
}

site-header .site-header .button-primary,
site-header .site-header .button-attention {
  color: #fff;
  background: linear-gradient(135deg, var(--site-header-accent-strong), var(--ash-color-primary, #4d87f7) 58%, var(--ash-color-accent-strong, #187f92));
  box-shadow: 0 16px 30px rgba(84, 118, 255, 0.26);
}

site-header .nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

site-header .nav-toggle span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: var(--site-header-accent);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

site-header .nav-toggle span:first-child {
  transform: translateY(-5px);
}

site-header .nav-toggle span:last-child {
  transform: translateY(5px);
}

site-header .nav-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

site-header .nav-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 1320px) and (min-width: 1121px) {
  site-header .header-shell.container {
    width: min(100% - 56px, 1156px);
    max-width: min(100% - 56px, 1156px);
  }

  site-header .site-nav a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 14px;
  }
}

@media (max-width: 1120px) {
  html body.site-menu-open {
    overflow: hidden;
  }

  html body.site-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 990;
    background: rgba(13, 22, 44, 0.48);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  site-header .site-header {
    z-index: 1000;
    padding-top: 18px;
  }

  site-header .header-shell.container {
    width: min(100% - 32px, 720px);
    max-width: min(100% - 32px, 720px);
  }

  site-header .header-shell {
    min-height: 48px;
    padding: 0;
    border-radius: 0;
  }

  site-header .site-header .brand img {
    width: 128px;
    max-width: 128px;
  }

  site-header .nav-toggle {
    display: inline-flex;
  }

  site-header .site-nav,
  site-header .site-header .header-actions {
    display: none;
  }

  site-header .header-shell.is-menu-open {
    position: fixed;
    top: 18px;
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(354px, calc(100vw - 32px));
    height: calc(100dvh - 18px);
    padding: 28px 22px 24px;
    border: 0;
    border-radius: 26px 0 0 0;
    background: #fff;
    box-shadow: -22px 0 52px rgba(18, 32, 72, 0.16);
    overflow-y: auto;
  }

  site-header .header-shell.is-menu-open .brand {
    align-self: flex-start;
    margin: 0 0 10px;
  }

  site-header .header-shell.is-menu-open .nav-toggle {
    position: absolute;
    top: 25px;
    right: 22px;
  }

  site-header .site-nav.is-open {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 0;
    margin: 14px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  site-header .site-nav a,
  site-header .site-nav a.is-active,
  site-header .site-nav a.is-active:hover,
  site-header .site-nav a.is-active:focus-visible {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 15px 0;
    border: 0;
    border-radius: 0;
    color: var(--site-header-text);
    background: transparent;
    background-image: none;
    background-size: 0 0;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
  }

  site-header .site-nav a::after {
    display: none;
  }

  site-header .site-nav a:hover,
  site-header .site-nav a:focus-visible,
  site-header .site-nav a.is-active {
    color: var(--site-header-accent-strong);
  }

  site-header .site-header .header-actions.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid #dee2ee;
  }

  site-header .site-header .header-actions.is-open .header-phone-link {
    display: inline-flex !important;
    margin-bottom: 18px;
  }

  site-header .site-header .header-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  site-header .header-shell.is-menu-open {
    width: calc(100vw - 32px);
  }
}
