/* ==============================================
   INCUBATOR INTRO — 創新育成中心 業務簡介
   ============================================== */

/* ── 統計數字 ── */
.incubator-stats {
    margin-bottom: 56px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.stat-card {
    background: linear-gradient(135deg, #004c99 0%, #1a6bbf 100%);
    border-radius: 12px;
    padding: 28px 16px 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 76, 153, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 76, 153, 0.26);
}

.stat-value {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-unit {
    font-size: 16px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.85;
}

.stat-label {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.75;
    letter-spacing: 0.04em;
}

/* ── 業務項目 ── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    padding: 28px 20px 24px;
    text-align: center;
    background: #f8fafd;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.service-card:hover {
    border-color: #004c99;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 76, 153, 0.10);
}

.service-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 14px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a52;
    margin: 0 0 10px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── 聯絡資訊 ── */
.incubator-contact .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.incubator-contact .contact-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.contact-label {
    flex-shrink: 0;
    min-width: 40px;
    font-weight: 700;
    color: #004c99;
    background: #edf2fa;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 13px;
    text-align: center;
}

.contact-ext {
    color: #888;
    font-size: 14px;
}

.incubator-contact .contact-list a {
    color: #004c99;
    text-decoration: none;
}

.incubator-contact .contact-list a:hover {
    text-decoration: underline;
}
