/* Shared site footer — used by every public page (home, pricing, privacy, etc.). */

footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 30px;
    margin-top: 60px;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
footer .logo {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
    footer { padding: 50px 0 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 36px; }
    .footer-about p { max-width: none; }
    .footer-bottom { justify-content: center; text-align: center; }
}
.footer-about p {
    color: #94a3b8;
    margin-top: 14px;
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
}
.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: #64748b;
}
.socials {
    display: flex;
    gap: 12px;
}
.socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.socials a:hover { background: var(--primary, #7c3aed); color: white; }
