/* ══════════════════════════════════════════════════════
   MEGA FOOTER — single source of truth (4 columns).
   Edit here, not per-page — every page includes this file.
══════════════════════════════════════════════════════ */

.mega-footer {
  background: var(--navy, #1A1A2E);
  color: rgba(255,255,255,0.65);
  padding: 56px 24px 0;
  margin-top: 80px;
}
.mega-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mega-footer-brand { padding-right: 24px; }
.mega-footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.mega-footer-logo .logo-mark {
  width: 28px; height: 28px; border-radius: 8px; background: var(--accent, #4F46E5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mega-footer-logo .logo-mark span { color: #fff; font-weight: 800; font-size: 13px; }
.mega-footer-logo .logo-name { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.mega-footer-tagline { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 320px; }

.mega-footer-col { display: flex; flex-direction: column; gap: 10px; }
.mega-footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 4px;
}
.mega-footer-col a {
  font-size: 13.5px; color: rgba(255,255,255,0.7); text-decoration: none; width: fit-content;
  transition: color 0.15s ease;
}
.mega-footer-col a:hover { color: #fff; }

.mega-footer-bottom {
  max-width: 1100px; margin: 0 auto; padding: 20px 0 28px;
  font-size: 12px; color: rgba(255,255,255,0.4); text-align: center;
}

@media (max-width: 820px) {
  .mega-footer-inner { grid-template-columns: 1fr 1fr; }
  .mega-footer-brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 480px) {
  .mega-footer-inner { grid-template-columns: 1fr; }
}
