/* Canonical ISRP header: shared by every internal page. Source: isrp-home.html. */
:root {
  --isrp-header-blue: var(--isrp-blue, var(--blue, #103e9c));
  --isrp-header-blue-soft: var(--isrp-blue-soft, #c5cfdf);
  --isrp-header-white: var(--isrp-white, #fff);
  --isrp-header-ease: var(--isrp-ease, var(--ease, cubic-bezier(.22, 1, .36, 1)));
}

body .site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 97px;
  padding: 18px 30px 17px;
  border-radius: 0 0 50px 50px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
  backdrop-filter: blur(16px);
}

body .site-header .header-inner { position: relative; display: flex; align-items: center; width: 100%; height: 62px; }
body .site-header .brand { position: relative; display: block; flex: 0 0 322px; width: 322px; height: 52px; }
body .site-header .brand__main,
body .site-header .brand__mark,
body .site-header .brand__tagline { position: absolute; display: block; object-fit: contain; object-position: left center; }
body .site-header .brand__main { top: 9px; left: 28px; width: 266.37px; height: 32.71px; }
body .site-header .brand__mark { top: 37px; left: .75px; width: 320.65px; height: 15.28px; }
body .site-header .brand__tagline { top: 43.64px; left: 0; width: 320.65px; height: 16.62px; }

body .site-header .header-nav { position: absolute; left: 50%; display: flex; gap: 4px; align-items: center; justify-content: center; padding: 8px; border: 1px solid rgba(15, 28, 61, .08); border-radius: 999px; background: var(--isrp-header-white); box-shadow: 0 8px 24px rgba(15, 28, 61, .08); transform: translateX(-50%); }
body .site-header .header-nav a,
body .site-header .header-nav__directions { display: inline-flex; gap: 7px; align-items: center; justify-content: center; padding: 10px 18px; border: 0; border-radius: 999px; color: #171717; background: transparent; cursor: pointer; font-size: 14px; font-weight: 500; line-height: 17px; white-space: nowrap; transition: background-color 180ms var(--isrp-header-ease), color 180ms var(--isrp-header-ease); }
body .site-header .header-nav a[aria-current="page"],
body .site-header .header-nav__directions[aria-current="page"] { color: #222; background: var(--isrp-header-blue-soft); font-weight: 600; }
body .site-header .header-nav__directions svg { width: 12px; height: 12px; transition: transform 220ms var(--isrp-header-ease); }
body .site-header .header-nav__directions[aria-expanded="true"] svg { transform: rotate(180deg); }
body .site-header .header-messengers { display: flex; gap: 8px; margin-left: auto; margin-right: 28px; }
body .site-header .icon-circle { display: grid; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 50%; background: var(--isrp-header-blue-soft); place-items: center; transition: background-color 180ms var(--isrp-header-ease); }
body .site-header .icon-circle img { display: block; width: 22px; height: 22px; object-fit: contain; }
body .site-header .header-contact { display: flex; gap: 20px; align-items: center; }
body .site-header .header-phone { color: #171717; font-size: 14px; font-weight: 500; line-height: 17px; white-space: nowrap; }
body .site-header .header-button { display: inline-flex; align-items: center; justify-content: center; min-width: 135px; height: 50px; padding: 0 28px; border: 0; border-radius: 999px; color: var(--isrp-header-white); background: var(--isrp-header-blue); box-shadow: 0 6px 16px rgba(16, 62, 156, .35); cursor: pointer; font-size: 15px; font-weight: 600; line-height: 18px; white-space: nowrap; transition: background-color 180ms var(--isrp-header-ease); }
body .site-header .language-switcher { display: flex; gap: 5.5px; width: 82.5px; height: 44px; margin-left: 18px; padding: 5.5px; border: 1.375px solid rgba(255, 255, 255, .17); border-radius: 22px; background: var(--isrp-header-blue-soft); }
body .site-header .language-switcher button { display: grid; width: 33px; height: 33px; padding: 6.875px; border: 0; border-radius: 16.5px; background: transparent; cursor: pointer; place-items: center; }
body .site-header .language-switcher button[aria-pressed="true"] { background: var(--isrp-header-blue); }
body .site-header .language-switcher img { display: block; width: 19.25px; height: 19.25px; object-fit: contain; }
body .site-header .mobile-menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #fff; background: var(--isrp-header-blue); cursor: pointer; font: 600 11px Inter, sans-serif; }

.directions-popover { position: fixed; z-index: 40; inset: 81px 0 0; visibility: hidden; padding: 14px 30px 24px; opacity: 0; pointer-events: none; transition: opacity 200ms var(--isrp-header-ease), visibility 200ms; }
.directions-popover.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.directions-popover__panel { display: grid; grid-template-columns: minmax(0, 414fr); gap: 12px; width: min(430px, 100%); height: min(657px, calc(100vh - 112px)); min-height: 560px; margin: 0 0 0 calc((100% - min(1302px, 100%)) / 2); padding: 8px; overflow: hidden; border: 1px solid #d8e4f3; border-radius: 18px; background: rgba(255, 255, 255, .99); box-shadow: 0 18px 21px rgba(7, 23, 54, .14); transform: translateY(-8px); transform-origin: left top; transition: width 280ms var(--isrp-header-ease), transform 240ms var(--isrp-header-ease); }
.directions-popover.is-open .directions-popover__panel { transform: translateY(0); }
.directions-popover__panel.is-level-2-open { grid-template-columns: minmax(0, 414fr) minmax(0, 488fr); width: min(930px, 100%); }
.directions-popover__panel.is-level-3-open { grid-template-columns: minmax(0, 414fr) minmax(0, 488fr) minmax(0, 360fr); width: min(1302px, 100%); }
.directions-menu__directions { display: flex; flex-direction: column; height: 100%; padding: 4px 0; overflow: hidden; }
.directions-menu__row { display: grid; grid-template-columns: 26px minmax(0, 1fr) 18px; gap: 14px; align-items: center; width: 100%; height: 52px; padding: 16px 18px; border: 0; border-radius: 12px; color: #101a33; background: transparent; text-align: left; }
.directions-menu__row-number { color: #8a98af; font-size: 11px; font-weight: 500; line-height: 14px; }
.directions-menu__row-title { overflow: hidden; font-size: 15px; font-weight: 500; line-height: 20px; text-overflow: ellipsis; white-space: nowrap; }
.directions-menu__row-chevron { width: 18px; height: 18px; object-fit: contain; }
.directions-menu__row[aria-current="true"] { color: #fff; background: linear-gradient(90deg, #124cc7, #4e79e9); }
.directions-menu__row[aria-current="true"] .directions-menu__row-number { color: #fff; }
.directions-menu__row[aria-current="true"] .directions-menu__row-title { font-weight: 600; }
.directions-menu__divider { flex: 0 0 1px; width: calc(100% - 32px); margin: 0 auto; background: #e8eef7; }
.directions-menu__pages, .directions-menu__products { display: none; height: 100%; padding: 14px; overflow: hidden; border: 1px solid #e8eef7; border-radius: 14px; background: #f8fafd; }
.directions-popover__panel.is-level-2-open .directions-menu__pages,
.directions-popover__panel.is-level-3-open .directions-menu__pages,
.directions-popover__panel.is-level-3-open .directions-menu__products {
  display: block;
  animation: directions-level-reveal 240ms var(--isrp-header-ease) both;
}
@keyframes directions-level-reveal {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.directions-menu__page-list { height: 100%; padding: 0 5px; overflow-y: auto; border: 1px solid #bfd2ff; border-radius: 12px; background: rgba(255, 255, 255, .99); box-shadow: 0 10px 28px -18px rgba(18, 76, 199, .1); scrollbar-width: none; }
.directions-menu__page-list::-webkit-scrollbar { display: none; }
.directions-menu__page { display: grid; grid-template-columns: minmax(0, 1fr) 5px; gap: 10px; align-items: center; width: 100%; height: 50px; padding: 12px 16px 12px 18px; border: 0; border-radius: 0; color: #243047; background: transparent; font-size: 15px; font-weight: 500; line-height: 22px; text-align: left; }
.directions-menu__page img { width: 5px; height: 10px; object-fit: contain; }
.directions-menu__page[aria-current="true"] { height: 52px; border: 1px solid #bfd3ff; border-radius: 10px; color: #174cc8; background: #eef4ff; font-weight: 700; }
.directions-menu__page-divider { height: 1px; background: #eef2f7; }
.directions-menu__products { background: #f6f9fe; }
.directions-menu__products-panel { height: 100%; padding: 15px 14px; overflow: hidden; border: 1px solid #d5e3f8; border-radius: 14px; background: #fff; box-shadow: 0 10px 24px -12px rgba(23, 47, 92, .08); }
.directions-menu__products-title { margin: 0 0 20px; color: #172b4d; font-size: 17px; font-weight: 600; line-height: 1.25; }
.directions-menu__product-list { display: grid; gap: 7px; }
.directions-menu__product { display: flex; align-items: center; min-height: 44px; padding: 10px 12px; border: 1px solid #e7eef8; border-radius: 10px; color: #263b59; background: #fff; font-size: 13px; font-weight: 500; line-height: 1.25; }
.directions-menu__product[aria-current="true"] { color: #174cc8; border-color: #c9daff; background: #f4f8ff; }

.mobile-menu { position: fixed; z-index: 60; inset: 0; display: grid; visibility: hidden; place-items: start stretch; padding: 86px 16px 16px; opacity: 0; pointer-events: none; transition: opacity 240ms cubic-bezier(.22, 1, .36, 1), visibility 240ms; background: rgba(10, 27, 63, .64); }
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.mobile-menu__panel { padding: 24px; border-radius: 20px; background: #fff; transform: translateY(-12px); transition: transform 240ms cubic-bezier(.22, 1, .36, 1); }
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; color: #0f1c3d; font-weight: 700; }
.mobile-menu__close { width: 38px; height: 38px; border: 1px solid #c5cfdf; border-radius: 50%; color: #0f1c3d; background: #fff; cursor: pointer; font-size: 18px; }
.mobile-menu a { display: block; padding: 15px 0; border-top: 1px solid rgba(15, 28, 61, .08); color: #0f1c3d; font-size: 18px; font-weight: 600; }

@media (min-width: 1900px) {
  body .site-header { overflow: clip; }
  body .site-header .header-nav { top: 4.5px; left: 500.32px; transform: none; }
  body .site-header .header-messengers { position: absolute; top: 9px; left: 1348.19px; margin: 0; }
  body .site-header .header-contact { position: absolute; top: 6px; left: 1464px; }
  body .site-header .language-switcher { position: absolute; top: 9px; left: 1777.94px; margin: 0; }
}

@media (max-width: 1899px) {
  body .site-header .header-phone { display: none; }
}

@media (max-width: 1200px) {
  body .site-header .brand { flex-basis: 245px; width: 245px; transform: scale(.76); transform-origin: left center; }
  body .site-header .header-nav { left: 45%; transform: translateX(-50%) scale(.9); transform-origin: center; }
  body .site-header .header-messengers { margin-right: 14px; }
  body .site-header .header-phone { display: none; }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .directions-popover { padding-inline: 16px; }
  .directions-menu__row { grid-template-columns: 22px minmax(0, 1fr) 16px; gap: 9px; padding-inline: 12px; }
  .directions-menu__row-title, .directions-menu__page { font-size: 13px; }
  .directions-menu__page { padding-inline: 12px 10px; }
  .directions-menu__products-title { font-size: 15px; }
  .directions-menu__product { font-size: 12px; }
}

@media (max-width: 900px) {
  body .site-header { height: 76px; padding: 8px 20px; border-radius: 0 0 28px 28px; }
  body .site-header .header-inner { height: 60px; }
  body .site-header .brand { flex-basis: 210px; width: 210px; transform: scale(.64); }
  body .site-header .header-nav, body .site-header .header-messengers, body .site-header .language-switcher { display: none; }
  body .site-header .mobile-menu-toggle { display: block; margin-left: 10px; }
  body .site-header .header-contact { margin-left: auto; }
  body .site-header .header-button { min-width: 116px; height: 44px; padding: 0 20px; }
  .directions-popover { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .directions-popover,
  .directions-popover__panel,
  .header-nav__directions svg { transition: none; }
  .directions-popover__panel.is-level-2-open .directions-menu__pages,
  .directions-popover__panel.is-level-3-open .directions-menu__pages,
  .directions-popover__panel.is-level-3-open .directions-menu__products { animation: none; }
}

@media (max-width: 540px) {
  body .site-header { height: 70px; padding: 5px 16px; }
  body .site-header .brand { flex-basis: 184px; width: 184px; transform: scale(.56); }
  body .site-header .header-button { min-width: 108px; padding: 0 16px; font-size: 13px; }
  body .site-header .mobile-menu-toggle { width: 40px; height: 40px; font-size: 10px; }
}

@media (hover: hover) and (pointer: fine) {
  body .site-header .icon-circle:hover { background: #b8c5d9; }
  body .site-header .header-button:hover { background: #0c347f; }
  body .site-header .header-nav a:not([aria-current="page"]):hover,
  body .site-header .header-nav__directions:hover { background: rgba(197, 207, 223, .45); }
  .directions-menu__row:not([aria-current="true"]):hover,
  .directions-menu__page:not([aria-current="true"]):hover,
  .directions-menu__product:not([aria-current="true"]):hover { background: #f4f8ff; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu__panel, .directions-popover, .directions-popover__panel, body .site-header .header-nav__directions svg { transition: none; }
}

/* Canonical multi-level directions menu, synchronized with index.html. */
#header-directions-menu {
  --home-menu-scale: .77;
  --home-menu-ease: cubic-bezier(.23, 1, .32, 1);
  position: fixed;
  z-index: 70;
  inset: 76px 0 auto;
  display: block;
  height: calc(657px * var(--home-menu-scale));
  padding: 0;
  overflow: visible;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--home-menu-ease), visibility 0ms linear 200ms;
}

#header-directions-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 180ms var(--home-menu-ease), visibility 0ms linear 0ms;
}

#header-directions-menu .directions-popover__panel {
  --home-menu-scale: .847;
  --home-menu-clip-right: 884px;
  position: relative;
  top: 10px;
  display: grid;
  grid-template-columns: 414px 500px 360px;
  gap: 12px;
  width: 1314px;
  min-width: 1314px;
  max-width: none;
  height: 657px;
  min-height: 0;
  max-height: none;
  margin: 0 0 0 max(20px, calc((100% - 1302px) / 2));
  padding: 8px;
  overflow: hidden;
  border: 1px solid #d8e4f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, .99);
  box-shadow: 0 18px 21px rgba(7, 23, 54, .14);
  clip-path: inset(0 var(--home-menu-clip-right) 0 0 round 18px);
  transform: scale(var(--home-menu-scale));
  transform-origin: left top;
  transition: clip-path 240ms var(--home-menu-ease);
  will-change: clip-path;
}

#header-directions-menu.is-open .directions-popover__panel {
  transform: scale(var(--home-menu-scale));
}

#header-directions-menu .directions-popover__panel.is-level-2-open {
  --home-menu-clip-right: 372px;
}

#header-directions-menu .directions-popover__panel.is-level-3-open {
  --home-menu-clip-right: 0;
}

#header-directions-menu .directions-menu__directions {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 4px 0;
  overflow: hidden;
}

#header-directions-menu .directions-menu__row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 16px 18px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  color: #101a33;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  transition: background-color 160ms var(--home-menu-ease), box-shadow 160ms var(--home-menu-ease), color 160ms var(--home-menu-ease);
}

#header-directions-menu .directions-menu__row-number {
  color: #8a98af;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
}

#header-directions-menu .directions-menu__row-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#header-directions-menu .directions-menu__row-chevron {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

#header-directions-menu .directions-menu__row[aria-current="true"] {
  color: #fff;
  background: linear-gradient(90deg, #124cc7, #4e79e9);
}

#header-directions-menu .directions-menu__row[aria-current="true"] .directions-menu__row-number {
  color: #fff;
}

#header-directions-menu .directions-menu__row[aria-current="true"] .directions-menu__row-title {
  font-weight: 600;
}

#header-directions-menu .directions-menu__divider {
  flex: 0 0 1px;
  width: calc(100% - 32px);
  margin: 0 auto;
  background: #e8eef7;
}

#header-directions-menu .directions-menu__pages,
#header-directions-menu .directions-menu__products {
  display: block;
  height: 100%;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #e8eef7;
  border-radius: 14px;
  background: #f8fafd;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 190ms var(--home-menu-ease), visibility 0ms linear 240ms;
  will-change: opacity;
}

#header-directions-menu .is-level-2-open .directions-menu__pages,
#header-directions-menu .is-level-3-open .directions-menu__pages,
#header-directions-menu .is-level-3-open .directions-menu__products {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  animation: none;
  transition: opacity 190ms var(--home-menu-ease), visibility 0ms linear 0ms;
}

#header-directions-menu .is-level-3-open .directions-menu__products {
  transition-delay: 20ms, 0ms;
}

#header-directions-menu .directions-menu__page-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #bfd3ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, .99);
  box-shadow: 0 10px 28px -18px rgba(18, 76, 199, .1);
}

#header-directions-menu .directions-menu__page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6px;
  gap: 10px;
  align-items: center;
  flex: 1 1 0;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 12px 16px 12px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  color: #243047;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  transition: background-color 160ms var(--home-menu-ease), border-color 160ms var(--home-menu-ease), color 160ms var(--home-menu-ease);
}

#header-directions-menu .directions-menu__page span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#header-directions-menu .directions-menu__page img {
  width: 6px;
  height: 10px;
  object-fit: contain;
}

#header-directions-menu .directions-menu__page[aria-current="true"] {
  border-color: #bfd3ff;
  border-radius: 10px;
  color: #174cc8;
  background: #eef4ff;
  font-weight: 700;
}

#header-directions-menu .directions-menu__page-divider {
  display: block;
  flex: 0 0 1px;
  height: 1px;
  background: #eef2f7;
}

#header-directions-menu .directions-menu__products {
  background: #f6f9fe;
}

#header-directions-menu .directions-menu__products-panel {
  height: 100%;
  padding: 15px 14px;
  overflow: hidden;
  border: 1px solid #d8e4f3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px -12px rgba(23, 47, 92, .08);
}

#header-directions-menu .directions-menu__products-title {
  margin: 0 0 20px;
  color: #172b4d;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

#header-directions-menu .directions-menu__product-list {
  display: grid;
  gap: 7px;
}

#header-directions-menu .directions-menu__product {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid #e7eef8;
  border-radius: 10px;
  color: #263b59;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  transition: background-color 160ms var(--home-menu-ease), border-color 160ms var(--home-menu-ease), color 160ms var(--home-menu-ease);
}

#header-directions-menu .directions-menu__product[aria-current="true"] {
  color: #174cc8;
  border-color: #c9daff;
  background: #f4f8ff;
}

#header-directions-menu .directions-menu__row:focus-visible,
#header-directions-menu .directions-menu__page:focus-visible,
#header-directions-menu .directions-menu__product:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid rgba(18, 76, 199, .32);
  outline-offset: -3px;
}

@media (hover: hover) and (pointer: fine) {
  #header-directions-menu .directions-menu__row:not([aria-current="true"]):hover,
  #header-directions-menu .directions-menu__page:not([aria-current="true"]):hover,
  #header-directions-menu .directions-menu__product:not([aria-current="true"]):hover {
    background: #eef4ff;
  }

  #header-directions-menu .directions-menu__row:not([aria-current="true"]):hover {
    box-shadow: inset 0 0 0 1px #bfd3ff;
  }

  #header-directions-menu .directions-menu__page:not([aria-current="true"]):hover,
  #header-directions-menu .directions-menu__product:not([aria-current="true"]):hover {
    border-color: #bfd3ff;
    border-radius: 10px;
  }
}

@media (max-width: 900px) {
  #header-directions-menu {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #header-directions-menu,
  #header-directions-menu .directions-popover__panel {
    transition: none;
  }

  #header-directions-menu .directions-menu__pages,
  #header-directions-menu .directions-menu__products {
    transition: opacity 100ms linear, visibility 0ms linear;
  }
}
