/* ===== .home1-banner ===== */
/* ===== custom-index.css — 首页（index.html）专属样式：Banner / 产品展示 / 数据条 / 核心能力 / 服务入口 / 数字滚动 等首页区块 ===== */
/*=====================================
 首页
========================================*/
.home1-banner-section .banner-bg {
    min-height: 100vh;
}
.home1-banner-section .banner-content h1 {
    /* 流式缩放：超小屏≈30px，桌面保持原 4.5rem(72px) 不变，中间随视口平滑过渡 */
    font-size: clamp(1.9rem, 5.5vw + 0.5rem, 4.5rem);
    font-weight: 500;
    line-height: 1.12;
    overflow-wrap: break-word;
}
@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner-section .banner-bg {
        min-height: 100vh;
    }
}
@media (max-width: 1399px) {
    .home1-banner-section .banner-bg {
        min-height: 100vh;
    }
}
@media (max-width: 575px) {
    .home1-banner-section .banner-bg {
        min-height: 100vh;
    }
}
.home1-banner-section .banner-content .banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}
.home1-banner-section .banner-content h1 {
    margin-bottom: 40px;
}
/* 超小屏：收拢间距，标题更贴合底部、避免被按钮挤出 */
@media (max-width: 575px) {
    .home1-banner-section .banner-content {
        padding: 80px 16px 56px;
    }
    .home1-banner-section .banner-content h1 {
        margin-bottom: 24px;
        font-size: 2.5rem;
    }
}
@media (max-width: 380px) {
    .home1-banner-section .banner-content {
        padding: 70px 14px 48px;
    }
    .home1-banner-section .banner-content h1 {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .home1-banner-section .banner-content .banner-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .home1-banner-section .banner-content .banner-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
}
.home1-banner-section .banner-content .banner-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== .home2-counter ===== */
.home2-counter-section .single-countdown .number span {
    font-size: 3rem;
}
/*=====================================
 数字滚动 — 样式优化
========================================*/
/* 卡片整体样式 */
.home2-counter-section .single-countdown {
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: var(--radius);
}
/* 卡片悬停效果 — 只上移，不加卡片阴影 */
.home2-counter-section .single-countdown:hover {
    transform: translateY(-6px);
}
/* 数字部分样式 — 实心渐变 */
.home2-counter-section .single-countdown .number h2 {
    -webkit-text-fill-color: var(--purple);
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-kanit);
    letter-spacing: 0.08em;
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    transition: transform 0.3s, text-shadow 0.3s;
}
/* 卡片悬停时数字放大 + 文字阴影 */
.home2-counter-section .single-countdown:hover .number h2 {
    transform: scale(1.05);
    text-shadow: 0 10px 30px rgba(90, 76, 250, 0.4), 0 4px 12px rgba(59, 144, 244, 0.3);
}
/* +号样式 — 单独缩小 */
.home2-counter-section .single-countdown .number span {
    -webkit-text-fill-color: var(--purple);
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-kanit);
    font-size: 50px; /* +号缩小为数字的一半 */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
}
/* 描述文字样式 */
.home2-counter-section .single-countdown > span:last-child {
    color: var(--paragraph-color);
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-transform: none;
    transition: color 0.3s;
    display: block;
    margin-top: 1.5rem;
}
/* 卡片悬停时描述文字颜色变化 */
.home2-counter-section .single-countdown:hover > span:last-child {
    color: var(--dark);
}
/* 响应式适配 */
@media (max-width: 1199px) {
    .home2-counter-section .single-countdown .number h2 {
        font-size: 100px;
    }
    .home2-counter-section .single-countdown .number span {
        font-size: 45px;
    }
}
@media (max-width: 991px) {
    .home2-counter-section .single-countdown .number h2 {
        font-size: 90px;
    }
    .home2-counter-section .single-countdown .number span {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .home2-counter-section .single-countdown .number h2 {
        font-size: 80px;
    }
    .home2-counter-section .single-countdown .number span {
        font-size: 35px;
    }
    .home2-counter-section .single-countdown > span:last-child {
        font-size: 14px;
    }
}

/* ===== .hero-cert ===== */
/* ============================================
   Hero 认证标识条
   ============================================ */
.hero-cert-strip {
    margin-top: 8px;
}
.hero-cert-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient);
    margin-bottom: 36px;
    border-radius: 1px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.hero-cert-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.hero-cert-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    white-space: nowrap;
    /*text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);*/
}
.hero-cert-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}
.hero-cert-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    flex-shrink: 0;
}


@media (max-width: 991px) {
    .hero-cert-items {
        gap: 4px;
    }
    .hero-cert-sep {
        margin: 0 6px;
    }
    .hero-cert-item {
        font-size: 0.8rem;
    }
    .hero-cert-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 575px) {
    .hero-cert-divider {
        width: 50px;
        margin-bottom: 14px;
    }
    .hero-cert-item {
        font-size: 0.75rem;
        gap: 5px;
    }
    .hero-cert-icon {
        width: 13px;
        height: 13px;
    }
    .hero-cert-sep {
        margin: 0 4px;
        width: 3px;
        height: 3px;
    }
}
/* ===== .home4-banner2 ===== */
.home4-banner2-section .banner-content-wrap .banner-content h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
}
.home4-banner2-section .banner-content-wrap .banner-content {
    margin-bottom: 2.25rem;
}
.home4-banner2-section .banner-content-wrap .scroll-down-btn span {
    font-size: 0.875rem;
}
.home4-banner2-section .banner-content-wrap {
    max-width: 410px;
}
/* ============================================================
   自适应优化：首页 "未来智造 由此开始" 视频区域（home4-banner2-section）
   
   原样式（style.css）仅按 ≥1200px 大屏调：
     ① h2 { font-size: 75px }（custom-index.css 降到 4rem，但仍无移动端媒体查询）
     ② video { height: 85vh } → 手机上过高
     ③ h2:nth-child(2) { padding-left: 20px; justify-content: end } → 两行错位排版在窄屏溢出
   
   修复：逐级缩放标题 + 降低视频高度 + 窄屏改为居中堆叠
   ============================================================ */
/* 平板横屏 / 小笔记本（992 ~ 1199px） */
@media (max-width: 1199px) {
    .home4-banner2-section video {
        height: 70vh;
    }
    .home4-banner2-section .banner-content-wrap .banner-content h2 {
        font-size: 3.25rem;
    }
    .home4-banner2-section .banner-content-wrap {
        max-width: 330px;
    }
}
/* 平板竖屏及更窄（≤ 991px） */
@media (max-width: 991px) {
    .home4-banner2-section video {
        height: 60vh;
        min-height: 360px;
    }
    /*.home4-banner2-section .banner-content-wrap {
        padding: 50px 20px;
        max-width: 100%;
    }*/
    .home4-banner2-section .banner-content-wrap .banner-content h2 {
        font-size: 2.5rem;
        letter-spacing: 0.03em;
    }
    /* 窄屏取消第二行右对齐，改为居中堆叠 */
    .home4-banner2-section .banner-content-wrap .banner-content h2:nth-child(2) {
        padding-left: 0;
        justify-content: center;
    }
}
/* 手机及小平板竖屏（≤ 767px） */
@media (max-width: 767px) {
    .home4-banner2-section video {
        height: 50vh;
        min-height: 300px;
    }
    .home4-banner2-section .banner-content-wrap {
        /*padding: 40px 16px;*/
        max-width: 270px;
    }
    .home4-banner2-section .banner-content-wrap .banner-content h2 {
        font-size: 2rem;
    }
}
/* 超小屏（≤ 575px） */
@media (max-width: 575px) {
    .home4-banner2-section video {
        height: 45vh;
        min-height: 260px;
    }
    .home4-banner2-section .banner-content-wrap {
        padding: 32px 14px;
    }
    .home4-banner2-section .banner-content-wrap .banner-content h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
}

/* ===== .hero-brand ===== */
/* ============================================
   Hero品牌标签 (由 hero-cert-strip 替代)
   ============================================ */
.hero-brand-tags {
    display: none;
}

/* ===== .hero-tag ===== */
.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 20px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 30px;
    font-size: 0.875rem;
    color: #fff;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.hero-tag:hover {
    background: rgba(0,0,0,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ===== .home4-project ===== */
.home4-project-section .project-slider-area {
    padding-left: 0;
}
.home4-project-section.home-solutions-section .project-title-area {
    flex-direction: row;
}
.home4-project-section.home-solutions-section {
    padding-left: 0;
}
/*=====================================
 应用行业卡片悬停效果
========================================*/
.home4-project-section.home-solutions-section .project-card3 {
    border-radius: 0.5rem;
    overflow: hidden;
    display: block;
}
.home4-project-section.home-solutions-section .project-card3 > img {
    position: relative;
    display: block;
    width: 100%;
    transition: transform 0.7s cubic-bezier(0.3, 1, 0.3, 1);
    will-change: transform;
}
.home4-project-section.home-solutions-section .project-card3:hover > img {
    transform: scale(1.1);
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap {
    align-items: flex-start;
    padding: 20px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.35) 100%);
    transition: background 0.5s ease;
}
.home4-project-section.home-solutions-section .project-card3:hover .project-content-wrap {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.62) 60%, rgba(0, 0, 0, 0.72) 100%);
}
.home4-project-section.home-solutions-section .project-card3 .project-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 {
    margin-bottom: 0;
    order: 1;
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 a,
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 span {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 a:hover,
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 span:hover {
    color: #fff;
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags {
    order: 2;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.45s ease-out;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    gap: 10px;
}
.home4-project-section.home-solutions-section .project-card3:hover .project-content-wrap .project-content .industry-tags {
    opacity: 1;
    transform: translateY(0);
    max-height: 220px;
    margin-top: 18px;
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags li a,
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags li span {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    margin-bottom: 0;
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags li a:hover,
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags li span:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: #fff;
    color: var(--paragraph-color);
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-more {
    order: 3;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 24px;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease-out 0.08s;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-more i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.home4-project-section.home-solutions-section .project-card3:hover .project-content-wrap .project-content .industry-more {
    opacity: 1;
    transform: translateY(0);
}
.home4-project-section.home-solutions-section .project-card3:hover .project-content-wrap .project-content .industry-more i,
.home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-more:hover i {
    transform: translateX(4px);
}
@media (max-width: 1399px) {
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap {
        padding: 24px;
    }
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 a,
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 span {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .home4-project-section.home-solutions-section .project-card3 {
        aspect-ratio: 3 / 4;
    }
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap {
        padding: 20px;
    }
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 a,
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content h3 span {
        font-size: 1.375rem;
    }
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags li a,
    .home4-project-section.home-solutions-section .project-card3 .project-content-wrap .project-content .industry-tags li span {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ===== .product-nav ===== */
/* ================================================================
   PRODUCT SHOWCASE — Bodor Style
   ================================================================ */
.product-nav {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dcdcdc;
    gap: 1.25rem;
    width: 90%;
    margin: 0 auto 4rem;
}
.product-nav-item {
    font-size: 1.5rem;
    font-weight: normal;
    color: #999;
    cursor: pointer;
    padding: 0.6rem 2.5rem;
    transition: all 0.3s;
    border: none;
    background: none;
    position: relative;
    margin-bottom: -1px;
    white-space: nowrap;
}
.product-nav-item::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-nav-item:hover,
.product-nav-item.active {
    color: var(--dark);
    font-weight: 600;
}
.product-nav-item:hover::before,
.product-nav-item.active::before {
    width: 100%;
}

/* ===== .category-view ===== */
/* Category View */
.category-view {
    display: none;
}
.category-view.active {
    display: block;
}

/* ===== .category-layout ===== */
.category-layout {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
}

/* ===== .category-info ===== */
/* Left Card — Dark (Bodor Style) */
.category-info-card {
    width: 280px;
    flex-shrink: 0;
    min-height: 540px;
    background: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 40px 32px 54px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s, box-shadow 0.4s, background-image 0.6s ease;
}
.category-info-card.robot {
    background-image: url(../img/product/bg/laser-robot-1.jpg);
}
.category-info-card.robot:hover {
    background-image: url(../img/product/bg/laser-robot-0.jpg);
}
.category-info-card.cut {
    background-image: url(../img/product/bg/laser-cutting-1.jpg);
}
.category-info-card.cut:hover {
    background-image: url(../img/product/bg/laser-cutting-0.jpg);
}
.category-info-card.weld {
    background-image: url(../img/product/bg/laser-welding-1.jpg);
}
.category-info-card.weld:hover {
    background-image: url(../img/product/bg/laser-welding-0.jpg);
}
.category-info-card.clean {
    background-image: url(../img/product/bg/laser-cleaning-1.jpg);
}
.category-info-card.clean:hover {
    background-image: url(../img/product/bg/laser-cleaning-0.jpg);
}
.category-info-card.custom {
    background-image: url(../img/product/bg/laser-welding-1.jpg);
}
.category-info-card.custom:hover {
    background-image: url(../img/product/bg/laser-welding-0.jpg);
}
.category-info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    transition: background 0.4s;
}
.category-info-card:hover::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
}
.category-info-card .wave-bg {
    display: none;
}
.category-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.category-info-card h3 {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.category-info-card .cat-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}
.category-info-card .cat-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    position: absolute;
    bottom: 40px;
    right: 40px;
    transition: gap 0.3s, color 0.3s;
    z-index: 2;
}
.category-info-card .cat-more:hover {
    gap: 10px;
    color: var(--purple)
}
.category-info-card .cat-more-btn {
    z-index: 2;
    position: absolute;
    bottom: 40px;
    right: 40px;
}
/* 左侧分类卡片优化 */
.category-info-card {
    transition: transform 0.4s, box-shadow 0.4s;
}
.category-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.category-info-card .cat-more {
    transition: gap 0.3s, color 0.3s;
}
.category-info-card .cat-more:hover {
    gap: 10px;
    color: var(--blue);
}

/* ===== .product-grid ===== */
/* Right Grid — Light Gray Cards (Bodor #F6F7F8) */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 1rem;
    align-content: start;
}
.product-grid.single-col {
    grid-template-columns: 1fr;
}
/* Cut grid — row 1: 3 items, row 2: 2 items */
.product-grid.cut-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
}
.product-grid.cut-grid .product-card-bd:nth-child(1),
.product-grid.cut-grid .product-card-bd:nth-child(2),
.product-grid.cut-grid .product-card-bd:nth-child(3) {
    grid-column: span 2;
}
.product-grid.cut-grid .product-card-bd:nth-child(4),
.product-grid.cut-grid .product-card-bd:nth-child(5),
.product-grid.cut-grid .product-card-bd:nth-child(6) {
    grid-column: span 2;
}

/* ===== .product-card ===== */
.product-card-bd.span-2 {
    grid-column: span 2;
}
.product-card-bd {
    background: #F6F7F8;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    min-height: 260px;
}
.product-card-bd:nth-child(even) {
    background: #EEF0F4;
}
.product-card-bd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-card-bd .card-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.product-card-bd .card-img img {
    max-width: 88%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s;
}
.product-card-bd:hover .card-img img {
    transform: scale(1.05);
}
.product-card-bd .card-name {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 1rem;
    color: #111;
    z-index: 1;
    max-width: 90%;
}
.product-card-bd.featured {
    min-height: 300px;
}
.product-card-bd.featured .card-img img {
    max-height: 90%;
}
/* 产品卡片悬停遮罩 + 了解详情按钮 */
.product-card-bd .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    padding-bottom: 20px;
    padding-right: 10px;
    transition: opacity 0.4s;
    z-index: 3;
    border-radius: 10px;
}
.product-card-bd:hover .card-overlay {
    opacity: 1;
}
.product-card-bd .card-overlay .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #fff;
    font-size: 0.875rem;
    padding: 8px 22px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(20px);
    opacity: 0;
}
.product-card-bd:hover .card-overlay .card-btn {
    transform: translateX(0);
    opacity: 1;
    gap: 8px;
}
.product-card-bd .card-overlay .card-btn:hover {
    color: var(--blue);
    font-weight: 500;
    gap: 12px;
}
/* 产品名称样式优化 */
.product-card-bd .card-name {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 1rem;
    color: var(--dark-light);
    z-index: 1;
    max-width: 90%;
    transition: color 0.3s;
}
.product-card-bd:hover .card-name {
    color: var(--primary-color);
    z-index: 4;
}

/* ===== .product-badge ===== */
/* ============================================
   产品NEW标签
   ============================================ */
.product-badge.new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.08em;
    z-index: 2;
    animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* ===== .home2-property ===== */
/*=====================================
 产品中心 — 混合方案优化
========================================*/
/* 副标题 */
.home2-property-description-section .section-title .section-subtitle {
    font-size: 16px;
    color: #777;
    margin-top: 8px;
    letter-spacing: 0.05em;
    font-weight: 400;
}
/* Tab导航优化 — 简洁下划线风格 */
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs {
    border-bottom: 2px solid #eee;
    padding-left: 0;
    gap: 0;
    justify-content: center;
}
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link {
    font-size: 1.25rem;
    color: #999;
    padding: 12px 32px;
    border: none;
    position: relative;
    background: none;
    background-image: none !important;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link:hover,
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link.active {
    color: var(--dark);
    background-image: none !important;
    background-size: 0 !important;
    font-weight: 500;
    font-size: 1.5rem;
}
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link:hover::after,
.home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link.active::after {
    width: 100%;
}
@media (max-width: 767px) {
    .home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .home2-property-description-section .property-content-wrap .property-description-nav .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ===== .hero-data ===== */
/* =====================================
  Hero Data Strip - 核心数据条（Hero 下方）
===================================== */
.hero-data-strip {
    background: #F7F7FA;
    padding: 2rem 0;
}
.hero-data-strip .row > [class*="col-"]:last-child .data-strip-item {
    border-right: none;
}


@media (max-width: 1199px) {
    .hero-data-strip {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .hero-data-strip {
        padding: 48px 0;
    }
    .hero-data-strip .row > [class*="col-"]:nth-child(3n) .data-strip-item {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .hero-data-strip .row > [class*="col-"]:nth-child(2n) .data-strip-item {
        border-right: none;
    }
    .hero-data-strip .row > [class*="col-"]:last-child .data-strip-item {
        border-right: none;
    }
}

@media (max-width: 575px) {
    .hero-data-strip {
        padding: 36px 0;
    }
}
/* ===== .data-strip ===== */
.data-strip-item {
    text-align: center;
    padding: 28px 16px;
    /*border-right: 1px solid #eef0f2;*/
    transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.data-strip-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.data-strip-item:hover .data-strip-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 14px rgba(59, 144, 244, 0.5));
}
.data-strip-number .data-strip-digit,
.data-strip-number span {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.data-strip-number span {
    font-size: 2rem;
    font-weight: 500;
    align-self: center;
    margin-top: -8px;
}
.data-strip-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}


@media (max-width: 1199px) {
    .data-strip-number .data-strip-digit {
        font-size: 3.25rem;
    }
    .data-strip-number span {
        font-size: 1.625rem;
    }
}

@media (max-width: 991px) {
    .data-strip-item {
        padding: 24px 12px;
    }
    .data-strip-number .data-strip-digit {
        font-size: 2.75rem;
    }
    .data-strip-number span {
        font-size: 1.375rem;
    }
    .data-strip-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .data-strip-item {
        border-right: 1px solid #eef0f2;
    }
}

@media (max-width: 575px) {
    .data-strip-item {
        padding: 20px 8px;
    }
    .data-strip-number .data-strip-digit {
        font-size: 2.5rem;
    }
    .data-strip-number span {
        font-size: 1.25rem;
    }
    .data-strip-label {
        font-size: 0.8rem;
    }
}
/* ===== .core-strengths ===== */
/* =====================================
  Core Strengths Bar - 核心能力条（SVG 线性图标版）
===================================== */
.core-strengths-bar {
    background: var(--bg);
    border-top: 1px solid #ebedf0;
    border-bottom: 1px solid var(--divider);
    padding: 0;
    position: relative;
}
.core-strengths-bar .container-fluid {
    max-width: 100%;
}

/* ===== .strengths-grid ===== */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

/* ===== .strength-item ===== */
.strength-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 54px 48px;
    position: relative;
    /*background: #f9fafc;*/
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
/*.strength-item:nth-child(2),
.strength-item:nth-child(4) {
    background: #e8ecf5;
}*/
.strength-item:last-child {
    border-right: none;
}
.strength-item:hover .strength-icon {
    background: #e1efff;
    box-shadow: 0 6px 20px rgba(59, 144, 244, 0.18);
}
.strength-item:hover .strength-icon .icon-stroke {
    transform: scale(1.08);
}
@media (max-width: 1399px) {
    .strength-item {
        padding: 48px 36px;
    }
}

/* ===== .strength-icon ===== */
/*.strength-item:hover {
    background: #eef5ff;
    box-shadow: inset 0 0 0 1px rgba(59, 144, 244, 0.08);
}*/
/* 全局统一的精致线性图标容器 */
.strength-icon {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    transition: all 0.35s ease;
}
.strength-icon .icon-stroke {
    width: 48px;
    height: 48px;
    transition: transform 0.35s ease;
}

/* ===== .strength-body ===== */
.strength-body h4 {
    font-size: 1.5rem;
    color: var(--title-color);
    margin: 0 0 10px 0;
    letter-spacing: 0.01em;
}
.strength-body p {
    font-size: 1rem;
    color: var(--dark-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== .about-counter ===== */
/*=====================================
  关于我们板块内的核心能力条适配（毛玻璃）
========================================*/
.about-counter-fusion .strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /*margin-top: 50px;*/
}
.about-counter-fusion .strength-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);*/
    border-radius: 16px;
    /*backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);*/
    padding: 40px 32px;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-right: none;
    text-align: center;
}
/*.about-counter-fusion .strength-item:nth-child(2),
.about-counter-fusion .strength-item:nth-child(4) {
    background: rgba(255, 255, 255, 0.08);
}*/
.about-counter-fusion .strength-item:last-child {
    border-right: none;
}
.about-counter-fusion .strength-item:hover {
    /*background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);*/
    transform: translateY(-6px);
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);*/
}
.about-counter-fusion .strength-icon {
    background: transparent;
    border: none;
    transition: all 0.35s ease;
}
.about-counter-fusion .strength-item:hover .strength-icon {
    background: transparent;
    box-shadow: none;
    transform: scale(1.08);
}
.about-counter-fusion .strength-icon .icon-stroke {
    stroke: url(#icon-gradient);
}
.about-counter-fusion .strength-icon .icon-stroke circle[fill*="gradient"],
.about-counter-fusion .strength-icon .icon-stroke circle[fill] {
    fill: url(#icon-gradient);
}
.about-counter-fusion .strength-body {
    text-align: center;
}
.about-counter-fusion .strength-body h4 {
    color: var(--white-color);
}
.about-counter-fusion .strength-body p {
    color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1199px) {
    .about-counter-fusion .strength-item {
        padding: 32px 24px;
    }
}
@media (max-width: 991px) {
    .about-counter-fusion .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
    .about-counter-fusion .strength-item {
        border-bottom: none;
        padding: 32px 24px;
    }
    .about-counter-fusion .strength-item:nth-child(2n+1) {
        border-right: none;
    }
}
/*=====================================
  关于我们 + 数字滚动 — 融合板块
========================================*/
.about-counter-fusion {
    position: relative;
    padding: 110px 0 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.about-counter-fusion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.40) 45%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}
.about-counter-fusion .container {
    position: relative;
    z-index: 2;
}
.about-counter-fusion .about-counter-title {
    color: var(--white-color);
}
.about-counter-fusion .about-counter-title .section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.about-counter-fusion .about-counter-title h2 {
    font-size: 4rem;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.about-counter-fusion .about-counter-title .about-counter-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}
.about-counter-fusion .about-counter-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 40px auto 0;
}
.about-counter-fusion .counter-row {
    margin-top: 60px;
}
/* 数据卡片样式覆盖 */
.about-counter-fusion .single-countdown {
    text-align: center;
    padding: 24px 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.about-counter-fusion .single-countdown:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.20);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.about-counter-fusion .single-countdown .number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 14px;
}
.about-counter-fusion .single-countdown .number h2,
.about-counter-fusion .single-countdown .number span {
    font-family: var(--font-kanit);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
    color: var(--white-color);
    -webkit-text-fill-color: var(--white-color);
    -webkit-text-stroke: 0;
    background: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.02em;
}
.about-counter-fusion .single-countdown .number span {
    font-size: 2.25rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 8px;
    opacity: 0.9;
}
.about-counter-fusion .single-countdown > span:last-child {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-top: 0;
    transition: color 0.3s;
}
.about-counter-fusion .single-countdown:hover > span:last-child {
    color: var(--white-color);
}
/* 响应式适配 */
@media (max-width: 1199px) {
    .about-counter-fusion {
        padding: 90px 0 100px;
        min-height: auto;
    }
    .about-counter-fusion .about-counter-title h2 {
        font-size: 2.75rem;
    }
    .about-counter-fusion .single-countdown .number h2 {
        font-size: 3.75rem;
    }
    .about-counter-fusion .single-countdown .number span {
        font-size: 1.875rem;
    }
}
@media (max-width: 991px) {
    .about-counter-fusion {
        padding: 70px 0 80px;
    }
    .about-counter-fusion .about-counter-title h2 {
        font-size: 2.25rem;
    }
    .about-counter-fusion .about-counter-title .about-counter-desc {
        font-size: 1rem;
    }
    .about-counter-fusion .single-countdown .number h2 {
        font-size: 3.25rem;
    }
    .about-counter-fusion .single-countdown .number span {
        font-size: 1.625rem;
    }
    .about-counter-fusion .counter-row {
        margin-top: 40px;
    }
}
@media (max-width: 575px) {
    .about-counter-fusion {
        padding: 55px 0 65px;
    }
    .about-counter-fusion .about-counter-title h2 {
        font-size: 2.25rem;
    }
    .about-counter-fusion .about-counter-title .about-counter-desc {
        font-size: 0.875rem;
    }
    .about-counter-fusion .about-counter-divider {
        margin-top: 28px;
    }
    .about-counter-fusion .single-countdown {
        padding: 18px 6px;
    }
    .about-counter-fusion .single-countdown .number h2 {
        font-size: 2.75rem;
    }
    .about-counter-fusion .single-countdown .number span {
        font-size: 1.375rem;
    }
    .about-counter-fusion .single-countdown > span:last-child {
        font-size: 0.8125rem;
    }
}

/* ===== .blog-card ===== */
.blog-card .blog-content h4 a {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
}
.blog-card .blog-content .blog-meta ul li a.blog-date {
    text-decoration: none;
}

/* ===== .slider-btn ===== */
.slider-btn-grp .slider-btn:hover {
    background: var(--gradient);
    border-color: var(--purple);
}

/* ===== .home5-service ===== */
.home5-service-section {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.60) 45%, rgba(0, 0, 0, 0.90) 100%), url(../img/bg/product-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px 0 90px;
}
/* 服务卡片图标 — 渐变线性图标（覆盖 style.css 灰色 fill） */
.home5-service-section .service-slider-area .service-card2 .icon svg {
    fill: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.home5-service-section .service-slider-area .service-card2:hover .icon svg {
    transform: scale(1.08);
}
/*=====================================
  服务支持卡片 — 磨砂玻璃效果（与关于我们核心能力条一致）
========================================*/
.home5-service-section .service-slider-area .service-card2 {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.home5-service-section .service-slider-area .service-card2:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.home5-service-section .service-slider-area .service-card2 h3 a {
    color: var(--white-color);
}
.home5-service-section .service-slider-area .service-card2 h3 a:hover {
    color: #3B90F4;
}
.home5-service-section .service-slider-area .service-card2 p {
    color: rgba(255, 255, 255, 0.75);
}
.home5-service-section .service-slider-area .service-card2 .arrow svg {
    fill: rgba(255, 255, 255, 0.06);
}
.home5-service-section .service-slider-area .service-card2 .arrow svg:hover {
    fill: rgba(59, 144, 244, 0.2);
}

/* ===== .home3-blog ===== */
.home3-blog-section .blog-card-area {
    margin-top: 0;
}
/* 新闻列表卡片阴影 */
.home3-blog-section .blog-card.style-3 {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.home3-blog-section .blog-card.style-3:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* ===== .product-showcase ===== */
/* Product Showcase Section */
.product-showcase-section {
    padding: 30px 0 100px;
    background-color: var(--white-color);
}
.product-showcase-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 696px;
    /*border-radius: var(--radius-lg);*/
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}
.product-showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-showcase-card:hover .product-showcase-bg {
    transform: scale(1.05);
}
.product-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.78) 20%,
        rgba(255, 255, 255, 0.38) 38%,
        rgba(255, 255, 255, 0) 58%);
    z-index: 2;
}
.product-showcase-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 54px 44px 24px;
    text-align: center;
}
.product-showcase-tag {
    display: block;
    font-size: 0.875rem;
    color: #85898c;
    margin-bottom: 12px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.product-showcase-content h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 10px;
    line-height: 1.15;
}
.product-showcase-content p {
    font-size: 1.0625rem;
    color: var(--title-color);
    margin-bottom: 24px;
    line-height: 1.6;
}
.product-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    color: var(--title-color);
    font-weight: 400;
    transition: gap 0.35s, opacity 0.35s;
}
.product-showcase-link::after {
    content: ">";
    font-family: monospace;
    transition: transform 0.35s;
}
.product-showcase-card:hover .product-showcase-link {
    gap: 9px;
}

/* ===== 全局响应式（跨组件整合） ===== */
/* 响应式 */

@media (max-width: 1199px) {
    .strength-item {
        padding: 40px 28px;
    }
    .strength-icon {
        width: 58px;
        height: 58px;
    }
    .strength-icon .icon-stroke {
        width: 28px;
        height: 28px;
    }
    .strength-body h4 {
        font-size: 1.125rem;
    }
    .strength-body p {
        font-size: 0.875rem;
    }
    .product-showcase-card {
        min-height: 540px;
    }
    .product-showcase-content {
        padding: 44px 36px 22px;
    }
    .product-showcase-content h3 {
        font-size: 2.125rem;
    }
}

@media (max-width: 991px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strength-item {
        border-right: none;
        /*border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
        padding: 40px 36px;
    }
    .strength-item:nth-child(2n+1) {
        /*border-right: 1px solid rgba(0, 0, 0, 0.05);*/
    }
    .strength-item:nth-child(3),
        .strength-item:nth-child(4) {
        border-bottom: none;
    }
    .product-showcase-card {
        min-height: 500px;
    }
    .product-showcase-content {
        padding: 38px 32px 20px;
    }
    .product-showcase-content h3 {
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .hero-brand-tags {
        gap: 8px;
        margin-bottom: 18px;
    }
    .hero-tag {
        padding: 5px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .core-strengths-bar {
        border-bottom: 1px solid var(--divider);
    }
    .strength-item {
        padding: 30px 24px;
        gap: 16px;
    }
    .strength-icon {
        width: 52px;
        height: 52px;
    }
    .strength-icon .icon-stroke {
        width: 24px;
        height: 24px;
    }
    .strength-body h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .strength-body p {
        font-size: 0.8125rem;
    }
    .about-counter-fusion .strengths-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 0;
    }
    .about-counter-fusion .strength-item {
        padding: 0.5rem 1rem;
        gap: 16px;
    }
    .about-counter-fusion .strength-icon {
        width: 64px;
        height: 64px;
    }
    .about-counter-fusion .strength-icon .icon-stroke {
        width: 30px;
        height: 30px;
    }
    .about-counter-fusion .strength-body h4 {
        font-size: 1.25rem;
    }
    .about-counter-fusion .strength-body p {
        font-size: 0.8125rem;
    }
    .about-counter-fusion .about-counter-title h2 {
        margin-bottom: 0 !important;
    }
    .home4-banner2-section .banner-content-wrap .banner-content h2 {
        font-size: 2.25rem;
    }
    .product-showcase-section {
        padding: 48px 0 64px;
    }
    .product-showcase-card {
        min-height: 400px;
    }
    .product-showcase-content {
        padding: 30px 24px 18px;
    }
    .product-showcase-content h3 {
        font-size: 1.75rem;
    }
    .product-showcase-content p {
        margin-bottom: 0.5rem;
    }
}
