/* ═══ Global Navigation — single source of truth for all pages ══════════════ */
.global-nav {
  background: linear-gradient(170deg, #00e1ff 0%, #1387a6 11.82%, #0c5374 26.11%, #094364 42.36%, #0a0e16 70.48%, #0a0e16 100%);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(6,227,109,0.15);
}
.nav-logo-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo-btn img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  background: transparent; color: rgba(255,255,255,0.75); border: none;
  padding: 4px 0; font-size: 12px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: color 0.4s cubic-bezier(.23,1,.32,1);
  font-family: "Open Sans", sans-serif; text-decoration: none;
  display: inline-block;
}
.nav-link:hover, .nav-link.active { color: #06e36d; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #094364; border-bottom: 1px solid rgba(6,227,109,0.15);
  z-index: 199; padding: 12px 0 20px; flex-direction: column;
}
.nav-mobile-menu.open { display: flex !important; }
.nav-mobile-link {
  background: none; border: none; color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 14px 24px;
  text-align: left; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: "Open Sans", sans-serif; transition: color 0.3s;
  text-decoration: none; display: block; width: 100%;
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: #06e36d; }
@media (max-width: 767px) {
  .nav-links     { display: none !important; }
  .nav-hamburger { display: flex !important; }
}
