
/* Analyz Popup Styles */
.analyz-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.analyz-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.analyz-popup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
}

.analyz-popup-overlay.active .analyz-popup {
    transform: scale(1);
}

.analyz-popup-content {
    flex: 1;
    padding: 48px;
    background: linear-gradient(135deg, #f9fafb 0%, white 100%);
    position: relative;
}

.analyz-popup-close {
    position: absolute;
    top: 24px;
    left: 24px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.analyz-popup-close:hover {
    background-color: #f3f4f6;
}

.analyz-brand {
    display: flex;
    align-items: center;
    margin-bottom: 64px;
    margin-top: 32px;
}

.analyz-brand img {
    height: 32px;
    margin-right: 12px;
}

.analyz-brand span {
    font-weight: 600;
    color: #111827;
    font-size: 18px;
}

.analyz-social-proof {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.analyz-avatars {
    display: flex;
    margin-right: 8px;
}

.analyz-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.analyz-avatar:first-child {
    margin-left: 0;
}

.analyz-avatar-1 { background-color: #3b82f6; }
.analyz-avatar-2 { background-color: #10b981; }
.analyz-avatar-3 { background-color: #f59e0b; }
.analyz-avatar-4 { background-color: #8b5cf6; }

.analyz-social-text {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.analyz-content {
    max-width: 448px;
}

.analyz-heading {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

.analyz-heading-italic {
    font-style: italic;
    color: #374151;
}

.analyz-description {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.analyz-features {
    margin-bottom: 32px;
}

.analyz-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.analyz-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

.analyz-feature-dot-1 { background-color: #3b82f6; }
.analyz-feature-dot-2 { background-color: #10b981; }
.analyz-feature-dot-3 { background-color: #f59e0b; }

.analyz-feature-text {
    color: #374151;
    font-weight: 500;
}

.analyz-form {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.analyz-email-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
}

.analyz-email-input:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.1);
}

.analyz-submit-btn {
    background: #111827;
    color: white;
    border: none;
    height: 48px;
    padding: 0 32px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.analyz-submit-btn:hover {
    background: #1f2937;
}

.analyz-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.analyz-success {
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    padding: 16px;
}

.analyz-success-text {
    color: #065f46;
    font-weight: 500;
}

.analyz-dashboard {
    flex: 1;
    background: #f3f4f6;
    padding: 32px;
    overflow: hidden;
}

.analyz-dashboard-inner {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .analyz-popup {
        flex-direction: column;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .analyz-popup-content {
        padding: 24px;
    }
    
    .analyz-heading {
        font-size: 36px;
    }
    
    .analyz-form {
        flex-direction: column;
    }
    
    .analyz-dashboard {
        padding: 16px;
        min-height: 200px;
    }
}
