/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */

.lp-footer {
    padding: 56px 0 28px;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    background: #020810;
    position: relative;
    z-index: 2;
}
.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.lp-footer__brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 12px 0 18px;
    max-width: 320px;
}
.lp-footer__social {
    display: flex;
    gap: 10px;
}
.lp-footer__social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all .2s ease;
}
.lp-footer__social a:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.lp-footer h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.lp-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer ul a {
    color: var(--text-secondary);
    font-size: 13px;
    transition: color .2s;
}
.lp-footer ul a:hover { color: var(--accent-cyan); }

.lp-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 860px) {
    .lp-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .lp-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .lp-footer__grid { grid-template-columns: 1fr; }
}
