/* Футер */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Колонка с брендом */
.footer__logo {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.footer__tagline {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.footer__description {
    color: #bdc3c7;
    line-height: 1.7;
    font-size: 14px;
}

/* Заголовки колонок */
.footer__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 1px;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e67e22;
}

/* Списки */
.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer__list a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #e67e22;
}

.footer__list a:hover {
    color: #e67e22;
    padding-left: 15px;
}

.footer__list a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Контакты */
.footer__contacts {
    list-style: none;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.5;
}

.footer__icon {
    font-size: 16px;
    min-width: 20px;
}

.footer__contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-item a:hover {
    color: #e67e22;
}

/* Нижняя полоса */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__list a:hover {
        padding-left: 0;
    }
    
    .footer__list a::before {
        display: none;
    }
    
    .footer__contact-item {
        justify-content: center;
    }
    
    .footer__description {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer__logo {
        font-size: 28px;
    }
}