.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
    position: relative;
}

.btn .btn-rectangle{
    width: 100%;
}

.btn-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-content svg{
    width: auto;
    height: auto;
}

.btn:hover {
  opacity: 0.92;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: var(--color-white);
  font-size: 18px;
  border-radius: var(--radius-sm);
  min-width: 200px;
}


.btn--lk-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn--outline-light {
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--text-sm);
  border-radius: var(--radius-pill);
}

.btn--text-link {
  padding: 0;
  color: var(--color-accent);
  font-size: var(--text-base);
  font-weight: 500;
  gap: 8px;
}

.nav-link {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: -0.02em;
    line-height: 0.9;
    transition: color var(--transition);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 500;
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-white);
}
@media (max-width: 1024px) {
    .nav-link{
        color: #FFF;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 90%;
    }

    .btn--lk .btn-rectangle{
        display: none;
    }

    .header__lk {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 8px;
        flex-shrink: 0;
        background-color: #FF461B;
    }

    .btn-content svg{
        width: 16px;
        height: 21px;
    }

}
@media (max-width: 768px) {
}