/* Sticky mobile call/text bar — site-wide (2026-07-03, conversion audit).
   Self-contained (literal brand colors, not CSS vars) so it renders on every
   template regardless of per-page variables. Mobile only (<=768px). The
   homepage and /the-pledge keep their own bottom bars and don't load this. */
.mobile-cta-strip{display:none}
@media(max-width:768px){
  .mobile-cta-strip{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:999;background:#142a52;border-top:3px solid #e8720c;padding:12px 16px calc(16px + env(safe-area-inset-bottom,0px));gap:10px;align-items:center;justify-content:center}
  .mobile-cta-strip a{flex:1;display:flex;align-items:center;justify-content:center;gap:7px;padding:13px 10px;border-radius:8px;font-size:.8rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;text-align:center}
  .mobile-cta-strip .mobile-cta-call{background:#142a52;color:#fff;border:2px solid #e8720c}
  .mobile-cta-strip .mobile-cta-call:active{background:#e8720c}
  .mobile-cta-strip .mobile-cta-text{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.2)}
  .mobile-cta-strip svg{width:16px;height:16px;flex-shrink:0}
  /* Reserve space so the fixed bar never covers footer content / iPhone home indicator. */
  body{padding-bottom:calc(80px + env(safe-area-inset-bottom,0px))}
}
