/* Odakio Shared Modern Footer */
.mf-site-footer {
  position: relative;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  /* background:
    radial-gradient(1200px 380px at 12% -20%, rgba(99, 102, 241, 0.22), transparent 58%),
    radial-gradient(1200px 380px at 88% -20%, rgba(236, 72, 153, 0.16), transparent 58%),
    rgba(15, 23, 42, 0.78); */
  backdrop-filter: blur(10px);
}

.mf-site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%, transparent 65%, rgba(255, 255, 255, 0.04));
  opacity: 0.5;
}

.mf-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.1rem 0 1.1rem;
}

.mf-footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 1.2rem;
}

.mf-footer-brand {
  padding-right: 0.6rem;
}

.mf-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #f8fafc;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.mf-footer-logo img {
  width: auto;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.mf-footer-desc {
  margin-top: 0.78rem;
  margin-bottom: 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 440px;
}

.mf-footer-title {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mf-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.mf-footer-links a,
.mf-footer-links span,
.mf-footer-mail {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mf-footer-links a:hover,
.mf-footer-mail:hover {
  color: #f8fafc;
  transform: translateX(2px);
}

.mf-footer-bottom {
  margin-top: 1.25rem;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.mf-footer-copy,
.mf-footer-meta {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .mf-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mf-footer-inner {
    width: min(1120px, calc(100% - 24px));
    padding: 1.7rem 0 0.95rem;
  }

  .mf-footer-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mf-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
