/**
 * Report CTA 报告号召组件样式
 * 文件名：report-cta.css
 * 功能：号召用户提交报告的突出展示区块
 */

/* 主容器样式 */
.report-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.report-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.report-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.report-cta__content {
    text-align: center;
}

/* 标题样式 */
.report-cta__title {
    font-size: 3rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.report-cta__subtitle {
    font-size: 1.375rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 优势列表 */
.report-cta__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem 0;
    display: inline-block;
    text-align: left;
}

.report-cta__benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(100, 116, 139, 0.2);
    transition: all 0.3s ease;
}

.report-cta__benefit:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateX(8px);
}

.report-cta__benefit-icon {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-cta__benefit-text {
    color: #e2e8f0;
    font-size: 1.125rem;
    font-weight: 600;
}

/* 行动按钮 */
.report-cta__actions {
    margin-bottom: 3rem;
}

.report-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
}

.report-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.report-cta__button:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.report-cta__button:hover::before {
    left: 100%;
}

/* 统计数据 */
.report-cta__stats {
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 116, 139, 0.3);
}

.report-cta__stat-text {
    color: #94a3b8;
    font-size: 1.125rem;
    font-weight: 600;
    background: rgba(30, 41, 59, 0.6);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .report-cta {
        padding: 4rem 0;
    }
    
    .report-cta__title {
        font-size: 2.25rem;
    }
    
    .report-cta__subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .report-cta__benefits {
        margin-bottom: 3rem;
    }
    
    .report-cta__benefit {
        padding: 0.875rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .report-cta__benefit-text {
        font-size: 1rem;
    }
    
    .report-cta__button {
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .report-cta__container {
        padding: 0 1rem;
    }
    
    .report-cta__title {
        font-size: 2rem;
    }
    
    .report-cta__subtitle {
        font-size: 1.125rem;
    }
    
    .report-cta__benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .report-cta__button {
        width: 100%;
        max-width: 280px;
    }
    
    .report-cta__stat-text {
        font-size: 1rem;
    }
}