.site-footer-new {
    position: relative;
    z-index: 1;
    height: 100vh;
    width: 100%;
    color: #ccc;
    overflow: hidden;
}
.footer-content-wrapper, .footer-brand-reveal, .footer-final-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.footer-content-wrapper {
    flex-direction: column;
    padding: 80px 5vw;
    background-color: #111;
    z-index: 3;
}
.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-column h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B00;
    margin-top: 0;
    margin-bottom: 20px;
}
.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.footer-column p {
    line-height: 1.7;
    margin: 0 0 20px 0;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column ul a:hover {
    color: #FF6B00;
}
.footer-column p i {
    margin-right: 10px;
    color: #FF6B00;
    width: 20px;
    text-align: center;
}
.social-links {
    display: flex;
    gap: 20px;
}
.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
    color: #FF6B00;
    transform: translateY(-3px);
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    width: 100%;
    max-width: 1200px;
}
.footer-final-cta {
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    background-color: transparent;
}
.footer-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #0D0D0D;
}
.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.final-cta-content h3 {
    font-size: 3rem;
    color: white;
    margin: 0 0 20px 0;
}
.final-cta-content .cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}
.footer-brand-reveal {
    align-items: center; 
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 107, 0, 0.1);
    z-index: 1;
    background-color: #0D0D0D;
    transform-origin: center center;
}
.footer-brand-reveal span {
    display: inline-block;
    animation: footer-glow 4s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.2s);
}
@keyframes footer-glow {
    from {
        color: rgba(255, 107, 0, 0.1);
        text-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
    }
    to {
        color: rgba(255, 107, 0, 0.4);
        text-shadow: 0 0 20px rgba(255, 107, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.3);
    }
}


/* Адаптивность */
@media (max-width: 992px) {
    .site-footer-new
    {
        height: 110vh !important;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-cta {
        grid-column: 1 / -1;
    }
}
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .final-cta-content h3 {
        font-size: 2rem;
    }
}
.scroll-down-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
}
.scroll-down-hint .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #888;
    border-radius: 12px;
    position: relative;
}
.scroll-down-hint .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #888;
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 10px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}


/* Адаптивность */
@media (max-width: 992px) {
    /* ... (адаптивные стили для хедера и команды) ... */
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-cta {
        grid-column: 1 / -1;
    }
}
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .final-cta-content h3 {
        font-size: 2rem;
    }
}


@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    /* ИЗМЕНЕНИЕ: Делаем футер статичным на мобильных */
    .site-footer-new {
        height: auto; /* Автоматическая высота */
    }
    .footer-content-wrapper, .footer-final-cta, .footer-brand-reveal {
        position: relative; /* Убираем абсолютное позиционирование */
        height: auto;
    }
    /* Скрываем анимированные слои на мобильных */
    .footer-final-cta, .footer-brand-reveal, .scroll-down-hint {
        display: none;
    }
    .footer-container { grid-template-columns: 1fr; }
}
