.site-footer {
    margin-top: 100px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.footer-main {
    padding-block: 72px 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
    background: #fff;
    padding: 4px;
}

.footer-brand-name {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.8;
}

.footer-description {
    max-width: 360px;
    margin: 0;
    color: #cbd5e1;
    line-height: 2;
    font-size: 15px;
}

.footer-title {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--color-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(-4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 15px;
}

.contact-item span {
    display: inline-block;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    background: #fff;
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 20px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-copy {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 72px;
    }

    .footer-main {
        padding-block: 56px 40px;
    }

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

    .footer-brand {
        gap: 16px;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo img {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .footer-brand-name {
        font-size: 17px;
    }

    .footer-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 2;
    }

    .footer-title {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .contact-item {
        gap: 10px;
        font-size: 14px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 14px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .footer-bottom {
        padding-block: 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
    }

    .footer-copy {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding-block: 48px 36px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-logo {
        gap: 12px;
    }

    .footer-brand-name {
        font-size: 17px;
    }

    .footer-description,
    .contact-item,
    .footer-links a {
        font-size: 13.5px;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }
}

.bale-btn {
    overflow: hidden;
}

.bale-icon {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(84%) sepia(18%) saturate(742%) hue-rotate(72deg) brightness(80%) contrast(96%);
}
