.marketing-nav {
  background: rgba(13, 43, 69, 0.98) !important;
  border-bottom: 2px solid var(--gold, #C9A84C) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  height: 64px !important;
  padding: 0 60px !important;
}

.marketing-nav__brand {
  color: var(--white, #fff) !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.marketing-nav__brand:hover {
  color: var(--white, #fff) !important;
}

.marketing-nav__brand img {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.marketing-nav__brand span {
  color: var(--gold, #C9A84C);
  letter-spacing: 0.01em;
  margin-left: -2px;
  vertical-align: baseline;
}

.marketing-nav__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.marketing-nav__hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.marketing-nav__hamburger span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--white, #fff);
  display: block;
}

.marketing-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
}

.marketing-nav__link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 64px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.marketing-nav__link:hover,
.marketing-nav__link.is-active {
  color: var(--white, #fff);
}

.marketing-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold, #C9A84C);
}

.marketing-nav__cta {
  align-items: center;
  background: var(--teal, #0F7173);
  border-radius: 999px;
  color: var(--white, #fff);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  padding: 11px 18px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.marketing-nav__cta:hover {
  background: #0d6163;
  color: var(--white, #fff);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .marketing-nav {
    height: auto !important;
    min-height: 64px;
    padding: 10px 18px !important;
    flex-wrap: wrap !important;
  }

  .marketing-nav__hamburger {
    display: inline-flex;
  }

  .marketing-nav__menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: max-height 0.2s ease;
  }

  .marketing-nav__toggle:checked ~ .marketing-nav__menu {
    max-height: 360px;
    padding: 10px 0 4px;
  }

  .marketing-nav__link {
    line-height: 1.2;
    padding: 13px 2px;
  }

  .marketing-nav__link.is-active::after {
    left: 0;
    right: auto;
    bottom: 7px;
    width: 42px;
  }

  .marketing-nav__cta {
    margin-top: 10px;
    width: 100%;
  }
}
