.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  background: transparent;
  color: #ffffff;
  border-bottom: 0;
}


button.header-search {
    display: none !important;
}
.site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 104px;
  width: min(100% - clamp(1.5rem, 6vw, 9rem), 1760px);
  margin-inline: auto;
}

.header-brand,
.drawer-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.header-brand img {
  width: 170px;
  height: auto;
}

.drawer-logo img {
  width: 132px;
  height: auto;
}

.header-nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: clamp(1.25rem, 3vw, 2.6rem);
}

.header-nav > a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.header-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: #23ACCF;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.header-nav > a:hover,
.header-nav > a:focus-visible,
.header-nav > a.is-active,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: #101116;
}

.header-nav > a:hover::after,
.header-nav > a:focus-visible::after,
.header-nav > a.is-active::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item {
  display: inline-flex;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 1.25rem;
  width: min(1120px, calc(100vw - 3rem));
  padding: 1.4rem;
  background: rgba(8, 9, 13, 0.98);
  border: 1px solid rgba(150, 238, 250, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 1.25rem;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-column {
  min-width: 0;
}

.mega-menu-column h2,
.mobile-mega-menu h2 {
  margin: 0 0 0.8rem;
  color: #23ACCF;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-heading-link {
  display: inline-flex;
  min-height: auto;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.mega-heading-link:hover,
.mega-heading-link:focus-visible {
  color: #ffffff;
}

.mega-menu-column a,
.mobile-mega-menu a,
.mega-service-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
  min-height: 36px;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.mega-service-item {
  cursor: pointer;
}

.mega-menu-column .mega-heading-link,
.mobile-mega-menu .mega-heading-link {
  display: inline-flex;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
  min-height: auto;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.mega-menu-column a:hover,
.mega-menu-column a:focus-visible,
.mobile-mega-menu a:hover,
.mobile-mega-menu a:focus-visible {
  color: #23ACCF;
}

.service-menu-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(150, 238, 250, 0.12);
  border: 1px solid rgba(150, 238, 250, 0.5);
  border-radius: 999px;
  color: #23ACCF;
  font-size: 0.58rem;
  font-weight: 950;
  line-height: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.header-search,
.drawer-open,
.mobile-menu-toggle,
.drawer-close {
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.header-search {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.header-search span {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.header-search span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 13px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.header-search:hover,
.header-search:focus-visible,
.drawer-open:hover,
.drawer-open:focus-visible,
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  color: #23ACCF;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + 1px);
  right: clamp(1.5rem, 6vw, 9rem);
  display: none;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 0.75rem;
  padding: 1rem;
  background: #101116;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-search-panel.is-open {
  display: grid;
}

.header-search-panel input {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  color: #111218;
  padding: 0 0.9rem;
  outline: 0;
}

.header-search-panel input:focus {
  border-color: #23ACCF;
}

.header-search-panel button {
  min-height: 46px;
  border: 0;
  background: #23ACCF;
  color: #111218;
  padding: 0 1rem;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.search-results {
  grid-column: 1 / -1;
  display: none;
  gap: 0.35rem;
  padding-top: 0.35rem;
}

.search-results.is-visible {
  display: grid;
}

.search-result-link,
.search-no-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-result-link:hover,
.search-result-link:focus-visible {
  background: #23ACCF;
  color: #111218;
}

.search-no-result {
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.drawer-open {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
}

.drawer-open span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.info-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(100%, 486px);
  height: 100vh;
  padding: clamp(3rem, 7vw, 5rem) clamp(2.5rem, 6vw, 4rem);
  background: #101116;
  color: #ffffff;
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.info-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 3.9rem;
  right: 3.8rem;
  width: 60px;
  height: 60px;
  background: #08090d;
}

.drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.drawer-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-logo {
  margin-bottom: clamp(5rem, 12vw, 9rem);
}

.drawer-socials {
  display: grid;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
}

.drawer-socials a:hover,
.drawer-socials a:focus-visible {
  color: #23ACCF;
}

.drawer-contact {
  display: grid;
  gap: 0.9rem;
  padding-top: clamp(3rem, 8vw, 5rem);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.drawer-contact a {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.drawer-contact .drawer-phone {
  font-size: 1.9rem;
  font-weight: 950;
}

body.drawer-lock {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header-inner {
    display: flex;
    min-height: 72px;
    justify-content: space-between;
    width: min(100% - 1.4rem, 960px);
  }

  .header-brand img {
    width: 110px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-search,
  .drawer-open {
    width: 34px;
    height: 34px;
  }

  .header-search span {
    top: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
    border-width: 2px;
  }

  .header-search-panel {
    right: 0.7rem;
    left: 0.7rem;
    grid-template-columns: 1fr;
  }

  .header-search span::after {
    right: -7px;
    bottom: -5px;
    width: 10px;
    height: 2px;
  }

  .drawer-open {
    grid-template-columns: repeat(3, 4px);
    gap: 4px;
  }

  .drawer-open span {
    width: 4px;
    height: 4px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0.7rem;
    left: 0.7rem;
    display: none;
    padding: 0.75rem;
    background: rgba(8, 8, 12, 0.96);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 0.9rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-menu > a:hover,
  .mobile-menu > a:focus-visible {
    color: #23ACCF;
  }

  .mobile-mega-menu {
    display: grid;
    gap: 1rem;
    max-height: min(58vh, 540px);
    overflow: auto;
    padding: 0.35rem 0.9rem 0.9rem;
  }

  .mobile-mega-menu section {
    display: grid;
    gap: 0.15rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-mega-menu a {
    padding: 0.35rem 0;
    text-transform: none;
  }
}

@media (max-width: 560px) {
  .info-drawer {
    width: min(100%, 486px);
    padding: 4rem 2.5rem;
  }

  .drawer-close {
    top: 3.9rem;
    right: 3.8rem;
  }
}
