.tg-nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #e8e8e8;
  backdrop-filter: blur(8px);
}

.tg-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.tg-nav-brand {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tg-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.tg-nav-link {
  color: #4f4f4f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tg-nav-link:hover {
  color: #111;
  background: transparent;
}

.tg-nav-link.is-active {
  color: #111;
  background: transparent;
}

.tg-nav-link.is-active:hover {
  background: transparent;
}

.tg-nav-cta {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.tg-nav-cta:hover {
  opacity: 0.88;
  color: #fff;
}

.tg-nav-spacer {
  height: 72px;
}

@media (max-width: 900px) {
  .tg-nav-inner {
    padding: 12px 16px;
    gap: 14px;
  }

  .tg-nav-brand {
    font-size: 17px;
  }

  .tg-nav-links {
    gap: 8px;
    margin-left: 0;
  }

  .tg-nav-link {
    font-size: 13px;
    padding: 6px 8px;
  }

  .tg-nav-cta {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
    margin-left: auto;
  }

  .tg-nav-spacer {
    height: 66px;
  }
}

@media (max-width: 680px) {
  .tg-nav-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .tg-nav-brand {
    order: 1;
  }

  .tg-nav-cta {
    order: 2;
  }

  .tg-nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .tg-nav-spacer {
    height: 100px;
  }
}
