/* ========================================
   产品中心页面 - Stripe风格
   主色: #0086F1
   ======================================== */

/* 基础变量 */
:root {
    --primary: #0086F1;
    --primary-dark: #0066cc;
    --primary-light: #e8f4ff;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --bg-light: #f8fafc;
    --shadow-sm: 0 2px 8px rgba(0,134,241,0.1);
    --shadow-md: 0 4px 20px rgba(0,134,241,0.15);
    --shadow-lg: 0 8px 40px rgba(0,134,241,0.2);
}

/* 容器 */
.stripe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   1. Hero海报区域 - 大气版
   ======================================== */
.hero-product {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/skin/images/kingdee_banner.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="60" cy="10" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="60" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 4px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: 8px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-desc {
    font-size: 26px;
    color: rgba(255,255,255,0.95);
    margin: 0 0 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-sub {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    letter-spacing: 2px;
}

/* ========================================
   2. 品牌区块通用样式
   ======================================== */
.brand-section {
    padding: 60px 0;
}

.stripe-bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-badge {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 24px;
    margin-bottom: 20px;
    background: var(--primary);
    color: #fff;
    letter-spacing: 4px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0 0 20px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   3. 产品卡片网格 (4列)
   ======================================== */
.products-grid-fixed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* 两行布局 (8个产品，每行4个) */
.products-grid-two-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,134,241,0.1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* 产品卡片头部行 - logo和名称同行 */
.product-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.product-header-row .product-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.product-header-row .product-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-icon svg {
    width: 48px;
    height: 48px;
}

/* 产品Logo图片 */
.product-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.product-info {
    text-align: left;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 16px;
}

.product-btn {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.product-btn:hover {
    color: var(--primary-dark);
}

/* ========================================
   4. 单列大卡片 (管家婆)
   ======================================== */
.products-grid-single {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.product-card-large {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 40px;
    width: 550px;
    border: 1px solid rgba(0,134,241,0.1);
    transition: all 0.3s ease;
}

.product-card-large:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* 管家婆大卡片头部行 */
.product-header-row-large {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    margin-left: -20px;
}

.product-header-row-large .product-icon-large {
    margin-bottom: 0;
}

.product-header-row-large .product-name-large {
    margin: 0;
}

.product-icon-large {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon-large img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.product-info-large {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info-large .product-btn-large {
    margin-top: auto;
}

.product-name-large {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.product-desc-large {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 0 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
}

.product-btn-large {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.product-btn-large:hover {
    background: var(--primary-dark);
}

/* ========================================
   5. 普渡产品布局
   ======================================== */
.pudu-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pudu-category-block {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,134,241,0.1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.category-title svg {
    width: 24px;
    height: 24px;
}

.category-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 24px;
}

.products-grid-pudu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card-mini {
    background: var(--primary-light);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
}

.product-card-mini:hover {
    background: #d4eaff;
}

.product-info-mini {
    text-align: left;
}

.product-name-mini {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 6px;
}

.product-desc-mini {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0 0 10px;
}

.product-btn-mini {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

/* ========================================
   6. 咨询引导区域
   ======================================== */
.consult-guide {
    padding: 40px 0;
    background: var(--primary-light);
}

.guide-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 24px 40px;
    box-shadow: var(--shadow-sm);
    gap: 20px;
}

.guide-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-content {
    flex: 1;
}

.guide-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.guide-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.guide-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guide-phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.guide-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.guide-btn:hover {
    background: var(--primary-dark);
}

/* ========================================
   7. 响应式适配
   ======================================== */
@media (max-width: 992px) {
    .products-grid-fixed,
    .products-grid-two-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-pudu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .products-grid-fixed,
    .products-grid-two-row,
    .products-grid-pudu {
        grid-template-columns: 1fr;
    }
    
    .brand-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
}