.footer {
  background: #0b0f1a;
  color: #cbd5f5;
  margin-top: 80px;
  font-family: system-ui, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #9aa4d3;
}

/* LINKS */
.footer-links h4,
.footer-social h4 {
  margin-bottom: 12px;
  font-size: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #9aa4d3;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px;
  font-size: 13px;
}
.footer-bottom p{
    color: #8b93c9;

}
.footer-legal {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.footer-legal a {
  color: #9aa4d3;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #38bdf8;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
