/* ═══════════════════════════════════════════
   NAV.CSS — jedyne źródło prawdy dla menu FSS
═══════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(3,7,18,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,202,183,0.15);
  font-family: Inter, sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgb(125, 133, 144);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e6edf3;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Przyciski w nav - zawsze te same rozmiary */
.nav-cta .btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s;
  border: none !important;
  white-space: nowrap !important;
  font-family: Inter, sans-serif !important;
}

.nav-cta .btn-ghost {
  background: transparent;
  color: rgb(125, 133, 144);
  border: 1px solid rgba(99,202,183,0.15);
}

.nav-cta .btn-ghost:hover {
  color: #e6edf3;
  border-color: #63cab7;
}

.nav-cta .btn-primary {
  background: #63cab7;
  color: #000;
}

.nav-cta .btn-primary:hover {
  background: #7dddd0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e6edf3;
  border-radius: 2px;
}

@media (max-width: 1100px) {
  nav { padding: 0 28px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none !important; }
  .nav-cta .btn-ghost { display: none; }
  .nav-hamburger { display: flex !important; }
}
