/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

  /* FOOTER */
  .footer { background: var(--authority); color: rgba(255,255,255,0.6); padding: 56px 0 36px; border-top: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
  .footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--growth), transparent); opacity: 0.6; }
  .footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 32px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-left { display: flex; flex-direction: column; gap: 14px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
  .footer-nav { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
  .footer-nav a { font-weight: 600; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color .2s ease; }
  .footer-nav a:hover { color: var(--white); }
  .footer-right { font-weight: 300; font-size: 11px; color: rgba(255,255,255,0.5); text-align: right; letter-spacing: 0.3px; }
  .footer-bottom { padding-top: 22px; font-weight: 300; font-size: 11px; color: rgba(255,255,255,0.28); line-height: 1.55; }
  @media (max-width: 800px) { .footer-main { grid-template-columns: 1fr; text-align: center; } .footer-right { text-align: center; } .footer-left { align-items: center; } }
