/* ── NAVBAR ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  padding: 0;
  background: rgba(15,27,46,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header.scrolled {
  background: rgba(15,27,46,0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  margin: 0 16px;
}
.nav-links a {
  padding: 7px 11px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.current-menu-item {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* ── BUTTON TEXT VISIBILITY FIX ── */
.nav-ctas .btn-green {
  background: #25D366 !important;
  color: #fff !important;
  font-weight: 700;
}
.nav-ctas .btn-green:hover { background: #1ea855 !important; color: #fff !important; }
.nav-ctas .btn-blue {
  background: linear-gradient(135deg,#0088FF,#00D4FF) !important;
  color: #fff !important;
  font-weight: 700;
}
.nav-ctas .btn-blue:hover { opacity: 0.9; color: #fff !important; }
.nav-ctas .btn { padding: 9px 18px; font-size: 0.78rem; }

/* ── HAMBURGER — only shown on small screens ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 290px;
  background: #1A2A3E;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 1001;
  overflow-y: auto;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-logo { margin-bottom: 28px; }
.mobile-nav-logo img { height: 42px; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav-ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-ctas .btn { justify-content: center; width: 100%; color: #fff !important; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
}
.mobile-overlay.open { display: block; }

/* ── RESPONSIVE — show hamburger below 1024px ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-ctas  { display: none; }
  .nav-hamburger { display: flex; }
}
@media (min-width: 1101px) {
  .nav-hamburger { display: none; }
  .mobile-nav    { display: none !important; }
  .mobile-overlay { display: none !important; }
}
