.footer {
  padding: 56px 24px;
  border-top: 1px solid rgba(125,211,252,0.14);
  background: rgba(7,9,15,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer::before {
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  margin: 0 auto 32px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125,211,252,0.45),
    transparent
  );
  border-radius: 2px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  text-align: center;
}

/* =========================
   BRAND (fix optical centering)
========================= */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* logo */
.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;

  background-image: url("../css/assets/images/moduleforgelogo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  box-shadow:
    0 0 0 1px rgba(125,211,252,0.18),
    0 14px 44px rgba(125,211,252,0.22);
}

/* text block */
.footer-brand > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 1.2;
}

.footer-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 2px;
  line-height: 1.35;
}

/* =========================
   LINKS
========================= */

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  position: relative;
  padding: 6px 6px;
  border-radius: 12px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 1px;
  width: 0;
  margin: 0 auto;
  background: var(--accent);
  transition: width 160ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a:hover::after {
  width: calc(100% - 12px);
}

/* =========================
   META
========================= */

.footer-meta {
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}

.sep {
  opacity: 0.5;
}

/* =========================
   OPTIONAL: row brand on wide screens
   (if you prefer icon next to text on desktop)
========================= */

@media (min-width: 860px) {
  .footer-brand {
    flex-direction: row;
    gap: 14px;
  }

  .footer-brand > div {
    align-items: flex-start;
    text-align: left;
  }
}
