/* Static Heylangu header — matches heylangu.com light header (no auth / no tracking) */
.hl-static-nav {
  --hl-nav-bg: #f8f9fd;
  --hl-nav-text: #000000;
  --hl-nav-orange: #fbb03b;
  --hl-nav-max: 1920px;
  --hl-nav-pad-x: 90px;
  box-sizing: border-box;
  width: 100%;
  background: var(--hl-nav-bg);
  color: var(--hl-nav-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.05;
  position: relative;
  z-index: 100;
}

.hl-static-nav *,
.hl-static-nav *::before,
.hl-static-nav *::after {
  box-sizing: border-box;
}

.hl-static-nav__bar {
  min-height: 85px;
  padding: 10px var(--hl-nav-pad-x) 0;
  display: flex;
  align-items: center;
}

.hl-static-nav__inner {
  width: 100%;
  max-width: var(--hl-nav-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hl-static-nav__desktop {
  display: flex;
  align-items: center;
  width: 100%;
}

.hl-static-nav__mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hl-static-nav__menu {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hl-static-nav__logo img {
  display: block;
  width: auto;
  height: 70px;
}

.hl-static-nav__logo {
  padding: 0 15px 0 0;
  margin: 0;
  list-style: none;
}

.hl-static-nav__item {
  display: flex;
  align-items: center;
  min-height: 25px;
  padding: 0 15px;
  margin: 0;
  list-style: none;
}

.hl-static-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 18px;
  letter-spacing: 0.1px;
  line-height: 19px;
  text-decoration: none;
  text-align: center;
  color: var(--hl-nav-text) !important;
  fill: var(--hl-nav-text);
  cursor: pointer;
  transition: color 0.2s ease, fill 0.2s ease;
  white-space: nowrap;
}

.hl-static-nav__link:hover,
.hl-static-nav__link:focus-visible {
  color: var(--hl-nav-orange) !important;
  fill: var(--hl-nav-orange);
  outline: none;
}

.hl-static-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-left: -25px;
  margin-top: 3px;
  flex-shrink: 0;
}

.hl-static-nav__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.hl-static-nav__spacer {
  flex: 1 1 auto;
}

.hl-static-nav__cta {
  border-radius: 50px;
  background-color: var(--hl-nav-orange);
  padding: 10px 40px;
  font-weight: 700 !important;
  color: #fff !important;
}

.hl-static-nav__cta:hover,
.hl-static-nav__cta:focus-visible {
  color: #fff !important;
  filter: brightness(1.05);
}

.hl-static-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--hl-nav-text);
  cursor: pointer;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
}

.hl-static-nav__toggle:hover,
.hl-static-nav__toggle:focus,
.hl-static-nav__toggle:focus-visible,
.hl-static-nav__toggle:active {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none;
}

.hl-static-nav__toggle svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.hl-static-nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 199;
}

.hl-static-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  max-width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
  z-index: 200;
  padding: 72px 28px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  visibility: hidden;
  pointer-events: none;
}


.hl-static-nav__drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--hl-nav-orange);
  cursor: pointer;
  padding: 0;
}

.hl-static-nav__drawer-close svg {
  width: 28px;
  height: 28px;
  display: block;
}

.hl-static-nav__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hl-static-nav__drawer-list li {
  margin: 0;
  padding: 0;
}

.hl-static-nav__drawer-link {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #000 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hl-static-nav__drawer-link:hover,
.hl-static-nav__drawer-link:focus-visible {
  color: var(--hl-nav-orange) !important;
  outline: none;
}

.hl-static-nav__drawer-cta {
  display: inline-block;
  margin-top: 20px;
  border-radius: 50px;
  background: var(--hl-nav-orange);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 32px;
  text-decoration: none;
}

.hl-static-nav.is-open .hl-static-nav__backdrop {
  display: block;
}

.hl-static-nav.is-open .hl-static-nav__drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

body.hl-static-nav-open {
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1439px) {
  .hl-static-nav__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .hl-static-nav__bar {
    min-height: 72px;
    padding: 8px 20px 0;
  }

  .hl-static-nav__desktop {
    display: none;
  }

  .hl-static-nav__mobile {
    display: flex;
  }

  .hl-static-nav__logo {
    padding: 0;
  }

  .hl-static-nav__toggle,
  .hl-static-nav__toggle:hover,
  .hl-static-nav__toggle:focus,
  .hl-static-nav__toggle:focus-visible,
  .hl-static-nav__toggle:active {
    color: var(--hl-nav-text) !important;
    fill: var(--hl-nav-text) !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    transform: none !important;
  }

  .hl-static-nav__toggle svg,
  .hl-static-nav__toggle:hover svg,
  .hl-static-nav__toggle:focus svg,
  .hl-static-nav__toggle:active svg {
    fill: var(--hl-nav-text) !important;
  }
}

@media screen and (max-width: 479px) {
  .hl-static-nav__bar {
    padding-left: 16px;
    padding-right: 16px;
  }
}
