.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 3rem;
  color: #cbd5e1;
  background: transparent;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #d946ef;
}

.footer-link ion-icon {
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
