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

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

    img { height: 32px; }
  }

  .nav-links {
    display: flex; gap: 24px;

    a {
      color 0.2s,
      color: #fff;
      border: none;
      font-size: 1em;
      box-shadow 0.2s;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 20px;
      display: inline-block;
      text-decoration: none;
      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);
      }
    }
  }
}
