/* ── Footer (shared across all pages) ── */
.footer { background: var(--dark-bg); padding: 48px 0 28px; border-top: 1px solid rgba(124,109,255,.15); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-logo-mark { height: 26px; width: auto; padding: 0 7px; background: rgba(124,109,255,.1); border: 1px solid rgba(124,109,255,.25); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 900; color: var(--white); letter-spacing: -.7px; }
.footer-brand p { font-size: .85rem; color: var(--dark-muted); line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--dark-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .88rem; color: var(--dark-text); transition: color .15s; }
.footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: .8rem; color: var(--dark-muted); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: .8rem; color: var(--dark-muted); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ── Footer social icons ── */
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--radius); background: rgba(255,255,255,.08); color: var(--dark-muted); transition: background .18s, color .18s; text-decoration: none; border: 1px solid rgba(255,255,255,.1); }
.footer-social a:hover { background: rgba(124,109,255,.25); color: var(--white); border-color: var(--indigo-500); }
.footer-social svg { display: block; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
