.kk-pricing-free-offer-modal {
    align-items: center;
    display: none;
    height: var(--kk-modal-vh-px, 100dvh);
    inset: 0;
    justify-content: center;
    max-height: var(--kk-modal-vh-px, 100dvh);
    overflow: hidden;
    padding: 20px;
    position: fixed;
    z-index: 2800;
}

.kk-pricing-free-offer-modal.is-open {
    display: flex;
}

.kk-pricing-free-offer-modal__backdrop {
    background: rgba(15, 23, 42, 0.55);
    inset: 0;
    position: absolute;
    backdrop-filter: blur(14px);
}

.kk-pricing-free-offer-modal__dialog {
    background: #f8f9fb;
    border: 1px solid #e6ebf2;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    color: #151a24;
    display: flex;
    flex-direction: column;
    max-height: calc(var(--kk-modal-vh-px, 100dvh) - 40px);
    max-width: 480px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.kk-pricing-free-offer-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 28px 24px 18px;
}

.kk-pricing-free-offer-modal__footer {
    background: linear-gradient(180deg, rgba(248, 249, 251, 0) 0%, #f8f9fb 18%);
    border-top: 1px solid #e6ebf2;
    flex: 0 0 auto;
    padding: 14px 24px 24px;
}

.kk-pricing-free-offer-modal__dialog.is-pulsing {
    animation: kk-pricing-free-offer-pulse 1.1s ease-in-out infinite;
}

@keyframes kk-pricing-free-offer-pulse {
    0%,
    100% {
        box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 28px 70px rgba(239, 1, 127, 0.24), 0 0 0 4px rgba(239, 1, 127, 0.12);
        transform: scale(1.012);
    }
}

.kk-pricing-free-offer-modal__close {
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 14px;
    transform: scale(0.82);
    transition: opacity .45s ease, transform .45s ease;
    visibility: hidden;
    width: 36px;
    z-index: 2;
}

.kk-pricing-free-offer-modal__close.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    visibility: visible;
}

.kk-pricing-free-offer-modal__close:hover {
    background: #f3f5f8;
    color: #111827;
}

.kk-pricing-free-offer-modal__intro {
    margin-bottom: 22px;
    padding-right: 36px;
    text-align: center;
}

.kk-pricing-free-offer-modal__intro .kk-plans-kicker {
    justify-content: center;
    margin-bottom: 10px;
}

.kk-pricing-free-offer-modal__intro h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.95;
    margin: 0 0 10px;
}

.kk-pricing-free-offer-modal__intro p {
    color: #5b6472;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 360px;
}

.kk-pricing-free-offer-modal__intro p strong {
    color: #0085de;
}

.kk-pricing-free-offer-modal__countdown {
    align-items: center;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.kk-pricing-free-offer-modal__countdown-label {
    align-items: center;
    color: #5b6472;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
}

.kk-pricing-free-offer-modal__countdown-label i {
    color: #ef017f;
}

.kk-pricing-free-offer-modal__countdown strong {
    background: #151a24;
    border-radius: 10px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    min-width: 74px;
    padding: 8px 12px;
    text-align: center;
}

.kk-pricing-free-offer-modal__countdown.is-urgent {
    border-color: #ef017f;
    box-shadow: 0 0 0 3px rgba(239, 1, 127, 0.08);
}

.kk-pricing-free-offer-modal__countdown.is-urgent strong {
    background: #ef017f;
}

.kk-pricing-free-offer-modal__live-proof {
    align-items: center;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 0;
    min-height: 40px;
    opacity: 0;
    padding: 8px 12px;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
}

.kk-pricing-free-offer-modal__live-proof.show {
    opacity: 1;
    transform: translateY(0);
}

.kk-pricing-free-offer-modal__live-proof-label {
    align-items: center;
    color: #5b6472;
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    line-height: 1.25;
}

.kk-pricing-free-offer-modal__live-proof-label i {
    color: #ef017f;
    font-size: 12px;
}

.kk-pricing-free-offer-modal__live-dot {
    animation: kk-pricing-free-offer-live-pulse 1.4s ease-in-out infinite;
    background: #18c85b;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(24, 200, 91, 0.45);
    display: inline-block;
    flex: 0 0 auto;
    height: 6px;
    width: 6px;
}

@keyframes kk-pricing-free-offer-live-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(24, 200, 91, 0.45);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 0 6px rgba(24, 200, 91, 0);
        opacity: .8;
    }
}

.kk-pricing-free-offer-modal__live-proof strong {
    background: #18c85b;
    border-radius: 8px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    min-width: 42px;
    padding: 5px 9px;
    text-align: center;
    transition: transform .2s ease;
}

.kk-pricing-free-offer-modal__live-proof strong.is-bump {
    animation: kk-pricing-free-offer-live-bump .45s ease;
}

@keyframes kk-pricing-free-offer-live-bump {
    0%,
    100% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.16);
    }

    65% {
        transform: scale(0.96);
    }
}

.kk-pricing-free-offer-modal__card {
    border-color: #0085de;
    box-shadow: 0 18px 40px rgba(0, 133, 222, 0.1);
    margin-top: 8px;
}

.kk-pricing-free-offer-modal__card .kk-plans-card__desc {
    min-height: 0;
}

.kk-pricing-free-offer-modal__card:hover {
    transform: none;
}

.kk-pricing-free-offer-modal__card .kk-plans-price {
    margin-bottom: 0;
}

.kk-pricing-free-offer-modal__cta {
    background: #ef017f;
    border-color: #ef017f;
    color: #fff;
    margin-top: 12px;
    width: 100%;
}

.kk-pricing-free-offer-modal__cta:hover {
    background: #d4006f;
    border-color: #d4006f;
    box-shadow: 0 14px 26px rgba(239, 1, 127, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.kk-plans-card-col--removing {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition: opacity .24s ease, transform .24s ease;
}

.kk-pricing-free-offer-modal .kk-plans-kicker,
.kk-pricing-free-offer-modal .kk-plans-card__eyebrow {
    align-items: center;
    color: #0085de;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.kk-pricing-free-offer-modal .kk-plans-kicker i {
    color: #ef017f;
}

.kk-pricing-free-offer-modal .kk-plans-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 25px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
}

.kk-pricing-free-offer-modal .kk-plans-card__inner {
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 22px 22px;
    position: relative;
}

.kk-pricing-free-offer-modal .kk-plans-card__inner::after {
    background: linear-gradient(90deg, #0085de, #ef017f 38%, #88c701 70%, #fdcf01);
    border-radius: 0 0 25px 25px;
    bottom: 0;
    content: '';
    height: 5px;
    left: 0;
    opacity: .6;
    position: absolute;
    right: 0;
}

.kk-pricing-free-offer-modal .kk-plans-card__header {
    padding-bottom: 14px;
}

.kk-pricing-free-offer-modal .kk-plans-card__eyebrow {
    color: #88c701;
    font-size: 10px;
    gap: 5px;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.kk-pricing-free-offer-modal .kk-plans-card__eyebrow i {
    font-size: 10px;
}

.kk-pricing-free-offer-modal .kk-plans-card__title {
    color: #111827;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 4px;
}

.kk-pricing-free-offer-modal .kk-plans-card__desc {
    color: #5b6472;
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
}

.kk-pricing-free-offer-modal .kk-plans-price {
    /* border-bottom: 1px solid #e5e7eb; */
    border-top: 1px solid #e5e7eb;
    color: #0085de;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 14px 0 0;
    padding: 16px 0;
    position: relative;
}

.kk-pricing-free-offer-modal .kk-plans-price:has(.kk-plans-price__badge:not([hidden])) {
    padding-top: 34px;
}

.kk-pricing-free-offer-modal .kk-plans-price__before {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
}

.kk-pricing-free-offer-modal .kk-plans-price__before s {
    color: #64748b;
    text-decoration-thickness: 2px;
}

.kk-pricing-free-offer-modal .kk-plans-price__current {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kk-pricing-free-offer-modal .kk-plans-price__badge {
    background: #fff9db;
    border: 1px solid #ffe27a;
    border-radius: 999px;
    color: #8a6500;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.1;
    padding: 6px 10px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 10px;
    z-index: 1;
}

.kk-pricing-free-offer-modal .kk-plans-price__badge[hidden],
.kk-pricing-free-offer-modal .kk-plans-price__before[hidden] {
    display: none;
}

.kk-pricing-free-offer-modal .kk-plans-price__currency {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.kk-pricing-free-offer-modal .kk-plans-price__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: .9;
}

.kk-pricing-free-offer-modal .kk-plans-price__period {
    color: #6b7280;
    font-size: 15px;
    font-weight: 800;
    padding-bottom: 5px;
}

.kk-pricing-free-offer-modal .kk-plans-price__note {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.kk-pricing-free-offer-modal .kk-plans-button {
    align-items: center;
    background: #ef017f;
    border: 2px solid #ef017f;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    gap: 9px;
    justify-content: center;
    line-height: 1.1;
    min-height: 48px;
    padding: 13px 22px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

@media (max-height: 700px) {
    .kk-pricing-free-offer-modal {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .kk-pricing-free-offer-modal__dialog {
        max-height: calc(var(--kk-modal-vh-px, 100dvh) - 24px);
    }
}

@media (max-width: 575.98px) {
    .kk-pricing-free-offer-modal {
        padding: 14px;
    }

    .kk-pricing-free-offer-modal__dialog {
        max-height: calc(var(--kk-modal-vh-px, 100dvh) - 28px);
    }

    .kk-pricing-free-offer-modal__body {
        padding: 24px 18px 14px;
    }

    .kk-pricing-free-offer-modal__footer {
        padding: 12px 18px 18px;
    }

    .kk-pricing-free-offer-modal__intro {
        padding-right: 0;
    }

    .kk-pricing-free-offer-modal .kk-plans-price__amount {
        font-size: 80px;
    }
}