/* ─── Footer ──────────────────────────────────────────────────────────────── */
.mpx-footer-root {
  background-color: #fdfbf7;
  padding: 100px 20px 60px;
  text-align: center;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.mpx-footer-message {
  font-size: 26px;
  font-weight: 400;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: mpxFooterFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes mpxFooterFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.mpx-footer-links-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  opacity: 0;
  animation: mpxFooterFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.mpx-footer-link {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.mpx-footer-link:hover { color: #000; }

.mpx-footer-dot { color: #999; font-size: 14px; }

.mpx-footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.mpx-social-link {
  color: #aaa;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.mpx-social-link:hover { color: #333; }

.mpx-footer-divider-line {
  display: block;
  height: 1px;
  background-color: #E8E5E1;
  border: none;
  width: 800px;
  max-width: 90%;
  margin: 0 auto 40px;
  opacity: 0;
  animation: mpxFooterFadeIn 1.5s ease forwards;
  animation-delay: 0.4s;
}

.mpx-footer-copyright {
  color: #888;
  font-size: 13px;
  font-weight: 300;
  opacity: 0;
  animation: mpxFooterFadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .mpx-footer-root         { padding: 80px 10px 40px; }
  .mpx-footer-message      { font-size: 17px; line-height: 1.4; }
  .mpx-footer-links-wrap   { flex-wrap: wrap; gap: 6px; margin-bottom: 40px; }
  .mpx-footer-link         { font-size: 11px; }
  .mpx-footer-dot          { font-size: 11px; }
  .mpx-footer-divider-line { width: 100%; }
}
