/* ============================================
   迅联互动地图官网 - 首页样式
   ============================================ */
/* ---------- 首屏 Hero ---------- */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
}
.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero h1 small {
    font-size: 20px;
    color: var(--gray);
    display: block;
    margin-top: 8px;
}
.hero p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero-buttons .btn {
    margin-right: 16px;
}
.hero-img-box {
    background: #dceaff;
    border-radius: 12px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #165DFF;
    font-size: 20px;
}
.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ---------- 核心能力 ---------- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 30px;
    margin-bottom: 12px;
}
.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}
.feature-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}
.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ---------- 产品场景 ---------- */
.scene-wrap {
    background-color: var(--light-gray);
}

/* ---------- 下载区域 ---------- */
.download-section {
    text-align: center;
}
.download-desc {
    margin: 16px 0 30px;
    color: var(--gray);
}
.download-actions .btn {
    margin: 0 6px;
}

/* ---------- 移动端适配 ---------- */
@media (max-width: 768px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero-buttons .btn {
        margin-bottom: 12px;
    }
    .download-actions .btn {
        margin: 6px;
    }
}
