/* =================== ПОДВАЛ САЙТА =================== */
.footer {
    width: 100vw;
    margin-top: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 22px 0;
    flex-shrink: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: var(--g1);
}

.footer .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    gap: 18px;
    padding: 0;
}

.foot-left, .foot-rows { display: flex; flex-direction: column; }
.foot-left { align-items: flex-start; gap: 12px; }
.foot-rows { gap: 14px; margin-top: 0; }

.foot-copy, .foot-link {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    font-weight: 400;
    color: rgba(255, 255, 255, .92);
}

.foot-copy { display: inline-block; line-height: 1.35; }

.foot-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: .95;
}

.footer a, .footer a:is(:link, :visited, :focus, :active) { color: rgba(255, 255, 255, .92) !important; text-decoration: none !important; box-shadow: none !important; outline: none !important; transition: color .18s ease, opacity .18s ease; }
.footer a:hover { color: var(--o4) !important; opacity: 1; }

.foot-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
}

.foot-ico {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.foot-ico img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    opacity: .95;
}

.foot-ico svg { opacity: .95; }

.foot-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
}

.foot-right a {
    margin-bottom: 2px;
    line-height: 1.2;
    font-weight: 400;
    opacity: .95;
}

.foot-logos {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.susu-icon, .ietn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.susu-icon { margin-top: 10px; }

.susu-icon img, .ietn-icon img {
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    transition: transform .22s ease, filter .22s ease, opacity .22s ease;
    transform-origin: center center;
}

.susu-icon img {
    max-width: 108px;
    max-height: 54px;
    padding: 0;
    transform: translateY(3px);
}

.ietn-icon img {
    width: 78px;
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
}

.susu-icon:hover img, .susu-icon:focus-visible img {
    transform: translateY(3px) scale(1.08);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
    opacity: 1;
}

.ietn-icon:hover img, .ietn-icon:focus-visible img {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
    opacity: 1;
}

.foot-bottom {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 14px 0 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: var(--g1);
}

.soc {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    transition: transform .12s ease, background .12s ease;
}

.soc:hover { transform: translateY(-1px); background: rgba(0, 0, 0, .38); }
.soc:active { transform: translateY(0); }

.soc img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.raccoon-link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
}

.raccoon-image {
    display: block;
    width: 120px;
    height: auto;
}

.raccoon-link:hover .raccoon-image { opacity: .9; }


/* =================== АДАПТАЦИЯ ПОДВАЛА САЙТА =================== */
@media (max-width: 320px) {
    .footer-inner { grid-template-columns: 1fr; gap: 18px; }
    .foot-right { align-items: flex-start; text-align: left; }
}