/* 6Sense Leads — built-in success modal */
.sixl-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sixl-modal.is-open {
    display: flex;
}

.sixl-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 14, 0.72);
    backdrop-filter: blur(4px);
    animation: sixl-fade 0.25s ease;
}

.sixl-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    background: #14141a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px 36px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    animation: sixl-pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sixl-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sixl-modal__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.sixl-modal__icon {
    color: #f89a24;
    margin-bottom: 18px;
}

.sixl-modal__title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: #fff;
}

.sixl-modal__message {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 26px;
}

.sixl-modal__home {
    display: inline-block;
}

body.sixl-modal-open {
    overflow: hidden;
}

@keyframes sixl-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sixl-pop {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
