/* 优化效果展示区域样式 */
.optimization-results {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.result-card {
    text-align: center;
}

.result-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.result-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.6;
}

.result-icon {
    position: relative;
    font-size: 2.5rem;
    z-index: 2;
}

.result-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.result-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.result-progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    height: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    height: 100%;
    border-radius: var(--border-radius);
    transition: width 2s ease;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.ranking-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.ranking-badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.platform-coverage {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.platform-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 平台支持区域样式 */
.platforms {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.platform-card {
    text-align: center;
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon i {
    font-size: 2rem;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.platform-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* 优势展示区域样式 */
.benefits {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.benefit-desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* 价格区域样式 */
.pricing {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.03);
}

.pricing-card.featured::after {
    content: '最受欢迎';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.pricing-notice {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.pricing-option {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: left;
}

.pricing-option h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
}

.pricing-option h4 i {
    margin-right: 10px;
    color:极(--secondary);
}

.pricing-option p {
    margin: 12px 0;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.pricing-option .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.pricing-option .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.pricing-features p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.pricing-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.pricing-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}