.promo-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(15, 20, 16, 0.45);
}

.promo-popup-backdrop.is-visible {
    display: flex;
}

body.promo-popup-open {
    overflow: hidden;
}

.promo-popup {
    position: relative;
    width: min(640px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
    border: 3px solid #2c4d3b;
    border-radius: 14px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
    padding: 34px 30px 28px;
    color: #2c4d3b;
    font-family: 'Lato', Arial, sans-serif;
}

.promo-popup__inner {
    display: flex;
    align-items: stretch;
    gap: 22px;
}

.promo-popup__content {
    flex: 1 1 0;
    min-width: 0;
}

.promo-popup__title {
    margin: 0 0 18px;
    color: #2c4d3b;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 700;
}

.promo-popup__title span {
    display: block;
}

.promo-popup__copy {
    margin: 0;
    color: #2c4d3b;
    font-size: 19px;
    line-height: 1.22;
    max-width: 255px;
}

.promo-popup__divider {
    width: 1px;
    flex: 0 0 1px;
    background: linear-gradient(to bottom, transparent, #2c4d3b 12%, #2c4d3b 88%, transparent);
    opacity: 0.6;
}

.promo-popup__contact {
    flex: 0 0 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 8px;
}

.promo-popup__label {
    margin: 0 0 10px;
    color: #2c4d3b;
    font-size: 18px;
    font-weight: 700;
}

.promo-popup__contact a {
    display: block;
    color: #2c4d3b;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 8px;
}

.promo-popup__contact a:hover,
.promo-popup__contact a:focus {
    color: #1d3528;
}

.promo-popup__close {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #2c4d3b;
    font-size: 42px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.promo-popup__close:hover,
.promo-popup__close:focus {
    color: #1d3528;
    outline: none;
}

@media (max-width: 767px) {
    .promo-popup-backdrop {
        padding: 12px;
        align-items: center;
    }

    .promo-popup {
        width: 100%;
        padding: 32px 18px 22px;
        border-radius: 12px;
    }

    .promo-popup__inner {
        flex-direction: column;
        gap: 18px;
    }

    .promo-popup__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .promo-popup__copy {
        max-width: none;
        font-size: 17px;
    }

    .promo-popup__divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #2c4d3b 12%, #2c4d3b 88%, transparent);
    }

    .promo-popup__contact {
        flex-basis: auto;
        padding-left: 0;
    }

    .promo-popup__contact a {
        font-size: 21px;
    }
}
