﻿.site-footer {
    padding: 3.4rem 0 2rem;
    margin-top: 2rem;
}

.footer-shell {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), rgba(11, 18, 32, 0.70);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    border-radius: 30px;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(520px, 1fr);
    gap: 1.8rem;
    padding: 1.8rem 2rem;
    align-items: start;
}

.footer-brand-block {
    max-width: 480px;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.footer-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.98rem;
    max-width: 46ch;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

    .footer-badges span {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 0 0.85rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 800;
        color: #f1d97a;
        background: rgba(212, 175, 55, 0.10);
        border: 1px solid rgba(212, 175, 55, 0.18);
    }

.footer-links-wrap {
    display: grid;
    grid-template-columns:0.5fr 1.15fr 1fr;
    gap: 1.15rem;
    align-items: start;
    min-width: 0;
    max-width: 560px;
    justify-self: start;
}
    .footer-links-wrap .footer-column:first-child {
        transform: translateX(-50px);
    }

.footer-column {
    min-width: 0;
    justify-self: start;
}

    .footer-column h3 {
        margin: 0 0 0.55rem;
        font-size: 0.84rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #dbe3f0;
    }

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

    .footer-list li {
        line-height: 1.28;
        margin: 0;
        min-width: 0;
    }

    .footer-list a {
        display: inline-block;
        max-width: 100%;
        color: var(--muted);
        font-size: 0.93rem;
        text-decoration: none;
        transition: color 0.25s ease;
        white-space: nowrap;
    }

        .footer-list a:hover {
            color: #ffffff;
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 2rem 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #b5c0cf;
    font-size: 0.9rem;
}

    .footer-bottom p {
        margin: 0;
    }
