.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at top left, rgba(124, 92, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #080f1d 100%);
  color: #cbd5e1;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(220px, 0.8fr) minmax(240px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #6d5dfc 0%, #22c7f2 100%);
  box-shadow: 0 12px 28px rgba(34, 199, 242, 0.22);
}

.footer-title {
  margin: 0 0 6px;
  color: #f8fafc;
  font-weight: 850;
  font-size: 1rem;
}

.footer-text,
.footer-meta p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.94rem;
  color: #a8b3c7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav a,
.footer-meta a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 700;
}

.footer-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: #ffffff;
  border-color: rgba(125, 211, 252, 0.35);
}

.footer-small {
  margin-top: 8px !important;
  font-size: 0.84rem !important;
  color: #7f8da5 !important;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    padding: 28px 0;
  }

  .footer-nav {
    gap: 8px;
  }
}