/* SMG Footer styles */
.smg-footer-wrap {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  margin-top: 40px;
}
.smg-footer-wrap.smg-dark {
  background: radial-gradient(120% 120% at 80% 0%, #0a2540 0%, #03162a 60%, #02101e 100%);
  color: #e6eef7;
}
.smg-footer-wrap.smg-light {
  background: #f5f7fb;
  color: #1a2b3c;
  border-top: 1px solid rgba(0,0,0,.06);
}
.smg-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.smg-links a.smg-footer-link {
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
  font-weight: 500;
}
.smg-dark .smg-footer-link { color: #e6eef7; }
.smg-light .smg-footer-link { color: #1a2b3c; }
.smg-links a.smg-footer-link:hover { opacity: 1; transform: translateY(-1px); }
.smg-sep { margin: 0 10px; opacity: .4; }
.smg-copy { font-size: 14px; opacity: .7; margin-top: 6px; }
.smg-right { display: flex; gap: 14px; }
.smg-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.smg-dark .smg-social { color: #fff; }
.smg-light .smg-social { color: #1a2b3c; background: rgba(0,0,0,.05); }
.smg-social:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.smg-icon { display: block; }
.smg-left { display:flex; flex-direction:column; }
@media (max-width: 640px) {
  .smg-container { flex-direction: column; align-items: flex-start; }
  .smg-right { margin-top: 6px; }
}
