/* Shared site footer — same markup and layout on every public page.
   `footer.site-footer` beats page-level `footer { }` / `footer a { }`
   rules that used to make calculator and legal pages look different. */
footer.site-footer,
.site-footer {
  border-top: 1px solid var(--navy-line, #24314F);
  padding: 34px 0;
  color: var(--slate-500, #6B7690);
  font-size: 13px;
  background: transparent;
  text-align: left;
}
footer.site-footer a,
.site-footer a {
  text-decoration: none;
  color: inherit;
}
footer.site-footer a:hover,
.site-footer a:hover { color: var(--ivory-100, #F6F3EC); }
.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.site-footer-apps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--navy-line, #24314F);
}
.site-footer-apps-title {
  font-family: var(--font-display, system-ui, sans-serif);
  font-size: 16px;
  color: var(--ivory-100, #F6F3EC);
  font-weight: 600;
}
.site-footer-apps-sub {
  font-size: 12.5px;
  color: var(--slate-500, #6B7690);
  margin-top: 3px;
}
.site-footer-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.site-footer .store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-800, #141F38);
  border: 1px solid var(--gold-500, #D4AF6A);
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  min-width: 150px;
}
.site-footer .store-badge svg { flex-shrink: 0; }
.site-footer .store-badge .sb-small {
  display: block;
  font-size: 9.5px;
  color: var(--slate-400, #8C97AE);
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align: left;
}
.site-footer .store-badge .sb-big {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory-100, #F6F3EC);
  text-align: left;
}
.site-footer .footer-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.site-footer .footer-links a { white-space: nowrap; }
.site-footer-note { font-size: 11px; color: var(--slate-500, #6B7690); }
.site-footer-extra {
  width: 100%;
  font-size: 12px;
  color: var(--slate-500, #6B7690);
  line-height: 1.6;
  margin-bottom: 8px;
}
#siteFooterCookie {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 7, 14, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#siteFooterCookie.hidden { display: none !important; }
#siteFooterCookie .sfc-card {
  background: var(--navy-900, #0D1526);
  border: 1px solid var(--navy-line, #24314F);
  border-radius: 18px;
  padding: 26px;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  color: var(--slate-400, #8C97AE);
  font-size: 13px;
  line-height: 1.5;
}
#siteFooterCookie .sfc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
