/* ======================================================
   新外网络 - 首页样式 (home.css)
   ====================================================== */

/* ===== Hero 轮播区域 (Swiper) ===== */
.xw-hero {
    position: relative;
    height: 600px;
    background: #f5f9ff;
}

.xw-hero-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.xw-hero-swiper .swiper-slide {
    overflow: hidden;
}

.xw-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f9ff;
}

.xw-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, #f5f9ff 0%, transparent 12%),
        linear-gradient(270deg, #f5f9ff 0%, transparent 12%),
        linear-gradient(135deg, rgba(245, 249, 255, .88) 0%, rgba(245, 249, 255, .6) 100%);
}

.xw-slide-container {
    height: 100%;
}

.xw-slide-content {
    position: relative;
    z-index: 2;
    color: var(--xw-gray-800);
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.xw-slide-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--xw-gray-800);
    white-space: nowrap;
    transition: opacity .6s ease, transform .6s ease;
}

.xw-slide-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--xw-gray-500);
    max-width: 700px;
    transition: opacity .6s ease, transform .6s ease;
}

.xw-slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    transition: opacity .6s ease, transform .6s ease;
}

.xw-slide-btns .xw-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--xw-radius-md);
}

/* Hero Overlay - 前后切换按钮 */
.xw-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.xw-hero-next,
.xw-hero-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: 50%;
    color: var(--xw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.xw-hero-next {
    right: -67px;
    left: auto;
}

.xw-hero-prev {
    left: -67px;
    right: auto;
}

.xw-hero-next:hover,
.xw-hero-prev:hover {
    background: var(--xw-primary);
    color: #fff;
}

/* Hero Swiper 分页器 */
.xw-hero-pagination.swiper-pagination-bullets {
    bottom: 30px;
}

.xw-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(37, 99, 235, .3);
    opacity: 1;
    margin: 0 6px;
}

.xw-hero-pagination .swiper-pagination-bullet-active {
    background: var(--xw-primary);
}

/* ===== 信任数据条（椭圆半透明居中 平分） ===== */
.home-trust {
    position: relative;
    margin-top: -40px;
    z-index: 5;
    padding: 0 0 20px;
    display: flex;
    justify-content: center;
}

.home-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    max-width: 920px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 30px 40px;
    box-shadow: 0 4px 24px rgba(37, 99, 235, .10), 0 1px 3px rgba(0, 0, 0, .06);
    border: 1px solid rgba(255, 255, 255, .6);
}

.home-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    transition: all .25s ease;
}

.home-trust-item:not(:last-child) {
    border-right: 1px solid rgba(203, 213, 225, .35);
}

.home-trust-item:hover {
    transform: translateY(-1px);
}

.home-trust-icon {
    font-size: 18px;
    color: var(--xw-primary);
    opacity: .85;
}

.home-trust-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--xw-gray-800);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.home-trust-num small {
    font-size: 13px;
    color: var(--xw-primary);
    font-weight: 700;
    margin-left: 1px;
}

.home-trust-label {
    font-size: 12px;
    color: var(--xw-gray-400);
    font-weight: 500;
}

/* ===== 核心优势（新设计） ===== */
.home-features {
    padding: 90px 0;
    background: #f8fafc;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-feature-card {
    padding: 32px 28px;
    border-radius: var(--xw-radius-lg);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-accent), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}

.home-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .10), 0 2px 8px rgba(0, 0, 0, .04);
    border-color: transparent;
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-feature-top i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--card-accent);
    background: color-mix(in srgb, var(--card-accent) 10%, white);
    flex-shrink: 0;
    transition: all .25s ease;
}

.home-feature-card:hover .home-feature-top i {
    background: var(--card-accent);
    color: #fff;
    transform: scale(1.05);
}

.home-feature-top h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--xw-gray-800);
    margin: 0;
}

.home-feature-card p {
    font-size: 14px;
    color: var(--xw-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ===== 服务流程 ===== */

/* ===== 产品展示模块 - 大卡片左右切换 ===== */
.home-products {
    padding: 80px 0;
    background: #fff;
}

.home-products-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-products-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.home-products-slider-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.25, 1, .5, 1);
}

.home-product-card-lg {
    flex: 0 0 calc(25% - 18px);
    min-width: 260px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8ecf1;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all .35s cubic-bezier(.25, 1, .5, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.home-product-card-lg:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(37, 99, 235, .12), 0 6px 16px rgba(0, 0, 0, .06);
    border-color: rgba(37, 99, 235, .18);
    text-decoration: none;
}

.home-product-lg-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    transition: all .3s ease;
}

.home-product-card-lg:hover .home-product-lg-icon {
    height: 110px;
}

.home-product-lg-icon i {
    transition: transform .3s ease;
}

.home-product-card-lg:hover .home-product-lg-icon i {
    transform: scale(1.12);
}

.home-product-lg-body {
    padding: 24px 22px 16px;
    flex: 1;
}

.home-product-lg-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--xw-gray-800);
    margin: 0 0 10px;
}

.home-product-lg-body p {
    font-size: 13px;
    color: var(--xw-gray-500);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-lg-footer {
    padding: 0 22px 22px;
}

.home-product-lg-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--card-accent);
    transition: all .25s ease;
}

.home-product-lg-link i {
    font-size: 12px;
    transition: transform .25s ease;
}

.home-product-card-lg:hover .home-product-lg-link i {
    transform: translateX(4px);
}

/* 左右切换按钮 */
.home-products-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--xw-gray-500);
    transition: all .25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    flex-shrink: 0;
}

.home-products-slider-btn:hover {
    background: var(--xw-primary);
    color: #fff;
    border-color: var(--xw-primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .25);
}

.home-products-slider-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    background: #f8fafc;
}

@media (max-width: 992px) {
    .home-product-card-lg {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 220px;
    }
}

@media (max-width: 576px) {
    .home-product-card-lg {
        flex: 0 0 calc(50% - 12px);
        min-width: 180px;
    }

    .home-products-slider-btn {
        display: none;
    }

    .home-products-slider-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-products-slider-viewport::-webkit-scrollbar {
        display: none;
    }

    .home-products-slider-track {
        transition: none;
    }
}

.home-process {
    padding: 100px 0;
    background: var(--xw-gray-50);
}

.home-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* 连接线 */
.home-process-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, var(--xw-primary-100), var(--xw-primary), var(--xw-primary-100));
    opacity: .3;
    z-index: 0;
}

.home-process-step {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--xw-radius);
    background: var(--xw-card-bg);
    border: 1px solid var(--xw-gray-100);
    position: relative;
    z-index: 1;
    transition: var(--xw-transition);
    cursor: pointer;
}

.home-process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--xw-shadow-hover);
}

.home-process-num {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--xw-primary), var(--xw-primary-light));
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .25);
}

.home-process-step h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--xw-gray-800);
}

.home-process-step p {
    font-size: 14px;
    color: var(--xw-gray-500);
    line-height: 1.6;
}

/* ===== CTA（圆角椭圆透明现代化） ===== */
.home-process-cta {
    margin-top: 44px;
    padding: 22px 48px;
    background: linear-gradient(135deg, rgba(30, 58, 95, .88), rgba(37, 99, 235, .85));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 99, 235, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.home-process-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .06) 0%, transparent 60%);
    animation: ctaGlow 5s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(10%);
    }
}

.home-cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
    letter-spacing: .02em;
    position: relative;
    z-index: 1;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 30px;
    background: linear-gradient(135deg, #fff, #f0f4ff);
    color: var(--xw-primary);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15), 0 0 0 2px rgba(255, 255, 255, .3);
    animation: ctaBounce 2s ease-in-out infinite;
    transition: all .25s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.home-cta-btn:hover {
    transform: scale(1.06) translateY(-1px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, .25), 0 0 0 4px rgba(255, 255, 255, .4);
    text-decoration: none;
    color: var(--xw-primary);
}

@keyframes ctaBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== 公告资讯（3条一排 2排 全宽） ===== */
.home-news {
    padding: 70px 0;
    background: #fff;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-news-item {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    border-radius: var(--xw-radius);
    border: 1px solid var(--xw-gray-100);
    transition: all .25s ease;
    background: var(--xw-card-bg);
    cursor: pointer;
}

.home-news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--xw-shadow-hover);
    border-color: transparent;
}

.home-news-date {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--xw-primary), #3b82f6);
    color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-news-day {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.home-news-month {
    font-size: 11px;
    opacity: .85;
    margin-top: 2px;
}

.home-news-body {
    flex: 1;
    min-width: 0;
}

.home-news-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--xw-gray-800);
    line-height: 1.4;
    transition: color .2s ease;
}

.home-news-item:hover .home-news-body h4 {
    color: var(--xw-primary);
}

.home-news-body p {
    font-size: 13px;
    color: var(--xw-gray-400);
    line-height: 1.6;
    margin: 0;
}

/* ===== 客户评价（Swiper 2个一排 滚动切换） ===== */
.home-reviews-new {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.home-reviews-swiper-wrap {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.home-reviews-swiper {
    border-radius: var(--xw-radius-lg);
    overflow: hidden;
    /* 隐藏滚动条 */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-reviews-swiper::-webkit-scrollbar {
    display: none;
}

.home-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-review-card {
    background: linear-gradient(145deg, #fff, #f8fafc);
    padding: 28px 26px;
    border-radius: 20px;
    border: 1px solid rgba(203, 213, 225, .35);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .03);
    cursor: pointer;
}

.home-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    opacity: .5;
    border-radius: 20px 20px 0 0;
}

.home-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, .10), 0 2px 8px rgba(0, 0, 0, .04);
    border-color: transparent;
}

.home-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.home-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--av-color, var(--xw-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .12);
}

.home-review-top strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--xw-gray-800);
}

.home-review-top em {
    font-style: normal;
    font-size: 12px;
    color: var(--xw-gray-400);
    margin-left: auto;
}

.home-review-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.home-review-card p {
    font-size: 14px;
    color: var(--xw-gray-600);
    line-height: 1.8;
    margin: 0;
}

/* 导航按钮（内嵌 不溢出） */
.home-rev-prev,
.home-rev-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(203, 213, 225, .5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--xw-gray-500);
    transition: all .25s ease;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.home-rev-prev {
    left: 8px;
}

.home-rev-next {
    right: 8px;
}

.home-rev-prev:hover,
.home-rev-next:hover {
    background: var(--xw-primary);
    color: #fff;
    border-color: var(--xw-primary);
}

/* ===== 响应式 ===== */
@media (max-width: 991px) {
    .home-trust-inner {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--xw-radius-lg);
        padding: 16px 24px;
    }

    .home-trust-item {
        flex: 0 0 auto;
        border-right: none !important;
        border-bottom: 1px solid rgba(203, 213, 225, .35);
        width: calc(50% - 12px);
        justify-content: center;
    }

    .home-trust-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-review-grid {
        gap: 18px;
    }

    .home-rev-prev {
        left: 4px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .home-rev-next {
        right: 4px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .xw-hero {
        height: 500px;
    }

    .xw-slide-content h1 {
        font-size: 2rem;
    }

    .xw-slide-content p {
        font-size: 1rem;
    }

    .xw-slide-btns .xw-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .xw-hero-next,
    .xw-hero-prev {
        width: 42px;
        height: 42px;
    }

    .xw-hero-next {
        right: -56px;
    }

    .xw-hero-prev {
        left: -56px;
    }

    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-feature-card {
        padding: 28px 24px;
    }

    .home-feature-top i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .home-feature-top h3 {
        font-size: 15px;
    }

    .home-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-process-steps::before {
        display: none;
    }

    .home-process-step {
        padding: 28px 16px;
    }

    .home-process-num {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }

    .home-process-step h4 {
        font-size: 15px;
    }

    .home-process-step p {
        font-size: 13px;
    }

    .xw-hero {
        height: 500px;
    }

    .xw-slide-content h1 {
        font-size: 2rem;
    }

    .xw-slide-content p {
        font-size: 1rem;
    }

    .xw-slide-btns .xw-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .xw-hero-next,
    .xw-hero-prev {
        width: 42px;
        height: 42px;
    }

    .xw-hero-next {
        right: -56px;
    }

    .xw-hero-prev {
        left: -56px;
    }

    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-feature-card {
        padding: 28px 24px;
    }

    .home-feature-top i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .home-feature-top h3 {
        font-size: 15px;
    }

    .home-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-process-steps::before {
        display: none;
    }

    .home-process-step {
        padding: 28px 16px;
    }

    .home-process-num {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }

    .home-process-step h4 {
        font-size: 15px;
    }

    .home-process-step p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .home-trust {
        margin-top: -28px;
        padding-bottom: 16px;
    }

    .home-trust-inner {
        padding: 14px 18px;
        gap: 4px;
    }

    .home-trust-item {
        padding: 8px 12px;
        width: 100%;
    }

    .home-trust-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 9px;
    }

    .home-trust-num {
        font-size: 19px;
    }

    .home-trust-num small {
        font-size: 12px;
    }

    .home-news {
        padding: 50px 0;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-news-item {
        padding: 16px 18px;
        gap: 14px;
    }

    .home-review-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-rev-prev,
    .home-rev-next {
        display: none;
    }

    .home-news-date {
        width: 48px;
        height: 48px;
    }

    .home-news-day {
        font-size: 18px;
    }

    .home-process-cta {
        margin-top: 28px;
        padding: 16px 24px;
        flex-direction: column;
        gap: 14px;
    }

    .xw-hero {
        height: 420px;
    }

    .xw-slide-content h1 {
        font-size: 1.8rem;
    }

    .xw-slide-content p {
        font-size: .95rem;
        margin-bottom: 24px;
    }

    .xw-slide-btns {
        flex-direction: column;
        gap: 12px;
    }

    .xw-slide-btns .xw-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .home-trust-inner {
        padding: 12px 14px;
        gap: 2px;
    }

    .home-trust-item {
        padding: 6px 10px;
    }

    .home-trust-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .home-trust-num {
        font-size: 17px;
    }

    .home-trust-num small {
        font-size: 11px;
    }
}