.adaire-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: adaire-overlay-in 0.15s ease;
}

@keyframes adaire-overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.adaire-modal-container {
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: calc(100% - 40px);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    animation: adaire-modal-in 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes adaire-modal-in {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Header */
.adaire-modal-header {
    background: linear-gradient(135deg, #E8272A 0%, #c01f22 100%);
    padding: 24px 28px 20px;
    color: #fff;
    position: relative;
}

.adaire-modal-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.adaire-modal-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adaire-modal-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.adaire-modal-header h3 {
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.adaire-modal-header p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    line-height: 1.4;
}

.adaire-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: background 0.15s;
    padding: 0;
}

.adaire-modal-close:hover {
    background: rgba(255,255,255,0.28);
}

/* Body */
.adaire-modal-body {
    padding: 24px 28px 28px;
}

.adaire-modal-body > p {
    margin: 0 0 16px;
    font-size: 13px;
    color: #475569;
}

/* Reasons */
.adaire-reasons-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.adaire-reasons-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13.5px;
    color: #1e293b;
    font-weight: 500;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
}

.adaire-reasons-list label:hover {
    border-color: #f4a0a1;
    background: #fff5f5;
}

.adaire-reasons-list input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}

.adaire-reasons-list input[type="radio"]::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}

.adaire-reasons-list input[type="radio"]:checked {
    border-color: #E8272A;
}

.adaire-reasons-list input[type="radio"]:checked::after {
    background: #E8272A;
}

.adaire-reasons-list label:has(input:checked) {
    border-color: #E8272A;
    background: #fff0f0;
    color: #c01f22;
}

/* Follow-up textarea */
.adaire-followup {
    margin-bottom: 14px;
    animation: adaire-followup-in 0.18s ease;
}

@keyframes adaire-followup-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.adaire-followup textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #1e293b;
    resize: vertical;
    min-height: 72px;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.adaire-followup textarea:focus {
    outline: none;
    border-color: #E8272A;
    box-shadow: 0 0 0 3px rgba(232,39,42,0.12);
}

/* Email field */
.adaire-field {
    margin-bottom: 20px;
}

.adaire-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.adaire-field input[type="email"] {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13.5px;
    color: #1e293b;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.adaire-field input[type="email"]:focus {
    outline: none;
    border-color: #E8272A;
    box-shadow: 0 0 0 3px rgba(232,39,42,0.12);
}

/* Buttons */
.adaire-modal-btns {
    display: flex;
    gap: 10px;
}

.adaire-submit-btn {
    flex: 1;
    background: #E8272A !important;
    border-color: #E8272A !important;
    color: #fff !important;
    border-radius: 8px !important;
    height: 38px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s !important;
}

.adaire-submit-btn:hover:not(:disabled) {
    background: #c01f22 !important;
    border-color: #c01f22 !important;
}

.adaire-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.adaire-skip-btn {
    border-radius: 8px !important;
    height: 38px !important;
    font-size: 13px !important;
    color: #64748b !important;
    border-color: #e2e8f0 !important;
    background: #fff !important;
    transition: border-color 0.15s !important;
}

.adaire-skip-btn:hover {
    border-color: #94a3b8 !important;
    color: #1e293b !important;
    background: #f8fafc !important;
}

/* Success state */
.adaire-modal-success {
    padding: 48px 28px;
    text-align: center;
}

.adaire-success-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.adaire-success-icon svg {
    width: 28px;
    height: 28px;
    color: #16a34a;
}

.adaire-modal-success h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
}

.adaire-modal-success p {
    margin: 0;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}
