/* 定制报价页面样式 */

.pricing-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-header h1 {
    color: #f5e6c8;
    font-size: 48px;
    margin-bottom: 16px;
}

.pricing-header p {
    color: #b8a890;
    font-size: 18px;
}

/* 报价方案 */
.pricing-section {
    padding: 100px 0;
    background-color: #faf8f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #d4a853;
    background: linear-gradient(180deg, #fffbf0 0%, #fff 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a853 0%, #b89442 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0ece4;
}

.pricing-header h3 {
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-price .currency {
    color: #d4a853;
    font-size: 24px;
    font-weight: 600;
}

.pricing-price .amount {
    color: #1a1a1a;
    font-size: 48px;
    font-weight: 700;
}

.pricing-price .period {
    color: #888;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: #555;
    border-bottom: 1px dashed #f0ece4;
    font-size: 16px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #d4a853 0%, #b89442 100%);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, #d4a853 0%, #b89442 100%);
}

/* 增值服务 */
.addons-section {
    padding: 100px 0;
    background-color: #fff;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.addon-item {
    text-align: center;
    padding: 30px 20px;
    background: #faf8f5;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.addon-item h3 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 12px;
}

.addon-price {
    color: #d4a853;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.addon-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 服务流程 */
.process-section {
    padding: 100px 0;
    background-color: #faf8f5;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a853 0%, #b89442 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA 区域 */
.pricing-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
}

.pricing-cta h2 {
    color: #f5e6c8;
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-cta p {
    color: #b8a890;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cta h2 {
        font-size: 32px;
    }
}
