.floating-call {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 7px 20px 7px 8px;
  color: #122f2a;
  background: #f5c542;
  border: 1px solid rgba(18,47,42,.18);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(7,27,42,.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(7,27,42,.34);
}

.floating-call-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: #122f2a;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.footer-phone {
  display: block;
  margin-top: 9px;
  color: #f5c542;
  font-weight: 800;
  letter-spacing: .03em;
}

@media (max-width: 650px) {
  .floating-call {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 7px;
  }

  .floating-call-icon { width: 44px; height: 44px; }
  .floating-call-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-call { transition: none; }
}
