/* Abraham AC — Exit-Intent Popup */
#abraham-exit-popup {
    position: fixed;
    inset: 0;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.aep-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 22, 53, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.aep-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    animation: aepSlideUp 0.3s ease-out;
}
@keyframes aepSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.aep-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(1,22,53,0.08);
    color: #011635;
    font-size: 22px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.aep-close:hover { background: rgba(1,22,53,0.16); }
.aep-icon {
    font-size: 36px;
    color: var(--primary-color, #c41230);
    margin-bottom: 8px;
}
.aep-title {
    font-size: 24px;
    font-weight: 700;
    color: #011635;
    margin: 0 0 8px;
}
.aep-body {
    font-size: 15px;
    color: #444;
    margin: 0 0 20px;
    line-height: 1.5;
}
.aep-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.aep-input {
    flex: 1;
    padding: 12px 14px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}
.aep-input:focus { border-color: var(--primary-color, #c41230); }
.aep-submit {
    white-space: nowrap;
    flex-shrink: 0;
}
.aep-fine {
    font-size: 12px;
    color: #888;
    margin: 0;
}
.aep-success {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
    margin: 0;
    padding: 16px 0;
}
@media (max-width: 480px) {
    .aep-box { padding: 32px 20px 24px; }
    .aep-form { flex-direction: column; }
    .aep-title { font-size: 20px; }
}
