.site-footer {
  border-top: 1px solid #e6eefc;
  background: #ffffff;
  padding: 14px 16px;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
  color: #25405a;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.footer-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a5cff, #0f4ad6);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.footer-company {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0b1e3a;
}
.footer-nav {
  display: flex;
  gap: 8px;
}
.footer-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: 999px;
  color: #1a5cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.footer-btn:hover {
  background: #eaf0ff;
  border-color: #d6e6ff;
}
@media (max-width: 480px) {
  .footer-container {
    padding: 0 8px;
    gap: 8px;
  }
  .footer-company {
    display: none;
  }
}
