/* Блок */
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(0, 245, 212, 0.2);
    padding: 50px 0 20px;
    color: #94a3b8;
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Контейнер */
.footer__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Бренд */
.footer__brand {
    grid-column: span 1;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer__logo-icon {
    display: block;
}

.footer__logo-text {
    font-family: 'Expletus Sans', sans-serif;
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer__description {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Навигация */
.footer__nav {
    grid-column: span 1;
}

.footer__title {
    color: #00f5d4;
    font-family: 'Expletus Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
}

.footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: #00f5d4;
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__menu-item {
    margin-bottom: 8px;
}

.footer__menu-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer__menu-item a:hover {
    color: #00f5d4;
}

/* Контакты */
.footer__contacts {
    grid-column: span 1;
}

.footer__contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contacts-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer__contacts-icon {
    fill: #00f5d4;
    flex-shrink: 0;
}

/* Подписка */
.footer__subscribe {
    grid-column: span 1;
}

.footer__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.footer__form-input {
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid #334155;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
}

.footer__form-button {
    background: #00f5d4;
    color: #0f172a;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.footer__form-button:hover {
    background: #00e0c0;
}

/* Копирайт */
.footer__copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 0.85rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer__brand {
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    } }