/* 首页专用样式 — 运动服饰定制 B2B 站 */

.page-home {
    --home-ink: var(--dp-primary-dark, #111a24);
    --home-ink-soft: #5a6d82;
    --home-surface: var(--dp-gray, #f9f8f6);
    --home-surface-warm: var(--dp-gray-alt, #f3f1ed);
    --home-line: var(--dp-line, rgba(28, 43, 58, 0.08));
    --home-accent-warm: #c9a962;
    --home-hero-min-h: calc(460px + 15mm);
    --home-hero-overlay: linear-gradient(108deg, rgba(17, 26, 36, 0.62) 0%, rgba(17, 26, 36, 0.28) 55%, rgba(0, 0, 0, 0.08) 100%);
}

.page-home .hero .carousel,
.page-home .hero .carousel-inner {
    min-height: var(--home-hero-min-h);
}
.page-home .hero .carousel-item {
    min-height: var(--home-hero-min-h);
}
.page-home .hero-slide {
    position: relative;
    min-height: var(--page-header-height-max, var(--home-hero-min-h));
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.page-home .hero-slide .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.page-home .hero-slide.page-header--align-center .hero-content {
    align-items: center;
    text-align: center;
}
.page-home .hero-slide.page-header--align-right .hero-content {
    align-items: flex-end;
    text-align: right;
}
.page-home .hero-slide.page-header--pos-top .hero-content { justify-content: flex-start; padding-top: 2rem; }
.page-home .hero-slide.page-header--pos-bottom .hero-content { justify-content: flex-end; padding-bottom: 2rem; }
.page-home .hero-slide.page-header--pos-center .hero-content { justify-content: center; }
@media (min-width: 992px) {
    .page-home {
        --home-hero-min-h: calc(500px + 15mm);
    }
}
.page-home .hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.page-home .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    --_overlay: var(--page-header-overlay, 0.35);
    pointer-events: none;
    background: linear-gradient(90deg,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.12)) 0%,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.3)) 40%,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.72)) 100%);
}
.page-home .hero-slide.page-header--align-center::before {
    background: linear-gradient(180deg,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.7)) 0%,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.15)) 45%,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.7)) 100%);
}
.page-home .hero-slide.page-header--align-right::before {
    background: linear-gradient(270deg,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.12)) 0%,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.3)) 40%,
        rgba(17, 26, 36, calc(var(--_overlay) * 0.72)) 100%);
}
.page-home .hero-slide::after {
    display: none;
}
.page-home .hero-slide--image-only::before,
.page-home .hero-slide--image-only::after {
    display: none;
}
.page-home .hero-slide .hero-content {
    position: relative;
    z-index: 2;
}
.page-home .hero-content h1,
.page-home .hero-content .lead,
.page-home .hero-content .hero-eyebrow,
.page-home .hero-content .hero-tag {
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.22);
}
.page-home .hero-slide.page-header--align-left .hero-content,
.page-home .hero-slide:not(.page-header--align-center):not(.page-header--align-right) .hero-content {
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + clamp(1.75rem, 5vw, 3.5rem));
}
.page-home .hero-slide.page-header--align-right .hero-content {
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + clamp(1.75rem, 5vw, 3.5rem));
}
.page-home .hero-content {
    padding: 2.5rem 0 3.25rem;
}
.page-home .hero h1 {
    font-size: calc(clamp(2rem, 4.8vw, 3.15rem) * var(--page-header-title-scale, 1));
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--page-header-title-color, #fff);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.75rem;
    white-space: nowrap;
}
.page-home .hero .lead {
    font-size: calc(clamp(0.9375rem, 1.8vw, 1.0625rem) * var(--page-header-title-scale, 1));
    max-width: 36em;
    line-height: 1.7;
    color: var(--page-header-subtitle-color, rgba(255, 255, 255, 0.88));
}
.page-home .hero-tag {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    backdrop-filter: blur(6px);
}
.page-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
    margin-top: 1.5rem;
}
.page-home .btn-hero-cta {
    background: #fff;
    border: none;
    color: var(--home-ink);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.22s, box-shadow 0.22s;
}
.page-home .btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    color: var(--home-ink);
}
.page-home .hero-hotline-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.65rem 1.25rem;
    min-width: 200px;
}
.page-home .hero-hotline-box small {
    font-size: 0.6875rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.page-home .hero-hotline-box strong {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.page-home .hero-hotline-box strong a {
    color: #fff;
    text-decoration: none;
}
.page-home .hero .carousel-indicators {
    bottom: 3.5rem;
    margin-bottom: 0;
    z-index: 4;
}
.page-home .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.page-home .carousel-indicators .active {
    background: var(--dp-accent);
    border-color: var(--dp-accent);
}
.page-home .hero .carousel-control-prev,
.page-home .hero .carousel-control-next {
    top: 42%;
    bottom: auto;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    opacity: 0.9;
    z-index: 4;
}
.page-home .hero .carousel-control-prev {
    left: 1rem;
}
.page-home .hero .carousel-control-next {
    right: 1rem;
}
.page-home .hero .carousel-control-prev-icon,
.page-home .hero .carousel-control-next-icon {
    width: 1.35rem;
    height: 1.35rem;
}

/* 品质条 — 全宽色带 */
.page-home .quality-strip {
    background: linear-gradient(90deg, var(--dp-primary-dark), var(--dp-primary));
    color: #fff;
    padding: 1.75rem 0;
    border: none;
    position: relative;
    overflow: hidden;
}
.page-home .quality-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.page-home .quality-strip .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: left;
}
.page-home .quality-strip .quality-icon {
    background: rgba(255, 255, 255, 0.2);
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}
.page-home .quality-strip h3 {
    color: #fff;
    margin: 0;
    font-size: 1.125rem;
}
.page-home .quality-strip p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.875rem;
}

/* 区块通用 */
.page-home .home-section {
    padding: 4rem 0;
}
.page-home .home-section-alt {
    background: var(--home-surface);
}
.page-home .section-head {
    margin-bottom: 2rem;
}
.page-home .section-head .section-title {
    color: var(--dp-primary-dark);
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
}
.page-home .section-head .section-title:not(.section-title-dash)::after {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--dp-primary-light), var(--dp-accent-bright));
}
.page-home .section-head .section-title-dash {
    font-family: var(--dp-font-display);
    border-bottom: none;
    padding-bottom: 0.85rem;
    letter-spacing: 0.06em;
}
.page-home .section-head .section-title-dash::before,
.page-home .section-head .section-title-dash::after {
    content: '';
    position: static;
    transform: none;
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--home-accent-warm);
    margin: 0 0.65rem;
    vertical-align: middle;
    opacity: 1;
}

/* 热门横滑 */
.page-home .section-featured {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    background: #fff;
}
.page-home .highlight-card {
    border: 1px solid #e8eef4;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(10, 61, 124, 0.06);
}
.page-home .highlight-card .highlight-body {
    border-top: 3px solid var(--dp-accent);
}
.page-home .highlight-card:hover {
    box-shadow: 0 8px 24px rgba(10, 61, 124, 0.12);
    border-color: #c5d9ed;
}

/* Banner 下：左栏筛选 + 右栏 4 列分类宫格 */
.page-home .cat-hub-section {
    padding: 1.75rem 0 1.25rem;
    background: var(--home-surface, var(--dp-gray, #f9f8f6));
}
.page-home .cat-hub-layout {
    display: flex;
    gap: 1.25rem 1.5rem;
    align-items: flex-start;
}
.page-home .cat-hub-sidebar {
    flex: 0 0 272px;
    max-width: 272px;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 12px;
    padding: 1.25rem 1rem 1.15rem;
    box-shadow: none;
}
.page-home .cat-hub-filter-group {
    margin-bottom: 1.35rem;
    padding-bottom: 0;
}
.page-home .cat-hub-filter-group:last-child {
    margin-bottom: 0;
}
.page-home .cat-hub-filter-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5a6573;
    margin: 0 0 0.65rem;
    padding: 0;
    border: none;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-align: left;
}

.page-home .cat-hub-filter-title::after {
    content: '：';
    margin-left: 0.05em;
}

.page-home .cat-hub-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.5rem;
    justify-items: stretch;
}

.page-home .cat-hub-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    min-height: 2.125rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dp-text, #475569);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    transition: color 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.page-home .cat-hub-tag--all {
    color: #64748b;
}

.page-home .cat-hub-tag:hover {
    color: var(--dp-primary, #1c2b3a);
    border-color: #cbd5e1;
    background: #f8fafc;
}

.page-home .cat-hub-tag--color .cat-hub-tag-swatch {
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--tag-color);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35);
}
.page-home .cat-hub-main {
    flex: 1;
    min-width: 0;
}
.page-home .cat-hub-grid {
    display: grid;
    grid-template-columns: repeat(var(--hub-grid-cols, 4), minmax(0, 1fr));
    gap: 1rem 1.15rem;
}
.page-home .cat-hub-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    box-shadow: 0 1px 3px rgba(21, 31, 42, 0.04);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.page-home .cat-hub-card:hover {
    color: var(--home-ink);
    transform: translateY(-3px);
    border-color: rgba(28, 43, 58, 0.14);
    box-shadow: var(--dp-shadow-hover);
}
.page-home .cat-hub-card-media {
    aspect-ratio: var(--hub-card-ratio, 1 / 1);
    display: grid;
    padding: 0.25rem;
    box-sizing: border-box;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f6;
}
.page-home .cat-hub-grid--cols-2 .cat-hub-card-media {
    padding: 0.75rem 0.85rem;
}
.page-home .cat-hub-grid--cols-2 .cat-hub-card-fallback {
    font-size: 2rem;
}
.page-home .cat-hub-card-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    transition: transform 0.3s ease;
}
.page-home .cat-hub-card:hover .cat-hub-card-media img {
    transform: scale(1.03);
}
.page-home .cat-hub-card-fallback {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(145deg, #e8f4fc 0%, #d0e3f5 100%);
    color: var(--dp-primary);
    font-size: 3rem;
}
.page-home .cat-hub-card-title {
    margin: 0;
    padding: 0.55rem 0.5rem 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff;
}
.page-home .cat-hub-card:hover .cat-hub-card-title {
    color: var(--dp-primary);
}

@media (max-width: 1199.98px) {
    .page-home .cat-hub-grid {
        grid-template-columns: repeat(min(var(--hub-grid-cols, 4), 3), minmax(0, 1fr));
    }
}

.page-home .cat-hub-sidebar__toggle {
    display: none;
}

@media (max-width: 991.98px) {
    .page-home .cat-hub-layout {
        flex-direction: column;
    }
    .page-home .cat-hub-sidebar {
        flex: none;
        max-width: none;
        width: 100%;
        background: #fff;
        border: 1px solid var(--home-line);
        border-radius: 10px;
        overflow: hidden;
    }
    .page-home .cat-hub-sidebar__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        padding: 0.75rem 1rem;
        border: none;
        background: #fff;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--home-ink);
        cursor: pointer;
    }
    .page-home .cat-hub-sidebar__toggle i {
        font-size: 0.875rem;
        transition: transform 0.22s ease;
    }
    .page-home .cat-hub-sidebar.is-expanded .cat-hub-sidebar__toggle i {
        transform: rotate(180deg);
    }
    .page-home .cat-hub-sidebar:not(.is-expanded) .cat-hub-sidebar__body {
        display: none;
    }
    .page-home .cat-hub-sidebar.is-expanded .cat-hub-sidebar__body {
        padding: 0 0.75rem 0.75rem;
        border-top: 1px solid var(--home-line);
    }
    .page-home .cat-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .page-home {
        --home-hero-min-h: clamp(240px, 58vw, 300px);
    }
    .page-home .cat-hub-filter-title {
        font-size: 0.8125rem;
    }
    .page-home .cat-hub-tag {
        font-size: 0.8125rem;
        padding: 0.36rem 0.45rem;
        min-height: 2rem;
    }
    .page-home .cat-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 0.55rem;
    }
    .page-home .cat-hub-card-title {
        font-size: 0.9375rem;
        padding: 0.55rem 0.35rem 0.65rem;
    }
}

/* 热门定制 — 产品 Tab 展示（参照工装站方图卡片） */
.page-home .home-product-showcase {
    --showcase-blue: #1c2b3a;
    --showcase-blue-border: #2a4055;
    --showcase-orange: #ff5722;
    --showcase-red: #e53935;
    background: #fff;
    padding-bottom: 0;
}
.page-home .home-product-showcase .section-head-jh--zones {
    margin-bottom: 0.75rem;
}
.page-home .home-zones-section.home-product-showcase {
    padding-top: 0;
}
.page-home .home-showcase-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    margin: 0 0 1.25rem;
    padding: 0.5rem;
    width: 100%;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 0;
    scrollbar-width: none;
}
.page-home .home-showcase-tabs::-webkit-scrollbar {
    display: none;
}
.page-home .home-showcase-tabs .nav-item {
    flex: 0 0 auto;
    text-align: left;
    min-width: 0;
}
.page-home .home-showcase-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--home-ink-soft);
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    white-space: nowrap;
    width: auto;
    letter-spacing: 0.02em;
    transition: color 0.2s, background 0.2s, font-size 0.2s;
}
.page-home .home-showcase-tabs .nav-link:hover {
    color: #2563eb;
    background: #eef4ff;
}
.page-home .home-showcase-tabs .nav-link.active {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    background: #2563eb;
}
.page-home .home-showcase-tabs .nav-link.active:hover {
    color: #fff;
    background: #3b82f6;
}
.page-home .home-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem 0.45rem;
}
.page-home .home-showcase-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--dp-muted);
    margin: 1.5rem 0;
}
.page-home .home-showcase-more {
    margin-top: 1rem;
    text-align: right;
}
.page-home .home-showcase-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dp-primary);
    text-decoration: none;
}
.page-home .home-showcase-more-link:hover {
    color: var(--dp-primary-dark);
}

/* 热门定制延续 — 全行业标签（与专区同区白底） */
.page-home .home-zones-block {
    background: #fff;
    margin-top: 2.5rem;
}
.page-home .home-industry-tags {
    padding: 0 0 3rem;
    border-top: 1px solid #e8eef4;
}
.page-home .home-product-showcase + .home-industry-tags {
    border-top-color: #e2eaf2;
}
.page-home .section-head-jh--industry {
    width: 100%;
    text-align: center;
    padding: 2.25rem 0 1.5rem;
    margin-bottom: 0;
    background: transparent;
}
.page-home .section-head-jh--industry .section-title {
    font-size: clamp(1.125rem, 2.4vw, 1.4375rem);
    font-weight: 800;
    color: var(--home-ink);
    letter-spacing: 0.05em;
}
.page-home .section-head-jh--industry .section-sub {
    margin: 0.35rem auto 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    color: var(--home-ink-soft);
    letter-spacing: 0.02em;
}
.page-home .home-industry-tags__grid {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 0.25rem;
}
.page-home .home-industry-tags__row {
    display: grid;
    gap: 0.55rem;
}
.page-home .home-industry-tags__row--compact {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}
.page-home .home-industry-tags__row--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 0.55rem;
}
.page-home .home-industry-tags__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.375rem;
    padding: 0.45rem 0.5rem;
    background: #fff;
    color: var(--home-ink);
    border: 1px solid var(--home-line);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 2px rgba(21, 31, 42, 0.03);
}
.page-home .home-industry-tags__tag--wide {
    min-height: 2.625rem;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.55rem 0.65rem;
    background: linear-gradient(180deg, #fff 0%, var(--home-surface) 100%);
    border-color: var(--home-line);
}
.page-home .home-industry-tags__tag-text {
    display: block;
    text-align: center;
}
@media (max-width: 1199.98px) {
    .page-home .home-industry-tags__row--compact {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .page-home .home-industry-tags__row--wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991.98px) {
    .page-home .home-industry-tags__row--compact {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .page-home .home-industry-tags__row--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .page-home .home-industry-tags {
        padding-bottom: 2.5rem;
    }
    .page-home .section-head-jh--industry {
        padding: 1.5rem 0 1.1rem;
    }
    .page-home .home-industry-tags__row--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .page-home .home-industry-tags__tag {
        font-size: 0.75rem;
        min-height: 2.125rem;
    }
}
@media (max-width: 479.98px) {
    .page-home .home-industry-tags__row--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.page-home .home-showcase-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.page-home .home-showcase-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8ecf0;
}
.page-home .home-showcase-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.page-home .home-showcase-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dp-muted);
    font-size: 2rem;
}
.page-home .home-showcase-card__brand {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--showcase-blue);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.38rem 1.15rem 0.38rem 0.65rem;
    line-height: 1.2;
    max-width: 78%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 0 0 0.5rem 0;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}
.page-home .home-showcase-card__tags {
    position: absolute;
    left: 0.4rem;
    top: 2.65rem;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}
.page-home .home-showcase-card__tags li {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    background: linear-gradient(180deg, #ff7043 0%, #e53935 100%);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem 0.18rem 0.22rem;
    border-radius: 999px;
    line-height: 1.2;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(229, 57, 53, 0.35);
}
.page-home .home-showcase-card__tags i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.page-home .home-showcase-card__banner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--sc-banner-h);
    margin: 0;
    padding: 0 0.5rem 0 0;
    background: #003d8f;
    color: #fff;
    line-height: 1.15;
    pointer-events: none;
}
.page-home .home-showcase-card__banner-inner {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    padding-left: var(--sc-factory-w);
    width: 100%;
}
.page-home .home-showcase-card__factory {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    display: grid;
    grid-template-rows: 1fr var(--sc-factory-spacer);
    align-items: stretch;
    justify-items: center;
    width: var(--sc-factory-w);
    min-width: 3.5rem;
    height: var(--sc-factory-h);
    background: linear-gradient(165deg, #ff7043 0%, #f4511e 40%, #e53935 100%);
    color: #fff;
    padding: 0.35rem 0.2rem;
    border-radius: 0 1.5rem 0 0;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.22);
    text-align: center;
    overflow: hidden;
    pointer-events: none;
}
.page-home .home-showcase-card__factory-lines {
    grid-row: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    font-size: clamp(0.9375rem, 2.8vw, 1.25rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.05;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.page-home .home-showcase-card__factory-lines span {
    display: block;
}
.page-home .home-showcase-card__service {
    position: absolute;
    left: 50%;
    bottom: var(--sc-banner-h);
    z-index: 6;
    transform: translate(-50%, 50%);
    width: max-content;
    max-width: 72%;
    margin: 0;
    padding: 0.34rem 1rem;
    background: linear-gradient(180deg, #fffbf4 0%, #f3e2c0 100%);
    color: #1f1a14;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    border-radius: 999px;
    border: 1px solid rgba(175, 140, 80, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}
.page-home .home-showcase-card__years {
    color: #ffeb3b;
    font-size: clamp(1.5rem, 4.8vw, 1.875rem);
    font-weight: 900;
    font-family: "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
    margin-right: 0.05rem;
}
.page-home .home-showcase-card__banner-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.page-home .home-showcase-card__title {
    margin: 0.35rem 0 0;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.page-home .home-showcase-card__sku {
    font-weight: 600;
    color: #222;
}
@media (max-width: 991.98px) {
    .page-home .home-showcase-tabs {
        justify-content: flex-start;
    }
    .page-home .home-showcase-tabs .nav-item {
        flex: 0 0 auto;
    }
    .page-home .home-showcase-tabs .nav-link {
        font-size: 1rem;
        font-weight: 600;
        padding: 0.75rem 1.1rem;
        width: auto;
    }
    .page-home .home-showcase-tabs .nav-link.active {
        font-size: 1.0625rem;
        font-weight: 700;
    }
    .page-home .home-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 0.45rem;
    }
    .page-home .home-showcase-card__media--template {
        --sc-banner-h: 14%;
        --sc-factory-h: 27%;
        --sc-factory-w: 29%;
        --sc-factory-spacer: 52%;
    }
    .page-home .home-showcase-card__factory-lines {
        font-size: 0.9375rem;
        letter-spacing: 0.12em;
    }
    .page-home .home-showcase-card__service {
        max-width: 78%;
    }
}
@media (max-width: 575.98px) {
    .page-home .home-product-showcase {
        padding-bottom: 2rem;
    }
    .page-home .home-showcase-card__title {
        font-size: 0.6875rem;
    }
    .page-home .home-showcase-card__media--template {
        --sc-banner-h: 15%;
        --sc-factory-h: 30%;
        --sc-factory-w: 31%;
        --sc-factory-spacer: 50%;
    }
    .page-home .home-showcase-card__brand {
        font-size: 0.6875rem;
        padding: 0.3rem 0.85rem 0.3rem 0.5rem;
    }
    .page-home .home-showcase-card__tags {
        top: 2.2rem;
        gap: 0.2rem;
    }
    .page-home .home-showcase-card__tags li {
        font-size: 0.5625rem;
        padding: 0.14rem 0.42rem;
    }
    .page-home .home-showcase-card__service {
        font-size: 0.5625rem;
        padding: 0.22rem 0.6rem;
        max-width: 92%;
    }
    .page-home .home-showcase-card__factory {
        border-radius: 0 1.1rem 0 0;
    }
    .page-home .home-showcase-card__factory-lines {
        font-size: 0.8125rem;
        letter-spacing: 0.1em;
    }
    .page-home .home-showcase-card__banner-inner {
        padding-left: 32%;
    }
    .page-home .home-showcase-card__service {
        max-width: 82%;
        font-size: 0.5625rem;
        padding: 0.28rem 0.65rem;
    }
    .page-home .home-showcase-card__banner-text {
        font-size: 0.5625rem;
    }
}

/* 分类宫格（备用） */
.page-home .cat-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.page-home .cat-item {
    border: 1px solid #e8eef4;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.25s ease;
}
.page-home .cat-item:hover {
    border-color: var(--dp-primary);
    background: linear-gradient(180deg, #fff 0%, #f0f6fc 100%);
}
.page-home .cat-item .cat-icon {
    width: 64px;
    height: 64px;
    font-size: 1.65rem;
    box-shadow: 0 4px 14px rgba(13, 71, 161, 0.25);
}

/* 产品 Tab 区 */
.page-home .products-panel {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--dp-shadow);
    border: 1px solid #e8eef4;
}
.page-home .product-tabs {
    background: var(--dp-gray);
    border-radius: 10px;
    padding: 0.35rem;
    gap: 0.25rem;
    margin-bottom: 1.5rem !important;
}
.page-home .product-tabs .nav-link {
    border-radius: 8px !important;
    border: none !important;
    padding: 0.6rem 1.1rem !important;
    font-size: 0.875rem;
    white-space: nowrap;
}
.page-home .product-tabs .nav-link.active {
    background: #fff !important;
    color: var(--dp-primary) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: none !important;
}
.page-home .btn-view-all {
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    font-weight: 600;
    border-width: 2px;
}

/* 客户案例 Tab 等行业胶囊 */
.page-home .industry-pill {
    background: #fff;
    border: 1px solid #d0dde8;
    padding: 0.55rem 1.1rem;
    font-size: 0.8125rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.page-home .industry-pill i {
    color: var(--dp-primary);
}
.page-home .industry-pill:hover,
.page-home .industry-pill.active {
    background: linear-gradient(135deg, var(--dp-primary), var(--dp-primary-dark));
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}
.page-home .industry-pill:hover i,
.page-home .industry-pill.active i {
    color: #fff;
}

/* 企业荣誉 */
.page-home .home-honors-section {
    background: #fff;
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
    overflow-x: clip;
}
.page-home .home-honors-title {
    margin: 0 0 2rem;
    text-align: center;
    font-family: var(--dp-font-display);
    font-size: clamp(1.25rem, 3.2vw, 1.625rem);
    font-weight: 700;
    color: var(--home-ink);
    letter-spacing: 0.06em;
}
.page-home .home-honors-track-wrap {
    max-width: 100%;
    min-width: 0;
}
.page-home .home-honors-track-wrap.is-centered {
    overflow-x: clip;
}
.page-home .home-honors-track-wrap.is-centered .home-honors-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    width: 100%;
    max-width: 100%;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    justify-content: center;
    margin: 0;
}
.page-home .home-honors-track-wrap.is-scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.22) transparent;
    padding-bottom: 0.35rem;
}
.page-home .home-honors-track-wrap.is-auto-scroll {
    overflow: hidden;
    padding-bottom: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.page-home .home-honors-track-wrap.is-auto-scroll:hover .home-honors-track--marquee {
    animation-play-state: paused;
}
.page-home .home-honors-track--marquee {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    max-width: none;
    margin: 0;
    gap: 0;
    animation: home-honors-marquee var(--honors-marquee-duration, 36s) linear infinite;
    will-change: transform;
}
.page-home .home-honors-track-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1.25rem;
    padding-right: 1.25rem;
}
.page-home .home-honors-track-wrap.is-auto-scroll .home-honors-item {
    width: calc((min(100vw, 1140px) - 2.5rem - 3.75rem) / 4);
    max-width: 290px;
    min-width: 180px;
}
.page-home .home-honors-track-wrap.is-auto-scroll .home-honors-frame,
.page-home .home-honors-track-wrap.is-auto-scroll .home-honors-frame img,
.page-home .home-honors-track-wrap.is-auto-scroll .home-honors-placeholder {
    width: 100%;
}
@keyframes home-honors-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .page-home .home-honors-track-wrap.is-auto-scroll {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: thin;
        padding-bottom: 0.35rem;
    }
    .page-home .home-honors-track--marquee {
        animation: none;
        width: max-content;
    }
    .page-home .home-honors-track-wrap.is-auto-scroll .home-honors-track-group[aria-hidden="true"] {
        display: none;
    }
}
.page-home .home-honors-track-wrap.is-scrollable::-webkit-scrollbar {
    height: 6px;
}
.page-home .home-honors-track-wrap.is-scrollable::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 3px;
}
.page-home .home-honors-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    align-items: stretch;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}
.page-home .home-honors-track-wrap.is-scrollable .home-honors-track {
    margin: 0;
}
.page-home .home-honors-item {
    margin: 0;
    flex: 0 0 auto;
}
.page-home .home-honors-track-wrap.is-centered .home-honors-item {
    width: 100%;
    min-width: 0;
}
.page-home .home-honors-frame {
    padding: 0.45rem;
    background: linear-gradient(160deg, #7a4b32 0%, #4f2f1f 55%, #3d2418 100%);
    border-radius: 3px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}
.page-home .home-honors-track-wrap.is-centered .home-honors-frame {
    width: 100%;
}
.page-home .home-honors-frame img,
.page-home .home-honors-placeholder {
    display: block;
    width: 290px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 290 / 190;
    object-fit: cover;
    object-position: center;
    background: #fff;
}
.page-home .home-honors-track-wrap.is-centered .home-honors-frame img,
.page-home .home-honors-track-wrap.is-centered .home-honors-placeholder {
    width: 100%;
}
.page-home .home-honors-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    color: #9e9e9e;
    font-size: 2rem;
}
@media (max-width: 991.98px) {
    .page-home .home-honors-section {
        overflow-x: clip;
    }
    .page-home .home-honors-track-wrap,
    .page-home .home-honors-track-wrap.is-centered,
    .page-home .home-honors-track-wrap.is-scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.35rem;
    }
    .page-home .home-honors-track-wrap.is-auto-scroll .home-honors-item {
        width: clamp(150px, 38vw, 220px);
        min-width: 150px;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        max-width: none;
        gap: 0.85rem;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-item {
        width: auto;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-frame {
        width: auto;
    }
    .page-home .home-honors-track {
        gap: 0.85rem;
    }
    .page-home .home-honors-frame img,
    .page-home .home-honors-placeholder {
        width: clamp(150px, 38vw, 220px);
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-frame img,
    .page-home .home-honors-track-wrap.is-centered .home-honors-placeholder {
        width: clamp(150px, 38vw, 220px);
    }
}

@media (max-width: 767.98px) {
    .page-home .home-honors-track-wrap.is-centered {
        overflow-x: visible;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        gap: 0.75rem;
        justify-content: stretch;
        margin: 0;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-item {
        width: 100%;
        min-width: 0;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-frame {
        width: 100%;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-frame img,
    .page-home .home-honors-track-wrap.is-centered .home-honors-placeholder {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .page-home .home-honors-track-wrap.is-scrollable .home-honors-frame img,
    .page-home .home-honors-track-wrap.is-scrollable .home-honors-placeholder,
    .page-home .home-honors-track-wrap.is-auto-scroll .home-honors-item {
        width: clamp(130px, 42vw, 180px);
        min-width: 130px;
    }
    .page-home .home-honors-track-wrap.is-centered .home-honors-track {
        gap: 0.65rem;
    }
}

/* 公司简介 Tab — 与 polish.css 胶囊样式一致 */
.page-home .company-tabs {
    background: transparent;
    padding: 0;
    gap: 0.35rem;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.25rem !important;
    border: none;
}
.page-home .company-tabs .nav-link {
    color: var(--home-ink-soft, var(--dp-muted)) !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(28, 43, 58, 0.08) !important;
    border-radius: 999px !important;
    padding: 0.5rem 1.25rem !important;
    margin: 0 !important;
    font-weight: 600;
}
.page-home .company-tabs .nav-link.active {
    background: var(--home-ink, var(--dp-primary-dark)) !important;
    color: #fff !important;
    border-color: var(--home-ink, var(--dp-primary-dark)) !important;
    font-weight: 600;
}
.page-home .company-tab-body {
    border: 1px solid rgba(28, 43, 58, 0.06);
    border-radius: 16px;
    padding: 2.25rem !important;
    line-height: 1.85;
    box-shadow: 0 8px 28px rgba(28, 43, 58, 0.06);
}
.page-home .company-tab-prose p,
.page-home .company-tab-prose li {
    color: var(--home-ink-soft, var(--dp-muted));
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.page-home .company-tab-prose p:last-child {
    margin-bottom: 0;
}

/* 流程 */
.page-home .process-section {
    background: linear-gradient(180deg, #f0f6fc 0%, #fff 100%);
}
.page-home .section-head-jh--process {
    text-align: center;
    margin-bottom: 2.25rem;
}
.page-home .section-head-jh--process .section-title::before {
    margin-left: auto;
    margin-right: auto;
}
.page-home .section-head-jh--process .section-sub {
    margin-left: auto;
    margin-right: auto;
}
.page-home .process-timeline {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1rem;
    box-shadow: var(--dp-shadow);
    border: 1px solid #e8eef4;
    position: relative;
}
.page-home .process-timeline::before {
    content: '';
    position: absolute;
    top: 3.25rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--home-line);
    z-index: 0;
}
.page-home .process-item {
    position: relative;
    z-index: 1;
}
.page-home .process-item:not(:last-child)::after {
    display: none;
}
.page-home .process-num {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 1.25rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(var(--dp-brand-rgb, 74, 122, 181), 0.35);
}

/* 案例 */
.page-home .cases-section .case-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--dp-shadow);
    margin-bottom: 1.5rem;
    border: 1px solid var(--home-line);
}

/* FAQ */
.page-home .faq-section {
    background: var(--dp-gray);
}
.page-home .faq-item {
    border: 1px solid #e8eef4 !important;
}
.page-home .faq-item .accordion-button {
    border-radius: var(--dp-radius) !important;
}
.page-home .faq-item .accordion-button:not(.collapsed) {
    background: var(--home-ink);
    color: #fff;
}

/* 定制攻略样式见 public/css/guide.css */

@media (max-width: 991px) {
    .page-home .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-home .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-home {
        --home-hero-min-h: clamp(260px, 52vw, 320px);
    }
    .page-home .hero-content {
        padding: 1.35rem 0 1.75rem;
    }
    .page-home .hero-slide.page-header--align-left .hero-content,
    .page-home .hero-slide:not(.page-header--align-center):not(.page-header--align-right) .hero-content {
        padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 1.25rem);
    }
    .page-home .hero-slide.page-header--align-right .hero-content {
        padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 1.25rem);
    }
    .page-home .hero-hotline-box {
        width: 100%;
    }
    .page-home .home-section {
        padding: 2.5rem 0;
    }
    .page-home .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-home .products-panel {
        padding: 1rem;
        border-radius: 12px;
    }
    .page-home .strength-intro .dual-label {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========== 锦赫风格增强：信任条 / 专区 / 优势 / 标题 ========== */

.page-home .home-trust-bar {
    background: var(--home-surface, var(--dp-gray, #f9f8f6));
    color: var(--dp-text);
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 3;
}
.page-home .home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.page-home .home-trust-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 1.35rem;
    border-right: 1px solid rgba(28, 43, 58, 0.06);
    text-decoration: none;
    color: inherit;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    transition:
        background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home .home-trust-item:nth-child(even) {
    background: #faf9f7;
}
.page-home a.home-trust-item {
    cursor: pointer;
}
.page-home .home-trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dp-highlight, #c9a962), transparent);
    transform: scaleX(0);
    transform-origin: center center;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home .home-trust-item:nth-child(4n) {
    border-right: none;
}
.page-home .home-trust-item:hover {
    background: rgba(201, 169, 98, 0.06);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.18), 0 6px 20px rgba(17, 26, 36, 0.05);
    color: inherit;
}
.page-home .home-trust-item:hover::before {
    transform: scaleX(1);
}
.page-home a.home-trust-item:focus-visible {
    outline: 2px solid var(--home-accent-warm);
    outline-offset: -2px;
}
.page-home .home-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(28, 43, 58, 0.04), rgba(28, 43, 58, 0.08));
    color: var(--dp-primary-dark, #111a24);
    border: 1.5px solid rgba(201, 169, 98, 0.18);
    line-height: 1;
    box-shadow: 0 2px 8px rgba(17, 26, 36, 0.05);
    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.32s ease,
        color 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}
.page-home .home-trust-icon i {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home .home-trust-item:hover .home-trust-icon {
    background: linear-gradient(135deg, rgba(28, 43, 58, 0.08), rgba(201, 169, 98, 0.14));
    color: var(--dp-primary-dark, #111a24);
    border-color: rgba(201, 169, 98, 0.45);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(201, 169, 98, 0.18);
}
.page-home .home-trust-item:hover .home-trust-icon i {
    transform: scale(1.08);
}
.page-home .home-trust-text {
    min-width: 0;
    flex: 1;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home .home-trust-item:hover .home-trust-text {
    transform: translateX(4px);
}
.page-home .home-trust-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dp-primary-dark, #111a24);
    letter-spacing: 0.02em;
    transition: color 0.28s ease;
}
.page-home .home-trust-item:hover .home-trust-text strong {
    color: var(--dp-primary-dark, #111a24);
}
.page-home .home-trust-text span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.45;
    transition: color 0.28s ease;
}
.page-home .home-trust-item:hover .home-trust-text span {
    color: #4b5560;
}

.page-home .cat-hub-section {
    background: var(--home-surface, var(--dp-gray, #f9f8f6));
}
.page-home .cat-hub-section-jh {
    padding-top: 1.75rem;
}
.page-home .home-trust-bar + .home-reveal .cat-hub-section-jh {
    padding-top: 0;
}

.page-home .home-zones-section {
    background: #fff;
    padding-top: 0;
    padding-bottom: 2.5rem;
}
.page-home .home-zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.page-home .home-zone-card {
    display: flex;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e2eaf2;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.page-home .home-zone-card:hover {
    border-color: #a8c4e0;
    box-shadow: 0 10px 28px rgba(10, 61, 124, 0.12);
    transform: translateY(-3px);
    color: inherit;
}
.page-home .home-zone-visual {
    flex: 0 0 42%;
    max-width: 220px;
    min-height: 160px;
    background: linear-gradient(160deg, #e8f4fc, #d4e9f7);
    overflow: hidden;
}
.page-home .home-zone-visual img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}
.page-home .home-zone-fallback {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dp-primary);
}
.page-home .home-zone-body {
    flex: 1;
    padding: 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.page-home .home-zone-en {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #64748b;
    text-transform: uppercase;
}
.page-home .home-zone-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dp-primary-dark);
    margin: 0.2rem 0 0.35rem;
}
.page-home .home-zone-tagline {
    font-size: 0.8125rem;
    color: var(--dp-accent);
    font-weight: 600;
    margin: 0 0 0.35rem;
}
.page-home .home-zone-desc {
    font-size: 0.78rem;
    color: var(--dp-muted);
    margin: 0 0 0.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.page-home .home-zone-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dp-primary);
    margin-top: auto;
}

.page-home .home-advantages-section {
    background: var(--home-surface-warm);
    padding-top: 3rem;
    padding-bottom: 3.25rem;
}
.page-home .section-head-jh--advantages {
    text-align: center;
    margin-bottom: 2.25rem;
}
.page-home .section-head-jh--advantages .section-title {
    font-family: var(--dp-font-display);
    font-size: clamp(1.375rem, 3.5vw, 1.875rem);
    font-weight: 700;
    color: var(--home-ink);
    letter-spacing: 0.06em;
}
.page-home .section-head-jh--advantages .section-title::before {
    display: none;
}
.page-home .section-head-jh--advantages .section-title-highlight {
    color: var(--home-accent-warm);
}
.page-home .section-head-jh--advantages .section-sub {
    color: var(--home-ink-soft);
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    max-width: 42rem;
    margin-top: 0.5rem;
}
.page-home .home-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem 1.25rem;
}
.page-home .home-advantage-card {
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--home-line);
    box-shadow: 0 1px 3px rgba(21, 31, 42, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}
.page-home .home-advantage-card:hover {
    box-shadow: var(--dp-shadow-hover);
    border-color: rgba(28, 43, 58, 0.12);
    transform: translateY(-3px);
}
.page-home .home-advantage-card__visual {
    position: relative;
    min-height: 9.5rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}
.page-home .home-advantage-card__visual--1 {
    background-image: linear-gradient(135deg, #4a5d6c 0%, #6b7d6e 100%);
}
.page-home .home-advantage-card__visual--2 {
    background-image: linear-gradient(135deg, #3d4a5c 0%, #5c6b7a 100%);
}
.page-home .home-advantage-card__visual--3 {
    background-image: linear-gradient(135deg, #455a64 0%, #607d8b 100%);
}
.page-home .home-advantage-card__visual--4 {
    background-image: linear-gradient(135deg, #37474f 0%, #546e7a 100%);
}
.page-home .home-advantage-card__visual--5 {
    background-image: linear-gradient(135deg, #4e5d6c 0%, #78909c 100%);
}
.page-home .home-advantage-card__visual--6 {
    background-image: linear-gradient(135deg, #3e4c59 0%, #6d7b8a 100%);
}
.page-home .home-advantage-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 26, 36, 0.15) 0%, rgba(17, 26, 36, 0.55) 100%);
    pointer-events: none;
}
.page-home .home-advantage-card__title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.45;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.page-home .home-advantage-card__body {
    padding: 1.125rem 1rem 1.25rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-home .home-advantage-card__body p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--home-ink-soft);
    line-height: 1.7;
}

.page-home .process-timeline-jh .process-item h6 {
    color: var(--dp-primary-dark);
    font-weight: 700;
}
.page-home .process-timeline-jh .process-num {
    background: var(--home-ink);
    box-shadow: 0 2px 10px rgba(21, 31, 42, 0.1);
}

.page-home .cta-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
}
.page-home .cta-banner-text {
    flex: 1;
    min-width: 240px;
}
.page-home .cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.page-home .btn-cta-phone {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.page-home .btn-cta-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    color: #fff;
}

.page-home .float-sidebar {
    box-shadow: -4px 0 20px rgba(10, 61, 124, 0.15);
}

@media (max-width: 991.98px) {
    .page-home .home-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-home .home-trust-item {
        border-right: 1px solid var(--home-line);
        border-bottom: 1px solid var(--home-line);
    }
    .page-home .home-trust-item:nth-child(2n) {
        border-right: none;
    }
    .page-home .home-trust-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    .page-home .home-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-home .home-zones-grid {
        grid-template-columns: 1fr;
    }
    .page-home .cta-banner-inner {
        text-align: center;
    }
    .page-home .cta-banner-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .page-home .home-trust-grid {
        grid-template-columns: 1fr;
    }
    .page-home .home-trust-item {
        border-right: none;
        border-bottom: 1px solid var(--home-line);
        padding: 1rem 1.1rem;
    }
    .page-home .home-trust-item:last-child {
        border-bottom: none;
    }
    .page-home .home-advantages-grid {
        grid-template-columns: 1fr;
    }
    .page-home .home-zone-card {
        flex-direction: column;
    }
    .page-home .home-zone-visual {
        flex: none;
        max-width: none;
        width: 100%;
    }
}

/* ========== Taste refresh: editorial heads / bento / CTA（滚动动效见 motion.css） ========== */

.page-home .section-eyebrow,
.page-home .cta-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dp-accent);
    margin: 0 0 0.5rem;
}
.page-home .section-head-jh--left {
    text-align: left;
    margin-bottom: 2.25rem;
}
.page-home .section-head-jh--left .section-title::before {
    margin: 0 0 0.85rem;
}
.page-home .section-head-jh--left .section-sub {
    margin: 0;
    max-width: 42rem;
}

.page-home .products-panel {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: calc(var(--dp-radius) + 4px);
    padding: 1.5rem 1.25rem 1.75rem;
    box-shadow: var(--dp-shadow);
}
.page-home .product-tabs {
    gap: 0.35rem;
    padding: 0.35rem;
    background: var(--home-surface);
    border-radius: 999px;
    margin-bottom: 1.5rem !important;
    border: 1px solid var(--home-line);
}
.page-home .product-tabs .nav-item {
    flex: 0 0 auto;
}
.page-home .product-tabs .nav-link {
    border-radius: 999px !important;
    border-bottom: none !important;
    padding: 0.55rem 1.15rem !important;
    font-size: 0.875rem;
    transition: background 0.2s, color 0.2s;
}
.page-home .product-tabs .nav-link.active {
    background: var(--dp-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(8, 32, 62, 0.18);
}

.page-home .industry-pill {
    border-radius: 8px;
    border-color: var(--home-line);
    font-weight: 600;
    padding: 0.55rem 1.1rem;
}
.page-home .industry-pill:hover,
.page-home .industry-pill.active {
    background: var(--dp-primary-dark);
    border-color: var(--dp-primary-dark);
    transform: translateY(-1px);
}

.page-home .process-section {
    background: var(--home-surface);
}
.page-home .process-timeline {
    border-radius: calc(var(--dp-radius) + 6px);
    border-color: var(--home-line);
}
.page-home .process-num {
    background: var(--dp-primary-dark);
    font-variant-numeric: tabular-nums;
}

.page-home .cta-banner {
    background: var(--home-ink);
    padding: 4.5rem 0;
}
.page-home .cta-banner::before {
    background: radial-gradient(ellipse 80% 120% at 85% 20%, rgba(26, 127, 212, 0.22) 0%, transparent 55%);
}
.page-home .cta-banner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--home-accent-warm), var(--dp-accent-bright), transparent);
}
.page-home .cta-eyebrow {
    color: var(--home-accent-warm);
}
.page-home .cta-banner h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
}
.page-home .btn-hero-cta {
    background: var(--home-accent-warm);
    color: var(--home-ink);
    box-shadow: 0 4px 18px rgba(232, 168, 56, 0.35);
    font-weight: 800;
}
.page-home .btn-hero-cta:hover {
    background: #f0b84a;
    color: var(--home-ink);
    box-shadow: 0 6px 22px rgba(232, 168, 56, 0.42);
}

.page-home .highlight-card {
    border-radius: var(--dp-radius);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
}
.page-home .highlight-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 991.98px) {
    .page-home .home-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-home .section-head-jh--left {
        text-align: center;
    }
    .page-home .section-head-jh--left .section-title::before {
        margin-left: auto;
        margin-right: auto;
    }
    .page-home .section-head-jh--left .section-sub {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 575.98px) {
    .page-home .home-advantages-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    .page-home .home-advantage-card__visual {
        min-height: 8.5rem;
    }
    .page-home .home-advantage-card__title {
        font-size: 1.0625rem;
    }
}
