html.khp-menu-open,
body.khp-menu-open {
  overflow: hidden;
}

body.khp-menu-open .khp-mobile-sticky-cta {
  display: none;
}

/* GLOBAL HEADER / MEGA MENU */
.khp-global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(142, 153, 170, 0);
  box-shadow: none;
  transition:
    background-color 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease;
}

.khp-global-header.is-scrolled,
.khp-global-header.is-open {
  background: rgba(142, 153, 170, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.khp-global-header-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 18px;
  transition:
    min-height 0.45s ease,
    padding-top 0.45s ease,
    padding-bottom 0.45s ease,
    gap 0.45s ease;
}

.khp-global-header.is-scrolled .khp-global-header-inner,
.khp-global-header.is-open .khp-global-header-inner {
  min-height: 96px;
  padding-top: 10px;
  padding-bottom: 12px;
  gap: 24px;
}

.khp-global-header-left,
.khp-global-header-right {
  padding-top: 0;
}

.khp-global-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.khp-global-header-markets,
.khp-global-header .khp-global-header-markets {
  color: #FFFFFF !important;
  font-size: 1rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.25;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.khp-global-header-quicklink,
.khp-global-header .khp-global-header-quicklink,
.khp-global-header .khp-global-header-quicklink:link,
.khp-global-header .khp-global-header-quicklink:visited {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
  transition: opacity 0.25s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.khp-global-header .khp-global-header-quicklink:last-child {
  font-size: 1rem;
  font-weight: 500;
}

.khp-global-header-quicklink:hover {
  opacity: 0.8;
}

.khp-global-header-quicklink span {
  margin-left: 8px;
}

.khp-global-header-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 148px;
  overflow: visible;
  line-height: 0;
}

.khp-global-header-logo {
  width: 221px;
  height: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  opacity: 1;
  transform: scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.khp-global-header.is-scrolled .khp-global-header-logo,
.khp-global-header.is-open .khp-global-header-logo {
  transform: scale(0.64);
}

.khp-global-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.khp-global-header-phone,
.khp-global-header .khp-global-header-phone,
.khp-global-header .khp-global-header-phone:link,
.khp-global-header .khp-global-header-phone:visited {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: opacity 0.25s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.khp-global-header-phone:hover {
  opacity: 0.8;
}

.khp-global-header-menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
}

.khp-global-header-menu-label,
.khp-global-header .khp-global-header-menu-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #FFFFFF !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.khp-global-header-menu-icon {
  position: relative;
  width: 34px;
  height: 24px;
  display: inline-block;
}

.khp-global-header-menu-icon span,
.khp-global-header .khp-global-header-menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF !important;
  transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
}

.khp-global-header-menu-icon span:nth-child(1) { top: 2px; }
.khp-global-header-menu-icon span:nth-child(2) { top: 11px; }
.khp-global-header-menu-icon span:nth-child(3) { top: 20px; }

.khp-global-header.is-open .khp-global-header-menu-icon span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.khp-global-header.is-open .khp-global-header-menu-icon span:nth-child(2) {
  opacity: 0;
}

.khp-global-header.is-open .khp-global-header-menu-icon span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.khp-global-mega-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.45s ease,
    opacity 0.28s ease;
}

.khp-global-header.is-open .khp-global-mega-menu {
  max-height: 1400px;
  opacity: 1;
  pointer-events: auto;
}

.khp-global-mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 42px;
  padding-top: 26px;
  padding-bottom: 48px;
}

.khp-global-menu-col h4 {
  margin: 0 0 14px;
  color: #FFFFFF !important;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
}

.khp-global-menu-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.khp-global-menu-col li {
  margin-bottom: 10px;
}

.khp-global-menu-col a,
.khp-global-menu-col a:link,
.khp-global-menu-col a:visited {
  color: #FFFFFF;
  text-decoration: none !important;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.45;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.khp-global-menu-col a:hover {
  opacity: 0.82;
  color: #FFFFFF;
}

.khp-global-menu-col-strong a {
  font-size: 0.98rem;
  font-weight: 600;
}

.khp-global-mega-menu-shell {
  width: 100%;
}

.khp-global-mobile-menu-top {
  display: none;
}

.khp-global-menu-section-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  padding: 0;
  margin: 0 0 14px;
  text-align: left;
  display: block;
  cursor: default;
}

.khp-global-menu-section-title {
  display: block;
  color: #FFFFFF;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
}

.khp-global-menu-section-title a,
.khp-global-menu-section-title a:link,
.khp-global-menu-section-title a:visited {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: opacity 0.25s ease;
}

.khp-global-menu-section-title a:hover {
  opacity: 0.82;
}

.khp-global-menu-section-icon {
  display: none;
}

@media (max-width: 1320px) {
  .khp-global-mega-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 42px;
  }
}

@media (max-width: 992px) {
  .khp-global-header-left {
    display: none;
  }

  .khp-global-header-inner {
    min-height: 90px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .khp-global-header.is-scrolled .khp-global-header-inner,
  .khp-global-header.is-open .khp-global-header-inner {
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .khp-global-header-logo {
    width: 154px;
    height: auto;
    max-width: none;
    transform: scale(1);
    transform-origin: center center;
  }

  .khp-global-header.is-scrolled .khp-global-header-logo,
  .khp-global-header.is-open .khp-global-header-logo {
    transform: scale(0.9);
  }

  .khp-global-header-phone {
    font-size: 1rem !important;
  }

  .khp-global-mega-menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 18px;
    padding-bottom: 34px;
  }
}

@media (max-width: 768px) {
  .khp-global-header {
    --khp-mobile-header-height: 84px;
  }

  .khp-global-header.is-scrolled,
  .khp-global-header.is-open {
    --khp-mobile-header-height: 74px;
  }

  .khp-global-header-phone {
    display: none;
  }

  .khp-global-header-inner {
    min-height: 84px;
    width: calc(100% - 36px);
    max-width: none;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .khp-global-header.is-scrolled .khp-global-header-inner,
  .khp-global-header.is-open .khp-global-header-inner {
    min-height: 74px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 0;
  }

  .khp-global-header-logo-wrap {
    justify-self: start;
    min-width: 0;
  }

  .khp-global-header-logo {
    width: 142px;
    height: auto;
    max-width: none;
    transform: scale(1);
    transform-origin: left center;
  }

  .khp-global-header.is-scrolled .khp-global-header-logo,
  .khp-global-header.is-open .khp-global-header-logo {
    width: 142px;
    height: auto;
    max-width: none;
    transform: scale(0.89);
    transform-origin: left center;
  }

  .khp-global-header-right {
    justify-self: end;
    margin-left: auto;
    gap: 0;
  }

  .khp-global-header-menu-toggle {
    margin-left: auto;
    gap: 10px;
    padding: 6px 0;
  }

  .khp-global-header-menu-label {
    font-size: 0.95rem !important;
    letter-spacing: 0.7px;
  }

  .khp-global-header-menu-icon {
    width: 30px;
    height: 20px;
  }

  .khp-global-header-menu-icon span:nth-child(1) { top: 1px; }
  .khp-global-header-menu-icon span:nth-child(2) { top: 9px; }
  .khp-global-header-menu-icon span:nth-child(3) { top: 17px; }

  .khp-global-header.is-open .khp-global-header-menu-icon span:nth-child(1) {
    top: 9px;
  }

  .khp-global-header.is-open .khp-global-header-menu-icon span:nth-child(3) {
    top: 9px;
  }

  .khp-global-header.is-open {
    height: 100dvh;
    overflow: hidden;
  }

  .khp-global-header.is-open .khp-global-mega-menu {
    max-height: calc(100dvh - var(--khp-mobile-header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  .khp-global-mega-menu-shell {
    width: calc(100% - 36px);
    max-width: none;
    margin: 0 auto;
    padding: 0;
  }

  .khp-global-mobile-menu-top {
    display: block;
    padding: 10px 0 24px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .khp-global-mobile-menu-cta {
    display: block;
    color: #FFFFFF !important;
    font-size: 1.38rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
  }

  .khp-global-mobile-menu-phone {
    display: block;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
  }

  .khp-global-mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-bottom: 18px;
  }

  .khp-global-menu-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
  }

  .khp-global-menu-col:last-child {
    border-bottom: 0;
  }

  .khp-global-menu-section-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    cursor: pointer;
  }

  .khp-global-menu-section-title {
    font-size: 1.04rem;
    font-weight: 600;
  }

  .khp-global-menu-section-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
    margin-left: 2px;
    transition: transform 0.25s ease;
  }

  .khp-global-menu-col.is-expanded .khp-global-menu-section-icon {
    transform: rotate(225deg) translateY(-1px);
  }

  .khp-global-menu-col ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition:
      max-height 0.32s ease,
      opacity 0.22s ease,
      padding 0.32s ease;
  }

  .khp-global-menu-col.is-expanded ul {
    max-height: 520px;
    opacity: 1;
    padding: 0 0 18px;
  }

  .khp-global-menu-col li {
    margin-bottom: 12px;
  }

  .khp-global-menu-col li:last-child {
    margin-bottom: 0;
  }

  .khp-global-menu-col a {
    display: block;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
  }

  .khp-global-menu-col-strong a {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .khp-global-header-inner {
    width: calc(100% - 28px);
  }

  .khp-global-mega-menu-shell {
    width: calc(100% - 28px);
  }

  .khp-global-mobile-menu-cta {
    font-size: 1.26rem;
  }

  .khp-global-mobile-menu-phone {
    font-size: 1.04rem;
  }
}