/* =========================
   FOOTER BASE
========================= */
.site-footer {
  background: rgba(2,6,23,0.9);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 24px 30px;
}

/* =========================
   FOOTER GRID
========================= */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
}

/* =========================
   BRAND
========================= */
.footer-brand h3 {
  font-size: 1.3rem;
  color: #f8fafc;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(203,213,225,0.65);
  line-height: 1.6;
  max-width: 420px;
}

/* =========================
   LINKS
========================= */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: rgba(248,250,252,0.9);
}

.footer-links a,
.footer-links span {
  display: block;
  text-decoration: none;
  color: rgba(203,213,225,0.65);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f8fafc;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 0.8rem;
  color: rgba(203,213,225,0.45);
}

/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2,1fr);
    gap: 36px;
  }
}

/* =========================
   MOBILE (≤600px)
========================= */
@media (max-width: 600px) {

  .site-footer {
    padding: 60px 20px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand h3 {
    font-size: 1.2rem;
  }

  .footer-brand p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    margin-top: 40px;
    font-size: 0.75rem;
  }
}
