﻿.footer {
    position: relative;
    background: #000000;
    padding: 48px 24px 28px;
    color: #d1d5db;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    box-shadow: 0 0 20px rgba(0, 255, 255, .5), 0 0 40px rgba(0, 255, 255, .25);
}

.footer__content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer__title {
    margin: 0 0 12px;
    font-family: Orbitron, "Space Grotesk", Inter, sans-serif;
    font-weight: 800;
    color: #e5e7eb;
    letter-spacing: .04em;
}

.footer__text {
    margin: 0 0 8px;
    line-height: 1.6;
}

.footer__link {
    color: #d1d5db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease, text-shadow .2s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
    color: #00ffff;
    border-color: rgba(0, 255, 255, .6);
    text-shadow: 0 0 10px rgba(0, 255, 255, .5);
}

.footer__bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

@media(max-width:900px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__col {
        margin: 0 auto;
        max-width: 640px;
    }
}