/* Shared footer and final CTA. Markup lives in partials/site-footer.html and site-final-cta.html. */
#site-final-cta {
  padding: 72px 24px;
  background: linear-gradient(135deg, rgba(230, 0, 0, .1), rgba(255, 215, 0, .05)), #0a0a0a;
  border-top: 1px solid var(--border, rgba(255, 255, 255, .08));
}

#site-final-cta .site-final-cta-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-final-cta-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red, #e60000);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#site-final-cta h2 { margin: 0 0 10px; color: var(--text, #fff); font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.18; }
#site-final-cta p { max-width: 700px; margin: 0; color: var(--text-muted, #a0a0a0); line-height: 1.65; }

.site-final-cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red, #e60000);
  box-shadow: 0 4px 24px rgba(230, 0, 0, .35);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-final-cta-button:hover, .site-final-cta-button:focus-visible { background: var(--red-dark, #b80000); box-shadow: 0 8px 32px rgba(230, 0, 0, .45); transform: translateY(-2px); }
.site-final-cta-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

#site-footer {
  background: #000;
  border-top: 1px solid var(--border, rgba(255, 255, 255, .08));
  padding: 48px 24px 32px;
}

#site-footer .site-footer-inner { width: min(1200px, 100%); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
#site-footer .site-footer-logo { display: inline-flex; }
#site-footer .site-footer-logo img { display: block; width: auto; height: 48px; }
#site-footer .site-footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
#site-footer .site-footer-nav a { color: var(--text-muted, #a0a0a0); font-size: .85rem; text-decoration: none; transition: color .25s ease; }
#site-footer .site-footer-nav a:hover, #site-footer .site-footer-nav a:focus-visible { color: var(--text, #fff); }
#site-footer .site-footer-social { display: flex; justify-content: center; }
#site-footer .site-footer-social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: #fff; transition: transform .25s ease; }
#site-footer .site-footer-social a:hover, #site-footer .site-footer-social a:focus-visible { transform: scale(1.08); }
#site-footer .site-footer-social svg { width: 22px; height: 22px; fill: currentColor; }
#site-footer .site-footer-legal { margin: 0; color: var(--text-muted, #a0a0a0); font-size: .8rem; line-height: 1.8; }

@media (max-width: 700px) {
  #site-final-cta { padding: 56px 20px; }
  #site-final-cta .site-final-cta-inner { align-items: stretch; flex-direction: column; text-align: center; }
  #site-final-cta p { margin-inline: auto; }
  .site-final-cta-button { width: 100%; }
  #site-footer { padding: 40px 20px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-final-cta-button, #site-footer * { transition-duration: .01ms !important; }
}
