/* Apex hamburger nav — 2026-09-13 (match billing single-menu pattern) */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 106, 26, 0.35);
  background: rgba(255, 106, 26, 0.08);
  color: var(--molten-orange, #ff6a1a);
  cursor: pointer;
  z-index: 5;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 106, 26, 0.18);
  box-shadow: 0 0 18px rgba(255, 106, 26, 0.25);
}

.nav-toggle .nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 106, 26, 0.22);
    background: rgba(7, 11, 16, 0.98);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    z-index: 40;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 106, 26, 0.1);
  }

  .nav-links .nav-login {
    margin-top: 0.35rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links { transition: none; }
}
