/* --- LEAD GENERATION MODAL (V8 Wide 2-Column) --- */
.asg-modal-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.asg-modal-overlay.active { opacity: 1; pointer-events: auto; }

.asg-modal-content.asg-modal-wide {
    background: #141820; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6); border-radius: 24px;
    width: 94%; max-width: 1050px; position: relative; overflow: hidden;
    display: flex; flex-direction: row;
    transform: translateY(20px) scale(0.97); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.asg-modal-overlay.active .asg-modal-content { transform: translateY(0) scale(1); }

.asg-modal-close-btn {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.06); border: none; color: #888;
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.2s; font-size: 16px; z-index: 2;
}
.asg-modal-close-btn:hover { color: #fff; background: rgba(255,255,255,0.12); }

/* Left Panel */
.asg-modal-left {
    flex: 0 0 300px; padding: 48px 40px;
    background: linear-gradient(180deg, rgba(0,212,170,0.08) 0%, rgba(0,60,80,0.15) 100%);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; justify-content: space-between;
}
.asg-modal-icon {
    width: 52px; height: 52px; border-radius: 16px;
    background: linear-gradient(135deg, #00d4aa, #0099ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,212,170,0.3);
}
.asg-modal-left h3 { color: #fff; font-size: 28px; font-weight: 800; margin: 0 0 16px; letter-spacing: -0.5px; line-height: 1.25; }
.asg-modal-left p { color: #7b8ba5; font-size: 14px; margin: 0; line-height: 1.7; }
.asg-modal-left-footer { margin-top: auto; padding-top: 20px; color: #00d4aa; font-size: 11px; font-weight: 700; letter-spacing: 0.3px; line-height: 1.6; }
.asg-modal-left-footer small { color: #556; font-weight: 400; font-size: 10px; }

/* Right Panel */
.asg-modal-right { flex: 1; padding: 44px 48px; }

.asg-modal-section-title {
    font-size: 12px; font-weight: 700; color: #6b7b95; text-transform: uppercase;
    letter-spacing: 1.2px; margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.asg-modal-section-title i { color: #00d4aa; font-size: 13px; }

.asg-modal-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 24px 0; }

.asg-modal-right .asg-field-group { margin-bottom: 20px; }
.asg-modal-right .asg-field-group label {
    display: block; font-size: 11px; color: #6b7b95; margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}
.asg-modal-right .asg-field-row-2 { display: flex; gap: 24px; }
.asg-modal-right .asg-field-row-2 .asg-field-group { flex: 1; }

.asg-modal-input {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 15px; padding: 14px 18px; border-radius: 12px;
    transition: all 0.2s; font-family: inherit; font-weight: 500;
}
.asg-modal-input:focus { border-color: #00d4aa; outline: none; box-shadow: 0 0 0 3px rgba(0,212,170,0.15); }
.asg-modal-input::placeholder { color: #444; font-weight: 400; }

