﻿/* ========== 创业起步页面专属样式 ========== */
.startup-page {
    min-height: calc(100vh - var(--header-height) - var(--safe-top) - var(--footer-total-height));
}

/* ========== Hero区域 ========== */
.hero-section {
    padding: 20px 16px;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--discovery-blue) 100%);
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse-glow 4s ease-in-out infinite;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -20%;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse-glow 5s ease-in-out infinite 1s;
    }

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.hero-brand {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ========== 数据卡片区 ========== */
.stats-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stats-card {
    background: linear-gradient(135deg, var(--lighter-blue) 0%, var(--bg-primary) 100%);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

    .stats-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-md);
    }

.stats-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    z-index: 1;
}

.stats-card-number-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stats-card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--tech-blue);
    line-height: 1;
}

.stats-card-unit {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.stats-card-name {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stats-card-icon-bg {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 136, 221, 0.15) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 8px;
}

    .stats-card-icon-bg i {
        font-size: 22px;
        color: var(--tech-blue);
        opacity: 0.8;
    }

/* ========== 特色服务区 ========== */
.feature-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f5e9 100%);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
}

    .feature-icon i {
        font-size: 18px;
        color: white;
    }

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #1b5e20;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 102, 204, 0.06);
    border-top: 3px solid #4caf50;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .feature-card:nth-child(2) {
        border-top-color: #1565c0;
    }

    .feature-card:nth-child(3) {
        border-top-color: #ff8f00;
    }

    .feature-card:active {
        transform: scale(0.95);
        box-shadow: var(--shadow-md);
    }

.feature-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    margin: 0 auto 10px;
}

.feature-card:nth-child(2) .feature-card-icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.feature-card:nth-child(3) .feature-card-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.feature-card-icon i {
    font-size: 18px;
    color: #4caf50;
}

.feature-card:nth-child(2) .feature-card-icon i {
    color: #1565c0;
}

.feature-card:nth-child(3) .feature-card-icon i {
    color: #ff8f00;
}

.feature-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 4px;
}

.feature-card:nth-child(2) .feature-card-name {
    color: #0d47a1;
}

.feature-card:nth-child(3) .feature-card-name {
    color: #e65100;
}

.feature-card-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.4;
}

/* ========== 阶段区域通用样式 ========== */
.stage-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.stage-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stage-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--discovery-blue) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
}

    .stage-icon i {
        font-size: 16px;
        color: white;
    }

.stage-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.stage-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--discovery-blue) 100%);
    border-radius: 12px;
    font-size: 11px;
    color: white;
    font-weight: 500;
}

/* ========== 欢迎横幅（起步阶段） ========== */
.welcome-banner {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--lighter-blue) 100%);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid var(--border-light);
}

.welcome-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--tech-blue);
    margin-bottom: 6px;
}

.welcome-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== 服务产品网格 ========== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .service-grid.two-col {
        grid-template-columns: repeat(2, 1fr);
    }

.service-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .service-item:active {
        background: var(--light-blue);
        transform: scale(0.95);
        border-color: var(--tech-blue);
    }

.service-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--discovery-blue) 100%);
    border-radius: 10px;
    margin: 0 auto 10px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

    .service-item-icon i {
        font-size: 18px;
        color: white;
    }

.service-item-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ========== 宣传卡包（经营阶段） ========== */
.promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 20px 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .promo-card::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -20%;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

.promo-card-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.promo-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    line-height: 1.5;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .promo-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

/* ========== 服务分类区块 ========== */
.service-category {
    margin-bottom: 16px;
}

    .service-category:last-child {
        margin-bottom: 0;
    }

.service-category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .service-category-title::before {
        content: '';
        width: 4px;
        height: 16px;
        background: linear-gradient(135deg, var(--tech-blue) 0%, var(--discovery-blue) 100%);
        border-radius: 2px;
    }

/* ========== 成长阶段特殊样式 ========== */
.growth-section .stage-icon {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
}

/* ========== 异常处理阶段样式 ========== */
.exception-section .stage-icon {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
}

.exception-section .stage-badge {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
}

/* ========== 底部间距 ========== */
.page-bottom-spacer {
    height: 20px;
}






/* 产品详情弹窗样式 */
#productModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
}

#productModal .modal-header {
    background: linear-gradient(135deg, #0066cc 0%, #0088dd 100%);
    color: white;
    border: none;
    padding: 12px 16px;
}

    #productModal .modal-header .btn-close {
        filter: invert(1);
    }

#productModal .modal-title {
    font-size: 16px;
    font-weight: 600;
}

#productModal .modal-body {
    padding: 20px;
}

#productModal .product-detail-img img {
    max-height: 200px;
    object-fit: contain;
    border: 2px solid #e6f2ff;
    padding: 8px;
    background: #f8fafc;
}

#productModal .modal-footer {
    padding: 12px 20px 16px;
    border-top: 1px solid #f0f4f8;
}

#productModal .btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0088dd 100%);
    border: none;
}

    #productModal .btn-primary:hover {
        background: linear-gradient(135deg, #0055aa 0%, #0077cc 100%);
    }