/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 48px 0 28px;
}
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-text .ki {
  font-size: 24px; font-weight: 900; color: #fff;
  display: flex; align-items: flex-start; gap: 3px;
}
.footer-logo-text .ki sup { color: var(--orange); font-size: 17px; font-weight: 800; line-height: 1; margin-top: 1px; margin-left: -4px; }
.footer-logo-text .sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12.5px; color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
