/* Mobile-only sticky phone CTA (bez zamykania) */
@media (max-width: 768px) {
  .sticky-phone {
    position: fixed;
    left: 50%;
    bottom: max(12px, env(safe-area-inset-bottom));
    transform: translate(-50%, 120%);
    opacity: 0;
    transition: transform .35s ease, opacity .25s ease;
    z-index: 9999;
    width: min(640px, calc(100vw - 24px));
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    border-radius: 14px;
    background: #0a2453;   /* granat */
    color: #fff;
    overflow: hidden;
  }
  .sticky-phone.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
  }
    .sticky-phone__btn {
        display: flex
;
        align-items: baseline;
        gap: 10px;
        padding: 14px 18px;
        text-decoration: none;
        color: inherit;
        justify-content: center;
    }
	    .sticky-phone__btn a{
        color:#fff;
    }
  .sticky-phone__txt { font-size: 14px; opacity: .9; }
  .sticky-phone__num { font-size: 18px; letter-spacing: .3px; }
}
@media (min-width: 769px) {
  .sticky-phone {
    display:none;
  }

}
