.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.lead-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 25, .72);
    backdrop-filter: blur(2px);
}

.lead-popup__box {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    color: #111827;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
    animation: leadPopupIn .28s ease-out;
}

@keyframes leadPopupIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
}

.lead-popup__close:hover { color: #4b5563; }

.lead-popup__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f79e1b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-popup__icon svg { width: 34px; height: 34px; fill: #fff; }

.lead-popup__title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
}

.lead-popup__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}

.lead-popup__cta {
    display: inline-block;
    margin-top: 22px;
    padding: 13px 26px;
    border-radius: 10px;
    background: #f79e1b;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.lead-popup__cta:hover { background: #e58a05; }
