@media (max-width: 879px) {
  body.has-mobile-cta .site-footer {
    padding-bottom: calc(3.2rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    z-index: 70;
    display: flex;
    gap: 0.45rem;
    align-items: center;
  }

  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 2.4rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .mobile-cta-bar a:active {
    transform: scale(0.95);
  }

  .mobile-cta-bar a svg {
    width: 0.85rem;
    height: 0.85rem;
    flex: 0 0 auto;
  }

  .mobile-cta-bar a.cta-call {
    background: var(--mobile-cta-primary, #343a40);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  }

  .mobile-cta-bar a.cta-secondary {
    background: #fff;
    color: var(--mobile-cta-primary, #343a40);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 880px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* Emergency float removed — no longer used */
.mobile-emergency-float {
  display: none !important;
}
