/* ============================================================
   Synontech — Footer
   ============================================================ */

footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--color-border-gray);
  background: var(--bg-main);
  padding: 4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-badge {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-copy {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-deep-navy);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1.5rem;
  }
  .footer-left {
    align-items: center;
  }
  .footer-copy {
    text-align: center;
    order: 3;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    order: 2;
  }
}

