/* =====================================================================
   footer.css — the canonical site footer, shared by every marketing page.
   Mirrors the homepage footer (styles.css) with hard-coded colours so it
   renders identically regardless of each page's own tokens. Load LAST.
   ===================================================================== */

.footer {
  background: #020C45;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-check { color: #50A2FF; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 340px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-btn:hover {
  border-color: #50A2FF;
  color: #50A2FF;
  background: rgba(80,162,255,0.1);
}
.footer-col-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: #ffffff; }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner { padding: 48px 22px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
