/* Unified site footer for every page */
:root {
  --site-footer-shell: #172238;
  --site-footer-card: #050505;
  --site-footer-text: #f7f7f5;
  --site-footer-muted: #c4cbd5;
  --site-footer-line: rgba(255,255,255,.16);
}

.site-footer {
  margin: 0;
  padding: 16px 16px 0;
  background: var(--site-footer-shell);
  color: var(--site-footer-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

.site-footer * { box-sizing: border-box; }
.site-footer a { color: inherit; text-decoration: none; }

.site-footer__card {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 30px 34px 34px;
  border-radius: 16px;
  background: var(--site-footer-card);
}

.site-footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 38px;
}

.site-footer__socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: opacity .18s ease, transform .18s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  opacity: .72;
  transform: translateY(-2px);
}

.site-footer__socials svg { width: 22px; height: 22px; }

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 46px;
}

.site-footer__group h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.015em;
}

.site-footer__group a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: var(--site-footer-muted);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.45;
}

.site-footer__group a:hover,
.site-footer__group a:focus-visible { color: #fff; text-decoration: underline; }

.site-footer__bottom {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #d5dbe4;
  font-size: 11px;
  line-height: 1.4;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible { color: #fff; text-decoration: underline; }
.site-footer__copyright { opacity: .82; }

/* Shared closing CTA alignment on service and landing pages. */
.lp-final,
.lp-final .lp-wrap,
.lp-final .lp-container {
  text-align: center;
}

.lp-final h2,
.lp-final p {
  margin-left: auto;
  margin-right: auto;
}

.lp-final .lp-cta-row {
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .site-footer { padding: 12px 12px 0; }
  .site-footer__card { padding: 24px 26px 28px; border-radius: 14px; }
  .site-footer__socials { gap: 22px; margin-bottom: 34px; }
  .site-footer__socials a { width: 25px; height: 25px; }
  .site-footer__socials svg { width: 20px; height: 20px; }
  .site-footer__grid { gap: 30px 24px; }
  .site-footer__group h2 { font-size: 17px; margin-bottom: 12px; }
  .site-footer__group a { font-size: 13px; margin-bottom: 9px; }
  .site-footer__bottom { padding: 17px 4px 20px; gap: 10px 16px; font-size: 10px; }

  .lp-final .lp-cta-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .lp-final .lp-cta-row > * {
    width: min(100%, 340px);
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .site-footer__card { padding-inline: 21px; }
  .site-footer__grid { grid-template-columns: 1fr; }
}
