.st-footer {
    position: relative;
    background: linear-gradient(155deg, #0b1220 0%, #111f36 100%);
    color: #d9e1f2;
    border-top: 1px solid rgba(217, 181, 109, 0.35);
    margin-top: 0;
}

.st-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(600px 240px at 5% 0%, rgba(217, 181, 109, 0.12), transparent 65%),
        radial-gradient(700px 260px at 95% 100%, rgba(89, 141, 235, 0.16), transparent 70%);
}

.st-footer__wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 18px;
}

.st-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.st-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ecf0f9;
}

.st-footer__brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.st-footer__brand strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
}

.st-footer__brand span {
    display: block;
    font-size: 12px;
    color: #b8c1d6;
    margin-top: 2px;
}

.st-footer__nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.st-footer__nav a {
    text-decoration: none;
    color: #dbe4f6;
    font-size: 14px;
    border: 1px solid rgba(217, 181, 109, 0.32);
    border-radius: 999px;
    padding: 7px 12px;
    transition: all 0.22s ease;
}

.st-footer__nav a:hover {
    color: #0f1626;
    background: #d9b56d;
    border-color: #d9b56d;
}

.st-footer__bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.st-footer__contacts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.st-footer__chip,
.st-footer__contacts span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    color: #dce4f6;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
}

.st-footer__chip:hover {
    border-color: rgba(217, 181, 109, 0.7);
    color: #f3dfb4;
}

.st-footer__copy {
    color: #9da7be;
    font-size: 13px;
}

@media (max-width: 760px) {
    .st-footer__wrap {
        padding-top: 22px;
    }

    .st-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
