.site-footer {
    background: #103D20;
    padding: 64px 40px 0;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo .logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent-lime);
    color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.footer-about-text {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    margin: 0 0 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    transition: background 0.15s ease, color 0.15s ease;
}

.footer-socials a:hover {
    background: var(--accent-lime);
    color: #141414;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-lime);
    margin: 0 0 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    line-height: 1.5;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom span {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 48px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}