/* ===== Footer ===== */

.site-footer {
  background: #111;
  color: #fff;
  padding: 80px 0 40px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1f5ceb;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #1f5ceb;
  font-weight: 600;
}

.footer-col p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #589eca;
}

.footer-brand img {
  display: block;
}

.footer-brand p {
  margin-top: 6px;
  max-width: 280px;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 24px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

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

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

  .footer-col {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}
