/* 代理记账页面专用样式 */

/* 服务类型区域 */
.service-types {
    padding: 80px 0;
    background: white;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-type-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.service-type-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.service-type-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-type-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-type-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.service-type-card ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-type-card ul li:before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 服务内容区域 */
.our-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content {
    margin-top: 50px;
}

.service-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
}

.content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.content-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.content-item p {
    color: #666;
    line-height: 1.6;
}

/* 服务优势区域 */
.service-advantages {
    padding: 80px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.advantage-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* 服务保障区域 */
.service-guarantee {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guarantee-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
}

.guarantee-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

/* 可见的代账服务流程 */
.visible-service {
    padding: 80px 0;
    background: white;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border-left: 4px solid #667eea;
}

.process-step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #667eea;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 18px;
}

.step-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* 价格方案区域 */
.pricing-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured::before {
    content: '推荐';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    color: #667eea;
    vertical-align: top;
}

.price .amount {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.price .period {
    font-size: 16px;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features ul li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features ul li i {
    color: #4CAF50;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .service-process {
        grid-template-columns: 1fr;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .service-type-card {
        padding: 30px 20px;
    }
    
    .content-item {
        padding: 20px;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .guarantee-item {
        padding: 30px 20px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price .amount {
        font-size: 36px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-type-card,
.content-item,
.advantage-item,
.guarantee-item,
.process-step,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-type-card:nth-child(1) { animation-delay: 0.1s; }
.service-type-card:nth-child(2) { animation-delay: 0.2s; }
.service-type-card:nth-child(3) { animation-delay: 0.3s; }

.content-item:nth-child(1) { animation-delay: 0.1s; }
.content-item:nth-child(2) { animation-delay: 0.2s; }
.content-item:nth-child(3) { animation-delay: 0.3s; }
.content-item:nth-child(4) { animation-delay: 0.4s; }
.content-item:nth-child(5) { animation-delay: 0.5s; }
.content-item:nth-child(6) { animation-delay: 0.6s; }

/* 删除 .page-hero 相关样式，使用全局样式 */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0 50px;
    text-align: center;
    margin-top: 100px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
} 