/* Shared site footer — used on pages that don't load landing-page.css */

footer.site-footer {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 0;
}

footer.site-footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

footer.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

footer.site-footer .footer-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 0.65rem;
}

footer.site-footer .footer-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer.site-footer .footer-section p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

footer.site-footer .footer-section a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

footer.site-footer .footer-section a:hover {
  color: #3daa6a;
}

footer.site-footer .social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

footer.site-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.85rem;
  transition: background 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

footer.site-footer .social-links a:hover {
  background: #157E3D;
  border-color: #3daa6a;
  color: #fff !important;
  transform: translateY(-2px);
}

footer.site-footer .footer-bottom {
  padding: 1.35rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

footer.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 900px) {
  footer.site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 600px) {
  footer.site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}