.site-footer {
    position: relative;
    margin-top: 72px;
    padding-top: 34px;
    background:
        radial-gradient(circle at top right, rgba(214, 167, 41, 0.10), transparent 24%),
        linear-gradient(180deg, #edf2f7 0%, #e7edf5 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0));
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 32px;
    padding: 42px 36px;
    border-radius: 34px 34px 0 0;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(33, 79, 144, 0.10);
    border-bottom: 0;
    box-shadow:
        0 -12px 32px rgba(20, 37, 63, 0.05),
        0 10px 28px rgba(20, 37, 63, 0.04);
    backdrop-filter: blur(12px);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo-image,
.footer-brand .brand-mark {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f4f90, #163760);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(31, 79, 144, 0.16);
}

.footer-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand strong {
    display: block;
    margin: 2px 0 10px;
    font-size: 28px;
    font-weight: 800;
    color: #1d2c44;
}

.footer-brand p {
    margin: 0;
    max-width: 430px;
    color: #64748b;
    line-height: 2;
    font-size: 15px;
}

.footer-col h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 18px;
    padding-bottom: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #1d2c44;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d5a12e, #1f4f90);
}

.footer-links,
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: #5b6b80;
    text-decoration: none;
    transition: 0.25s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #1f4f90;
    padding-inline-start: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid rgba(33, 79, 144, 0.08);
    text-decoration: none;
    transition: 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: rgba(33, 79, 144, 0.16);
    box-shadow: 0 8px 18px rgba(30, 52, 88, 0.06);
}

.contact-item--static:hover {
    transform: none;
    box-shadow: none;
}

.contact-item__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(31,79,144,0.12), rgba(213,161,46,0.14));
    color: #1f4f90;
}

.contact-item__icon svg {
    width: 18px;
    height: 18px;
}

.contact-item__text {
    color: #4f627a;
    font-size: 15px;
    line-height: 1.7;
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid rgba(33, 79, 144, 0.07);
    background: rgba(240, 244, 249, 0.95);
}

.footer-bottom__inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #6b7a90;
    font-size: 14px;
}

.footer-bottom__inner span:first-child {
    font-weight: 700;
    color: #334155;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 24px;
        border-radius: 26px 26px 0 0;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand strong {
        font-size: 24px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 14px 0;
    }
}