.leasing-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid #d7e3ea;
  box-shadow: 0 -8px 22px rgba(8, 36, 56, 0.08);
}
.leasing-mobile-cta a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.leasing-mobile-cta a.is-call {
  background: #0e7490;
  color: #ffffff;
}
.leasing-mobile-cta a.is-form {
  background: #ffffff;
  color: #0e7490;
  border: 1px solid #0e7490;
}
.leasing-mobile-cta svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1024px) {
  .leasing-mobile-cta {
    display: none;
  }
}
body:has(.leasing-mobile-cta) {
  padding-bottom: 84px;
}
@media (min-width: 1024px) {
  body:has(.leasing-mobile-cta) {
    padding-bottom: 0;
  }
}
