footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
}

.footer-slogan {
    background: #000;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.slogan-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: scroll-slogan 30s linear infinite;
    will-change: transform;
}

.slogan-content span {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.slogan-icon {
    position: relative;

    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
}

.slogan-icon::after {
    position: absolute;

    content: "";

    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;

    border-radius: 999999px;

    transform: translate(-50%, -50%);

    border: 1px solid white;
}

/* Дублируем контент для бесшовной прокрутки */
.slogan-content {
    position: relative;
    z-index: 2;
    display: inline-flex;
}

@keyframes scroll-slogan {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-info {
    background: #e4e4e4;
    padding: 4rem 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-heading {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0E0E0E;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.1em;
}

.footer-text {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #0E0E0E;
    margin: 0;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #0E0E0E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    text-transform: uppercase;
}

.social-icon:hover {
    background: #ff6600;
}

.footer-logo-column {
    align-items: center;
    justify-content: center;
    padding-left: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-square {
    width: 140px;
    height: 140px;
    background: #ff6600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 0;
    font-weight: 400;
    font-size: 12px;
    color: #636363;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-logo-column {
        order: -1;
        padding-left: 0;
    }

    .slogan-content {
        font-size: 14px;
        gap: 1rem;
    }

    .logo-square {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }
}