.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    background: #ffffff;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 132px;
    background: url("/static/images/shape-divider.png") center bottom / 100% 100% no-repeat;
    z-index: 2;
    pointer-events: none;
}

.hero-swiper {
    position: relative;
}

.hero-swiper .swiper-slide {
    width: 100%;
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: clamp(420px, 44vw, 760px);
    object-fit: cover;
}

.hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 3;
    text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 54px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

.solution-flow {
    position: relative;
    padding: 50px 0 70px;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.solution-step {
    display: flex;
    gap: 16px;
    padding: 24px 24px 26px;
    border: 1px solid rgba(7, 163, 74, 0.14);
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.solution-step.is-active {
    border-color: rgba(7, 163, 74, 0.28);
}

.solution-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(7, 163, 74, 0.18);
    color: var(--primary);
    font-size: 28px;
    font-weight: 300;
}

.solution-step h3 {
    margin: 4px 0 6px;
    font-size: 18px;
}

.solution-step p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.partner-section {
    padding: 42px 0 88px;
}

.partner-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.partner-copy h2 {
    margin: 16px 0 18px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    font-weight: 300;
}

.partner-copy p {
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.partner-points {
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.partner-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #2e353c;
}

.partner-points li::before {
    content: "\e619";
    position: absolute;
    left: 0;
    top: 0;
    font-family: iconfont;
    color: var(--primary);
}

.partner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}



.industries-section {
    padding: 14px 0 90px;
}

.industry-heading {
    margin-bottom: 12px;
}

.industry-heading h2 {
    margin: 0;
    color: rgba(31, 37, 43, 0.09);
    font-size: clamp(58px, 7vw, 90px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.industry-tabbar {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(31, 37, 43, 0.1);
}

.industry-tabs {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(23, 29, 35, 0.35) rgba(0, 0, 0, 0.08);
}

.industry-tabs::-webkit-scrollbar {
    height: 6px;
}

.industry-tabs::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
}

.industry-tabs::-webkit-scrollbar-thumb {
    background: rgba(23, 29, 35, 0.35);
    border-radius: 999px;
}



.industry-tab {
    position: relative;
    flex: 0 0 auto;
    padding: 0 0 10px;
    border: 0;
    background: transparent;
    color: #2f343a;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.industry-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.industry-tab:hover,
.industry-tab.is-active {
    color: var(--primary);

}

.industry-tab.is-active::after {
    transform: scaleX(1);
}

.industry-tab-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #171d23;
}

.industry-tab-nav:hover {
    color: var(--primary);
}

.industry-tab-nav-next i {
    transform: rotate(180deg);
}

.industry-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 0;
    align-items: center;
    min-height: 520px;
    padding: 18px 0 0;
    overflow: hidden;
}


.industry-copy,
.industry-visual {
    position: relative;
    z-index: 1;
}

.industry-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 40px 70px 58px;
}

.industry-copy h3 {
    margin: 0 0 20px;
    color: #12181d;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 300;
}

.industry-copy h3 span {
    color: var(--primary);
}

.industry-copy p {
    max-width: 360px;
    margin: 0 0 24px;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 15px;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 2px solid rgba(7, 163, 74, 0.42);
    border-radius: 999px;
    color: #1e252b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.industry-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.industry-visual {
    min-height: 462px;
    padding-right: 42px;
}

.industry-visual-image {
    display: block;
    height: 100%;
}

.industry-visual-image img {
    display: block;
    width: 100%;
    height: 462px;
    object-fit: cover;
    background: #edf2f1;
}

.industry-visual::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 100%;
    background: var(--primary);
}

.industry-visual-action {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 54px;
    transform: translateY(-50%);
    color: #fff;
}

.industry-visual-action i {
    transform: rotate(180deg);
}

.industry-pagination {
    position: static;
    margin-top: 18px;
    text-align: center;
}

.industry-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(31, 37, 43, 0.18);
    opacity: 1;
}

.industry-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

.knowledge-section {
    padding: 14px 0 110px;
}

.knowledge-heading {
    align-items: flex-start;
    margin-bottom: 26px;
}

.knowledge-heading-main {
    flex: 0 0 310px;
}

.knowledge-heading-main h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 300;
}

.knowledge-heading-main h2 span {
    color: var(--primary);
}

.knowledge-heading-side {
    max-width: 470px;
}

.knowledge-heading-side p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.knowledge-carousel {
    position: relative;
    background-image: url("/static/images/rounded-background.svg");
    background-position: right center;
    background-repeat: no-repeat;
}

.knowledge-swiper {
    overflow: hidden;
}

.knowledge-slide {
    height: auto;
}

.knowledge-card {
    height: 100%;
    background: #fff;
    box-shadow: none;
}

.knowledge-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eef3f2;
}

.knowledge-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}





.knowledge-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.knowledge-body {
    padding: 18px 6px 12px;
}

.knowledge-body h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}

.knowledge-body h3 a {
    color: #151b22;
}

.knowledge-body h3 a:hover {
    color: var(--primary);
}

.knowledge-body p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 15px;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.knowledge-date {
    margin-top: 16px;
    color: #7f8a93;
    font-size: 13px;
}

.knowledge-nav {
    position: absolute;
    top: 136px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(12, 18, 24, 0.14);
    color: #171d23;
}

.knowledge-nav:hover {
    color: var(--primary);
}

.knowledge-nav-prev {
    left: 0;
}

.knowledge-nav-next i {
    transform: rotate(180deg);
}

.knowledge-nav-next {
    right: 0;
}

@media (max-width: 1100px) {

    .partner-layout,
    .industry-card {
        grid-template-columns: 1fr;
    }

    .solution-steps {
        grid-template-columns: 1fr;
    }

    .industry-heading h2 {
        font-size: 62px;
    }

    .industry-card {
        min-height: 0;
        padding-top: 0;
    }


    .industry-copy {
        order: 2;
        padding: 26px 24px 34px;
    }

    .industry-copy p {
        max-width: none;
    }

    .industry-visual {
        order: 1;
        min-height: 340px;
        padding-right: 34px;
    }

    .industry-visual-image img {
        height: 340px;
    }

    .industry-visual::after,
    .industry-visual-action {
        width: 34px;
    }

    .knowledge-heading {
        flex-direction: column;
        gap: 14px;
    }

    .knowledge-heading-main,
    .knowledge-heading-side {
        max-width: none;
        flex: none;
    }

    .knowledge-carousel {
        padding: 0 40px;
    }

}

@media (max-width: 760px) {
    .hero-section {
        padding-top: 0;
    }

    .industry-heading h2,
    .partner-copy h2,
    .industry-copy h3 {
        font-size: 36px;
    }

    .industry-tabbar {
        gap: 10px;
        align-items: flex-end;
    }

    .industry-tabs {
        gap: 18px;
    }

    .industry-tab {
        font-size: 14px;
    }

    .industry-tab-nav {
        display: none;
    }

    .hero-section::after {
        height: 72px;
        background-size: cover;
    }

    .hero-swiper .swiper-slide img {
        height: 280px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 34px;
    }

    .solution-step {
        border-radius: 24px;
    }

    .industry-copy {
        padding: 26px 22px;
    }

    .industry-visual {
        min-height: 240px;
        padding-right: 24px;
    }

    .industry-visual-image img {
        height: 240px;
    }

    .industry-visual::after,
    .industry-visual-action {
        width: 24px;
    }

    .industry-visual-action {
        height: 44px;
    }

    .knowledge-carousel {
        padding: 0 18px;
    }

    .knowledge-media img {
        height: 220px;
    }

    .knowledge-nav {
        display: none;
    }
}