.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 14px;
}

.navbar {
  background: rgba(21, 27, 36, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.nav-shell {
  padding: 0;
}

.brand-wrap {
  text-decoration: none;
  min-width: 0;
}

.brand-logo-frame {
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2);
  transform-origin: center;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-tagline {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.3;
}

.nav-links {
  align-items: center;
  gap: 10px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.navbar-nav .nav-link:focus {
  color: #ffffff;
}

.nav-cta {
  background: rgba(247, 147, 26, 0.14);
  border: 1px solid rgba(247, 147, 26, 0.28);
  color: #ffd9ab !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: rgba(247, 147, 26, 0.2) !important;
  color: #ffffff !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 6px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .header-inner {
    padding: 14px 16px 0;
  }

  .navbar {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 20px;
  }

  .navbar-collapse {
    padding-top: 14px;
  }

  .nav-links {
    align-items: stretch;
    gap: 6px;
  }

  .navbar-nav .nav-link {
    text-align: left;
  }
}
