.footer {
    padding: 58px 0 126px;
    color: rgba(255,255,255,0.72);
    background:
        radial-gradient(circle at 18% 0%, rgba(72,213,255,0.16), transparent 28%),
        linear-gradient(180deg, #07102d, #04091e);
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr 0.95fr 0.8fr 0.78fr;
    gap: 28px;
    align-items: start;
}

.footer-brand,
.footer-brand span {
    color: #fff;
}

.footer p {
    margin: 0;
}

.footer-contact {
    display: grid;
    gap: 10px;
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-style: normal;
    font-weight: 700;
}

.footer-contact a {
    display: grid;
    gap: 3px;
}

.footer-contact span {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-social a:hover {
    color: #fff;
}

.footer-links,
.footer-social {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-social a {
    color: rgba(255,255,255,0.78);
    font-weight: 750;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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