.yanodeudas-header {
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
}

.yanodeudas-header__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.yanodeudas-header__logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.yanodeudas-header__logo {
    display: block;
    width: auto;
    height: 38px;
    max-width: 100%;
}

.yanodeudas-header__contact {
    width: 111px;
    height: 34px;
    border-radius: 17px;
    background: linear-gradient(135deg, #3266e3 0%, #4b7df2 100%);
    color: #fff;
    font-size: 10px;
    font-family: Roobert, sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 34px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(50, 102, 227, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.yanodeudas-header__contact:hover,
.yanodeudas-header__contact:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(50, 102, 227, 0.3);
    background: linear-gradient(135deg, #2b5ad0 0%, #5b8cff 100%);
}

.yanodeudas-header__contact:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(50, 102, 227, 0.2);
}

.yanodeudas-header__contact:focus-visible {
    outline: 2px solid rgba(50, 102, 227, 0.25);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .yanodeudas-header__inner {
        padding: 0 16px;
    }

    .yanodeudas-header__logo {
        height: 32px;
    }
}
