/* ── FOOTER ── */
footer {
  background: #F2F8F9;
  color: rgba(16,24,47,.6);
  font-size: 14px;
  line-height: 1.4;
  padding: 1.25rem 0 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(16,24,47,.08);
}
footer .container {
  max-width: 1140px;
  padding: 0 1rem;
}
footer .footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-top {
  padding: 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: .5rem;
  display: block;
}
.footer-copyright {
  font-size: .8em;
  color: rgba(16,24,47,.4);
  margin: 0;
}
.footer-col h4 {
  font-size: .72em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(16,24,47,.4);
  margin-top: 0;
  margin-bottom: .75rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer-col ul li a {
  font-size: .88em;
  color: #416975;
  text-decoration: none;
  font-weight: 400;
  transition: color .15s;
}
.footer-col ul li a:hover { color: #10182F; text-decoration: none; }
@media (max-width: 680px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
