.v2-shell-header {
  width: 100%;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 10000;
  color: #102033;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid #18aeca;
  box-shadow: 0 3px 12px rgba(16, 32, 51, 0.08);
  font-family: Roboto, sans-serif;
  letter-spacing: 0;
}

.v2-shell-header,
.v2-shell-header * {
  box-sizing: border-box;
}

.v2-shell-header a {
  color: inherit;
  text-decoration: none;
}

.v2-shell-header button,
.v2-shell-header a {
  -webkit-tap-highlight-color: transparent;
  font-family: Roboto, sans-serif;
}

.v2-shell-header a:focus-visible,
.v2-shell-header button:focus-visible {
  outline: 2px solid #18aeca;
  outline-offset: 2px;
}

.v2-shell-inner {
  width: min(1180px, calc(100% - 40px));
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.v2-shell-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.v2-shell-brand img {
  width: 230px;
  height: auto;
  display: block;
}

.v2-shell-nav {
  height: 100%;
}

.v2-shell-list {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-shell-item {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.v2-shell-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  color: #26384b !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.v2-shell-link::after {
  height: 3px;
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  content: "";
  background: transparent;
}

.v2-shell-item.is-active > .v2-shell-link,
.v2-shell-link:hover,
.v2-shell-link:focus-visible {
  color: #008cc8 !important;
}

.v2-shell-item.is-active > .v2-shell-link::after,
.v2-shell-link:hover::after,
.v2-shell-link:focus-visible::after {
  background: #18aeca;
}

.v2-shell-link .bx-chevron-down {
  font-size: 17px;
}

.v2-shell-mega {
  width: min(1180px, calc(100vw - 40px));
  max-height: calc(100vh - 104px);
  position: fixed;
  top: 84px;
  left: 50%;
  overflow: auto;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dbe3e8;
  border-top: 3px solid #18aeca;
  border-radius: 0;
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.v2-shell-item:hover .v2-shell-mega,
.v2-shell-item:focus-within .v2-shell-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.v2-shell-mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.v2-shell-mega-grid.v2-shell-solutions-grid {
  grid-template-columns: 1fr 1fr;
}

.v2-shell-mega section {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.v2-shell-mega h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  color: #102033;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.v2-shell-mega h2 i {
  color: #008cc8;
  font-size: 22px;
}

.v2-shell-mega h2 a:hover,
.v2-shell-mega h2 a:focus-visible {
  color: #008cc8 !important;
}

.v2-shell-mega ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-shell-mega li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.v2-shell-mega li a {
  display: block;
  padding: 0;
  color: #627080 !important;
  font-size: 14px;
  line-height: 1.55;
}

.v2-shell-mega li a:hover,
.v2-shell-mega li a:focus-visible {
  color: #008cc8 !important;
}

.v2-shell-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  background: #008cc8;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.v2-shell-toggle i {
  font-size: 27px;
}

.v2-shell-header ~ .page-wrapper > header.site-header {
  display: none !important;
}

body.v2-shell-menu-open {
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .v2-shell-brand img {
    width: 205px;
  }

  .v2-shell-link {
    padding: 0 12px;
  }

  .v2-shell-link::after {
    right: 12px;
    left: 12px;
  }
}

@media (max-width: 900px) {
  .v2-shell-header {
    height: 76px;
  }

  .v2-shell-inner {
    height: 73px;
  }

  .v2-shell-brand img {
    width: 190px;
  }

  .v2-shell-toggle {
    display: inline-flex;
  }

  .v2-shell-nav {
    height: auto;
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    padding: 18px 20px 40px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .v2-shell-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .v2-shell-list {
    height: auto;
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .v2-shell-item {
    display: block;
    border-bottom: 1px solid #dbe3e8;
  }

  .v2-shell-link {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0 4px;
  }

  .v2-shell-link::after {
    display: none;
  }

  .v2-shell-mega {
    width: auto;
    max-height: none;
    position: static;
    display: none;
    overflow: visible;
    padding: 0 0 22px;
    background: #ffffff;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .v2-shell-nav .v2-shell-item .v2-shell-mega,
  .v2-shell-nav .v2-shell-item:hover .v2-shell-mega,
  .v2-shell-nav .v2-shell-item:focus-within .v2-shell-mega {
    left: auto;
    transform: none;
  }

  .v2-shell-item.is-expanded .v2-shell-mega {
    display: block;
  }

  .v2-shell-mega-grid,
  .v2-shell-mega-grid.v2-shell-solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

}

@media (max-width: 680px) {
  .v2-shell-inner {
    width: calc(100% - 28px);
  }

  .v2-shell-brand img {
    width: 178px;
  }

  .v2-shell-mega-grid,
  .v2-shell-mega-grid.v2-shell-solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body .gywm_tab.post-service-tabus {
    box-sizing: border-box;
    width: 100%;
    height: 52px !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body .gywm_tab.post-service-tabus::-webkit-scrollbar {
    display: none;
  }

  body .gywm_tab .post-service-tab-item {
    box-sizing: border-box;
    min-width: 88px;
    height: 52px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  body .floating-icons {
    top: auto;
    right: 8px;
    bottom: 72px;
    flex-direction: column;
    gap: 6px;
  }

  body .floating-icons .icon-item {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }

  body .floating-icons .icon-item img {
    width: 32px;
    height: 32px;
  }

  body .floating-icons .tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-shell-header * {
    transition-duration: 0.01ms !important;
  }
}
