.ttp-popup {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100vw - 24px));
    padding: 14px 14px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #dff4ff 0%, #c8ebff 100%);
    border: 1px solid rgba(75, 146, 191, 0.22);
    box-shadow: 0 14px 34px rgba(19, 60, 89, 0.16);
    color: #0f3854;
    z-index: 999999;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    font-family: inherit;
}

.ttp-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ttp-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
    color: #2b5f7d;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.ttp-popup__eyebrow {
    margin: 0 36px 6px 0;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4a85a8;
}

.ttp-popup__title {
    margin: 0 34px 8px 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #123e5c;
}

.ttp-popup__text {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #28546f;
}

.ttp-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #2088c9;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(32, 136, 201, 0.26);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.ttp-popup__button:hover,
.ttp-popup__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(32, 136, 201, 0.3);
    opacity: 1;
}

@media (max-width: 767px) {
    .ttp-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 13px 13px 13px;
        border-radius: 16px;
    }

    .ttp-popup__title {
        font-size: 17px;
    }

    .ttp-popup__text {
        font-size: 13px;
    }

    .ttp-popup__button {
        width: 100%;
    }
}
