.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(204, 204, 204, 0.2);
  z-index: var(--z-header);
  padding: 32px 0 24px;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 53px;
}

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

.logo-icon {
    width: 132.14px;
    height: 53px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: -17.12px;
}

.logo-primary,
.logo-secondary {
  font-family: var(--font-baloo);
  font-size: 22.02px;
  font-weight: 400;
  line-height: 34.659px;
  color: var(--text-primary);
}

.logo-primary {
  width: 73px;
  height: 35px;
}

.logo-secondary {
  width: 90.502px;
  height: 35px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 117px;
  padding: 16px 16px;
  background: #121212;
  border: 0.5px solid rgba(204, 204, 204, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-light);
  text-decoration: none;
  padding: 4px;
  transition: var(--transition);
}

.nav-item.active {
  color: var(--accent-orange);
}

.nav-item.dropdown {
  position: relative;
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 8px;
  min-width: 200px;
  z-index: 100;
  flex-direction: column;
}

.nav-item.dropdown:hover .nav-dropdown-menu,
.nav-item.dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
}

.dropdown-icon {
  width: 8px;
  height: 5px;
  display: inline-block;
  margin-left: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 117px;
  padding: 10px 6px;
  background: #121212;
  border: 0.5px solid rgba(204, 204, 204, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-buttons .btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  height: 36px;
  width: 75px;
  font-size: 13px;
  border-radius: 6px;
}

.nav-buttons .btn-primary {
  padding: 10px 20px;
  height: 36px;
  width: 130px;
  font-size: 13px;
  border-radius: 6px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: calc(var(--z-header) + 1);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
