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

.site-footer {
  background: var(--card-bg, #0f172a);
  padding: 80px 20px 40px;
  margin-top: 100px;
  border-top: 1px solid var(--border-color, #1e293b);
  color: #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

/* BRAND */
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #22c55e;
}

.footer-desc {
  color: #94a3b8;
  line-height: 1.6;
}

/* SECTIONS */
.footer-section h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #22c55e;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: #64748b;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* MOBILE */
@media(max-width: 768px) {
  .footer-container {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

/* ── Kill green gap before footer ── */
#footer {
  background: #0c0e09;
}