.site-header {
  background: var(--deep-blue);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { text-decoration: none; }
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.logo-accent {
  color: var(--light-blue);
  font-weight: 800;
  margin: 0;
  padding: 0;
}
.logo-auth .logo-text {
  color: var(--deep-blue);
}
.site-footer-v2 .logo .logo-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--light-blue); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.dashboard-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
}
.dashboard-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0 16px;
  min-width: max-content;
}
.dashboard-nav a {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.dashboard-nav a:hover,
.dashboard-nav a.active {
  color: var(--deep-blue);
  border-bottom-color: var(--light-blue);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; min-height: 44px; min-width: 44px; }
  .nav-center, .nav-auth-btns .nav-search { display: none; }
  .nav-links { display: none; }
}
