/* --- Report CTA Component Styles - 简化居中版 --- */

.report-cta { 
    padding: 4rem 0; 
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.report-cta__container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

.report-cta__content { 
    text-align: center; 
    max-width: 600px;
    margin: 0 auto;
}

.report-cta__title { 
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 1rem;
    color: #f9fafb;
}

.report-cta__subtitle { 
    font-size: 1.125rem; 
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* 简化利益点列表 - 完全居中 */
.report-cta__benefits {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 400px;
}

.report-cta__benefit {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
}

.report-cta__benefit::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* 加宽按钮 */
.report-cta__button { 
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
    min-width: 200px;
}

.report-cta__button:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.report-cta__stat {
    margin-top: 1.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}