.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 299;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}
.nav-open .nav-mobile-panel {
  display: block;
}
.nav-mobile-panel-inner {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-panel-inner a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.nav-mobile-panel-inner a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-mobile-panel-inner .nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: #c8102e;
  color: #fff !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
body.bnu-nav-open {
  overflow: hidden;
}
@media (max-width: 999px) {
  .nav .nav-links {
    display: none !important;
  }
  .nav .nav-cta:not(.nav-mobile-cta) {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav {
    position: sticky;
  }
  .nav .nav-inner {
    position: relative;
  }
}
@media (min-width: 1000px) {
  .nav-mobile-panel {
    display: none !important;
  }
}
