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

.site-footer {
  max-width: 1300px;
  margin: 40px auto 0;
  background: radial-gradient(
    120% 140% at 50% 0%,
    #1e293b 0%,
    #020617 100%
  );
  color: #e5e7eb;
  border-radius: 28px;
  box-shadow: 0 -20px 50px rgba(15,23,42,0.4);
}

/* Layout */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 42px 40px;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  color: #f8fafc;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #22c55e;
}

/* Brand */
.footer-col.brand p {
  max-width: 280px;
}

.muted {
  color: #94a3b8;
}

/* Socials */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  font-size: 20px;
  text-decoration: none;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(148,163,184,0.25);
  margin: 0 40px;
}

/* Legal */
.footer-legal {
  padding: 26px 40px 34px;
  text-align: center;
}

.footer-legal p {
  font-size: 13px;
  margin: 6px 0;
}

.footer-legal .small {
  font-size: 12px;
}

.powered {
  margin-top: 10px;
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.brand p {
    margin: 0 auto;
  }

  .socials {
    justify-content: center;
  }
}
.footer-legal a{
  color: inherit;
  text-decoration: underline;
}
.footer-legal a:hover{
  text-decoration: none;
}
