.footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: linear-gradient(90deg, #2f83e8 0%, #56aef2 100%);
    padding: 16px 18px;
    text-align: left;
    color: #fff;
}
body.footer-has-fixed {
    padding-bottom: 96px;
}
.footer.footer--docked {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
}
.footer__inner {
    min-height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer h2 {
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}
.footer h2 span {
    display: block;
    margin-top: 0;
    letter-spacing: 0.04em;
}
.footer-2 {
    min-height: 170px;
    background: linear-gradient(120deg, #3d8ff0 0%, #5bb2f4 100%);
    padding: 18px;
    color: #fff;
}
.footer-2__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 134px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-2__logo {
    width: auto;
    height: 42px;
    object-fit: contain;
}
.footer-2__text-group {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 4px;
}
.footer-2__text {
    margin: 0;
    max-width: 540px;
    text-align: right;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}
.scroll-btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #233f68;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
    z-index: 10;
}
.scroll-btn svg {
    width: 30px;
    height: 30px;
    transition: transform 0.35s ease;
}
.scroll-btn.is-up svg {
    transform: rotate(180deg);
}
.scroll-btn:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
@media (max-width: 760px) {
    body.footer-has-fixed {
        padding-bottom: 84px;
    }
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-2__inner {
        width: min(100%, calc(100% - 20px));
        min-height: 100px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .footer-2__logo {
        height: 34px;
    }
    .footer-2__text {
        width: 100%;
        max-width: none;
        text-align: right;
        font-size: 13px;
    }
    .footer-2__text-group {
        margin-left: 0;
        width: 100%;
        align-items: flex-end;
    }
}