:root {
  --jeyber-bg: #ffffff;
  --jeyber-bg-soft: #f7fafb;
  --jeyber-panel: #ffffff;
  --jeyber-text: #17232b;
  --jeyber-muted: #67757e;
  --jeyber-border: #dbe5e9;
  --jeyber-border-strong: #c7d7dc;
  --jeyber-accent: #e52f4f;
  --jeyber-accent-strong: #b51d3a;
  --jeyber-accent-soft: #fff0f3;
  --jeyber-shadow: 0 18px 55px rgba(96, 24, 42, .10);
  --jeyber-radius: 14px;
  --jeyber-header-height: 70px;
  --jeyber-footer-height: 66px;
  --jeyber-shell-center-width: 654px;
  --jeyber-brand-width: 150px;
  --jeyber-header-tools-width: 180px;
  --jeyber-mobile-control-size: 36px;
}

/* Фирменный скроллбар. Цвета задаются в основных настройках темы. */
html.jeyber-custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--jeyber-scrollbar-color, #ff5a86) var(--jeyber-scrollbar-track-color, #fff1f6);
}

html.jeyber-custom-scrollbar::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html.jeyber-custom-scrollbar::-webkit-scrollbar-track {
  background: var(--jeyber-scrollbar-track-color, #fff1f6);
  border-radius: 999px;
}

html.jeyber-custom-scrollbar::-webkit-scrollbar-thumb {
  min-height: 42px;
  border: 2px solid var(--jeyber-scrollbar-track-color, #fff1f6);
  border-radius: 999px;
  background: var(--jeyber-scrollbar-color, #ff5a86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
}

html.jeyber-custom-scrollbar::-webkit-scrollbar-thumb:hover,
html.jeyber-custom-scrollbar::-webkit-scrollbar-thumb:active {
  background: var(--jeyber-scrollbar-hover-color, #ff4779);
}

html.jeyber-custom-scrollbar::-webkit-scrollbar-corner {
  background: var(--jeyber-scrollbar-track-color, #fff1f6);
}

html.jeyber-custom-scrollbar::-webkit-scrollbar:horizontal {
  height: 0;
}

*,
*::before,
*::after { box-sizing: border-box; }

/*
 * Стабильная ширина страницы при появлении и исчезновении
 * вертикальной полосы прокрутки.
 */
html {
  width: 100%;
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

/* Резервный вариант для браузеров без поддержки scrollbar-gutter. */
@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

@supports not (overflow: clip) {
  html,
  body,
  .jeyber-site-shell,
  .jeyber-site-main {
    overflow-x: hidden;
  }
}

body {
  width: 100%;
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--jeyber-bg);
  color: var(--jeyber-text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.jeyber-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.content-container--narrow { width: min(860px, calc(100% - 48px)); }

/* Site shell. */
body.jeyber-layout {
  min-height: 100%;
}

.jeyber-site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.jeyber-site-header,
.jeyber-site-footer {
  width: 100%;
}

.jeyber-site-footer {
  flex: 0 0 var(--jeyber-footer-height);
  height: var(--jeyber-footer-height);
  min-height: var(--jeyber-footer-height);
}

.jeyber-site-main {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.jeyber-site-main > * {
  min-width: 0;
  max-width: 100%;
}

/* Home keeps a one-screen stage without constraining the body or site shell. */
.is-home .jeyber-site-main {
  flex: 0 0 auto;
  height: calc(100vh - var(--jeyber-header-height) - var(--jeyber-footer-height));
  min-height: 0;
  overflow: hidden;
}

.jeyber-site-header {
  position: sticky;
  flex: 0 0 var(--jeyber-header-height);
  top: 0;
  z-index: 1000;
  height: var(--jeyber-header-height);
  overflow: visible;
  border-bottom: 1px solid rgba(222, 190, 198, .66);
  background: #ffffff;
  box-shadow: none;
  animation: none;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .2s ease, background-color .2s ease;
}
.jeyber-site-header.has-premium-surface {
  background:
    radial-gradient(circle at 18% -40%, rgba(231, 45, 79, .06), transparent 36%),
    linear-gradient(112deg, var(--jeyber-header-color-start, #ffffff) 0%, var(--jeyber-header-color-end, #fff7f9) 26%, var(--jeyber-header-color-start, #ffffff) 50%, var(--jeyber-header-color-end, #fff7f9) 76%, var(--jeyber-header-color-start, #ffffff) 100%);
  background-size: 100% 100%, 220% 100%;
  box-shadow: 0 10px 28px rgba(96, 24, 42, .04), inset 0 -1px 0 rgba(255, 255, 255, .9);
  animation: none;
}
.jeyber-site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
  box-shadow: none;
}
.jeyber-site-header::after {
  content: none;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(229, 47, 79, .12) 30%, rgba(229, 47, 79, .28) 50%, rgba(229, 47, 79, .12) 70%, transparent 96%);
  pointer-events: none;
}
.jeyber-site-header.has-premium-surface::after {
  content: "";
}
.jeyber-site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(64, 24, 36, .10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header-inner {
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--jeyber-shell-center-width)) minmax(0, 1fr);
  justify-content: stretch;
  align-items: center;
  column-gap: 44px;
  row-gap: 0;
}
.site-brand {
  --jeyber-brand-tracking: .105em;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-width: 0;
  color: #171c26;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 0;
  cursor: default;
  user-select: none;
  transform: none;
}

.site-brand,
.site-brand * {
  animation: none;
  transition: none;
}
.site-brand:hover,
.site-brand:focus-visible {
  color: #171c26;
  text-decoration: none;
}
.site-brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 156px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(116, 25, 45, .13));
}
.site-brand-name {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-stretch: condensed;
  text-transform: uppercase;
}
.site-brand-main {
  display: inline-block;
  position: relative;
  color: #171c26;
  font-family: inherit;
  font-size: 21px;
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 86;
  letter-spacing: var(--jeyber-brand-tracking);
  line-height: 1;
  text-transform: uppercase;
  transform: none;
}
.site-brand-separator {
  display: inline-block;
  color: #e52d4f;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transform: skewX(-8deg);
}
.site-brand-suffix {
  display: inline-block;
  position: relative;
  top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #74636b;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 82;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transform: none;
}

.site-navigation {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.site-menu,
.site-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.site-menu-item { position: relative; }
.site-menu-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  background: transparent;
  color: #59666e;
  font-size: 15px;
  font-weight: 640;
  letter-spacing: .003em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.site-menu-item > a::after {
  content: none;
}
.site-menu-icon {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #74838c;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  opacity: 1;
  transform: none;
  transition: color .18s ease;
}
.site-submenu-chevron {
  margin-left: 1px;
  color: #97a2a9;
  font-size: 8px;
  transition: color .18s ease, transform .18s ease;
}
.site-menu-item > a:hover,
.site-menu-item > a:focus-visible {
  background: rgba(229, 47, 79, .07);
  box-shadow: inset 0 0 0 1px rgba(229, 47, 79, .10);
  color: #202c33;
  text-decoration: none;
}
.site-menu-item.is-active > a {
  background: rgba(229, 47, 79, .09);
  box-shadow: inset 0 0 0 1px rgba(229, 47, 79, .12);
  color: #a9233c;
}
.site-menu-item > a:hover .site-menu-icon,
.site-menu-item > a:focus-visible .site-menu-icon,
.site-menu-item.is-active > a .site-menu-icon {
  color: var(--jeyber-accent);
  transform: none;
}
.site-menu-item:hover > a .site-submenu-chevron,
.site-menu-item:focus-within > a .site-submenu-chevron {
  color: var(--jeyber-accent-strong);
  transform: rotate(180deg);
}
.site-menu-item > a:hover::after,
.site-menu-item > a:focus-visible::after,
.site-menu-item.is-active > a::after { transform: none; }
.site-submenu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  min-width: 220px;
  padding: 9px;
  border: 1px solid rgba(199, 215, 220, .82);
  border-radius: 11px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 45px rgba(49, 37, 42, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.site-menu-item:hover > .site-submenu,
.site-menu-item:focus-within > .site-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.site-submenu .site-menu-item > a {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 7px;
}
.site-submenu .site-menu-item > a::after,
.site-submenu .site-submenu-chevron { display: none; }

.site-navigation-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}
.site-navigation-tools--mobile-only { display: none; }
.site-header-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-width: 0;
}

.site-search-form {
  position: relative;
  flex: 0 0 auto;
  width: 180px;
  height: 40px;
  margin: 0;
}
.site-search-form input {
  width: 100%;
  height: 100%;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(190, 204, 210, .82);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, .82);
  color: #25323a;
  font-size: 14px;
  line-height: 1;
  box-shadow: inset 0 1px 1px rgba(27, 39, 46, .025);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.site-search-form input::placeholder { color: #8c989f; opacity: 1; }
.site-search-form button {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: transparent;
  color: #718089;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease;
}
.site-search-form:focus-within input {
  border-color: rgba(229, 45, 79, .48);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(229, 45, 79, .08);
}
.site-search-form button:hover,
.site-search-form button:focus-visible {
  background: rgba(229, 45, 79, .055);
  color: var(--jeyber-accent-strong);
}

.site-account-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}
.site-account-actions--mobile { display: none; }
.site-account-actions--desktop { display: flex; }
.site-account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #59666e;
  font-size: 15px;
  font-weight: 640;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.site-account-link::after {
  content: none;
}
.site-account-link:hover,
.site-account-link:focus-visible {
  color: #a9233c;
  background: rgba(229, 47, 79, .07);
  box-shadow: inset 0 0 0 1px rgba(229, 47, 79, .10);
  text-decoration: none;
}
.site-account-link:hover::after,
.site-account-link:focus-visible::after { transform: none; }
.site-account-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #74838c;
  font-size: 16px;
  line-height: 1;
  transition: color .18s ease;
}
.site-account-link:hover i,
.site-account-link:focus-visible i { color: var(--jeyber-accent); }

.site-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  appearance: none;
  cursor: pointer;
}
.site-menu-toggle span:not(.jeyber-visually-hidden) {
  display: block;
  width: 14px;
  height: 2px;
  margin: 0;
  background: #263740;
}
.site-menu-toggle:focus {
  outline: none;
}
.site-menu-toggle:focus-visible {
  outline: 2px solid rgba(229, 47, 79, .42);
  outline-offset: 3px;
  border-radius: 6px;
}

.security-home {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.security-home-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}
.security-home-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}
.security-home-art::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,250,251,.72));
  pointer-events: none;
}
.security-home-art img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.03) saturate(.96);
  user-select: none;
}

.page-heading { padding: 78px 0 34px; background: linear-gradient(180deg, #f7fbfc, #fff); }
.page-heading h1 { margin: 0; color: #17232b; font-size: clamp(38px, 5vw, 68px); line-height: 1.06; font-weight: 650; letter-spacing: -.045em; }
.page-heading p { max-width: 760px; margin: 18px 0 0; color: var(--jeyber-muted); font-size: 19px; }
.page-section { padding: 30px 0 90px; }

/* Search results page. */
.search-page {
  min-height: calc(100dvh - var(--jeyber-header-height) - var(--jeyber-footer-height));
  padding: clamp(42px, 6vw, 76px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(circle at 12% 10%, rgba(229, 47, 79, .055), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(229, 47, 79, .035), transparent 30%),
    linear-gradient(180deg, #fff, #fff9fb);
}

.search-page-inner {
  display: grid;
  gap: 18px;
}

.search-page-header,
.search-result,
.search-empty-state {
  border: 1px solid rgba(205, 218, 224, .92);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 38px rgba(65, 34, 43, .065), inset 0 1px 0 rgba(255, 255, 255, .98);
}

.search-page-header {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-radius: 16px;
}

.search-page-emblem,
.search-result-icon,
.search-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 47, 79, .07);
  color: var(--jeyber-accent);
}

.search-page-emblem {
  align-self: start;
  width: 36px;
  height: 36px;
  margin-top: 24px;
  border: 1px solid rgba(229, 47, 79, .16);
  border-radius: 11px;
  font-size: 15px;
}

.search-page-heading,
.search-result-body {
  min-width: 0;
}

.search-page-kicker {
  margin: 0 0 4px;
  color: #64747d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .18em;
}

.search-page-kicker span,
.search-page-query i {
  color: var(--jeyber-accent);
}

.search-page-kicker span {
  margin: 0 4px;
}

.search-page-heading h1 {
  margin: 0;
  color: var(--jeyber-text);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.search-page-description {
  margin: 9px 0 0;
  color: var(--jeyber-muted);
  font-size: 15px;
  line-height: 1.55;
}

.search-page-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(229, 47, 79, .18);
  border-radius: 999px;
  background: rgba(229, 47, 79, .055);
  color: #7b4853;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.search-page-count strong {
  margin-left: 5px;
  color: var(--jeyber-accent-strong);
  font-size: 14px;
}

.search-page-query {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(205, 218, 224, .88);
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
  color: #6c7a83;
  font-size: 14px;
}

.search-page-query strong,
.search-result-route span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-page-query strong {
  color: #2d3b43;
}

.search-results {
  display: grid;
  gap: 14px;
}

.search-result {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.search-result:hover,
.search-result:focus-within {
  border-color: rgba(229, 47, 79, .28);
  background: #fff;
  box-shadow: 0 17px 40px rgba(80, 32, 44, .085), inset 0 1px 0 rgba(255, 255, 255, .98);
}

.search-result-icon {
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 8px;
  font-size: 12px;
}

.search-result h2 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.search-result h2 a {
  color: #1f2d35;
  text-decoration: none;
}

.search-result h2 a:hover,
.search-result h2 a:focus-visible {
  color: var(--jeyber-accent-strong);
}

.search-result-body > p {
  margin: 9px 0 0;
  color: #596871;
  font-size: 15px;
  line-height: 1.62;
}

.search-result-footer {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(216, 225, 229, .76);
}

.search-result-route {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  overflow: hidden;
  color: #7a8890;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.search-result-route i {
  flex: 0 0 auto;
  color: #9aa6ac;
  font-size: 10px;
}

.search-empty-state {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 7vw, 58px) 24px;
  border-style: dashed;
  border-radius: 15px;
  color: var(--jeyber-muted);
  text-align: center;
}

.search-empty-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(229, 47, 79, .16);
  border-radius: 16px;
  font-size: 20px;
}

.search-empty-state h2 {
  margin: 17px 0 0;
  color: var(--jeyber-text);
  font-size: 24px;
  line-height: 1.25;
}

.search-empty-state p {
  max-width: 560px;
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .search-page {
    padding: 28px 0 52px;
  }

  .search-page-header {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 20px;
  }

  .search-page-emblem {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 13px;
  }

  .search-page-heading h1 {
    font-size: 30px;
  }

  .search-page-count {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .search-result {
    gap: 13px;
    padding: 19px 18px;
  }
}

@media (max-width: 460px) {
  .search-page-inner {
    gap: 14px;
  }

  .search-page-header,
  .search-result {
    grid-template-columns: 1fr;
  }

  .search-page-emblem,
  .search-result-icon {
    display: none;
  }
}

.site-messages {
  position: fixed;
  top: calc(var(--jeyber-header-height) + 16px);
  left: 50%;
  z-index: 1200;
  display: grid;
  width: min(620px, calc(100% - 32px));
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}
.site-message {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(116, 129, 137, .22);
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  color: #42515a;
  box-shadow: 0 16px 38px rgba(48, 37, 42, .12), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .2s ease, transform .2s ease;
}
.site-message::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: #72818a;
}
.site-message.is-leaving {
  opacity: 0;
  transform: translateY(-8px) scale(.985);
  pointer-events: none;
}
.site-message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #687780;
  font-size: 15px;
}
.site-message-text {
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
}
.site-message-text > :last-child { margin-bottom: 0; }
.site-message-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #78858d;
  font-size: 12px;
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease, transform .16s ease;
}
.site-message-close:hover,
.site-message-close:focus-visible {
  background: rgba(81, 96, 105, .08);
  color: #28353d;
  transform: scale(1.04);
}
.site-message--success {
  border-color: rgba(42, 139, 99, .25);
  background: rgba(247, 253, 250, .95);
  color: #276b50;
}
.site-message--success::before { background: #2b8b63; }
.site-message--success .site-message-icon { color: #2b8b63; }
.site-message--info {
  border-color: rgba(65, 129, 148, .22);
  background: rgba(247, 252, 253, .95);
  color: #3e6570;
}
.site-message--info::before { background: #4b8fa3; }
.site-message--info .site-message-icon { color: #4b8fa3; }
.site-message--warning {
  border-color: rgba(193, 132, 31, .27);
  background: rgba(255, 251, 242, .96);
  color: #845c1d;
}
.site-message--warning::before { background: #c1841f; }
.site-message--warning .site-message-icon { color: #b97916; }
.site-message--error {
  border-color: rgba(207, 46, 79, .27);
  background: rgba(255, 247, 249, .96);
  color: #9c2639;
}
.site-message--error::before { background: #cf2e4f; }
.site-message--error .site-message-icon { color: #cf2e4f; }
/* Premium system error page. */
.error-page {
  position: relative;
  display: grid;
  min-height: calc(100vh - var(--jeyber-header-height) - var(--jeyber-footer-height));
  min-height: calc(100dvh - var(--jeyber-header-height) - var(--jeyber-footer-height));
  padding: clamp(34px, 7vh, 84px) 20px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(255, 250, 251, .88)),
    url("../images/security-network-background.webp") center / cover no-repeat;
}

.error-page::before,
.error-page::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.error-page::before {
  top: -160px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(229, 47, 79, .12);
  background: rgba(229, 47, 79, .045);
}

.error-page::after {
  bottom: -190px;
  left: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(47, 86, 123, .10);
  background: rgba(47, 86, 123, .035);
}

.error-page-inner {
  width: min(100%, 650px);
}

.error-card {
  position: relative;
  padding: clamp(32px, 6vw, 58px) clamp(24px, 7vw, 68px) clamp(30px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(222, 190, 198, .82);
  border-radius: 22px;
  background: rgba(255, 255, 255, .965);
  box-shadow:
    0 28px 72px rgba(49, 29, 37, .15),
    0 7px 22px rgba(49, 29, 37, .07),
    inset 0 1px 0 rgba(255, 255, 255, .98);
  text-align: center;
  backdrop-filter: blur(16px);
}

.error-card-accent {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(229, 47, 79, .88), transparent);
}

.error-emblem {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 47, 79, .12);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff6f8, #ffecef);
  box-shadow: 0 12px 26px rgba(216, 47, 73, .13);
  color: var(--jeyber-accent);
  font-size: 20px;
}

.error-kicker {
  margin: 0 0 18px;
  color: #64727b;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .19em;
}

.error-kicker span {
  margin-inline: 5px;
  color: var(--jeyber-accent);
}

.error-code {
  margin: 0;
  color: var(--jeyber-accent);
  font-size: clamp(82px, 16vw, 128px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.065em;
  text-shadow: 0 12px 30px rgba(229, 47, 79, .13);
}

.error-title {
  margin: 26px 0 0;
  color: #17232b;
  font-size: clamp(25px, 4.6vw, 36px);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.error-description {
  max-width: 470px;
  margin: 15px auto 0;
  color: #66757e;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.62;
  text-wrap: pretty;
}

.error-status {
  display: inline-flex;
  min-height: 30px;
  margin-top: 26px;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(199, 215, 220, .78);
  border-radius: 999px;
  background: #f8fbfc;
  color: #6c7a83;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.error-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jeyber-accent);
  box-shadow: 0 0 0 4px rgba(229, 47, 79, .09);
}

@media (max-width: 620px) {
  .error-page {
    padding: 28px 16px;
    background-position: 50% center;
  }

  .error-card {
    padding: 30px 20px 28px;
    border-radius: 18px;
  }

  .error-emblem {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 18px;
  }

  .error-kicker {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .error-title {
    margin-top: 22px;
  }

  .error-status {
    margin-top: 22px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .error-page {
    min-height: auto;
    padding: 24px 20px;
  }

  .error-card {
    padding: 22px 34px 20px;
  }

  .error-emblem {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    border-radius: 12px;
    font-size: 16px;
  }

  .error-kicker {
    margin-bottom: 10px;
  }

  .error-code {
    font-size: 72px;
  }

  .error-title {
    margin-top: 16px;
    font-size: 26px;
  }

  .error-description {
    margin-top: 8px;
    font-size: 14px;
  }

  .error-status {
    min-height: 26px;
    margin-top: 14px;
  }
}

.site-footer {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: visible;
  border-top: 1px solid rgba(222, 190, 198, .66);
  background: #ffffff;
  box-shadow: none;
  animation: none;
}
.jeyber-site-footer.has-premium-surface .site-footer {
  background:
    radial-gradient(circle at 88% 128%, rgba(231, 45, 79, .07), transparent 34%),
    linear-gradient(292deg, var(--jeyber-footer-color-start, #ffffff) 0%, var(--jeyber-footer-color-start, #ffffff) 36%, var(--jeyber-footer-color-start, #ffffff) 62%, var(--jeyber-footer-color-end, #fff6f9) 84%, var(--jeyber-footer-color-end, #fff6f9) 100%);
  background-size: 100% 100%, 220% 100%;
  box-shadow: 0 -10px 28px rgba(96, 24, 42, .035), inset 0 1px 0 rgba(255,255,255,.92);
  animation: none;
}
.site-footer::before {
  content: none;
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(229, 47, 79, .10) 30%, rgba(229, 47, 79, .24) 50%, rgba(229, 47, 79, .10) 70%, transparent 96%);
  pointer-events: none;
}
.jeyber-site-footer.has-premium-surface .site-footer::before { content: ""; }
.site-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  --jeyber-footer-row-top: 18px;
  --jeyber-footer-pixel-snap-y: 0px;
  top: calc(var(--jeyber-footer-row-top) + var(--jeyber-footer-pixel-snap-y));
  height: 30px;
  min-height: 30px;
  margin-inline: auto;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--jeyber-shell-center-width)) minmax(0, 1fr);
  align-items: center;
  column-gap: 44px;
  row-gap: 0;
  color: #6f7c84;
  font-size: 12px;
}
.site-footer :where(a) { color: var(--jeyber-accent-strong); text-decoration: none; }
.site-footer-copy {
  justify-self: end;
  display: inline-flex;
  width: var(--jeyber-brand-width, auto);
  min-width: 0;
  min-height: 30px;
  align-items: center;
  justify-content: flex-start;
  color: #697780;
  font-size: 10.5px;
  font-weight: 680;
  letter-spacing: .085em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-footer-copy::before {
  content: none;
}
.site-footer-meta {
  justify-self: center;
  display: inline-flex;
  min-width: 0;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  color: #74818a;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: .11em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-footer-status-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(229, 47, 79, .72);
  box-shadow: 0 0 0 3px rgba(229, 47, 79, .08);
}
.site-footer-meta-text {
  display: inline-flex;
  min-height: 1em;
  align-items: center;
  line-height: 1;
}
.site-footer-actions {
  justify-self: start;
  display: flex;
  width: var(--jeyber-header-tools-width, auto);
  min-width: 0;
  min-height: 30px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
}
.site-footer-actions.has-footer-more {
  width: min(100%, 280px);
}
.site-footer-actions.is-empty {
  pointer-events: none;
}
.site-footer-service,
.site-footer-more-toggle {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border: 1px solid rgba(216, 47, 73, .18);
  border-radius: 999px;
  background: rgba(255, 249, 250, .72);
  box-shadow: none;
  color: #c23149;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .005em;
  line-height: 1;
  flex: 0 0 auto;
  white-space: nowrap;
  outline: none;
  transition: color .14s ease, border-color .14s ease, background-color .14s ease, transform .14s ease;
}
.site-footer-more {
  position: relative;
  display: inline-flex;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
}
.site-footer-more--mobile-only {
  display: none;
}
.site-footer-more-toggle {
  appearance: none;
  -webkit-appearance: none;
  gap: 6px;
  cursor: pointer;
}
.site-footer-more-chevron {
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-135deg);
  transform-origin: center;
}
.site-footer-more.is-open .site-footer-more-chevron {
  transform: rotate(45deg);
}
.site-footer-more-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 30;
  width: max-content;
  min-width: 190px;
  max-width: min(280px, calc(100vw - 32px));
  max-height: min(320px, calc(100svh - var(--jeyber-footer-height) - 24px));
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(216, 47, 73, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 34px rgba(64, 42, 49, .16), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.site-footer-more-menu[hidden] {
  display: none;
}
.site-footer-more-list {
  display: grid;
  gap: 2px;
}
.site-footer-more-list--mobile {
  display: none;
}
.site-footer-more-link {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #5f6970;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.3;
  white-space: normal;
}
.site-footer-service:hover,
.site-footer-service:active,
.site-footer-service:focus-visible,
.site-footer-more-toggle:hover,
.site-footer-more-toggle:active,
.site-footer-more-toggle:focus-visible,
.site-footer-more-toggle[aria-expanded="true"] {
  border-color: rgba(216, 47, 73, .34);
  background: rgba(255, 238, 242, .92);
  color: #9f2636;
}
.site-footer-more-link:hover,
.site-footer-more-link:active,
.site-footer-more-link:focus-visible {
  background: rgba(255, 238, 242, .92);
  color: #9f2636;
  outline: none;
}
.site-footer-service:focus-visible,
.site-footer-more-toggle:focus-visible {
  outline: 2px solid rgba(216, 47, 73, .42);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer-service:hover,
  .site-footer-more-toggle:hover {
    transform: translateY(-1px);
  }

  .site-footer-service:active,
  .site-footer-more-toggle:active {
    transform: translateY(0);
  }
}

.jeyber-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: inline-grid;
  width: 50px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: var(--jeyber-back-top-color, #d82f49);
  box-shadow: 0 3px 10px rgba(35, 29, 32, .18);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.jeyber-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
body.footer-more-open .jeyber-back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}
.jeyber-back-to-top:hover,
.jeyber-back-to-top:focus-visible {
  background: var(--jeyber-back-top-hover-color, #b51d3a);
  box-shadow: 0 5px 14px rgba(35, 29, 32, .24);
  color: #fff;
}
button.jeyber-back-to-top:focus:not(:focus-visible) {
  outline: none;
}
.jeyber-back-to-top:focus-visible {
  outline: 3px solid rgba(216, 47, 73, .22);
  outline-offset: 3px;
}
.jeyber-back-to-top i { pointer-events: none; }

.jeyber-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 7px;
  background: #17232b;
  color: #fff;
  transform: translateY(-170%);
  transition: transform .15s ease;
}
.jeyber-skip-link:focus { color: #fff; transform: translateY(0); }

@media (max-width: 1320px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: stretch;
    gap: 12px;
  }
  .site-footer-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 32px;
  }
  .site-brand {
    justify-self: start;
    margin-right: 0;
  }
  .site-footer-copy {
    justify-self: start;
    width: auto;
    text-align: left;
  }
  .site-footer-actions {
    justify-self: end;
    width: auto;
    justify-content: flex-end;
  }

  .site-navigation {
    grid-column: 1 / -1;
    position: absolute;
    top: calc(100% + 10px);
    right: auto;
    left: auto;
    z-index: 20;
    display: flex;
    width: min(336px, calc(100% - 64px));
    max-width: calc(100% - 64px);
    max-height: calc(100svh - var(--jeyber-header-height) - 24px);
    padding: 8px;
    overflow-x: clip;
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    border: 1px solid #e6d6da;
    border-radius: 15px;
    background:
      radial-gradient(circle at 15% -20%, rgba(229, 47, 79, .04), transparent 34%),
      linear-gradient(180deg, #fffefe 0%, #fbf8f9 100%);
    box-shadow: 0 16px 34px rgba(45, 36, 39, .13), inset 0 1px 0 rgba(255, 255, 255, .98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transform-origin: top right;
    transition: opacity .16s ease, visibility 0s linear .16s;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    will-change: auto;
  }
  .site-navigation::before {
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    left: 14px;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, rgba(229, 47, 79, .26), transparent);
    pointer-events: none;
  }
  .site-navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .site-menu {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-menu-item > a {
    width: 100%;
    max-width: 100%;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    white-space: normal;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
  }
  .site-menu-item > a span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .site-menu-item > a::after { display: none; }
  .site-menu-item > a:hover,
  .site-menu-item > a:focus-visible {
    border-color: rgba(230, 214, 218, .92);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 6px 14px rgba(73, 49, 56, .06);
  }
  .site-menu-item.is-active > a {
    border-color: rgba(229, 47, 79, .18);
    background: #fff0f3;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .84);
  }
  .site-menu-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(229, 47, 79, .10);
    color: #e52f4f;
    font-size: 12px;
    transition: color .16s ease, background-color .16s ease;
  }
  .site-menu-item > a:hover .site-menu-icon,
  .site-menu-item > a:focus-visible .site-menu-icon {
    background: rgba(229, 47, 79, .14);
    color: #df294a;
  }
  .site-menu-item.is-active > a .site-menu-icon {
    background: rgba(229, 47, 79, .10);
  }

  .site-submenu {
    position: static;
    min-width: 0;
    margin: 2px 0 4px 18px;
    padding: 0 0 0 8px;
    border: 0;
    border-left: 1px solid rgba(199, 215, 220, .82);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header-tools { display: none; }
  .site-navigation-tools--mobile-only {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px 0 0;
    border-top: 1px solid #e6d6da;
    border-left: 0;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
  .site-navigation-tools--mobile-only .site-search-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 36px;
  }
  .site-navigation-tools--mobile-only .site-search-form input {
    padding: 0 34px 0 12px;
    border-color: #d8c8cc;
    border-radius: 9px;
    background: rgba(255, 255, 255, .94);
  }
  .site-navigation-tools--mobile-only .site-search-form input::placeholder {
    color: #8a949b;
  }
  .site-navigation-tools--mobile-only .site-search-form button {
    width: 34px;
    height: 34px;
  }

  .site-menu-toggle {
    position: relative;
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .site-menu-toggle:hover,
  .site-menu-toggle:active,
  .site-menu-toggle[aria-expanded="true"] {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .site-menu-toggle span:not(.jeyber-visually-hidden) {
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: #314650;
    transform-origin: center;
    transition: width .16s ease, opacity .16s ease, background-color .16s ease, transform .18s ease;
  }
  .site-menu-toggle span:nth-child(2) {
    width: 11px;
    margin-left: 4px;
    background: var(--jeyber-accent);
  }
  .site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    background: #314650;
    transform: translateY(6px) rotate(45deg);
  }
  .site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 4px;
    margin-left: 0;
    opacity: 0;
    transform: scaleX(.2);
  }
  .site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    background: #314650;
    transform: translateY(-6px) rotate(-45deg);
  }
  .site-menu-toggle:focus-visible {
    outline: 2px solid rgba(229, 47, 79, .42);
    outline-offset: 3px;
    border-radius: 0;
  }

  .site-account-actions--desktop { display: none; }
  .site-account-actions {
    margin-left: 0;
    gap: 0;
  }
  .site-account-actions--mobile {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    margin-right: 0;
  }
  .site-account-actions--mobile .site-account-link,
  .site-menu-toggle {
    width: var(--jeyber-mobile-control-size);
    height: var(--jeyber-mobile-control-size);
    min-height: var(--jeyber-mobile-control-size);
    padding: 0;
  }
  .site-account-actions--mobile .site-account-link span { display: none; }
  .site-account-actions--mobile .site-account-link::after {
    right: 6px;
    left: 6px;
  }
}

@media (max-width: 900px) {
  :root {
    --jeyber-header-height: 68px;
    --jeyber-footer-height: 64px;
    --jeyber-brand-width: 138px;
    --jeyber-header-tools-width: 180px;
  }
  .site-header-inner,
  .site-footer-inner { width: min(1320px, calc(100% - 40px)); }
  .site-brand { --jeyber-brand-tracking: .095em; }
  .site-brand-main { font-size: 19px; }
  .site-brand-suffix { font-size: 9px; letter-spacing: .16em; }
  .site-brand-logo { height: 36px; max-width: 122px; }
  .site-account-link { min-height: 32px; padding: 0 7px; font-size: 11.5px; }
  .site-account-actions--mobile .site-account-link,
  .site-menu-toggle {
    width: var(--jeyber-mobile-control-size);
    height: var(--jeyber-mobile-control-size);
    min-height: var(--jeyber-mobile-control-size);
  }
  .security-home-art img { object-position: center center; }
  .site-footer-inner {
    --jeyber-footer-row-top: 17px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 24px;
  }
  .site-footer-copy,
  .site-footer-meta { font-size: 10px; }
  .site-footer-actions { gap: 6px; }
  .site-footer-service,
  .site-footer-more-toggle {
    min-height: 29px;
    padding-inline: 10px;
    font-size: 11.5px;
  }
}

@media (min-width: 621px) and (max-width: 740px) {
  .site-footer-inner {
    width: min(1320px, calc(100% - 24px));
    column-gap: 10px;
  }
  .site-footer-actions { gap: 4px; }
  .site-footer-service,
  .site-footer-more-toggle {
    min-height: 28px;
    padding-inline: 7px;
    font-size: 10px;
  }
  .site-footer-primary-service {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 620px) {
  :root {
    --jeyber-header-height: 62px;
    --jeyber-footer-height: 62px;
    --jeyber-brand-width: auto;
    --jeyber-header-tools-width: auto;
  }
  .content-container,
  .content-container--narrow { width: min(100% - 30px, 1180px); }
  .site-header-inner,
  .site-footer-inner { width: min(1320px, calc(100% - 32px)); }
  .site-brand {
    --jeyber-brand-tracking: .082em;
    gap: 7px;
  }
  .site-brand-name {
    min-height: 30px;
    gap: 6px;
  }
  .site-brand-main { font-size: 17.5px; }
  .site-brand-separator { font-size: 16px; }
  .site-brand-logo { height: 32px; max-width: 96px; }
  .site-brand-suffix {
    display: inline-flex;
    min-height: 18px;
    padding: 2px 6px 1px;
    align-items: center;
    border: 1px solid rgba(229, 47, 79, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: #75646c;
    font-size: 7.5px;
    font-weight: 720;
    font-variation-settings: "wght" 720, "wdth" 82;
    letter-spacing: .11em;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  }
  .site-account-actions--mobile {
    gap: 6px;
    margin-right: 0;
  }
  .site-navigation {
    top: calc(100% + 8px);
    right: calc((var(--jeyber-mobile-control-size) / 2) + 4px);
    width: min(320px, calc(100% - 40px));
    max-width: calc(100% - 40px);
    padding: 8px;
    gap: 7px;
    border-radius: 14px;
    transform: none;
  }
  .site-menu-item > a {
    min-height: 36px;
    padding-inline: 9px;
  }
  .site-menu-icon { margin-right: 1px; }
  .site-navigation-tools--mobile-only { gap: 10px; }
  .site-search-form { width: 100%; max-width: 100%; }
  .security-home-art img { object-position: 50% center; }
  .site-footer-inner {
    --jeyber-footer-row-top: 16px;
    height: 30px;
    min-height: 30px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    justify-items: stretch;
    align-content: center;
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
    font-size: 11px;
    text-align: left;
  }
  .site-footer-copy {
    justify-self: start;
    width: auto;
    min-height: 30px;
    font-size: 9.5px;
    letter-spacing: .065em;
    text-align: left;
  }
  .site-footer-meta {
    justify-self: center;
    display: inline-flex;
    min-height: 30px;
    gap: 6px;
    font-size: 9.5px;
    letter-spacing: .075em;
  }
  .site-footer-actions,
  .site-footer-actions.has-footer-more {
    justify-self: end;
    display: flex;
    width: auto;
    min-height: 30px;
    gap: 0;
  }
  .site-footer-actions.is-empty { display: none; }
  .site-footer-primary-service { display: none; }
  .site-footer-more--mobile-only { display: inline-flex; }
  .site-footer-more-toggle {
    min-height: 28px;
    padding-inline: 9px;
    gap: 5px;
    font-size: 11px;
  }
  .site-footer-more-list--desktop { display: none; }
  .site-footer-more-list--mobile { display: grid; }
  .site-footer-copy::before { display: none; }
  .page-heading { padding-top: 58px; }
}

@media (max-width: 620px) {
  .site-messages {
    top: calc(var(--jeyber-header-height) + 10px);
    width: calc(100% - 20px);
  }
  .site-message {
    grid-template-columns: 18px minmax(0, 1fr) 28px;
    min-height: 48px;
    padding: 9px 8px 9px 12px;
    border-radius: 11px;
  }
  .site-message-text { font-size: 12.5px; }
  .site-message-close { width: 28px; height: 28px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .jeyber-back-to-top {
    right: 24px;
    bottom: 84px;
  }
}

@media (max-width: 767px) {
  .jeyber-back-to-top {
    right: 20px;
    bottom: 96px;
  }
}

@media (max-width: 640px) {
  .jeyber-back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(35, 29, 32, .16);
    font-size: 13px;
  }

  /* The visible button stays compact while the transparent pseudo-element
     preserves an approximately 44 x 44 px touch target. */
  .jeyber-back-to-top::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 8px;
  }

  .jeyber-back-to-top:hover,
  .jeyber-back-to-top:focus-visible {
    box-shadow: 0 4px 11px rgba(35, 29, 32, .21);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .jeyber-site-header, .site-footer { animation: none !important; }
  .site-navigation,
  .site-menu-toggle,
  .site-menu-toggle span:not(.jeyber-visually-hidden) {
    transition: none !important;
  }
  .site-menu-toggle:hover { transform: none; }
}

@media (max-width: 370px) {
  .site-brand-main { font-size: 16.5px; }
  .site-brand-suffix {
    min-height: 17px;
    padding-inline: 5px;
    font-size: 7px;
    letter-spacing: .09em;
  }
  .site-footer-inner { column-gap: 5px; }
  .site-footer-copy,
  .site-footer-meta { font-size: 8.75px; }
  .site-footer-meta { gap: 5px; }
  .site-footer-more-toggle {
    padding-inline: 8px;
    font-size: 10.5px;
  }
}

@media (max-width: 1320px) and (orientation: landscape) and (max-height: 520px) {
  .site-navigation {
    top: calc(100% + 8px);
    right: calc(var(--jeyber-mobile-control-size) + 6px);
    width: min(312px, calc(100% - 150px));
    max-width: calc(100% - 150px);
    padding: 7px;
    gap: 6px;
    transform: none;
  }
  .site-navigation.is-open { gap: 10px; }
  .site-menu { gap: 2px; }
  .site-menu-item > a {
    min-height: 33px;
    padding-inline: 8px;
  }
  .site-menu-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .site-navigation-tools--mobile-only { padding-top: 7px; }
  .site-navigation-tools--mobile-only .site-search-form { height: 33px; }
  .site-navigation-tools--mobile-only .site-search-form button {
    width: 31px;
    height: 31px;
  }
}


/* --------------------------------------------------------------------------
 * Restrained mobile control hover states.
 * Login/logout stays frameless; menu bars receive subtle emphasis and the
 * open close icon becomes red only on intentional interaction.
 * -------------------------------------------------------------------------- */
@media (max-width: 1320px) {
  /* Mobile login/logout: keep only the icon colour feedback, without a frame. */
  .site-account-actions--mobile .site-account-link,
  .site-account-actions--mobile .site-account-link:hover,
  .site-account-actions--mobile .site-account-link:focus-visible,
  .site-account-actions--mobile .site-account-link:active {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-account-actions--mobile .site-account-link:hover,
  .site-account-actions--mobile .site-account-link:focus-visible,
  .site-account-actions--mobile .site-account-link:active {
    color: #a9233c;
  }

  .site-account-actions--mobile .site-account-link:hover i,
  .site-account-actions--mobile .site-account-link:focus-visible i,
  .site-account-actions--mobile .site-account-link:active i {
    color: var(--jeyber-accent);
  }

  /* Touch feedback without a persistent hover state. */
  .site-menu-toggle:not([aria-expanded="true"]):active span:nth-child(1),
  .site-menu-toggle:not([aria-expanded="true"]):active span:nth-child(3) {
    background: #1f343e;
  }

  .site-menu-toggle:not([aria-expanded="true"]):active span:nth-child(2) {
    background: #d72748;
  }

  .site-menu-toggle[aria-expanded="true"]:hover span:nth-child(1),
  .site-menu-toggle[aria-expanded="true"]:hover span:nth-child(3),
  .site-menu-toggle[aria-expanded="true"]:active span:nth-child(1),
  .site-menu-toggle[aria-expanded="true"]:active span:nth-child(3),
  .site-menu-toggle[aria-expanded="true"]:focus-visible span:nth-child(1),
  .site-menu-toggle[aria-expanded="true"]:focus-visible span:nth-child(3) {
    background-color: var(--jeyber-accent);
    box-shadow: none;
    filter: none;
    opacity: 1;
  }
}

@media (max-width: 1320px) and (hover: hover) and (pointer: fine) {
  /* Closed menu: subtle emphasis, without moving or resizing the control. */
  .site-menu-toggle:not([aria-expanded="true"]):hover span:nth-child(1),
  .site-menu-toggle:not([aria-expanded="true"]):hover span:nth-child(3) {
    background: #1f343e;
    box-shadow: 0 1px 3px rgba(31, 52, 62, .16);
  }

  .site-menu-toggle:not([aria-expanded="true"]):hover span:nth-child(2) {
    background: #d72748;
    box-shadow: 0 1px 3px rgba(215, 39, 72, .18);
  }
}

/* --------------------------------------------------------------------------
 * Subtle workspace background
 * Страницы учетной записи и обычные страницы с фирменным светлым фоном используют
 * единый декоративный фон. Геометрия содержимого принадлежит шаблонам страниц.
 * -------------------------------------------------------------------------- */
body.is-account-page .jeyber-site-main,
body.has-subtle-page-background .jeyber-site-main {
  position: relative;
  isolation: isolate;
  background-color: #fffafb;
  background-image:
    linear-gradient(180deg,
      rgba(255, 255, 255, .91) 0%,
      rgba(255, 253, 254, .925) 34%,
      rgba(255, 250, 251, .955) 72%,
      rgba(255, 250, 251, .985) 100%),
    url("../images/security-network-background.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%, 100% auto;
  background-attachment: scroll;
}

/* На телефоне изображение остаётся узнаваемым только в верхней части,
   а более плотный белый слой сохраняет максимальную читаемость форм. */
@media (max-width: 767px) {
  body.is-account-page .jeyber-site-main,
body.has-subtle-page-background .jeyber-site-main {
    background-image:
      linear-gradient(180deg,
        rgba(255, 255, 255, .95) 0%,
        rgba(255, 253, 254, .965) 42%,
        rgba(255, 250, 251, .985) 76%,
        rgba(255, 250, 251, .995) 100%),
      url("../images/security-network-background.webp");
    background-position: center top;
    background-size: 100% 100%, auto 420px;
  }
}

/* Экономия трафика: декоративное изображение не загружается в режиме
   reduced-data, остаётся только лёгкий фирменный градиент. */
@media (prefers-reduced-data: reduce) {
  body.is-account-page .jeyber-site-main,
body.has-subtle-page-background .jeyber-site-main {
    background-image: linear-gradient(180deg, #fff 0%, #fffafb 100%);
  }
}

/* --------------------------------------------------------------------------
 * Selectable background for generic form pages
 * Default content pages own their card geometry in content.css. This block
 * applies only to generic .page-heading/.page-section templates.
 * -------------------------------------------------------------------------- */
body.has-subtle-page-background .page-heading:not(.jeyber-default-page-heading) {
  background: transparent;
  padding-bottom: 22px;
}

body.has-subtle-page-background .page-section:not(.jeyber-default-page-section) {
  padding-top: 0;
}

body.has-subtle-page-background .page-section:not(.jeyber-default-page-section) > .content-container {
  padding: 36px 40px 44px;
  border: 1px solid rgba(209, 219, 225, .9);
  border-radius: 12px;
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 14px 34px rgba(35, 48, 58, .075);
}

@media (max-width: 767px) {
  body.has-subtle-page-background .page-heading:not(.jeyber-default-page-heading) {
    padding-bottom: 18px;
  }

  body.has-subtle-page-background .page-section:not(.jeyber-default-page-section) > .content-container {
    padding: 26px 20px 32px;
    border-radius: 10px;
  }
}


