/* ----- 首页 Hero 首屏 ----- */

/* 去掉 hero-section 的白色波浪线 */
.home-hero::after {
    display: none;
}

/* Hero 整体背景 */
.home-hero {
    padding: 0;
    min-height: auto;
    overflow: visible;
    display: block;
    align-items: initial;
}

/* 首页 Hero 背景图 */
.home-hero-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* 内容覆盖在背景图上方 */
.home-hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

/* 标题行 - 黑色 */
.home-hero-title {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: bold;
    line-height: 1.16;
    text-align: left;
    letter-spacing: 0em;
    font-feature-settings: "kern" on;
    color: #222222;
    margin-bottom: 0;
}

/* 标题行 - 蓝色 */
.home-hero-title-blue {
    color: #0534BA;
}

/* 按钮行 */
.home-hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(12px, 1.5vw, 16px);
    margin-top: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

/* 预约演示按钮 */
.btn-home-primary {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    width: clamp(140px, 12vw, 176px);
    height: clamp(40px, 3.8vw, 53px);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(270deg, #0534ba 0%, #0047f7 100%);
    text-decoration: none;
    border: none;
    transition: opacity 0.3s;
}

.btn-home-primary:hover {
    opacity: 0.9;
    color: #FFFFFF;
    text-decoration: none;
}

/* 了解鑫小禾理念按钮 */
.btn-home-outline {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #0534BA;
    width: clamp(170px, 16vw, 236px);
    height: clamp(40px, 3.8vw, 53px);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(8px, 1vw, 12px);
    gap: 10px;
    box-sizing: border-box;
    border: 1px solid #0534BA;
    background: transparent;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-home-outline:hover {
    background: #0534BA;
    color: #FFFFFF;
    text-decoration: none;
}

/* 描述文字 */
.home-hero-desc {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: normal;
    line-height: 2;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #222222;
    text-align: left;
    max-width: clamp(300px, 45vw, 640px);
    margin: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
}

/* 数据统计行 */
.home-data-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.2rem, 1vw, 1rem);
    flex-wrap: nowrap;
    text-align: center;
    border-top: 1px solid #DEDEDE;
    padding-top: clamp(0.8rem, 2vw, 1.5rem);
    width: 100%;
}

.home-data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2px, 0.5vw, 4px);
    min-width: 0;
    flex: 1;
}

.home-data-number {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(24px, 3.6vw, 52px);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #0534BA;
}

.home-data-label {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #222222;
}

.home-data-sub {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #666666;
    word-break: break-all;
}

/* ===== 首页 Hero 右侧数据统计 ===== */
.index-hero-slide .index-hero-left {
    width: 48%;

}

.index-hero-slide .index-hero-data {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;

}

.index-hero-slide .home-data-row {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: start;
    gap: clamp(20px, 2.8vw, 36px) 0;
    width: 100%;
    border-top: none;
    padding-top: 0;
    text-align: left;
}

.index-hero-slide .home-data-item {
    display: contents;
}

.index-hero-slide .home-data-number {
    font-family: 'Poppins', 'Source Han Sans', 'Noto Sans SC', sans-serif;
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 700;
    line-height: 1;
    text-align: left;
    color: #0534BA;
    margin-right: clamp(12px, 1.2vw, 18px);
    align-self: start;
}

.home-data-number-six {
    margin-left: clamp(18px, 1.2vw, 26px);
}

.index-hero-slide .home-data-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    margin-right: clamp(20px, 3vw, 24px);
    align-self: start;
}

.index-hero-slide .home-data-text:nth-of-type(4) {
    margin-right: 0;
}

.index-hero-slide .home-data-label {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: normal;
    line-height: 1.3;
    text-align: left;
    color: #222222;
}

.index-hero-slide .home-data-sub {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(11px, 0.95vw, 14px);
    font-weight: normal;
    line-height: 1.4;
    text-align: left;
    color: #666666;
    word-break: normal;
}

/* ===== 右侧能力卡片 ===== */
.hero-capability-card {
    width: clamp(300px, 26vw, 372px);
    height: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: clamp(14px, 1.4vw, 20px);
    background: #E4F1FF;
    box-shadow: 0px 0px 16px 0px rgba(5, 52, 186, 0.16);
    margin: 0 auto;
}

.hero-capability-inner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    padding: clamp(14px, 1.4vw, 20px);
    gap: clamp(12px, 1.4vw, 20px);
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    background: #FFFFFF;
}

.capability-item {
    width: calc(50% - clamp(6px, 0.7vw, 10px));
    aspect-ratio: 136 / 123;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.4vw, 20px);
    gap: clamp(10px, 1vw, 14px);
    background: #F4FBFF;
    box-sizing: border-box;
    border: 1px solid #DEDEDE;
    cursor: pointer;
    transition: all 0.3s;
}

.capability-item.active,
.capability-item:hover {
    background: #E4F1FF;
    border: 1px solid #458AF9;
}

.capability-item.active .capability-text,
.capability-item:hover .capability-text {
    color: #458AF9;
}

/* 图标外层：40x40 白色底 */
.capability-icon {
    width: clamp(32px, 2.8vw, 40px);
    height: clamp(32px, 2.8vw, 40px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    flex-shrink: 0;
}

/* 图标图片：填充图标框 */
.capability-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capability-text {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #222222;
    text-align: center;
    white-space: nowrap;
}

/* ===== 首页 Hero 响应式 ===== */

/* 平板：≤1199px */
@media (max-width: 1199px) {
    .home-hero-title {
        font-size: clamp(40px, 4.6vw, 52px);
    }

    .home-data-number {
        font-size: clamp(36px, 3.6vw, 42px);
    }

    /* 第一张 banner：右卡在中等屏更紧凑，避免与左侧文案挤压 */
    .hero-capability-inner {
        gap: clamp(10px, 1.2vw, 16px);
        padding: clamp(12px, 1.2vw, 18px);
    }

    .capability-item {
        padding: clamp(10px, 1.2vw, 16px);
        gap: clamp(8px, 0.9vw, 12px);
    }
}

/* 平板竖屏：≤991px */
@media (max-width: 991px) {
    .index-hero-slide .index-hero-left {
        width: 100%;
        max-width: none;
    }

    .index-hero-slide .index-hero-data {
        display: none;
    }

    .home-hero {
        position: relative;
        min-height: auto;
        padding: clamp(5rem, 12vw, 7rem) 0;
    }

    .home-hero .container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .home-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-hero-title {
        font-size: clamp(36px, 7vw, 48px);
        text-align: center;
    }

    .home-hero-desc {
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    }

    /* .home-hero-buttons {
      justify-content: center; 
    } 
*/

    .home-data-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(1rem, 2vw, 2rem);
    }

    .home-data-item {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .home-data-number {
        font-size: clamp(32px, 5vw, 42px);
    }

    .hero-capability-card {
        width: 100%;
        max-width: 372px;
        height: auto;
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-capability-inner {
        width: 100%;
        height: auto;
        justify-content: center;
    }

    .capability-item {
        width: calc(50% - 12px);
        max-width: 136px;
        height: auto;
        aspect-ratio: 136 / 123;
    }

    .btn-home-primary {
        width: auto;
        min-width: 160px;
        font-size: 16px;
        padding: 10px 36px;
    }

    .btn-home-outline {
        width: auto;
        min-width: 200px;
        font-size: 16px;
        padding: 10px 36px;
    }
}

/* 手机横屏：≤767px */
@media (max-width: 767px) {
    .home-hero {
        padding: clamp(4rem, 10vw, 6rem) 0;
    }

    .home-hero-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .home-hero-desc {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 1.2rem;
    }

    .home-hero-buttons {
        gap: 12px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .btn-home-primary,
    .btn-home-outline {
        width: 100%;
        max-width: 280px;
        height: 46px;
        font-size: 15px;
        padding: 10px 24px;
        min-width: 0;
    }

    .home-data-row {
        gap: 1rem;
    }

    .home-data-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 0;
    }

    .home-data-number {
        font-size: clamp(24px, 5vw, 32px);
    }

    .home-data-label {
        font-size: 14px;
    }

    .home-data-sub {
        font-size: 12px;
    }

    .hero-capability-card {
        max-width: 340px;
        padding: 16px;
    }

    .hero-capability-inner {
        padding: 16px;
        gap: 12px;
    }

    .capability-item {
        width: calc(50% - 8px);
        max-width: none;
        padding: 14px;
        gap: 12px;
        aspect-ratio: auto;
        height: auto;
        min-height: 90px;
    }

    .capability-text {
        font-size: 13px;
    }
}

/* 小手机：≤480px */
@media (max-width: 480px) {
    .home-hero {
        padding: 3.5rem 0 1.5rem 0;
    }

    .home-hero-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .home-hero-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .home-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-home-primary,
    .btn-home-outline {
        max-width: none;
        width: 100%;
        height: 44px;
        font-size: 14px;
    }

    .home-data-row {
        gap: 8px;
    }

    .home-data-number {
        font-size: 22px;
    }

    .home-data-label {
        font-size: 12px;
    }

    .home-data-sub {
        font-size: 11px;
    }

    .hero-capability-card {
        padding: 12px;
        border-radius: 16px;
    }

    .hero-capability-inner {
        padding: 12px;
        gap: 10px;
    }

    .capability-item {
        width: calc(50% - 6px);
        padding: 12px 8px;
        gap: 8px;
        min-height: 80px;
        border-radius: 8px;
    }

    .capability-text {
        font-size: 12px;
    }
}



.ai-empowerment-section {
    background-color: #fff !important;

}

/* ==================== Block 3: 行业洞察 / 痛点区块 ==================== */
.insight-section {
    background: #F4FBFF;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.insight-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.insight-label {
    display: inline-block;
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(13px, 1.2vw, 18px);
    font-weight: 500;
    line-height: 1.4;
    color: #0534BA;
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
}

.insight-title {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0em;
    color: #222222;
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
}

.insight-title .text-primary-blue {
    font-size: clamp(20px, 3vw, 40px);
    color: #0534BA;
}

.insight-subtitle {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(13px, 1.1vw, 18px);
    font-weight: normal;
    line-height: 1.8;
    color: #666666;
    max-width: 760px;
    margin: 0 auto;
}

.insight-grid .row {
    --bs-gutter-x: clamp(0.75rem, 2vw, 1.5rem);
    --bs-gutter-y: clamp(0.75rem, 2vw, 1.5rem);
}

/* 六大中心能力矩阵网格：缩小卡片间距，加大卡片宽度 */
.capability-grid {
    --bs-gutter-x: clamp(0.4rem, 0.8vw, 0.6rem);
    --bs-gutter-y: clamp(0.2rem, 0.5vw, 0.4rem);
}

.capability-grid>[class*="col"] {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

/* AI赋能区块：最后一行卡片左对齐 */
.ai-empowerment-grid {
    justify-content: flex-start;
}

/* ---- 卡片容器 ---- */
.insight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 clamp(16px, 4vw, 40px) clamp(12px, 2vw, 20px) clamp(16px, 4vw, 30px);
    /* padding: clamp(0.5rem, 1.4vw, 1rem) clamp(1rem, 2.5vw, 2rem) clamp(1.4rem, 3vw, 2.8rem); */
    gap: clamp(4px, 0.7vw, 8px);
    border-radius: clamp(12px, 1.5vw, 20px);
    background: linear-gradient(180deg, #f5fbfd 0%, #fefefe 100%);
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 20px rgba(5, 52, 186, 0.06);
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(5, 52, 186, 0.12);
    background: linear-gradient(180deg, #e4f1ff 0%, #fefefe 100%);
}

.insight-card-active {
    background: linear-gradient(180deg, #e4f1ff 0%, #fefefe 100%);
}

/* 顶部蓝色动线 */
.insight-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0534BA;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.insight-card:hover .insight-card-line,
.insight-card-active .insight-card-line {
    transform: scaleX(1);
}

/* ---- 顶部图标 ---- */
/* 尺寸用 clamp() 随视口平滑缩放，object-fit 保持比例不变形 */
.insight-card-img {
    width: clamp(60px, 6vw, 80px);
    height: clamp(60px, 6vw, 80px);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    align-self: flex-start;
    /* 用相对卡片的弹性外边距，避免固定负值在小屏错位 */
    margin-left: clamp(-18px, -2vw, -12px);
}

.insight-card-img-active {
    display: none;
}

.insight-card:hover .insight-card-img-default,
.insight-card-active .insight-card-img-default {
    display: none;
}

.insight-card:hover .insight-card-img-active,
.insight-card-active .insight-card-img-active {
    display: block;
}

/* ---- 卡片标题 ---- */
.insight-card-title {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 500;
    line-height: 1.3;
    color: #222222;
    margin: 0;
    margin-top: -10px;
}

/* ---- 卡片描述 ---- */
.insight-card-desc {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: normal;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    flex-grow: 1;
}

/* ---- 底部辅助标签 ---- */
.insight-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    padding: clamp(6px, 0.6vw, 12px);
    gap: clamp(6px, 0.6vw, 10px);
    border: 1px solid #DEDEDE;
    border-radius: clamp(6px, 0.6vw, 8px);
    background: #FFFFFF;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.insight-card-footer-icon {
    width: clamp(14px, 1.4vw, 22px);
    height: clamp(14px, 1.4vw, 22px);
    object-fit: contain;
    flex-shrink: 0;
}

.insight-card-footer-text {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: normal;
    line-height: 1.4;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== 行业洞察区块响应式 ==================== */

/* 平板 (769 – 991px) */
@media (max-width: 991px) {
    .insight-card {
        padding: 0 clamp(0.5rem, 2vw, 1rem) clamp(0.8rem, 2.5vw, 1.2rem) clamp(1.2rem, 2.8vw, 2.5rem);
        gap: clamp(5px, 1vw, 8px);
        border-radius: 16px;
    }

    .insight-card-img {
        margin-left: -15px;
    }

    .insight-card-title {
        font-size: clamp(15px, 2vw, 19px);
    }

    .insight-card-desc {
        font-size: clamp(12px, 1.4vw, 15px);
    }

    .insight-card-footer {
        padding: clamp(6px, 0.8vw, 10px);
        gap: clamp(6px, 0.8vw, 8px);
    }

    .insight-card-footer-icon {
        width: clamp(14px, 1.6vw, 18px);
        height: clamp(14px, 1.6vw, 18px);
    }

    .insight-card-footer-text {
        font-size: clamp(11px, 1.2vw, 13px);
    }
}

/* 平板竖屏 / 大手机 (577 – 768px) */
@media (max-width: 768px) {
    .insight-section {
        padding: 2rem 0;
    }

    .insight-title {
        font-size: clamp(18px, 6vw, 26px);
    }

    .insight-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .insight-card {
        padding: 0 clamp(0.5rem, 3vw, 1rem) clamp(0.75rem, 3vw, 1.2rem) clamp(1rem, 3vw, 2rem);
        gap: 6px;
        border-radius: 14px;
    }

    .insight-card-img {
        margin-left: -15px;
    }

    .insight-card-title {
        font-size: clamp(15px, 2.5vw, 18px);
    }

    .insight-card-desc {
        font-size: clamp(12px, 2vw, 14px);
        line-height: 1.7;
    }

    .insight-card-footer {
        padding: clamp(6px, 1vw, 10px);
        gap: 8px;
        border-radius: 6px;
    }

    .insight-card-footer-icon {
        width: clamp(14px, 2vw, 16px);
        height: clamp(14px, 2vw, 16px);
    }

    .insight-card-footer-text {
        font-size: clamp(11px, 1.5vw, 13px);
    }
}

/* 小手机 (≤480px) */
@media (max-width: 480px) {
    .insight-section {
        padding: 1.5rem 0;
    }

    .insight-title {
        font-size: 18px;
    }

    .insight-subtitle {
        font-size: 12px;
    }

    .insight-card {
        padding: 0 0.5rem 0.75rem 1.2rem;
        gap: 5px;
        border-radius: 12px;
    }

    .insight-card-img {
        width: 44px;
        height: 44px;
        margin-left: -10px;
        margin-bottom: 4px;
    }

    .insight-card-title {
        font-size: 15px;
    }

    .insight-card-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .insight-card-footer {
        padding: 6px 8px;
        gap: 6px;
        border-radius: 6px;
    }

    .insight-card-footer-icon {
        width: 14px;
        height: 14px;
    }

    .insight-card-footer-text {
        font-size: 11px;
    }
}

/* ==================== Block 5: 六大中心能力矩阵装饰图 ==================== */
.capability-decor {
    position: absolute;
    right: clamp(8px, 1.2vw, 16px);
    bottom: 0;
    width: clamp(70px, 12vw, 130px);
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.insight-card:hover .capability-decor,
.insight-card-active .capability-decor {
    opacity: 1;
    transform: translateY(0);
}

/* 文字层级高于装饰图 */
.capability-matrix-card .insight-card-desc,
.capability-matrix-card .insight-card-footer {
    position: relative;
    z-index: 1;
}

/* 机器人生态装饰图缩小+上移 */
.robot-eco-section .capability-decor {
    width: clamp(50px, 10vw, 100px);
    bottom: 15px;
}

@media (max-width: 768px) {
    .robot-eco-section .capability-decor {
        width: clamp(40px, 14vw, 70px);
        bottom: 10px;
    }

    .capability-decor {
        width: clamp(60px, 18vw, 90px);
    }
}

/* ==================== 行业驾驶舱 Block 9 ==================== */

.cockpit-section {
    padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
    background: #F4FBFF;
    overflow: hidden;
}

.cockpit-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---- Section 头部 ---- */
.cockpit-section .insight-header {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 60px);
}

.cockpit-section .insight-label {
    display: inline-block;
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 500;
    line-height: normal;
    color: #0534BA;
    font-feature-settings: "kern" on;
    margin-bottom: 12px;
}

.cockpit-section .insight-title {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    line-height: normal;
    color: #222222;
    font-feature-settings: "kern" on;
    margin-bottom: 12px;
}

.cockpit-section .insight-desc {
    font-size: clamp(13px, 1.2vw, 16px);
    color: #666;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ---- 内容行：左(Tab+文案) / 右(图片) ---- */
.cockpit-content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(20px, 3vw, 50px);
    justify-content: space-between;
}

.cockpit-left-col {
    flex: 1 1 52%;
    min-width: 0;
}

.cockpit-right-col {
    flex: 1 1 42%;
    min-width: 0;
}

/* ---- Tabs ---- */
.cockpit-tabs-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

.cockpit-tabs {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: #FFFFFF;
    border-radius: 99px;
    padding: 6px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.cockpit-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(8px, 1vw, 10px) clamp(18px, 2vw, 32px);
    border-radius: 99px;
    background: transparent;
    border: none;
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.cockpit-tab.active {
    color: #0534BA;
    background: transparent;
    font-weight: 600;
}

/* ---- 激活下划线 ---- */
@media (min-width: 768px) {
    .cockpit-tab.active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 3px;
        background: #0534BA;
        border-radius: 2px;
    }
}

.cockpit-tab:hover:not(.active) {
    color: #0534BA;
}

/* ---- 左侧文案 ---- */
.cockpit-left {
    padding-left: 0;
}

.cockpit-label {
    display: inline-block;
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 500;
    line-height: normal;
    color: #0534BA;
    font-feature-settings: "kern" on;
    margin-bottom: 12px;
}

.cockpit-title {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    line-height: normal;
    font-feature-settings: "kern" on;
    color: #222222;
    margin-bottom: 8px;
}

.cockpit-subtitle {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    line-height: normal;
    font-feature-settings: "kern" on;
    color: #0534BA;
    margin-bottom: clamp(20px, 2.5vw, 36px);
}

/* ---- 功能列表 ---- */
.cockpit-feature-list {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 18px);
    margin: 0 0 clamp(24px, 3vw, 40px);
    padding: 0;
}

.cockpit-feature-item {
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: normal;
    line-height: normal;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #222222;
    margin: 0;
    padding: 0;
}

/* ---- 按钮 ---- */
.cockpit-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 1.2vw, 12px) clamp(28px, 3.5vw, 48px);
    gap: 10px;
    border: none;
    border-radius: 10px;
    background: #222222;
    font-family: "Source Han Sans", "Noto Sans SC", sans-serif;
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: normal;
    line-height: normal;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.cockpit-btn:hover {
    background: #444;
    color: #FFFFFF;
    text-decoration: none;
}

.cockpit-btn svg {
    flex-shrink: 0;
    width: clamp(14px, 1vw, 20px);
    height: clamp(14px, 1vw, 20px);
    transition: transform 0.3s ease;
}

.cockpit-btn:hover svg {
    transform: translateX(4px);
}

/* ---- 右侧图片 ---- */
.cockpit-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 2vw, 20px);
}

.cockpit-img {
    display: none;
    width: 100%;
    height: auto;
    max-width: 560px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.92);
}

.cockpit-img.active {
    display: block;
}

.cockpit-img.show {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cockpit-img.exiting {
    display: block;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.22s cubic-bezier(0.55, 0.06, 0.68, 0.19),
        transform 0.22s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

/* ---- 左侧文案出场动画 ---- */
@keyframes cockpitSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cockpit-left.animating .cockpit-title,
.cockpit-left.animating .cockpit-subtitle,
.cockpit-left.animating .cockpit-feature-item {
    animation: cockpitSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.cockpit-left.animating .cockpit-subtitle {
    animation-delay: 0.05s;
}

.cockpit-left.animating .cockpit-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.cockpit-left.animating .cockpit-feature-item:nth-child(2) {
    animation-delay: 0.15s;
}

.cockpit-left.animating .cockpit-feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

/* ---- 响应式 ---- */
@media (max-width: 991px) {

    .cockpit-content-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cockpit-left-col,
    .cockpit-right-col {
        flex: 1 1 100%;
    }

    .cockpit-tabs-wrapper {
        justify-content: center;
    }

    .cockpit-left {
        text-align: center;
    }

    .cockpit-feature-item {
        text-align: center;
    }

    .cockpit-btn {
        display: flex;
        margin: 0 auto;
    }

    .cockpit-tab {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .cockpit-section {
        padding: 32px 0 50px;
    }

    /* 移动端：上(Tab) → 中(图片) → 下(文案) 纵向布局
       用 display:contents 把 Tab 与文案提升为 row 的直接子项，便于统一排序 */
    .cockpit-content-row {
        flex-direction: column;
    }

    .cockpit-left-col {
        display: contents;
    }

    .cockpit-tabs-wrapper {
        order: 0;
    }

    .cockpit-right-col {
        order: 1;
        margin: 20px 0;
    }

    .cockpit-left {
        order: 2;
    }

    .cockpit-tabs {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .cockpit-tab {
        padding: 8px 16px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .cockpit-right {
        padding: 0;
    }

    .cockpit-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cockpit-tab {
        padding: 8px 14px;
        font-size: 11px;
    }
}

/* ==================== Block 10: 客户案例 ==================== */
.customer-case-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #F4FBFF;
    position: relative;
    overflow: hidden;
}

.customer-case-grid {
    margin-top: clamp(40px, 5vw, 60px);
}

.customer-case-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(5, 52, 186, 0.08);
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 52, 186, 0.12);
}

.customer-case-header {
    position: relative;
    border-radius: 10px 10px 0 0;
    opacity: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(14px, 1.8vw, 20px) clamp(14px, 1.8vw, 20px) clamp(20px, 2.8vw, 30px) clamp(14px, 1.8vw, 20px);
    gap: clamp(6px, 0.8vw, 10px);
    align-self: stretch;
    background: linear-gradient(180deg, #0047f7 0%, #0534ba 100%);
    /* min-height: 120px; */
    justify-content: center;
}

.customer-case-header-text {
    position: relative;
    z-index: 2;
    /* max-width: 62%; */
}

.customer-case-title {
    color: #ffffff;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 600;
    line-height: clamp(1.2, 1.5, 1.4);
    letter-spacing: clamp(0em, 0.03vw, 0.02em);
    margin: 0;
}

.customer-case-tag {
    display: inline-flex;
    width: fit-content;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(11px, 1vw, 13px);
    line-height: clamp(1.4, 2, 1.8);
    letter-spacing: clamp(0em, 0.02vw, 0.02em);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: clamp(3px, 0.4vw, 4px) clamp(8px, 1vw, 10px);
    margin-top: clamp(12px, 1.8vw, 20px);
}

.customer-case-img {
    position: absolute;
    right: 6px;
    top: -50px;
    width: clamp(110px, 11vw, 150px);
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.customer-case-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(16px, 2vw, 24px) clamp(14px, 1.8vw, 20px);
    background: #ffffff;
    border-radius: 0 0 10px 10px;
}

.customer-case-highlight {
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: clamp(1.4, 1.8, 1.7);
    letter-spacing: clamp(0em, 0.02vw, 0.02em);
    color: #1a1a1a;
    margin: 0;
    padding-left: clamp(10px, 1vw, 12px);
    border-left: 3px solid #0534ba;
    font-weight: 500;
}

.customer-case-quote {
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: clamp(1.4, 1.8, 1.7);
    letter-spacing: clamp(0em, 0.02vw, 0.02em);
    color: #666666;
    margin: 0;
    margin-top: auto;
}

.customer-case-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(32px, 4vw, 48px);
}

.customer-case-more {
    font-family: "Source Han Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: clamp(0em, 0.03vw, 0.02em);
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #0534ba;
    border-radius: 10px;
    opacity: 1;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 1.2vw, 12px) clamp(28px, 4vw, 48px);
    gap: clamp(6px, 0.8vw, 10px);
    box-sizing: border-box;
    border: 1px solid #0534ba;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.customer-case-more:hover {
    background: #0534ba;
    color: #ffffff;
}

.customer-case-more svg {
    width: clamp(16px, 1.5vw, 20px);
    height: clamp(16px, 1.5vw, 20px);
}

@media (max-width: 767.98px) {
    .customer-case-header {
        padding: clamp(14px, 3vw, 16px);
        min-height: 130px;
    }

    .customer-case-title {
        font-size: clamp(13px, 2.2vw, 15px);
        line-height: 1.3;
    }

    .customer-case-tag {
        font-size: clamp(10px, 1.8vw, 12px);
        line-height: 1.5;
        padding: clamp(2px, 0.5vw, 4px) clamp(6px, 1.5vw, 10px);
        margin-top: clamp(8px, 2vw, 14px);
    }

    .customer-case-img {
        width: clamp(80px, 18vw, 100px);
        right: -6px;
        top: -6px;
    }

    .customer-case-body {
        padding: clamp(14px, 3vw, 20px) clamp(12px, 2.5vw, 16px);
        gap: clamp(6px, 1.5vw, 10px);
    }

    .customer-case-highlight {
        font-size: clamp(14px, 2.2vw, 16px);
        line-height: 1.5;
        padding-left: clamp(8px, 1.5vw, 10px);
    }

    .customer-case-quote {
        font-size: clamp(12px, 2vw, 14px);
        line-height: 1.5;
    }

    .customer-case-more {
        width: 100%;
        padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    }

    .customer-case-more-wrap {
        margin-top: clamp(24px, 5vw, 36px);
    }
}

/* 小手机 (≤480px) */
@media (max-width: 480px) {
    .customer-case-section {
        padding: clamp(40px, 10vw, 60px) 0;
    }

    .customer-case-header {
        padding: 12px 12px 18px 12px;
        gap: 6px;
    }

    .customer-case-title {
        font-size: 13px;
        line-height: 1.3;
        letter-spacing: 0.01em;
    }

    .customer-case-tag {
        font-size: 10px;
        line-height: 1.4;
        padding: 2px 8px;
        margin-top: 8px;
    }

    .customer-case-img {
        width: 70px;
        right: -4px;
        top: -4px;
    }

    .customer-case-body {
        padding: 14px 12px;
        gap: 6px;
    }

    .customer-case-highlight {
        font-size: 14px;
        line-height: 1.45;
        padding-left: 8px;
        border-left-width: 2px;
    }

    .customer-case-quote {
        font-size: 12px;
        line-height: 1.45;
    }

    .customer-case-more-wrap {
        margin-top: 24px;
    }

    .customer-case-more {
        font-size: 14px;
        padding: 10px 20px;
        gap: 6px;
    }

    .customer-case-more svg {
        width: 16px;
        height: 16px;
    }
}