.site-footer {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #020617;
  color: #e5e7eb;
}

.site-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1.3fr));
  gap: 1.8rem;
}

.site-footer__brand {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #f3f4f6;
}

.site-footer__text {
  margin: 0;
  font-size: 0.9rem;
  color: #c8c8c8;
  line-height: 1.6;
}

.site-footer__heading {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f3f4f6;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.site-footer__list li {
  color: #c8c8c8;
}

.site-footer__list li + li {
  margin-top: 0.25rem;
}

.site-footer__list a,
.site-footer a {
  color: #9ca3af !important;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.site-footer__list a:hover,
.site-footer a:hover {
  text-decoration: underline;
  color: #e5e7eb !important;
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-inline: 1.25rem;
  }
}
