.mobile-call-strip { display: none; }

@media (max-width: 620px) {
    body {
        padding-top: 68px !important;
        padding-bottom: 68px !important;
    }

    .floating-call { display: none !important; }

    .mobile-call-strip {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1400;
        height: 68px;
        display: grid;
        grid-template-columns: 68px minmax(0,1fr) 52px;
        align-items: center;
        gap: 8px;
        padding: 0 12px 0 5px;
        overflow: hidden;
        color: #fff;
        background: linear-gradient(100deg,#075e55 0%,#08796c 58%,#064a45 100%);
        border-color: #50e3c2;
        box-shadow: 0 8px 28px rgba(3,35,33,.38);
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(255,255,255,.15);
    }

    .mobile-call-strip-top {
        top: 0;
        border-bottom: 3px solid #50e3c2;
    }

    .mobile-call-strip-bottom {
        bottom: 0;
        border-top: 3px solid #50e3c2;
        box-shadow: 0 -8px 28px rgba(3,35,33,.35);
    }

    .mobile-call-strip>img {
        width: 62px;
        height: 62px;
        align-self: end;
        object-fit: cover;
        object-position: center 22%;
        border-radius: 32px 32px 8px 8px;
        border: 2px solid rgba(255,255,255,.82);
        background: #101828;
    }

    .mobile-call-copy {
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1.12;
        text-align: center;
    }

    .mobile-call-copy b {
        color: #fff;
        font-size: clamp(11px,3.4vw,14px);
        font-weight: 800;
        white-space: nowrap;
    }

    .mobile-call-copy strong {
        margin-top: 6px;
        color: #ffe08a;
        font-size: clamp(15px,4.5vw,20px);
        font-weight: 800;
        letter-spacing: .3px;
        white-space: nowrap;
    }

    .mobile-call-phone {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #101828;
        background: #ffe08a;
        box-shadow: 0 0 0 5px rgba(255,224,138,.17);
        animation: mobile-phone-ring 1.8s ease-in-out infinite;
        transform-origin: center;
    }

    .mobile-call-phone svg {
        width: 23px;
        height: 23px;
        stroke-width: 2.7;
    }

    .mobile-call-strip:active { background: #064e48; }
    .mobile-call-strip:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }
}

@keyframes mobile-phone-ring {
    0%,55%,100% { transform: rotate(0) scale(1); }
    62% { transform: rotate(12deg) scale(1.08); }
    69% { transform: rotate(-12deg) scale(1.08); }
    76% { transform: rotate(9deg) scale(1.06); }
    83% { transform: rotate(-7deg) scale(1.04); }
    90% { transform: rotate(0) scale(1); }
}

@media (max-width: 360px) {
    .mobile-call-strip { grid-template-columns: 58px minmax(0,1fr) 42px; padding-right: 7px; gap: 5px; }
    .mobile-call-strip>img { width: 54px; height: 60px; }
    .mobile-call-phone { width: 39px; height: 39px; }
    .mobile-call-phone svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-call-phone { animation: none; }
}
