.top-navbar {
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 56px;
  height: auto;
  display: flex;
  padding: 0.4rem 16px;
  background: #fff;
  position: sticky;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  justify-content: space-between;
  gap: 0.75rem;

  .logo {
    gap: 8px;
    display: flex;
    align-items: center;
    flex-shrink: 0;

    img { height: 28px; max-width: 110px; width: auto; object-fit: contain; }
  }

  .nav-links {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    min-width: 0;

    a, button {
      color 0.2s;
      color: #fff;
      border: none;
      font-size: 0.8rem;
      box-shadow 0.2s;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 20px;
      display: inline-block;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
      background: linear-gradient(90deg, #40C4B6 0%, #2A9D8F 100%);

      &:where(.active, :hover) { color: #fff; filter: brightness(1.08); box-shadow: 0 4px 12px rgba(38,166,154,0.15); }
    }
  }
}
