footer {
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer-grid > div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
}

.footer-grid h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 16px;
}

.footer-grid p {
    margin: 0;
    color: #bdbdbd;
    line-height: 1.6;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: .25s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #4f7cff, #6d95ff);
    box-shadow: 0 8px 20px rgba(79,124,255,.3);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p {
    margin: 6px 0;
    color: #9f9f9f;
    font-size: 14px;
}

.footer-card {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
    color: inherit;
    transition: .25s;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: #4f7cff;
}

.footer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79,124,255,.4);
    background: rgba(255,255,255,.06);
}

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