
.meta-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(43,198,255,.16), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(0,102,255,.24), transparent 34%),
    linear-gradient(135deg, #020b18 0%, #041b3f 45%, #061f50 100%);
  color: #ffffff;
  border-top: 1px solid rgba(111,211,255,.18);
}

.meta-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.meta-footer::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -170px;
  bottom: -170px;
  background: rgba(0,130,255,.20);
  filter: blur(95px);
  border-radius: 50%;
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: 38px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand p {
  max-width: 430px;
  color: #cbe7ff;
  font-size: 15px;
  line-height: 1.85;
  margin: 22px 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #31c9ff, #0066ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 24px;
  color: #fff;
  box-shadow:
    0 12px 30px rgba(0,120,255,.38),
    inset 0 0 18px rgba(255,255,255,.18);
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: .8px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(111,211,255,.22);
  color: #8fe1ff;
  font-size: 12px;
  font-weight: 800;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #cbe7ff;
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: .3s ease;
}

.footer-col a:hover {
  color: #70d8ff;
  transform: translateX(4px);
}

.footer-middle {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-keywords span {
  padding: 9px 14px;
  border-radius: 999px;
  color: #d9ecff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(111,211,255,.18);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b8d9f5;
  font-size: 14px;
}

.footer-bottom a {
  color: #70d8ff;
  text-decoration: none;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .meta-footer {
    padding: 64px 16px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-logo-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .footer-logo-text {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-keywords {
    justify-content: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }
}