.header-nav {
  background-color: #010920;
  padding: 0.5rem 2rem;
  position: fixed;
  top: 0;
  z-index: 1020;
  width: 100%;
  margin-bottom: 80px;
}

.header-nav-nav-container {
  background: #010920;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.header-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.header-nav-nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.header-nav-nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.header-nav-nav-menu a:hover {
  color: #ffc700;
}

.header-nav-try-freemium.active {
  color: #ffc700 !important;
  position: relative;
}
.header-nav-try-freemium.active::after {
  content: "";
  position: absolute;
  width: 52%;
  height: 1px;
  background-color: #ffc700;
  left: 26px;
  bottom: -7px;
  margin: auto !important;
  text-align: center;
}

.header-nav-divider {
  width: 1px;
  height: 20px;
  background-color: #ff9b0080;
}

.header-nav-login-btn {
  background-color: #ff9b0080;
  color: white;
  padding: 0.5rem 1.5rem;
  border: 1px solid #ffc700;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s;
}

.header-nav-login-btn:hover {
  background-color: #ff9b00;
  color: #fff !important;
}

.header-nav-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.header-nav-hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}

.header-nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.header-nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header-nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (max-width: 768px) {
  .header-nav-hamburger {
    display: flex;
  }

  .header-nav-nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #010920;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .header-nav-nav-menu.active {
    transform: translateX(0);
  }

  .header-nav-divider {
    width: 100%;
    height: 1px;
  }

  .header-nav-login-btn {
    width: 100%;
    text-align: center;
  }
}
