/* ======================================================
   FOOTER PRO FINAL
====================================================== */

.mjv2-footer{
  margin-top:48px;
  border-top:1px solid var(--mjv2-border);

  background:
    linear-gradient(
      180deg,
      rgba(15,22,38,.95),
      rgba(10,16,28,.98)
    );

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

/* ======================================================
   INNER
====================================================== */

.mjv2-footer-inner{
  width:min(100%,1180px);
  margin:0 auto;

  padding:28px 20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;

  flex-wrap:wrap;
}

/* ======================================================
   BRAND
====================================================== */

.mjv2-footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.mjv2-footer-brand-dot{
  width:14px;
  height:14px;
  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      var(--mjv2-primary),
      var(--mjv2-primary-2)
    );
}

.mjv2-footer-title{
  font-size:16px;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--mjv2-text);
}

/* ======================================================
   FOOTER TEXT
====================================================== */

.mjv2-footer-text{
  font-size:13px;
  color:var(--mjv2-muted);
  line-height:1.6;
}

/* ======================================================
   FOOTER LINKS
====================================================== */

.mjv2-footer-links{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.mjv2-footer-links a{
  font-size:13px;
  font-weight:600;

  color:var(--mjv2-muted);
  text-decoration:none;

  transition:
    color .16s ease,
    transform .16s ease;
}

.mjv2-footer-links a:hover{
  color:var(--mjv2-text);
  transform:translateY(-1px);
}

/* ======================================================
   BOTTOM BAR
====================================================== */

.mjv2-footer-bottom{
  border-top:1px solid var(--mjv2-border);

  padding:14px 20px;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:12px;
  color:var(--mjv2-muted);
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width:900px){

  .mjv2-footer-inner{
    padding:26px 18px;
  }

}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width:640px){

  .mjv2-footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .mjv2-footer-links{
    gap:12px;
  }

}

/* ======================================================
   SMALL MOBILE
====================================================== */

@media (max-width:420px){

  .mjv2-footer-inner{
    padding:22px 16px;
  }

  .mjv2-footer-title{
    font-size:15px;
  }

  .mjv2-footer-links a{
    font-size:12px;
  }

  .mjv2-footer-bottom{
    font-size:11px;
  }

}