/* SaveV site footer — shared across homepage and platform pages */
.site-footer {
  border-top: 1px solid #22304a;
  background: #08101d;
  margin-top: 2rem;
}

.site-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.site-footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #f8fafc;
  font-weight: 600;
  flex-shrink: 0;
}

.site-footer-brand:hover {
  opacity: 0.9;
}

.site-footer-brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1.5rem;
}

.site-footer-nav a {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-footer-nav a:hover {
  color: #f8fafc;
}

.site-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #22304a;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #64748b;
}

.site-footer-bottom p + p {
  margin-top: 0.375rem;
}

.site-footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-bottom a:hover {
  color: #f8fafc;
}