.mobSticky,
.mobSticky__modal {
    display: none;
}

@media (max-width: 768px) {

    .mobSticky {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: transform .25s ease-out, opacity .25s ease-out, visibility .25s;
    }

    .mobSticky[data-state="visible"] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobSticky__bar {
        padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 40%);
    }

    .mobSticky__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        min-height: 52px;
        padding: 8px 20px;
        border: 0;
        border-radius: 12px;
        background-color: var(--blue, #0202b3);
        color: #fff;
        font-family: var(--font-family, Inter, sans-serif);
        font-weight: 600;
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.15;
        letter-spacing: 0;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(2, 2, 179, .18);
        transition: opacity .3s ease;
    }

    .mobSticky__btn:active {
        opacity: .8;
    }

    body.has-mob-sticky {
        padding-bottom: 76px;
    }

    .mobSticky__modal {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9999;
    }

    .mobSticky__modal[hidden] {
        display: none;
    }

    .mobSticky__overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 10, 10, .45);
    }

    .mobSticky__sheet {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 24px 16px calc(24px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-radius: 24px 24px 0 0;
        animation: mobStickySheetUp .25s ease-out;
    }

    @keyframes mobStickySheetUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }

    .mobSticky__close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        padding: 0;
        border: 0;
        background: none;
        cursor: pointer;
    }

    .mobSticky__title {
        margin: 0 40px 16px 0;
        font-weight: 600;
        font-size: 20px;
        line-height: 130%;
        color: var(--primary-text-color, #0a0a0a);
    }

    .mobSticky__formItem {
        margin-bottom: 12px;
    }

    .mobSticky__formItem textarea {
        min-height: 56px;
        resize: vertical;
    }

    .mobSticky__formButton {
        margin-top: 16px;
    }

    .mobSticky__formButton .blueBtn {
        width: 100%;
        min-height: 52px;
    }

    .mobSticky__terms {
        margin-top: 16px;
    }

    .mobSticky__error {
        margin-top: 12px;
        padding: 10px 12px;
        border-radius: 8px;
        background: #fdecec;
        color: #c0392b;
        font-size: 14px;
        line-height: 130%;
    }

    .mobSticky__error[hidden] {
        display: none;
    }

    .mobSticky__success {
        padding: 12px 0 4px;
        text-align: center;
    }

    .mobSticky__success[hidden] {
        display: none;
    }

    .mobSticky__successTitle {
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 20px;
        line-height: 130%;
        color: var(--primary-text-color, #0a0a0a);
    }

    .mobSticky__successText {
        font-size: 15px;
        line-height: 140%;
        color: #5b5b5b;
    }
}
