.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: #EBEBEB;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--black);
}

.nav__cta {
  padding: 7px 16px;
  font-size: 12px;
  border-radius: 5px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #EBEBEB;
    padding: 8px 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 20px;
  }

  .nav__cta {
    display: none !important;
  }

  .nav__burger {
    display: flex;
  }
}
