/* 产品服务页面样式 */

/* 页面标题 */
.page-header {
    background: var(--gradient);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 产品区块 */
.product-section {
    padding: 100px 0;
    background: white;
}

.product-section.alt {
    background: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-grid.reverse {
    direction: rtl;
}

.product-grid.reverse > * {
    direction: ltr;
}

.product-tag {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.product-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-section.alt .feature-box {
    background: white;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.product-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-placeholder span {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* 响应式 */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .product-grid.reverse {
        direction: ltr;
    }
    
    .product-image {
        order: -1;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .product-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
}
