:root {
    --ink: #15204a;
    --ink-soft: #4c5f8a;
    --brand: #165DFC;
    --brand-light: #e8f0ff;
    --line: #e7edf8;
    --surface: #ffffff;
    --page: #f5f8ff;
    --shadow: 0 16px 38px rgba(78, 114, 177, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-main {
    overflow: hidden;
}

.site-container {
    width: min(1448px, calc(100% - 56px));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes siteFadeLiftIn {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes siteIconFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@keyframes siteIconPulse {
    0%,
    100% {
        box-shadow:
            0 0 28px rgba(78, 189, 255, 0.58),
            inset 0 0 16px rgba(255, 255, 255, 0.18);
    }

    50% {
        box-shadow:
            0 0 40px rgba(106, 208, 255, 0.78),
            inset 0 0 18px rgba(255, 255, 255, 0.24);
    }
}

@keyframes siteGrowthBars {
    0%,
    100% {
        height: 14px;
        box-shadow:
            9px -7px 0 rgba(255, 255, 255, 0.92),
            18px -15px 0 rgba(255, 255, 255, 0.92);
    }

    45% {
        height: 19px;
        box-shadow:
            9px -12px 0 rgba(255, 255, 255, 0.96),
            18px -22px 0 rgba(255, 255, 255, 1);
    }
}

.site-animate-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    will-change: opacity, transform;
}

.site-animate-item.is-visible {
    opacity: 1;
    transform: none;
    animation: siteFadeLiftIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--animate-delay, 0ms) backwards;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 16px 0 0;
    background: transparent;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}


.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 0 24px 0 28px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* 页面滚动后：通栏白色吸顶栏，避免页面内容从透明缝隙透出 */
.site-header.is-scrolled {
    padding: 0;
    background: #fff;
    box-shadow: 0 1px 0 rgba(16, 26, 58, 0.06), 0 10px 28px rgba(16, 26, 58, 0.08);
}

.site-header.is-scrolled .site-header__inner {
    border-color: transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 184px;
}

.site-brand__logo {
    width: 34px;
    height: 34px;
    margin-right: 10px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(41%) sepia(91%) saturate(2044%) hue-rotate(198deg) brightness(100%) contrast(94%);
}

.site-brand__text {
    color: #18243b;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    margin: 0 25px;
    color: #152645;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--brand);
}

.site-header__auth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: relative;
}

.site-header__login {
    margin-right: 20px;
    color: #172740;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* 登录后用户区：消息铃铛 + 头像昵称下拉 */
.site-header__bell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #3A4569;
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-header__bell:hover {
    background: #F5F8FF;
}

.site-header__user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-header__user:hover {
    background: #F5F8FF;
}

.site-header__user[hidden] {
    display: none;
}

.site-header__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E6CFF, #4A84FF);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.site-header__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header__name {
    max-width: 150px;
    color: #28324B;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__caret {
    color: #8A94AD;
}

.site-header__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 156px;
    padding: 8px;
    background: #fff;
    border: 1px solid #E7EDF8;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(16, 26, 58, 0.14);
}

.site-header__dropdown[hidden] {
    display: none;
}

.site-header__dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #28324B;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-header__dropdown-item:hover {
    background: #F5F8FF;
}

.site-header__register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 22px;
    color: #fff;
    background: #165DFC;
    box-shadow: 0 8px 16px rgba(47, 112, 244, 0.26);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.site-header__register:hover {
    background: #0E4EE8;
    transform: translateY(-1px);
}

.site-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.site-nav-toggle > span:not(.visually-hidden) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    border-radius: 1px;
    background: var(--ink);
}

.hero-section {
    position: relative;
    padding: 100px 0 0;
    background: var(--page) url("/web/images/official/bg/home.png") center center / cover no-repeat;
}

.hero-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(580px, 0.98fr) minmax(600px, 1.02fr);
    align-items: center;
    column-gap: 38px;
}

.hero-copy {
    padding: 22px 0 64px 20px;
}

.hero-copy h1 {
    max-width: 660px;
    margin: 0;
    color: #142348;
    font-size: 68px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.34;
}

.hero-copy h1 span,
.solutions-heading h2 span,
.solutions-outro h2 span {
    color: var(--brand);
}

.hero-copy__description {
    max-width: 640px;
    margin: 20px 0 0;
    color: #405476;
    font-size: 21px;
    letter-spacing: 0;
}

.hero-capabilities {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 660px;
    margin-top: 52px;
    padding: 10px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 30px rgba(76, 110, 174, 0.08);
}

.hero-capability {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    color: #405171;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.24s ease, color 0.24s ease;
}

.hero-capability:hover {
    color: var(--brand);
    transform: translateY(-4px);
}

.hero-capability:hover .hero-capability__icon,
.hero-capability:hover .hero-capability__img {
    animation: siteIconFloat 1.5s ease-in-out infinite;
}

.hero-capability__icon {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
    border-radius: 50%;
    background: #e5f4ff;
}

.hero-capability__icon::before,
.hero-capability__icon::after {
    position: absolute;
    content: "";
}

.hero-capability__icon::before {
    top: 13px;
    left: 14px;
    width: 20px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.hero-capability__icon::after {
    right: 10px;
    bottom: 10px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: currentColor;
}

.hero-capability__icon--terminal {
    color: #3da5ef;
    background: #e3f5ff;
}

.hero-capability__icon--monetization {
    color: #f3a341;
    background: #fff1df;
}

.hero-capability__icon--live {
    color: #44cbb2;
    background: #e3f9f3;
}

.hero-capability__icon--merchant {
    color: #8169e8;
    background: #eee9ff;
}

.hero-capability__icon--ai {
    color: #48b8ed;
    background: #e6f7ff;
}

.hero-capability__img {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
    object-fit: contain;
}

.hero-capability__icon--builder {
    color: #e86b87;
    background: #ffe9ef;
}

.hero-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 700px;
    margin-top: 64px;
    column-gap: 12px;
}

.hero-action {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 76px;
    padding: 10px 14px;
    border: 1px solid rgba(231, 237, 248, 0.9);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 20px rgba(84, 114, 163, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-action:hover {
    border-color: #b6cef9;
    box-shadow: 0 12px 24px rgba(47, 112, 244, 0.13);
    transform: translateY(-2px);
}

.hero-action.is-primary {
    color: #fff;
    border-color: #165DFC;
    background: #165DFC;
    box-shadow: 0 10px 24px rgba(47, 112, 244, 0.22);
}

.hero-action__icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 30px;
    height: 34px;
    margin-right: 10px;
    border-radius: 5px;
    background: #ddf0ff;
}

.hero-action__icon::before,
.hero-action__icon::after {
    position: absolute;
    content: "";
}

.hero-action__icon::before {
    top: 8px;
    left: 8px;
    width: 14px;
    height: 2px;
    background: #57a7f5;
    box-shadow: 0 5px 0 #57a7f5, 0 10px 0 #57a7f5;
}

.hero-action__icon::after {
    right: 6px;
    bottom: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #57a7f5;
}

.hero-action.is-primary .hero-action__icon {
    background: rgba(255, 255, 255, 0.2);
}

.hero-action.is-primary .hero-action__icon::before,
.hero-action.is-primary .hero-action__icon::after {
    background: #fff;
    box-shadow: 0 5px 0 #fff, 0 10px 0 #fff;
}

.hero-action__icon--terminal {
    background: #e6f6ff;
}

.hero-action__icon--deploy {
    border-radius: 50%;
    background: #e9f5ff;
}

.hero-action__icon--dashboard {
    width: 34px;
    background: #e5f2ff;
}

.hero-action strong,
.hero-action small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-action strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.hero-action small {
    margin-top: 3px;
    color: #536587;
    font-size: 12px;
    line-height: 1.35;
}

.hero-action.is-primary small {
    color: rgba(255, 255, 255, 0.8);
}

.hero-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1330px;
    margin: -5px auto 0;
    padding: 27px 54px;
    border-radius: 44px 44px 0 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -12px 28px rgba(84, 122, 182, 0.05);
}

.hero-metric {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 48px;
    border-right: 1px solid #edf1f8;
}

.hero-metric:first-child {
    padding-left: 0;
}

.hero-metric:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-metric__icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    margin-right: 14px;
    border-radius: 20px;
    background: #edf5ff;
}

.hero-metric__icon::before {
    position: absolute;
    top: 17px;
    left: 19px;
    width: 24px;
    height: 24px;
    border: 3px solid #55a2f7;
    border-radius: 5px;
    content: "";
}

.hero-metric__icon--merchant::before {
    border-radius: 13px 13px 6px 6px;
}

.hero-metric__icon--course::before {
    border-radius: 3px 11px 11px 3px;
}

.hero-metric__icon--live::before {
    border-radius: 5px;
}

.hero-metric__icon--stability::before {
    border-radius: 50%;
}

.hero-metric strong,
.hero-metric > div > span {
    display: block;
    white-space: nowrap;
}

.hero-metric strong {
    color: #276bef;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
}

.hero-metric > div > span {
    margin-top: 1px;
    color: #4b5c7c;
    font-size: 15px;
}

.solutions-section {
    position: relative;
    min-height: 990px;
    padding: 86px 0 108px;
    background: #fff;
    background: url("/web/images/official/bg/solutions-wave.png") bottom center / cover no-repeat;
}


.solutions-section .site-container {
    position: relative;
    z-index: 1;
}

.solutions-heading {
    text-align: center;
}

.solutions-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
    padding: 0 24px;
    border: 1px solid #d7e6ff;
    border-radius: 22px;
    background: #f5f9ff;
    box-shadow: inset 0 0 0 4px rgba(231, 241, 255, 0.7);
    color: #2d70ef;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0;
}

.solutions-heading h2 {
    margin: 17px 0 0;
    color: #122147;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.46;
}

.solutions-heading__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14px;
    margin-top: 10px;
}

.solutions-heading__pagination i,
.solutions-heading__pagination b {
    display: block;
    height: 5px;
    margin: 0 7px;
    border-radius: 3px;
    background: #cbdcfb;
}

.solutions-heading__pagination i {
    width: 5px;
}

.solutions-heading__pagination b {
    width: 34px;
    background: #165DFC;
}

.solutions-heading > p:last-child {
    margin: 22px 0 0;
    color: #52709e;
    font-size: 21px;
    letter-spacing: 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-top: 61px;
    column-gap: 13px;
}

.solution-card {
    min-width: 0;
    min-height: 270px;
    padding: 18px 12px 22px;
    border: 1px solid #eef2f8;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(80, 112, 164, 0.08);
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.solution-card:hover {
    box-shadow: 0 16px 30px rgba(47, 112, 244, 0.15);
    transform: translateY(-4px);
}

.solution-card:hover .solution-card__media,
.module-card:hover .module-card__visual,
.platform-card:hover .platform-card__visual,
.process-card:hover .process-card__icon,
.industry-card:hover .industry-card__media {
    animation: siteIconFloat 1.7s ease-in-out infinite;
}

.solution-card__media {
    position: relative;
    display: grid;
    width: 124px;
    height: 108px;
    margin: -18px auto 11px;
    place-items: center;
}

.solution-card__media::before {
    position: absolute;
    bottom: 1px;
    left: 8px;
    width: 108px;
    height: 28px;
    border-radius: 50%;
    background: #edf5ff;
    box-shadow: 0 8px 14px rgba(132, 174, 241, 0.18);
    content: "";
}

.solution-card__media span {
    position: relative;
    z-index: 1;
    display: block;
    width: 70px;
    height: 62px;
    border: 6px solid #3f80ed;
    border-radius: 8px;
    background: #e7f2ff;
    box-shadow: 0 10px 18px rgba(68, 128, 237, 0.14);
}

.solution-card__media span::before,
.solution-card__media span::after {
    position: absolute;
    content: "";
}

.solution-card__media span::before {
    top: 11px;
    left: 14px;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: #78aafa;
    box-shadow: 0 10px 0 #78aafa;
}

.solution-card__media span::after {
    right: -11px;
    bottom: -11px;
    width: 24px;
    height: 24px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #5a91f1;
}

.solution-card__media--content::before {
    background: #fff0e8;
}

.solution-card__media--content span {
    border-color: #ff986c;
    background: #fff0e8;
}

.solution-card__media--content span::before,
.solution-card__media--content span::after {
    background: #ff986c;
}

.solution-card__media--compliance::before {
    background: #e2fbf4;
}

.solution-card__media--compliance span {
    width: 60px;
    border-color: #42d3a8;
    border-radius: 28px 28px 20px 20px;
    background: #e2fbf4;
}

.solution-card__media--compliance span::before,
.solution-card__media--compliance span::after {
    background: #42d3a8;
}

.solution-card__media--merchant span {
    width: 74px;
    border-color: #3f80ed;
    border-radius: 9px 9px 15px 15px;
}

.solution-card__media--ai::before {
    background: #e1fbf8;
}

.solution-card__media--ai span {
    border-color: #4ed6c9;
    border-radius: 12px;
    background: #e1fbf8;
}

.solution-card__media--ai span::before,
.solution-card__media--ai span::after {
    background: #4ed6c9;
}

.solution-card__media--builder::before {
    background: #ebedff;
}

.solution-card__media--builder span {
    border-color: #8582f5;
    background: #ebedff;
}

.solution-card__media--builder span::before,
.solution-card__media--builder span::after {
    background: #8582f5;
}

.solution-card__media--upgrade::before {
    background: #fff1dd;
}

.solution-card__media--upgrade span {
    width: 68px;
    height: 68px;
    border-color: #f7b252;
    border-radius: 50%;
    background: #fff1dd;
}

.solution-card__media--upgrade span::before,
.solution-card__media--upgrade span::after {
    background: #f7b252;
}

.solution-card h3 {
    min-height: 30px;
    margin: 0;
    color: #13234a;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
}

.solution-card p {
    margin: 13px 0 0;
    color: #53698f;
    font-size: 14px;
    line-height: 1.8;
}

.solution-card p span {
    display: block;
    white-space: nowrap;
}

.solutions-outro {
    position: relative;
    z-index: 1;
    margin-top: 63px;
    text-align: center;
}

.solutions-outro p {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #165DFC;
    font-size: 21px;
    letter-spacing: 0;
}

.solutions-outro p::before,
.solutions-outro p::after {
    position: absolute;
    top: 7px;
    width: 26px;
    height: 24px;
    border-top: 2px solid #79a9fc;
    border-bottom: 2px solid #79a9fc;
    content: "";
}

.solutions-outro p::before {
    left: -42px;
    border-left: 2px solid #79a9fc;
    border-radius: 14px 0 0 14px;
    transform: rotate(40deg);
}

.solutions-outro p::after {
    right: -42px;
    border-right: 2px solid #79a9fc;
    border-radius: 0 14px 14px 0;
    transform: rotate(-40deg);
}

.solutions-outro h2 {
    margin: 17px 0 0;
    color: #122147;
    font-size: 54px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
}

.solutions-outro > span {
    display: block;
    margin-top: 8px;
    color: #536f9f;
    font-size: 21px;
    letter-spacing: 0;
}

.platform-architecture {
    position: relative;
    padding: 16px 0 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(247, 251, 255, 0.72) 100%),
        url("/web/images/official/bg/business-wave.png") top center / cover no-repeat,
        #f5f8fd;
}

.platform-architecture > .site-container,
.business-system {
    background: transparent;
    box-shadow: none;
}

.platform-architecture > .site-container {
    position: relative;
    z-index: 1;
    padding: 52px 64px 36px;
}

.platform-architecture__heading,
.business-system__heading {
    text-align: center;
}

.platform-architecture__heading h2,
.business-system__heading h2 {
    margin: 0;
    color: #122147;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
}

.platform-architecture__heading p,
.business-system__heading p {
    margin: 7px 0 0;
    color: #526688;
    font-size: 18px;
}

.platform-architecture__heading > span,
.business-system__heading > span {
    display: block;
    width: 32px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 2px;
    background: var(--brand);
}

.platform-card-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1160px;
    margin: 34px auto 0;
    column-gap: 110px;
}

.platform-card-grid::before {
    position: absolute;
    top: 170px;
    right: 17%;
    left: 17%;
    height: 2px;
    border-top: 2px dotted #a1d5ff;
    content: "";
}

.platform-card {
    position: relative;
    z-index: 1;
    min-height: 382px;
    padding: 13px 34px 28px;
    border: 1px solid #ecf0f8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 13px 28px rgba(83, 113, 161, 0.12);
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.platform-card:hover {
    box-shadow: 0 18px 36px rgba(47, 112, 244, 0.16);
    transform: translateY(-5px);
}

.platform-card__visual {
    position: relative;
    display: grid;
    height: 140px;
    margin: 0 auto 12px;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: #eff7ff;
}

.platform-card__visual::before {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 158px;
    height: 88px;
    border: 5px solid #8ed7fb;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 10px 18px rgba(74, 151, 221, 0.14);
    content: "";
    transform: translateX(-50%);
}

.platform-card__visual span {
    position: absolute;
    top: 50px;
    left: calc(50% - 51px);
    z-index: 1;
    width: 42px;
    height: 24px;
    border-radius: 4px;
    background: #a9e0fc;
    box-shadow: 50px 0 0 #dbeeff, 94px 0 0 #eaf5ff, 0 34px 0 #e7f6ff, 50px 34px 0 #c5edff, 94px 34px 0 #eaf5ff;
}

.platform-card__visual i {
    position: absolute;
    right: 34px;
    bottom: 17px;
    z-index: 2;
    width: 38px;
    height: 46px;
    border-radius: 20px 20px 8px 8px;
    background: #165DFC;
    box-shadow: 0 8px 16px rgba(47, 112, 244, 0.22);
}

.platform-card__visual--merchant {
    background: #f2fbf5;
}

.platform-card__visual--merchant::before {
    border-color: #9ddfc3;
}

.platform-card__visual--merchant span {
    background: #b9ead1;
    box-shadow: 50px 0 0 #d8f3e4, 94px 0 0 #e6f8ed, 0 34px 0 #e8f8ef, 50px 34px 0 #c9efd9, 94px 34px 0 #e8f8ef;
}

.platform-card__visual--merchant i {
    width: 46px;
    height: 33px;
    border-radius: 6px 6px 12px 12px;
    background: #39c77a;
}

.platform-card__visual--user {
    background: #fff5ee;
}

.platform-card__visual--user::before {
    width: 56px;
    height: 106px;
    border-color: #ffbd8c;
    border-radius: 13px;
}

.platform-card__visual--user span {
    top: 45px;
    left: calc(50% - 18px);
    width: 36px;
    height: 17px;
    background: #ffc79d;
    box-shadow: 0 27px 0 #ffead7, 0 54px 0 #ffe4ce;
}

.platform-card__visual--user i {
    right: 35px;
    bottom: 21px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff9c31;
}

.platform-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.platform-card__badge {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin-right: 16px;
    border-radius: 50%;
    background: #165DFC;
    box-shadow: 0 9px 18px rgba(47, 112, 244, 0.25);
}

.platform-card__badge::before {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 17px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 2px;
    content: "";
}

.platform-card__badge--merchant {
    background: #39c77a;
    box-shadow: 0 9px 18px rgba(57, 199, 122, 0.22);
}

.platform-card__badge--user {
    background: #ff9c31;
    box-shadow: 0 9px 18px rgba(255, 156, 49, 0.22);
}

.platform-card h3 {
    margin: 0;
    color: #142348;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
}

.platform-card__description {
    margin: 14px 0 15px;
    color: #627494;
    font-size: 15px;
    text-align: center;
}

.platform-card__list {
    display: grid;
    gap: 12px;
    max-width: 180px;
    margin: 0 auto;
    padding: 0;
    color: #4c607f;
    font-size: 16px;
    list-style: none;
}

.platform-card__list li {
    display: flex;
    align-items: center;
    min-height: 28px;
    gap: 9px;
}

.platform-card__list li img {
    display: block;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.platform-card__list li span {
    min-width: 0;
}

.business-system {
    margin-top: 16px;
    padding: 30px 38px 34px;
}

.business-system__heading h2 {
    font-size: 34px;
}

.business-system__heading > span {
    margin-top: 15px;
}

.business-table-wrap {
    overflow-x: auto;
    margin-top: 28px;
    border: 1px solid #e7eef9;
    border-radius: 10px;
}

.business-table {
    min-width: 1080px;
}

.business-table__row {
    display: grid;
    grid-template-columns: 145px repeat(5, minmax(170px, 1fr));
    min-height: 62px;
    background: #fff;
}


.business-table__row > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 12px 16px;
    color: #4e607e;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
}

.business-table__row--head {
    min-height: 48px;
    background: #165DFC;
}

.business-table__row--head > span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.business-table__label {
    position: relative;
    display: grid !important;
    grid-template-columns: 32px max-content;
    gap: 9px;
    color: #1b3156 !important;
    font-size: 16px !important;
    font-weight: 700;
}

.business-table__label::before {
    display: none;
}

.business-table__label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.business-table__label img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.business-table__label span {
    min-width: 0;
}

.modules-section {
    position: relative;
    padding: 102px 0 72px;
    overflow: hidden;
    background: url(/web/images/official/bg/business-wave.png) bottom center / cover no-repeat;
}


.modules-section::before {
    display: none;
}

.modules-section::after {
    display: none;
}

.modules-section .site-container {
    position: relative;
    z-index: 1;
}

.modules-section__heading {
    text-align: center;
}

.modules-section__heading h2 {
    margin: 0;
    color: #122147;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
}

.modules-section__heading h2 span {
    color: var(--brand);
}

.modules-section__heading p {
    margin: 12px 0 0;
    color: #536a91;
    font-size: 19px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 46px;
    gap: 20px 28px;
}

.module-card {
    position: relative;
    min-height: 300px;
    padding: 30px 42px 32px;
    border: 1px solid rgba(241, 246, 253, 0.98);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(76, 107, 156, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.module-card:hover {
    box-shadow: 0 18px 34px rgba(47, 112, 244, 0.15);
    transform: translateY(-4px);
}

.module-card__visual {
    position: relative;
    display: grid;
    width: 132px;
    height: 122px;
    margin: 0 auto 18px;
    place-items: center;
}

.module-card__visual::before {
    position: absolute;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background: #edf6ff;
    content: "";
}

.module-card__visual span {
    position: relative;
    z-index: 1;
    display: block;
    width: 70px;
    height: 55px;
    border: 6px solid #4d8df3;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 9px 18px rgba(78, 139, 236, 0.12);
}

.module-card__visual span::before {
    position: absolute;
    top: 14px;
    left: 13px;
    width: 28px;
    height: 4px;
    border-radius: 3px;
    background: #9bc6ff;
    box-shadow: 0 11px 0 #9bc6ff;
    content: "";
}

.module-card__visual i {
    position: absolute;
    right: 14px;
    bottom: 16px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #165DFC;
}

.module-card__visual--store span {
    width: 75px;
    border-radius: 11px 11px 14px 14px;
}

.module-card__visual--content span {
    border-radius: 14px;
}

.module-card__visual--content i,
.module-card--orange .module-card__action {
    background: #ffac3d;
}

.module-card__visual--live span,
.module-card__visual--service span {
    border-color: #49cbbb;
}

.module-card__visual--live i,
.module-card__visual--service i,
.module-card--green .module-card__action {
    background: #35cbb7;
}

.module-card__visual--payment span {
    border-radius: 10px;
    background: #4d8df3;
}

.module-card__visual--builder span {
    width: 76px;
    border-color: #4d8df3;
}

.module-card__visual--member span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.module-card h3 {
    margin: 0;
    color: #13234a;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.35;
}

.module-card p {
    margin: 13px 0 0;
    color: #566a8c;
    font-size: 15px;
    line-height: 1.7;
}

.module-card p span {
    display: block;
}

.module-card__action {
    position: absolute;
    right: 28px;
    bottom: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: #165DFC;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.module-card__action:hover {
    color: #fff;
    background: #165DFC;
    transform: translateX(2px);
}

.closure-section {
    position: relative;
    padding: 30px 0 92px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.98) 100%);
}

.closure-section::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 4%, rgba(233, 241, 255, 0.72) 0 110px, transparent 111px),
        radial-gradient(circle at 0 52%, rgba(225, 246, 255, 0.68) 0 90px, transparent 91px);
    content: "";
    pointer-events: none;
}

.closure-section .site-container {
    position: relative;
    z-index: 1;
}

.closure-section__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 32px;
}

.closure-section__heading h2 {
    margin: 0;
    color: #0f2d67;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

.closure-section__heading p {
    margin: 12px 0 0;
    color: #596c8c;
    font-size: 20px;
    line-height: 1.4;
}

.closure-section__quote {
    justify-self: end;
    margin-top: 14px;
    padding: 0 18px;
    color: #254273;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.closure-section__legend {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 24px;
}

.closure-legend-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding-left: 34px;
    color: #20375f;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.closure-legend-item::before {
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    content: "";
    box-shadow: 0 10px 18px rgba(72, 121, 213, 0.18);
}

.closure-legend-item--blue::before {
    background: linear-gradient(180deg, #4f8eff 0%, #1e66ed 100%);
}

.closure-legend-item--orange::before {
    background: linear-gradient(180deg, #ffb862 0%, #ff8f1f 100%);
}

.closure-flow {
    position: relative;
    margin-top: 34px;
    padding: 28px 0 24px;
}

.closure-flow__labels {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
    padding-top: 8px;
}

.closure-step {
    position: relative;
    min-height: 142px;
    padding: 0 6px;
    text-align: center;
}

.closure-step__number {
    display: block;
    color: #165DFC;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.closure-step h3 {
    margin: 14px 0 0;
    color: #16274a;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.closure-step p {
    max-width: 118px;
    margin: 12px auto 0;
    color: #5d6f8f;
    font-size: 14px;
    line-height: 1.55;
}

.closure-step__icon {
    display: block;
    width: 56px;
    height: 56px;
    margin: 12px auto 0;
    object-fit: contain;
}

.closure-flow__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    align-items: center;
    gap: 14px;
    min-height: 96px;
    margin-top: 20px;
}

.closure-flow__track::before {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    height: 7px;
    border-radius: 999px;
    content: "";
    transform: translateY(-50%);
}

.closure-flow__track--blue::before {
    background: linear-gradient(90deg, #165DFC 0%, #22dcdd 100%);
    box-shadow: 0 0 16px rgba(47, 112, 244, 0.28);
}

.closure-flow__track--orange {
    margin-top: 20px;
}

.closure-flow__track--orange::before {
    background: linear-gradient(90deg, #ff8d21 0%, #ffbc68 100%);
    box-shadow: 0 0 16px rgba(255, 142, 35, 0.24);
}

.closure-flow__node {
    position: relative;
    z-index: 1;
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border: 10px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 14px 24px rgba(76, 108, 159, 0.16);
}

.closure-flow__node::before {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 22px;
    height: 22px;
    border: 4px solid #fff;
    border-radius: 7px;
    content: "";
}

.closure-flow__node::after {
    position: absolute;
    left: 50%;
    top: 49px;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    content: "";
}

.closure-flow__node i {
    display: none;
}

.closure-flow__node img {
    display: block;
    width: 58px;
    height: 58px;
    margin: 5px auto 0;
    border-radius: 50%;
    background: #ffffff;
    object-fit: contain;
    padding: 6px;
}

.closure-flow__node:has(img)::before,
.closure-flow__node:has(img)::after {
    display: none;
}

.closure-step--blue .closure-step__number {
    color: #165DFC;
}

.closure-flow__node--blue {
    background: linear-gradient(180deg, #6ea4ff 0%, #165DFC 100%);
}

.closure-step--orange .closure-step__number {
    color: #ff911c;
}

.closure-flow__node--orange {
    background: linear-gradient(180deg, #ffb762 0%, #ff911c 100%);
}

.closure-flow__node::before {
    background: #fff;
}

.closure-flow__node--blue::after {
    background: #dfe9ff;
}

.closure-flow__node--orange::after {
    background: #ffe7c4;
}

.closure-packs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 76px;
}

.closure-pack {
    min-height: 178px;
    padding: 28px 34px 24px;
    border: 1px solid rgba(231, 239, 250, 0.96);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 34px rgba(84, 117, 167, 0.09);
}

.closure-pack--blue {
    box-shadow: 0 16px 34px rgba(84, 117, 167, 0.08), inset 0 0 0 1px rgba(63, 116, 255, 0.05);
}

.closure-pack--orange {
    box-shadow: 0 16px 34px rgba(84, 117, 167, 0.08), inset 0 0 0 1px rgba(255, 155, 48, 0.05);
}

.closure-pack__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.closure-pack__head h3 {
    margin: 0;
    color: #13336b;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.closure-pack__head span {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    padding: 3px 12px;
    border-radius: 999px;
    background: #e8f1ff;
    color: #165DFC;
    font-size: 13px;
    font-weight: 700;
}

.closure-pack--orange .closure-pack__head span {
    background: #fff0de;
    color: #ff911c;
}

.closure-pack__items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.closure-pack__items span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: #f5f9ff;
    color: #3e557c;
    font-size: 15px;
    font-weight: 600;
}

.closure-pack--orange .closure-pack__items span {
    background: #fff8ef;
}

.closure-pack__items span img {
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    object-fit: contain;
}

.closure-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 52px;
    color: #5d6e8f;
    font-size: 18px;
    font-weight: 600;
}

.closure-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    white-space: nowrap;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.closure-tab:hover,
.closure-tab.is-active {
    color: #165DFC;
    font-weight: 800;
}

.closure-tab img {
    display: none;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    object-fit: contain;
}

.closure-tab:hover img,
.closure-tab.is-active img {
    display: block;
}

.closure-tab__divider {
    color: #c1cee2;
}

.positioning-section {
    position: relative;
    min-height: 860px;
    padding: 112px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at 81% 52%, rgba(218, 235, 255, 0.86) 0 168px, transparent 169px),
        linear-gradient(180deg, #fbfdff 0%, #eef6ff 100%);
}

.positioning-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(520px, 0.86fr) minmax(560px, 1.14fr);
    align-items: center;
    gap: 56px;
}

.positioning-copy {
    min-width: 0;
}

.positioning-copy__eyebrow {
    position: relative;
    margin: 0;
    padding-bottom: 16px;
    color: #1777ff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.positioning-copy__eyebrow::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 4px;
    border-radius: 999px;
    background: #1777ff;
    content: "";
}

.positioning-copy h2 {
    margin: 34px 0 0;
    color: #10234a;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: 0;
}

.positioning-copy h2 span {
    color: #2478ff;
}

.positioning-copy__desc {
    max-width: 650px;
    margin: 28px 0 0;
    color: #52688d;
    font-size: 20px;
    line-height: 1.85;
}

.positioning-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 680px;
    margin-top: 96px;
    padding-top: 44px;
    border-top: 1px solid rgba(212, 224, 241, 0.82);
}

.positioning-feature {
    position: relative;
    min-width: 0;
    padding-right: 24px;
    transition: transform 0.26s ease;
}

.positioning-feature:hover {
    transform: translateY(-6px);
}

.positioning-feature:not(:last-child)::after {
    position: absolute;
    top: 24px;
    right: 0;
    width: 1px;
    height: 42px;
    background: #d8e4f4;
    content: "";
}

.positioning-feature__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #eef6ff;
    box-shadow: inset 0 0 0 1px rgba(47, 112, 244, 0.04);
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.positioning-feature.is-visible .positioning-feature__icon {
    animation: siteIconFloat 2.6s ease-in-out infinite;
    animation-delay: calc(var(--animate-delay, 0ms) + 320ms);
}

.positioning-feature:hover .positioning-feature__icon {
    box-shadow:
        0 14px 26px rgba(47, 112, 244, 0.16),
        inset 0 0 0 1px rgba(47, 112, 244, 0.08);
    transform: translateY(-2px) scale(1.05);
}

.positioning-feature__icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.positioning-feature__icon:has(img)::before,
.positioning-feature__icon:has(img)::after {
    display: none;
}

.positioning-feature__icon::before,
.positioning-feature__icon::after {
    position: absolute;
    content: "";
}

.positioning-feature__icon::before {
    width: 28px;
    height: 28px;
    border: 3px solid #246feb;
}

.positioning-feature__icon--content::before {
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 2px 70% 2px 70%;
    transform: rotate(-45deg);
}

.positioning-feature__icon--content::after {
    width: 18px;
    height: 2px;
    background: #246feb;
    transform: rotate(-32deg);
}

.positioning-feature__icon--live::before {
    width: 30px;
    height: 23px;
    border-radius: 4px;
}

.positioning-feature__icon--live::after {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #246feb;
}

.positioning-feature__icon--merchant::before {
    width: 29px;
    height: 8px;
    border-radius: 2px;
    background: #246feb;
    box-shadow: 0 12px 0 #246feb, 0 24px 0 #246feb;
    transform: rotate(30deg);
}

.positioning-feature__icon--data::before {
    width: 34px;
    height: 22px;
    border-width: 0 0 3px 3px;
    border-radius: 0;
}

.positioning-feature__icon--data::after {
    width: 31px;
    height: 18px;
    border-top: 3px solid #246feb;
    border-right: 3px solid #246feb;
    transform: skew(-25deg) translate(2px, -4px);
}

.positioning-feature h3 {
    margin: 0;
    color: #10234a;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
}

.positioning-feature p {
    margin: 6px 0 0;
    color: #667a9c;
    font-size: 16px;
    line-height: 1.4;
}

.positioning-visual {
    position: relative;
    min-height: 610px;
}

.positioning-visual__orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 2px dashed rgba(83, 152, 255, 0.42);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-9deg);
    pointer-events: none;
}

.positioning-visual__orbit--outer {
    width: 560px;
    height: 390px;
}

.positioning-visual__orbit--inner {
    width: 430px;
    height: 252px;
    border-color: rgba(130, 192, 255, 0.34);
    transform: translate(-50%, -45%) rotate(-10deg);
}

.positioning-visual__platform {
    position: absolute;
    left: 50%;
    top: 55%;
    width: 352px;
    height: 300px;
    transform: translate(-50%, -50%);
}

.positioning-visual__platform::before,
.positioning-visual__platform::after {
    position: absolute;
    left: 50%;
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
}

.positioning-visual__platform::before {
    bottom: 0;
    width: 352px;
    height: 140px;
    border: 1px solid rgba(122, 178, 252, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, #e4f1ff 52%, #2f82ff 100%);
    box-shadow: 0 28px 42px rgba(47, 112, 244, 0.18);
}

.positioning-visual__platform::after {
    bottom: 96px;
    width: 250px;
    height: 88px;
    border: 1px solid rgba(147, 192, 255, 0.4);
    background: linear-gradient(180deg, #ffffff 0%, #dcedff 100%);
    box-shadow: 0 20px 38px rgba(47, 112, 244, 0.14);
}

.positioning-visual__logo {
    position: absolute;
    left: 50%;
    top: 56px;
    z-index: 1;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(158, 198, 255, 0.5);
    border-radius: 50%;
    background: linear-gradient(180deg, #f7fbff 0%, #deedff 100%);
    box-shadow: 0 22px 44px rgba(66, 113, 178, 0.15);
    transform: translateX(-50%);
}

.positioning-visual__logo::before,
.positioning-visual__logo::after {
    position: absolute;
    content: "";
}

.positioning-visual__logo::before {
    left: 39px;
    top: 42px;
    width: 72px;
    height: 74px;
    border-radius: 23px 23px 30px 30px;
    background: linear-gradient(135deg, #38b9ff 0%, #1575ef 74%);
    clip-path: polygon(50% 0, 100% 100%, 58% 100%, 50% 82%, 42% 100%, 0 100%);
    box-shadow: 0 15px 28px rgba(47, 112, 244, 0.26);
}

.positioning-visual__logo::after {
    left: 63px;
    top: 78px;
    width: 28px;
    height: 30px;
    border-radius: 50%;
    background: #f7fbff;
    transform: rotate(-18deg);
}

.positioning-orbit-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    min-width: 208px;
    min-height: 96px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 38px rgba(84, 117, 167, 0.12);
    backdrop-filter: blur(12px);
}

.positioning-orbit-card--control {
    left: 50%;
    top: 54px;
    transform: translateX(-50%);
}

.positioning-orbit-card--merchant {
    left: 14px;
    top: 340px;
    background: rgba(218, 248, 242, 0.78);
}

.positioning-orbit-card--conversion {
    right: 0;
    top: 340px;
    background: rgba(255, 237, 222, 0.78);
}

.positioning-orbit-card__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    margin-right: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #56a0ff 0%, #1d6cf1 100%);
}

.positioning-orbit-card__icon::before,
.positioning-orbit-card__icon::after {
    position: absolute;
    content: "";
}

.positioning-orbit-card--blue .positioning-orbit-card__icon::before {
    width: 22px;
    height: 12px;
    border: 4px solid #fff;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
}

.positioning-orbit-card--green .positioning-orbit-card__icon {
    background: linear-gradient(180deg, #38d6bd 0%, #16b69c 100%);
}

.positioning-orbit-card--green .positioning-orbit-card__icon::before {
    width: 30px;
    height: 24px;
    border: 3px solid #fff;
    border-radius: 3px 3px 8px 8px;
}

.positioning-orbit-card--green .positioning-orbit-card__icon::after {
    top: 13px;
    width: 34px;
    height: 12px;
    border: 3px solid #fff;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.positioning-orbit-card--orange .positioning-orbit-card__icon {
    border-radius: 50%;
    background: linear-gradient(180deg, #ffb457 0%, #ff8a1d 100%);
}

.positioning-orbit-card--orange .positioning-orbit-card__icon::before {
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
}

.positioning-orbit-card--orange .positioning-orbit-card__icon::after {
    bottom: 12px;
    width: 30px;
    height: 16px;
    border-radius: 16px 16px 8px 8px;
    background: #fff;
}

.positioning-orbit-card h3 {
    margin: 0;
    color: #13264b;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.positioning-orbit-card p {
    margin: 6px 0 0;
    color: #456082;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.positioning-visual__bubble {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(216, 232, 253, 0.82);
    background: rgba(243, 249, 255, 0.88);
    box-shadow: 0 16px 34px rgba(91, 127, 178, 0.1);
}

.positioning-visual__bubble::before,
.positioning-visual__bubble::after {
    position: absolute;
    content: "";
}

.positioning-visual__bubble--chat {
    left: 92px;
    top: 222px;
    width: 68px;
    height: 48px;
    border-radius: 14px;
}

.positioning-visual__bubble--chat::before {
    left: 14px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5a9fff;
    box-shadow: 16px 0 0 #5a9fff, 32px 0 0 #5a9fff;
}

.positioning-visual__bubble--chat::after {
    left: 12px;
    bottom: -7px;
    border-top: 8px solid rgba(243, 249, 255, 0.88);
    border-right: 8px solid transparent;
}

.positioning-visual__bubble--chart {
    right: 74px;
    top: 162px;
    width: 72px;
    height: 64px;
    border-radius: 14px;
}

.positioning-visual__bubble--chart::before {
    left: 17px;
    bottom: 17px;
    width: 8px;
    height: 18px;
    border-radius: 4px;
    background: #72b7ff;
    box-shadow: 14px -8px 0 #4fa0fb, 28px -18px 0 #88c8ff;
}

.positioning-visual__bubble--play {
    right: 76px;
    bottom: 76px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

.positioning-visual__bubble--play::before {
    left: 23px;
    top: 19px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid #2f86ff;
}

.process-section {
    position: relative;
    padding: 50px 0 68px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 100%, rgba(181, 232, 255, 0.34) 0 190px, transparent 191px),
        radial-gradient(circle at 92% 100%, rgba(207, 241, 255, 0.4) 0 170px, transparent 171px),
        linear-gradient(180deg, #fbfdff 0%, #edf7ff 100%);
}

.process-section .site-container {
    position: relative;
    z-index: 1;
}

.process-section__heading {
    position: relative;
    text-align: center;
}

.process-section__heading::before,
.process-section__heading::after {
    position: absolute;
    top: 18px;
    width: 116px;
    height: 16px;
    border-top: 2px solid #d6eaff;
    content: "";
}

.process-section__heading::before {
    right: calc(50% + 222px);
}

.process-section__heading::after {
    left: calc(50% + 222px);
}

.process-section__heading h2 {
    margin: 0;
    color: #10234a;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.process-section__heading p {
    margin: 8px 0 0;
    color: #536487;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.process-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    margin-top: 28px;
}

.process-legend__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    color: #2d4168;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.process-legend__item::before {
    position: absolute;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    content: "";
}

.process-legend__item--blue::before {
    background: linear-gradient(180deg, #58a1ff 0%, #2473f4 100%);
}

.process-legend__item--orange::before {
    background: linear-gradient(180deg, #ffb765 0%, #ff8d24 100%);
}

.process-board {
    position: relative;
    margin-top: 48px;
    padding-bottom: 36px;
}

.process-board::before,
.process-board::after {
    position: absolute;
    z-index: 0;
    border: 3px solid #3f83ff;
    content: "";
    pointer-events: none;
}

.process-board::before {
    left: 34px;
    top: 72px;
    bottom: 10px;
    width: 82px;
    border-right: 0;
    border-radius: 38px 0 0 38px;
    opacity: 0.9;
}

.process-board::after {
    right: 0;
    top: 82px;
    bottom: 12px;
    width: 74px;
    border-left: 0;
    border-radius: 0 38px 38px 0;
    opacity: 0.9;
}

.process-step-row,
.process-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 122px repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.process-step-row {
    align-items: end;
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    border: 1px solid #c8ddfb;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
    box-shadow: 0 9px 18px rgba(69, 116, 184, 0.12);
}

.process-step::before {
    position: absolute;
    left: 50%;
    top: -16px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3c8cff;
    content: "";
    transform: translateX(-50%);
}

.process-step::after {
    display: none;
}

.process-step__arrow {
    position: absolute;
    right: -35px;
    top: calc(50% + 13px); /* 数字(20px) + 间距(6px) 的一半，对齐标题垂直中心 */
    color: #5a9fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
}

.process-step span {
    color: #2473f4;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.process-step strong {
    display: block;
    margin-top: 6px;
    color: #16294f;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.process-row {
    align-items: stretch;
    margin-top: 18px;
}

.process-row__label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 112px;
    padding: 14px 10px;
    border: 1px solid #b9d8ff;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(80, 123, 184, 0.08);
    text-align: center;
}

.process-row__label-icon {
    position: relative;
    display: block;
    width: 44px;
    height: 40px;
    margin-bottom: 8px;
    border-radius: 9px;
    background: linear-gradient(180deg, #62a5ff 0%, #2e75f4 100%);
}

.process-row__label-icon::before,
.process-row__label-icon::after {
    position: absolute;
    content: "";
}

.process-row__label-icon::before {
    left: 10px;
    top: 12px;
    width: 26px;
    height: 5px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 9px 0 #fff, 0 18px 0 #fff;
}

.process-row__label-icon::after {
    left: 50%;
    top: -10px;
    width: 36px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%);
}

.process-row__label strong {
    color: #2072f5;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.process-row--orange .process-row__label {
    border-color: #ffd0a5;
    background: rgba(255, 250, 245, 0.94);
}

.process-row--orange .process-row__label-icon {
    border-radius: 8px;
    background: linear-gradient(180deg, #ffbb67 0%, #ff8f24 100%);
}

.process-row--orange .process-row__label-icon::before {
    left: 11px;
    top: 12px;
    width: 24px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: transparent;
    box-shadow: none;
}

.process-row--orange .process-row__label-icon::after {
    left: 23px;
    top: 6px;
    width: 16px;
    height: 11px;
    border: 3px solid #fff;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    background: transparent;
}

.process-row--orange .process-row__label strong {
    color: #ff8f24;
}

.process-row__label-icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto;
    object-fit: contain;
}

.process-row__label-icon:has(img)::before,
.process-row__label-icon:has(img)::after {
    display: none;
}

.process-card {
    position: relative;
    min-height: 112px;
    padding: 14px 12px 12px;
    border: 1px solid #b9d8ff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 20px rgba(82, 120, 177, 0.06);
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.process-card:hover {
    box-shadow: 0 13px 26px rgba(47, 112, 244, 0.14);
    transform: translateY(-4px);
}

.process-card::after {
    position: absolute;
    right: -13px;
    top: 50%;
    width: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(47, 112, 244, 0.35), rgba(47, 112, 244, 0));
    content: "";
}

.process-card:last-child::after {
    display: none;
}

.process-card__icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(226, 241, 255, 0.9) 0%, rgba(245, 250, 255, 0.98) 100%);
}

.process-card__icon::before,
.process-card__icon::after {
    position: absolute;
    content: "";
}

.process-card__icon::before {
    left: 11px;
    top: 11px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: linear-gradient(180deg, #5ba2ff 0%, #2473f4 100%);
}

.process-card__icon::after {
    left: 15px;
    top: 16px;
    width: 10px;
    height: 6px;
    border: 3px solid #fff;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
}

.process-card__icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    object-fit: contain;
}

.process-card__icon:has(img)::before,
.process-card__icon:has(img)::after {
    display: none;
}

.process-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-card li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #294064;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.55;
    white-space: nowrap;
}

.process-card li::before {
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2473f4;
    content: "";
}

.process-row--orange .process-card {
    border-color: #ffc996;
    background: rgba(255, 250, 245, 0.9);
}

.process-row--orange .process-card::after {
    background: linear-gradient(90deg, rgba(255, 143, 36, 0.34), rgba(255, 143, 36, 0));
}

.process-row--orange .process-card__icon {
    background: linear-gradient(180deg, rgba(255, 238, 222, 0.92) 0%, rgba(255, 250, 245, 0.98) 100%);
}

.process-row--orange .process-card__icon::before {
    background: linear-gradient(180deg, #ffb765 0%, #ff8d24 100%);
}

.process-row--orange .process-card li::before {
    background: #ff8f24;
}

.process-results {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 690px;
    margin: 34px auto 0;
    padding: 20px 34px;
    border: 1px solid #c8ddfb;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(84, 117, 167, 0.12);
}

.process-result {
    display: flex;
    align-items: center;
    min-width: 0;
}

.process-result__icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    margin-right: 12px;
    border-radius: 9px;
    background: linear-gradient(180deg, #5aa2ff 0%, #2473f4 100%);
}

.process-result__icon::before,
.process-result__icon::after {
    position: absolute;
    content: "";
}

.process-result__icon::before {
    left: 12px;
    bottom: 11px;
    width: 5px;
    height: 13px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 9px -6px 0 #fff, 18px -12px 0 #fff;
}

.process-result__icon::after {
    left: 10px;
    bottom: 8px;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.process-result--security .process-result__icon {
    border-radius: 50% 50% 14px 14px;
    background: linear-gradient(180deg, #67e3b0 0%, #22c789 100%);
}

.process-result--security .process-result__icon::before {
    left: 13px;
    top: 15px;
    width: 17px;
    height: 9px;
    border: 3px solid #fff;
    border-top: 0;
    border-right: 0;
    background: transparent;
    box-shadow: none;
    transform: rotate(-45deg);
}

.process-result--security .process-result__icon::after {
    display: none;
}

.process-result--growth .process-result__icon {
    border-radius: 50%;
    background: linear-gradient(180deg, #6bdca9 0%, #2fc88d 100%);
}

.process-result--growth .process-result__icon::before {
    left: 15px;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
}

.process-result--growth .process-result__icon::after {
    left: 9px;
    bottom: 9px;
    width: 26px;
    height: 14px;
    border-radius: 14px 14px 8px 8px;
    background: #fff;
}

.process-result h3 {
    margin: 0;
    color: #15294f;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.process-result p {
    margin: 4px 0 0;
    color: #5f7192;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
}

.industry-section {
    position: relative;
    padding: 96px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 44%, rgba(222, 232, 250, 0.9) 0 90px, transparent 91px),
        radial-gradient(circle at 100% 52%, rgba(222, 232, 250, 0.9) 0 90px, transparent 91px),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.industry-section[style] {
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.78);
}

.industry-section::before {
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -178px;
    height: 320px;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(180deg, rgba(221, 233, 253, 0.88) 0%, rgba(213, 228, 252, 0.96) 44%, rgba(247, 250, 255, 0) 100%);
    content: "";
    pointer-events: none;
    transform: rotate(-5deg);
}

.industry-section::after {
    position: absolute;
    left: -10%;
    bottom: -250px;
    width: 120%;
    height: 410px;
    border: 42px solid rgba(217, 231, 250, 0.66);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
    content: "";
    pointer-events: none;
    transform: rotate(-6deg);
}

.industry-section .site-container {
    position: relative;
    z-index: 1;
}

.industry-section__heading {
    text-align: center;
}

.industry-section__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
    padding: 0 24px;
    border: 1px solid #d8e5ff;
    border-radius: 999px;
    background: #edf4ff;
    box-shadow: inset 0 0 0 4px rgba(232, 240, 255, 0.72);
    color: #2473f4;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
}

.industry-section__heading h2 {
    margin: 16px 0 0;
    color: #122147;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
}

.industry-section__heading > p:last-child {
    margin: 14px 0 0;
    color: #566b8f;
    font-size: 20px;
    line-height: 1.45;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 28px;
    margin-top: 48px;
}

.industry-card {
    --accent: #165DFC;
    --halo: #edf5ff;
    min-width: 0;
    min-height: 324px;
    padding: 24px 20px 28px;
    border: 1px solid rgba(238, 242, 249, 0.96);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px rgba(80, 112, 164, 0.08);
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.industry-card:hover {
    box-shadow: 0 18px 34px rgba(47, 112, 244, 0.12);
    transform: translateY(-4px);
}

.industry-card--blue {
    --accent: #165DFC;
    --halo: #edf5ff;
}

.industry-card--green {
    --accent: #23c291;
    --halo: #ecfbf4;
}

.industry-card--orange {
    --accent: #ff911d;
    --halo: #fff3e7;
}

.industry-card--purple {
    --accent: #7a6fff;
    --halo: #f1efff;
}

.industry-card__media {
    position: relative;
    display: grid;
    width: 156px;
    height: 118px;
    margin: -10px auto 10px;
    place-items: center;
}

.industry-card__media::before {
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 120px;
    height: 30px;
    border-radius: 50%;
    background: var(--halo);
    box-shadow: 0 10px 16px rgba(132, 174, 241, 0.14);
    content: "";
    transform: translateX(-50%);
}

.industry-card__media img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 128px;
    max-height: 96px;
    object-fit: contain;
}

.industry-card__media span,
.industry-card__media i {
    position: absolute;
    display: block;
}

.industry-card__media span::before,
.industry-card__media span::after,
.industry-card__media i::before,
.industry-card__media i::after {
    position: absolute;
    content: "";
}

.industry-card__media--knowledge span {
    width: 74px;
    height: 92px;
    border-radius: 22px;
    background: linear-gradient(180deg, #66a7ff 0%, #165DFC 100%);
    box-shadow: 0 16px 26px rgba(47, 112, 244, 0.22);
}

.industry-card__media--knowledge span::before {
    left: 16px;
    top: 16px;
    width: 42px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.industry-card__media--knowledge span::after {
    left: 30px;
    top: 34px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
}

.industry-card__media--knowledge i {
    right: 18px;
    bottom: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffd86d;
    box-shadow: -30px -14px 0 rgba(255, 255, 255, 0.88);
}

.industry-card__media--knowledge i::before {
    left: -34px;
    bottom: -6px;
    width: 6px;
    height: 16px;
    border-radius: 4px;
    background: #6ca8ff;
    box-shadow: 10px -6px 0 #6ca8ff, 20px -12px 0 #6ca8ff;
}

.industry-card__media--education span {
    width: 94px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(180deg, #62d8b2 0%, #24c88f 100%);
    box-shadow: 0 16px 26px rgba(35, 194, 145, 0.2);
}

.industry-card__media--education span::before {
    left: 13px;
    top: -26px;
    width: 68px;
    height: 42px;
    border-radius: 4px;
    background: linear-gradient(180deg, #f3fff9 0%, #dffaf0 100%);
    clip-path: polygon(50% 0, 100% 28%, 50% 58%, 0 28%);
}

.industry-card__media--education span::after {
    left: 20px;
    top: 10px;
    width: 54px;
    height: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
}

.industry-card__media--education i {
    left: 18px;
    bottom: 12px;
    width: 58px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.industry-card__media--education i::before {
    left: 18px;
    top: -18px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.industry-card__media--education i::after {
    left: 10px;
    top: -12px;
    width: 38px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.industry-card__media--commerce span {
    width: 92px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffbe73 0%, #ff9020 100%);
    box-shadow: 0 16px 26px rgba(255, 145, 29, 0.2);
}

.industry-card__media--commerce span::before {
    left: 12px;
    top: 14px;
    width: 46px;
    height: 24px;
    border: 6px solid #fff;
    border-top-width: 8px;
    border-radius: 10px 12px 12px 12px;
    background: transparent;
}

.industry-card__media--commerce span::after {
    left: 28px;
    top: 44px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 22px 0 0 #fff;
}

.industry-card__media--commerce i {
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    border: 5px solid #fff;
    border-right: 0;
    border-bottom: 0;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.industry-card__media--commerce i::before {
    right: -50px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 18px -12px 0 rgba(255, 255, 255, 0.28);
}

.industry-card__media--live span {
    width: 90px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(180deg, #9f91ff 0%, #7367ff 100%);
    box-shadow: 0 16px 26px rgba(122, 111, 255, 0.2);
}

.industry-card__media--live span::before {
    left: 15px;
    top: 14px;
    width: 60px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
}

.industry-card__media--live span::after {
    left: 35px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
}

.industry-card__media--live i {
    left: 16px;
    bottom: 4px;
    width: 58px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

.industry-card__media--live i::before {
    left: 20px;
    top: -18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 12px 0 0 rgba(255, 255, 255, 0.72);
}

.industry-card__media--enterprise span {
    width: 84px;
    height: 92px;
    border-radius: 18px;
    background: linear-gradient(180deg, #6fa3ff 0%, #165DFC 100%);
    box-shadow: 0 16px 26px rgba(47, 112, 244, 0.2);
}

.industry-card__media--enterprise span::before {
    left: 12px;
    top: 16px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
}

.industry-card__media--enterprise span::after {
    left: 20px;
    top: 26px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 14px 0 0 #fff, 28px 0 0 #fff, 0 14px 0 #fff, 14px 14px 0 #fff, 28px 14px 0 #fff;
}

.industry-card__media--enterprise i {
    right: 10px;
    bottom: 12px;
    width: 30px;
    height: 30px;
    border: 4px solid #fff;
    border-radius: 8px 8px 12px 12px;
}

.industry-card__media--enterprise i::before {
    left: 7px;
    top: -20px;
    width: 16px;
    height: 10px;
    border-radius: 999px 999px 0 0;
    background: rgba(255, 255, 255, 0.92);
}

.industry-card__media--local span {
    width: 92px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(180deg, #5fd9b4 0%, #22bf8d 100%);
    box-shadow: 0 16px 26px rgba(35, 194, 145, 0.2);
}

.industry-card__media--local span::before {
    left: 8px;
    top: 10px;
    width: 76px;
    height: 20px;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(180deg, #30c892 0%, #20b67f 100%);
}

.industry-card__media--local span::after {
    left: 20px;
    top: 30px;
    width: 52px;
    height: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.32);
}

.industry-card__media--local i {
    right: 8px;
    bottom: 8px;
    width: 22px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #4be1ad;
    transform: rotate(45deg);
}

.industry-card__media--local i::before {
    left: 7px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.industry-card h3 {
    margin: 0;
    color: #13234a;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.industry-card__line {
    display: block;
    width: 38px;
    height: 4px;
    margin: 12px auto 14px;
    border-radius: 999px;
    background: var(--accent);
}

.industry-card p {
    margin: 0;
    color: #5f7192;
    font-size: 16px;
    line-height: 1.58;
}

.industry-card p span {
    display: block;
}

.site-footer {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #051934;
    color: #fff;
}

.site-footer-cta {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: #0757e8 url("/web/images/official/footer/cta-bg.png") center center / cover no-repeat;
}

.site-footer-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(7, 91, 235, 0.04) 0%, rgba(0, 42, 148, 0.2) 100%),
        radial-gradient(circle at 50% 20%, rgba(91, 193, 255, 0.16) 0 180px, transparent 360px);
    pointer-events: none;
}

.site-footer-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 410px;
    padding: 42px 0 45px;
    text-align: center;
}

.site-footer-cta__title {
    width: min(642px, 70vw);
    height: 82px;
    object-fit: contain;
    object-position: center;
}

.site-footer-cta__desc {
    margin: 2px 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
}

.site-footer-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 330px;
    min-height: 68px;
    padding: 0 42px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow:
        0 14px 26px rgba(0, 45, 130, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    color: #0a6df3;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-cta__button:hover {
    box-shadow:
        0 18px 32px rgba(0, 45, 130, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.site-footer-cta__button i {
    margin-left: 30px;
    color: #0a6df3;
    font-size: 28px;
    line-height: 1;
}

.site-footer-cta__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 84px;
    width: min(845px, 100%);
    margin-top: auto;
}

.site-consult-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.site-consult-overlay.is-open {
    display: flex;
}

.site-consult-overlay__mask {
    position: absolute;
    inset: 0;
    background: rgba(20, 34, 64, 0.55);
}

.site-consult-box {
    position: relative;
    z-index: 1;
    width: min(360px, calc(100% - 32px));
    padding: 30px 28px 26px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 30, 60, 0.28);
    text-align: center;
    animation: siteConsultBoxIn 0.25s ease;
}

@keyframes siteConsultBoxIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.site-consult-box__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #9aa9c1;
    font-size: 26px;
    line-height: 32px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-consult-box__close:hover {
    background: #f1f5fb;
    color: #3f5278;
}

.site-consult-box h3 {
    margin: 0;
    color: #122147;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
}

.site-consult-box__title {
    margin: 8px 0 18px;
    color: #687b9e;
    font-size: 14px;
    line-height: 1.65;
}

.site-consult-box__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 260px;
    min-height: 150px;
    margin: 0 auto;
    padding: 22px 18px;
    border: 1px solid #dce8fb;
    border-radius: 12px;
    background: #f7faff;
}

.site-consult-box__phone i {
    color: var(--brand);
    font-size: 34px;
}

.site-consult-box__phone a {
    margin-top: 10px;
    color: #122147;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
}

.site-consult-box__phone span {
    margin-top: 6px;
    color: #687b9e;
    font-size: 13px;
}

.site-consult-box__tip {
    margin: 16px 0 0;
    color: #8c9db8;
    font-size: 13px;
}

.site-footer-feature {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-align: left;
    transition: transform 0.24s ease;
}

.site-footer-feature:hover {
    transform: translateY(-5px);
}

.site-footer-feature__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    margin-right: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.55) 0 8px, transparent 9px),
        linear-gradient(135deg, #6fd8ff 0%, #0e63f6 58%, #003ec6 100%);
    box-shadow:
        0 0 28px rgba(78, 189, 255, 0.58),
        inset 0 0 16px rgba(255, 255, 255, 0.18);
    transition: transform 0.24s ease;
}

.site-footer-feature.is-visible .site-footer-feature__icon {
    animation:
        siteIconFloat 2.8s ease-in-out infinite,
        siteIconPulse 2.8s ease-in-out infinite;
    animation-delay: calc(var(--animate-delay, 0ms) + 260ms);
}

.site-footer-feature:hover .site-footer-feature__icon {
    transform: translateY(-2px) scale(1.08);
}

.site-footer-feature__icon::before,
.site-footer-feature__icon::after {
    position: absolute;
    content: "";
}

.site-footer-feature--security .site-footer-feature__icon::before {
    top: 15px;
    left: 19px;
    width: 19px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.92);
    border-radius: 10px 10px 8px 8px;
    clip-path: polygon(50% 0, 100% 20%, 100% 66%, 50% 100%, 0 66%, 0 20%);
}

.site-footer-feature--security .site-footer-feature__icon::after {
    top: 25px;
    left: 26px;
    width: 7px;
    height: 12px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(38deg);
}

.site-footer-feature--service .site-footer-feature__icon::before {
    top: 15px;
    left: 25px;
    width: 10px;
    height: 27px;
    border-radius: 999px;
    background: #fff;
    transform: skewX(-24deg);
}

.site-footer-feature--service .site-footer-feature__icon::after {
    top: 27px;
    left: 19px;
    width: 21px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    transform: skewX(-24deg);
}

.site-footer-feature--growth .site-footer-feature__icon::before {
    bottom: 15px;
    left: 17px;
    width: 6px;
    height: 14px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        9px -7px 0 rgba(255, 255, 255, 0.92),
        18px -15px 0 rgba(255, 255, 255, 0.92);
}

.site-footer-feature--growth.is-visible .site-footer-feature__icon::before {
    animation: siteGrowthBars 1.8s ease-in-out infinite;
    animation-delay: calc(var(--animate-delay, 0ms) + 420ms);
}

.site-footer-feature h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.site-footer-feature p {
    margin: 5px 0 0;
    color: rgba(212, 231, 255, 0.88);
    font-size: 16px;
    line-height: 1.35;
    white-space: nowrap;
}

.site-footer-main {
    position: relative;
    padding: 50px 0 42px;
    background:
        radial-gradient(circle at 50% 0, rgba(21, 108, 231, 0.13) 0 170px, transparent 410px),
        linear-gradient(180deg, #061c3b 0%, #031227 100%);
}

.site-footer-main__grid {
    display: grid;
    align-items: start;
    grid-template-columns: 1.52fr 0.9fr 0.9fr 0.86fr 1.45fr;
    gap: 54px;
}

.site-footer-brand__head {
    display: flex;
    align-items: center;
}

.site-footer-brand__head img {
    width: 56px;
    height: 56px;
    margin-right: 18px;
    object-fit: contain;
    filter: hue-rotate(180deg) saturate(1.4) brightness(1.08);
}

.site-footer-brand__head strong {
    color: #fff;
    font-size: 31px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.site-footer-brand p {
    margin: 14px 0 25px;
    color: rgba(195, 212, 238, 0.82);
    font-size: 18px;
    line-height: 1.4;
}

.site-footer-socials {
    display: flex;
    gap: 16px;
}

.site-footer-social {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(54, 91, 147, 0.48);
    color: #d7e6ff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer-social:hover {
    background: rgba(52, 122, 244, 0.72);
    transform: translateY(-2px);
}

.site-footer-social span,
.site-footer-social span::before,
.site-footer-social span::after {
    position: absolute;
    content: "";
}

.site-footer-social--wechat span::before,
.site-footer-social--wechat span::after {
    border: 2px solid currentColor;
    border-radius: 50%;
}

.site-footer-social--wechat span::before {
    left: -13px;
    top: -8px;
    width: 20px;
    height: 15px;
}

.site-footer-social--wechat span::after {
    left: -1px;
    top: -3px;
    width: 17px;
    height: 13px;
}

.site-footer-social--weibo span {
    width: 22px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: rotate(-10deg);
}

.site-footer-social--weibo span::before {
    top: -10px;
    right: -7px;
    width: 10px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 0 9px 0 0;
}

.site-footer-social--weibo span::after {
    top: 5px;
    left: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 7px 0 0 currentColor;
}

.site-footer-social--linkedin span {
    position: static;
    color: currentColor;
    font-size: 0;
}

.site-footer-social--linkedin span::before {
    position: static;
    content: "in";
    color: currentColor;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.site-footer-column h3 {
    margin: 4px 0 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.site-footer-column a {
    display: table;
    margin-top: 11px;
    color: rgba(196, 212, 238, 0.8);
    font-size: 17px;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-column a:hover,
.site-footer-copyright a:hover {
    color: #fff;
}

.site-footer-column a:hover {
    transform: translateX(2px);
}

.site-footer-contacts {
    padding-left: 42px;
    border-left: 1px solid rgba(129, 164, 220, 0.2);
}

.site-footer-contact {
    display: flex;
    align-items: center;
    min-height: 34px;
    color: #eef5ff;
    font-size: 20px;
    line-height: 1.35;
}

.site-footer-contact + .site-footer-contact {
    margin-top: 22px;
}

.site-footer-contact__icon {
    position: relative;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    margin-right: 20px;
    color: #dbe9ff;
}

.site-footer-contact__icon::before,
.site-footer-contact__icon::after {
    position: absolute;
    content: "";
}

.site-footer-contact--phone .site-footer-contact__icon::before {
    left: 6px;
    top: 4px;
    width: 14px;
    height: 18px;
    border: 4px solid currentColor;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-radius: 11px;
    transform: rotate(-35deg);
}

.site-footer-contact--email .site-footer-contact__icon::before {
    left: 2px;
    top: 5px;
    width: 22px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.site-footer-contact--email .site-footer-contact__icon::after {
    left: 5px;
    top: 8px;
    width: 16px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) skew(-8deg, -8deg);
}

.site-footer-contact--address .site-footer-contact__icon::before {
    left: 5px;
    top: 2px;
    width: 16px;
    height: 21px;
    border-radius: 50% 50% 50% 0;
    background: currentColor;
    transform: rotate(-45deg);
}

.site-footer-contact--address .site-footer-contact__icon::after {
    left: 10px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #061c3b;
}

.site-footer-copyright {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-auto-flow: column;
    gap: 18px;
    margin-top: 45px;
    padding-top: 27px;
    border-top: 1px solid rgba(129, 164, 220, 0.22);
    color: rgba(190, 207, 234, 0.72);
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
}

.site-footer-copyright i {
    display: block;
    width: 1px;
    height: 15px;
    background: rgba(174, 198, 235, 0.42);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .site-animate-item {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1320px) {
    .site-nav__link {
        margin: 0 16px;
    }

    .hero-section__grid {
        grid-template-columns: minmax(520px, 0.98fr) minmax(520px, 1.02fr);
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-copy h1 {
        font-size: 58px;
    }

    .hero-copy__description {
        font-size: 19px;
    }

    .hero-capabilities,
    .hero-actions {
        max-width: 630px;
    }

    .hero-metric {
        padding: 0 28px;
    }

    .solution-card {
        padding-right: 8px;
        padding-left: 8px;
    }

    .solution-card h3 {
        font-size: 18px;
    }

    .solution-card p {
        font-size: 13px;
    }

    .platform-card-grid {
        column-gap: 48px;
    }

    .module-card {
        padding-right: 30px;
        padding-left: 30px;
    }

    .positioning-section__grid {
        grid-template-columns: minmax(470px, 0.88fr) minmax(520px, 1.12fr);
        gap: 36px;
    }

    .positioning-copy h2 {
        font-size: 52px;
    }

    .positioning-copy__desc {
        font-size: 18px;
    }

    .positioning-visual {
        transform: scale(0.92);
        transform-origin: center right;
    }

    .process-step-row,
    .process-row {
        grid-template-columns: 118px repeat(8, minmax(0, 1fr));
        gap: 12px;
    }

    .process-step {
        width: 88px;
        height: 88px;
    }

    .process-step__arrow {
        right: -35px;
        font-size: 28px;
    }

    .process-card {
        min-height: 108px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .process-card li {
        font-size: 11px;
    }

    .industry-grid {
        gap: 20px 22px;
    }

    .industry-card {
        min-height: 306px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .industry-section__heading h2 {
        font-size: 50px;
    }

    .industry-section__heading > p:last-child {
        font-size: 18px;
    }

    .industry-card__media {
        transform: scale(0.92);
        transform-origin: top center;
    }
}

@media (max-width: 1080px) {
    .site-nav__link {
        margin: 0 10px;
        font-size: 14px;
    }

    .site-brand {
        min-width: 148px;
    }

    .site-brand__text {
        font-size: 20px;
    }

    .hero-section {
        padding-top: 72px;
    }

    .hero-section__grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 720px;
        margin: 0 auto;
        padding-bottom: 18px;
        text-align: center;
    }

    .hero-copy__description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-capabilities,
    .hero-actions {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-metrics {
        max-width: 100%;
        margin-top: -28px;
    }

    .solutions-heading h2 {
        font-size: 48px;
    }

    .solution-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 14px;
    }

    .platform-architecture > .site-container {
        padding-right: 34px;
        padding-left: 34px;
    }

    .platform-card-grid {
        column-gap: 24px;
    }

    .platform-card {
        padding-right: 20px;
        padding-left: 20px;
    }

    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .closure-section__header {
        grid-template-columns: 1fr;
    }

    .closure-section__quote {
        justify-self: start;
        margin-top: 0;
        padding: 0;
    }

    .closure-flow {
        overflow-x: auto;
        padding-bottom: 34px;
    }

    .closure-flow__labels,
    .closure-flow__track {
        min-width: 1180px;
    }

    .closure-flow__track::before {
        left: 24px;
        right: 24px;
    }

    .closure-packs {
        gap: 18px;
    }

    .positioning-section {
        min-height: 0;
        padding: 78px 0 82px;
    }

    .positioning-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .positioning-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .positioning-copy__eyebrow::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .positioning-copy h2 {
        font-size: 48px;
    }

    .positioning-copy__desc {
        margin-right: auto;
        margin-left: auto;
    }

    .positioning-features {
        max-width: 720px;
        margin: 54px auto 0;
    }

    .positioning-feature {
        padding-right: 0;
    }

    .positioning-feature:not(:last-child)::after {
        display: none;
    }

    .positioning-feature__icon {
        margin-right: auto;
        margin-left: auto;
    }

    .positioning-visual {
        width: 690px;
        min-height: 560px;
        margin: 0 auto;
        transform: scale(0.9);
        transform-origin: top center;
    }

    .process-section {
        padding: 50px 0 68px;
    }

    .process-section__heading h2 {
        font-size: 38px;
    }

    .process-section__heading p {
        font-size: 19px;
    }

    .process-section__heading::before,
    .process-section__heading::after {
        width: 86px;
    }

    .process-section__heading::before {
        right: calc(50% + 190px);
    }

    .process-section__heading::after {
        left: calc(50% + 190px);
    }

    .process-board {
        overflow-x: auto;
        margin-right: -28px;
        margin-left: -28px;
        padding: 0 28px 18px;
    }

    .process-step-row,
    .process-row {
        min-width: 1080px;
    }

    .process-board::before {
        left: 58px;
    }

    .process-board::after {
        right: 28px;
    }

    .process-results {
        max-width: 100%;
        gap: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .process-result h3 {
        font-size: 16px;
    }

    .process-result p {
        font-size: 13px;
    }

    .industry-section {
        padding: 78px 0 92px;
    }

    .industry-section__eyebrow {
        min-height: 38px;
        padding: 0 18px;
        font-size: 16px;
    }

    .industry-section__heading h2 {
        margin-top: 14px;
        font-size: 34px;
        line-height: 1.38;
    }

    .industry-section__heading > p:last-child {
        margin-top: 12px;
        font-size: 16px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 16px;
        margin-top: 34px;
    }

    .industry-card {
        min-height: 270px;
        padding: 18px 16px 22px;
        border-radius: 14px;
    }

    .industry-card__media {
        width: 136px;
        height: 104px;
        transform: scale(0.82);
    }

    .industry-card h3 {
        font-size: 18px;
    }

    .industry-card__line {
        margin: 10px auto 12px;
    }

    .industry-card p {
        font-size: 13px;
    }

    .site-footer-main__grid {
        grid-template-columns: 1.3fr 0.9fr 0.9fr 0.85fr;
        gap: 34px 42px;
    }

    .site-footer-contacts {
        grid-column: 2 / -1;
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(129, 164, 220, 0.2);
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .site-container {
        width: min(100% - 32px, 560px);
    }

    .site-header {
        padding-top: 10px;
    }

    .site-header__inner {
        position: relative;
        min-height: 60px;
        padding: 0 14px 0 16px;
        border-radius: 14px;
    }

    .site-brand {
        min-width: 0;
    }

    .site-brand__logo {
        width: 29px;
        height: 29px;
        margin-right: 7px;
    }

    .site-brand__text {
        font-size: 19px;
    }

    .site-nav-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .site-header__auth {
        order: 3;
        margin-left: 8px;
    }

    .site-header__login {
        display: none;
    }

    .site-header__bell {
        width: 34px;
        height: 34px;
    }

    .site-header__avatar {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .site-header__name {
        max-width: 76px;
        font-size: 13px;
    }

    .site-header__register {
        min-width: 78px;
        min-height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav__link {
        display: flex;
        justify-content: flex-start;
        min-height: 42px;
        margin: 0;
        padding: 0 12px;
        font-size: 15px;
    }

    .hero-section {
        padding-top: 54px;
    }

    .hero-section::before {
        top: 210px;
        right: -450px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-copy h1 {
        font-size: 38px;
        line-height: 1.35;
    }

    .hero-copy__description {
        max-width: 360px;
        margin-top: 15px;
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-capabilities {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 390px;
        margin-top: 32px;
        row-gap: 16px;
    }

    .hero-capability {
        font-size: 13px;
    }

    .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 440px;
        margin-top: 32px;
        row-gap: 12px;
    }

    .hero-action {
        min-height: 70px;
        padding: 8px;
    }

    .hero-action__icon {
        width: 25px;
        height: 30px;
        margin-right: 7px;
    }

    .hero-action strong {
        font-size: 13px;
    }

    .hero-action small {
        font-size: 11px;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
        padding: 23px 20px;
        border-radius: 24px 24px 0 0;
        row-gap: 23px;
    }

    .hero-metric {
        padding: 0 12px;
        border-right: 0;
    }

    .hero-metric:nth-child(odd) {
        border-right: 1px solid #edf1f8;
    }

    .hero-metric__icon {
        width: 48px;
        height: 48px;
        margin-right: 9px;
        border-radius: 15px;
    }

    .hero-metric__icon::before {
        top: 13px;
        left: 15px;
        width: 19px;
        height: 19px;
    }

    .hero-metric strong {
        font-size: 19px;
    }

    .hero-metric > div > span {
        font-size: 12px;
    }

    .solutions-section {
        min-height: 0;
        padding: 62px 0 82px;
    }

    .solutions-heading__eyebrow {
        min-height: 34px;
        padding: 0 17px;
        font-size: 14px;
    }

    .solutions-heading h2 {
        margin-top: 13px;
        font-size: 31px;
        line-height: 1.4;
    }

    .solutions-heading > p:last-child {
        margin-top: 15px;
        font-size: 16px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 38px;
        row-gap: 12px;
    }

    .solution-card {
        min-height: 242px;
        padding-top: 15px;
        border-radius: 12px;
    }

    .solution-card__media {
        transform: scale(0.85);
        transform-origin: top center;
        margin-bottom: -3px;
    }

    .solution-card h3 {
        min-height: auto;
        font-size: 17px;
    }

    .solution-card p {
        margin-top: 7px;
        font-size: 12px;
    }

    .solutions-outro {
        margin-top: 52px;
    }

    .solutions-outro p {
        font-size: 16px;
    }

    .solutions-outro h2 {
        font-size: 34px;
    }

    .solutions-outro > span {
        font-size: 15px;
    }

    .platform-architecture {
        padding-top: 10px;
    }

    .platform-architecture > .site-container {
        padding: 38px 18px 24px;
        border-radius: 12px;
    }

    .platform-architecture__heading h2,
    .business-system__heading h2 {
        font-size: 29px;
    }

    .platform-architecture__heading p,
    .business-system__heading p {
        font-size: 15px;
    }

    .platform-card-grid {
        grid-template-columns: 1fr;
        margin-top: 28px;
        row-gap: 18px;
    }

    .platform-card-grid::before {
        display: none;
    }

    .platform-card {
        min-height: 0;
        padding: 14px 26px 27px;
    }

    .platform-card__visual {
        max-width: 310px;
    }

    .business-system {
        margin-top: 10px;
        padding: 35px 16px 24px;
        border-radius: 12px;
    }

    .business-system__heading h2 {
        font-size: 28px;
    }

    .business-table-wrap {
        margin-top: 20px;
    }

    .business-table__row {
        min-height: 56px;
    }

    .modules-section {
        padding: 70px 0;
    }

    .modules-section__heading h2 {
        font-size: 33px;
    }

    .modules-section__heading p {
        font-size: 16px;
    }

    .module-grid {
        margin-top: 34px;
        gap: 12px;
    }

    .module-card {
        min-height: 290px;
        padding: 22px 18px 22px;
        border-radius: 12px;
    }

    .module-card__visual {
        margin-bottom: 12px;
        transform: scale(0.83);
        transform-origin: top center;
    }

    .module-card h3 {
        min-height: 47px;
        font-size: 18px;
    }

    .module-card p {
        margin-top: 9px;
        font-size: 13px;
    }

    .module-card__action {
        right: 16px;
        bottom: 16px;
    }

    .closure-section {
        padding: 44px 0 68px;
    }

    .closure-section__heading h2 {
        font-size: 32px;
    }

    .closure-section__heading p {
        font-size: 16px;
    }

    .closure-section__quote {
        font-size: 16px;
    }

    .closure-section__legend {
        gap: 18px;
        margin-top: 18px;
    }

    .closure-legend-item {
        padding-left: 26px;
        font-size: 13px;
    }

    .closure-legend-item::before {
        width: 18px;
        height: 18px;
    }

    .closure-flow {
        margin-top: 24px;
        padding-top: 12px;
    }

    .closure-flow__labels,
    .closure-flow__track {
        min-width: 1060px;
    }

    .closure-step {
        min-height: 150px;
    }

    .closure-step__number {
        font-size: 22px;
    }

    .closure-step h3 {
        font-size: 15px;
    }

    .closure-step p {
        max-width: 96px;
        margin-top: 8px;
        font-size: 11px;
    }

    .closure-flow__node {
        width: 68px;
        height: 68px;
        border-width: 8px;
    }

    .closure-flow__node::before {
        top: 17px;
        left: 17px;
        width: 16px;
        height: 16px;
    }

    .closure-flow__node::after {
        top: 39px;
        width: 14px;
        height: 14px;
        margin-left: -7px;
    }

    .closure-packs {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .closure-pack {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 14px;
    }

    .closure-pack__head h3 {
        font-size: 20px;
    }

    .closure-pack__items {
        gap: 10px;
        margin-top: 16px;
    }

    .closure-pack__items span {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .closure-tabs {
        margin-top: 30px;
        gap: 10px;
        font-size: 14px;
    }

    .positioning-section {
        padding: 58px 0 64px;
    }

    .positioning-copy__eyebrow {
        padding-bottom: 12px;
        font-size: 18px;
    }

    .positioning-copy h2 {
        margin-top: 24px;
        font-size: 34px;
        line-height: 1.42;
    }

    .positioning-copy__desc {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.78;
    }

    .positioning-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 16px;
        margin-top: 36px;
        padding-top: 28px;
    }

    .positioning-feature__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 14px;
    }

    .positioning-feature h3 {
        font-size: 17px;
    }

    .positioning-feature p {
        font-size: 14px;
    }

    .positioning-visual {
        width: 640px;
        min-height: 485px;
        margin-top: 14px;
        margin-left: calc(50% - 320px);
        transform: scale(0.62);
    }

    .process-section {
        padding: 46px 0 58px;
    }

    .process-section__heading::before,
    .process-section__heading::after {
        display: none;
    }

    .process-section__heading h2 {
        font-size: 30px;
    }

    .process-section__heading p {
        font-size: 16px;
    }

    .process-legend {
        flex-wrap: wrap;
        gap: 12px 20px;
        margin-top: 22px;
    }

    .process-legend__item {
        padding-left: 20px;
        font-size: 13px;
    }

    .process-legend__item::before {
        width: 11px;
        height: 11px;
    }

    .process-board {
        margin-top: 32px;
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .process-step-row,
    .process-row {
        grid-template-columns: 98px repeat(8, 104px);
        min-width: 1008px;
        gap: 10px;
    }

    .process-step {
        width: 72px;
        height: 72px;
    }

    .process-step span {
        font-size: 18px;
    }

    .process-step strong {
        font-size: 12px;
    }

    .process-step__arrow {
        right: -28px;
        font-size: 24px;
    }

    .process-row__label {
        min-height: 104px;
        padding: 12px 8px;
    }

    .process-row__label-icon {
        width: 38px;
        height: 36px;
    }

    .process-row__label strong {
        font-size: 15px;
    }

    .process-card {
        min-height: 104px;
        padding: 11px 8px 9px;
    }

    .process-card__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 7px;
    }

    .process-card__icon::before {
        left: 11px;
        top: 11px;
        width: 16px;
        height: 16px;
    }

    .process-card__icon::after {
        left: 14px;
        top: 15px;
    }

    .process-card li {
        font-size: 10px;
        line-height: 1.55;
    }

    .process-results {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
        padding: 20px;
        border-radius: 14px;
    }

    .process-result {
        justify-content: flex-start;
    }

    .process-result h3,
    .process-result p {
        white-space: normal;
    }

    .industry-section {
        padding: 66px 0 76px;
    }

    .industry-section__heading h2 {
        font-size: 30px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 248px;
    }

    .industry-card__media {
        transform: scale(0.76);
    }

    .industry-card h3 {
        font-size: 17px;
    }

    .industry-card p {
        font-size: 12px;
    }

    .site-footer-cta {
        min-height: 430px;
        background-position: center center;
    }

    .site-footer-cta__inner {
        min-height: 430px;
        padding: 48px 0 36px;
    }

    .site-footer-cta__title {
        width: min(520px, 92vw);
        height: 68px;
    }

    .site-footer-cta__desc {
        max-width: 520px;
        margin-top: 8px;
        margin-bottom: 24px;
        font-size: 17px;
    }

    .site-footer-cta__button {
        min-width: 238px;
        min-height: 54px;
        padding: 0 28px;
        border-radius: 10px;
        font-size: 18px;
    }

    .site-footer-cta__button i {
        margin-left: 20px;
        font-size: 23px;
    }

    .site-consult-box {
        padding: 28px 22px 24px;
    }

    .site-consult-box__phone {
        width: min(260px, 100%);
    }

    .site-consult-box__phone a {
        font-size: 21px;
    }

    .site-footer-cta__features {
        grid-template-columns: 1fr;
        gap: 15px;
        width: min(320px, 100%);
        margin-top: 34px;
    }

    .site-footer-feature {
        justify-content: flex-start;
    }

    .site-footer-feature__icon {
        width: 48px;
        height: 48px;
        margin-right: 14px;
        transform: scale(0.86);
        transform-origin: left center;
    }

    .site-footer-feature h3 {
        font-size: 18px;
    }

    .site-footer-feature p {
        font-size: 14px;
    }

    .site-footer-main {
        padding: 38px 0 34px;
    }

    .site-footer-main__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .site-footer-brand,
    .site-footer-contacts {
        grid-column: 1 / -1;
    }

    .site-footer-brand__head img {
        width: 46px;
        height: 46px;
        margin-right: 14px;
    }

    .site-footer-brand__head strong {
        font-size: 26px;
    }

    .site-footer-brand p {
        margin: 11px 0 20px;
        font-size: 15px;
    }

    .site-footer-social {
        width: 38px;
        height: 38px;
    }

    .site-footer-column h3 {
        margin-bottom: 13px;
        font-size: 18px;
    }

    .site-footer-column a {
        margin-top: 8px;
        font-size: 14px;
    }

    .site-footer-contacts {
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(129, 164, 220, 0.2);
        border-left: 0;
    }

    .site-footer-contact {
        font-size: 15px;
    }

    .site-footer-contact + .site-footer-contact {
        margin-top: 13px;
    }

    .site-footer-contact__icon {
        margin-right: 12px;
        transform: scale(0.84);
        transform-origin: left center;
    }

    .site-footer-copyright {
        grid-auto-flow: row;
        gap: 7px;
        margin-top: 30px;
        padding-top: 22px;
        font-size: 13px;
    }

    .site-footer-copyright i {
        display: none;
    }
}

@media (max-width: 390px) {
    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-actions {
        column-gap: 8px;
    }

    .hero-action {
        padding: 8px 6px;
    }

    .hero-action__icon {
        display: none;
    }

    .hero-action strong {
        font-size: 12px;
    }

    .hero-action small {
        font-size: 10px;
    }

    .hero-metric {
        padding: 0 7px;
    }

    .hero-metric__icon {
        display: none;
    }

    .solution-card h3 {
        font-size: 15px;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        min-height: 255px;
    }

    .module-card h3 {
        min-height: auto;
    }

    .positioning-copy h2 {
        font-size: 30px;
    }

    .positioning-visual {
        margin-top: -8px;
        transform: scale(0.55);
    }

    .process-results {
        padding-right: 16px;
        padding-left: 16px;
    }

    .process-result__icon {
        width: 38px;
        height: 38px;
        margin-right: 10px;
    }

    .process-result h3 {
        font-size: 15px;
    }

    .process-result p {
        font-size: 12px;
    }

    .industry-section {
        padding-top: 58px;
        padding-bottom: 68px;
    }

    .industry-section__eyebrow {
        font-size: 15px;
    }

    .industry-section__heading h2 {
        font-size: 28px;
    }

    .industry-section__heading > p:last-child {
        font-size: 14px;
    }

    .industry-card {
        min-height: 226px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .industry-card__media {
        transform: scale(0.7);
    }

    .industry-card__line {
        width: 34px;
    }

    .industry-card h3 {
        font-size: 16px;
    }

    .industry-card p {
        font-size: 11px;
    }

    .site-footer-cta__title {
        height: 60px;
    }

    .site-footer-cta__desc {
        font-size: 15px;
    }

    .site-footer-main__grid {
        grid-template-columns: 1fr;
    }
}

.solution-card__media.has-image,
.module-card__visual.has-image,
.platform-card__visual.has-image {
    overflow: visible;
}

.solution-card__media.has-image img,
.module-card__visual.has-image img,
.platform-card__visual.has-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.solution-card__media.has-image {
    height: 124px;
    margin-top: -28px;
}

.solution-card__media.has-image::before {
    bottom: 5px;
}

.solution-card__media.has-image img {
    max-width: 142px;
    max-height: 118px;
    filter: drop-shadow(0 12px 16px rgba(82, 125, 199, 0.12));
}

.platform-card__visual.has-image {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.platform-card__visual.has-image::before {
    display: none;
}

.platform-card__visual.has-image img {
    max-width: 178px;
    max-height: 130px;
    margin: auto;
    filter: drop-shadow(0 12px 16px rgba(78, 126, 205, 0.13));
}

.platform-card__visual--merchant.has-image {
    background: linear-gradient(180deg, #f8fff9 0%, #effaf3 100%);
}

.platform-card__visual--user.has-image {
    background: linear-gradient(180deg, #fff9f3 0%, #fff0e4 100%);
}

.platform-card__visual--user.has-image img {
    max-width: 210px;
    max-height: 136px;
}

.module-card__visual.has-image::before {
    display: none;
}

.module-card__visual.has-image img {
    max-width: 126px;
    max-height: 116px;
    filter: drop-shadow(0 13px 18px rgba(78, 126, 205, 0.14));
}



.modules-section::before {
    display: none;
}

@media (max-width: 1080px) {
    .platform-card__visual.has-image img {
        max-width: 150px;
    }
}

@media (max-width: 760px) {
    .solution-card__media.has-image {
        height: 100px;
        margin-top: -18px;
    }

    .solution-card__media.has-image img {
        max-width: 116px;
        max-height: 96px;
    }

    .platform-card__visual.has-image img {
        max-width: 150px;
        max-height: 110px;
    }

    .platform-card__visual--user.has-image img {
        max-width: 190px;
    }

    .module-card__visual.has-image img {
        max-width: 116px;
        max-height: 106px;
    }
}

/* ============ 关于我们页面 ============ */

.about-section {
    position: relative;
    padding: 72px 0 88px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(222, 232, 250, 0.7) 0 120px, transparent 121px),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.about-section .site-container {
    max-width: 900px;
}

.about-heading {
    text-align: center;
    margin-bottom: 44px;
}

.about-heading h1 {
    margin: 0;
    color: #10234a;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
}

.about-heading p {
    margin: 16px auto 0;
    max-width: 640px;
    color: #5d6f8f;
    font-size: 16px;
    line-height: 1.8;
}

.about-heading > span {
    display: block;
    width: 56px;
    height: 4px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #165DFC 0%, #22dcdd 100%);
}

.about-content {
    padding: 44px 52px;
    box-sizing: border-box;
    border: 1px solid rgba(223, 233, 248, 0.9);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(84, 117, 167, 0.09);
    color: #3e557c;
    font-size: 16px;
    line-height: 1.9;
    word-break: break-word;
}

/* 富文本排版 */

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
    margin: 1.4em 0 0.6em;
    color: #13336b;
    font-weight: 800;
    line-height: 1.45;
}

.about-content h1 { font-size: 28px; }
.about-content h2 { font-size: 24px; }
.about-content h3 { font-size: 20px; }
.about-content h4 { font-size: 18px; }
.about-content h5 { font-size: 16px; }
.about-content h6 { font-size: 15px; }

.about-content p {
    margin: 0 0 1em;
}

.about-content a {
    color: #2473f4;
    text-decoration: underline;
}

.about-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.2em auto;
    border-radius: 10px;
}

.about-content ul,
.about-content ol {
    margin: 0 0 1em;
    padding-left: 1.6em;
}

.about-content li {
    margin: 0.4em 0;
}

.about-content blockquote {
    margin: 1.2em 0;
    padding: 12px 20px;
    border-left: 4px solid #165DFC;
    border-radius: 0 8px 8px 0;
    background: #f2f7ff;
    color: #4a638d;
}

.about-content table {
    width: 100%;
    margin: 1.2em 0;
    border-collapse: collapse;
}

.about-content th,
.about-content td {
    padding: 10px 14px;
    border: 1px solid #dfe8f5;
    text-align: left;
}

.about-content th {
    background: #f2f7ff;
    color: #13336b;
    font-weight: 700;
}

.about-content tr:nth-child(even) td {
    background: #fafcff;
}

.about-content pre {
    margin: 1.2em 0;
    padding: 16px 20px;
    overflow-x: auto;
    border-radius: 10px;
    background: #0f1c33;
    color: #dbe8ff;
    font-size: 14px;
    line-height: 1.7;
}

.about-content code {
    padding: 2px 6px;
    border-radius: 5px;
    background: #edf3fc;
    color: #2473f4;
    font-size: 0.92em;
}

.about-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.about-content hr {
    margin: 1.6em 0;
    border: 0;
    border-top: 1px solid #e3ebf6;
}

.about-content__empty {
    padding: 60px 0;
    text-align: center;
    color: #8b9ab9;
}

.about-update-time {
    margin: 26px 0 0;
    color: #9aaac9;
    font-size: 13px;
    text-align: right;
}

@media (max-width: 640px) {
    .about-content {
        padding: 26px 20px;
    }
}

/* ===== 多端界面预览（页面截图） ===== */
.screens-section {
    position: relative;
    padding: 45px 0 88px;
    overflow: hidden;
    background: #fafafd;
}

.screens-section__heading {
    text-align: center;
}

.screens-section__heading h2 {
    margin: 0;
    color: #2d3037;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.34;
}

.screens-section__heading h2 span {
    color: var(--brand);
}

.screens-section__heading p {
    margin: 15px 0 0;
    color: #666a73;
    font-size: 18px;
    line-height: 1.48;
}

.screens-section__heading p span {
    display: block;
}

.screens-showcase {
    display: grid;
    grid-template-columns: minmax(0, 700px) 360px;
    align-items: start;
    justify-content: center;
    gap: 54px;
    max-width: 1120px;
    margin: 59px auto 0;
}

/* 页面名称按钮 */
.screens-showcase__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.screens-tab {
    display: block;
    width: 100%;
    min-height: 70px;
    padding: 0 18px;
    border: 0;
    border-radius: 3px;
    background: #eff0f2;
    color: #53565d;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.screens-tab:last-child:nth-child(odd) {
    grid-column: auto;
}

.screens-tab:hover {
    color: #0068ff;
    background: #ffffff;
}

.screens-tab.is-active {
    color: #0068ff;
    background: #ffffff;
    box-shadow: inset 0 3px 0 #0068ff;
}

/* 截图舞台（轮播切换效果） */
.screens-stage {
    position: relative;
    width: 360px;
    max-width: 100%;
    aspect-ratio: 6 / 13;
    margin: 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    outline: 0;
    background: #fff;
    box-shadow: 0 24px 54px rgba(38, 84, 158, 0.12);
}

.screens-stage__item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    opacity: 0;
    transform: translateX(64px) scale(0.94);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 1;
}

.screens-stage.is-prev .screens-stage__item:not(.is-active) {
    transform: translateX(-64px) scale(0.94);
}

.screens-stage__item.is-active {
    opacity: 1;
    transform: none;
    z-index: 2;
}

.screens-stage__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1080px) {
    .screens-showcase {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 28px;
        max-width: 900px;
    }

    .screens-stage {
        width: 280px;
    }

    .screens-showcase__nav {
        gap: 14px;
    }

    .screens-tab {
        min-height: 60px;
        font-size: 18px;
        line-height: 60px;
    }
}

@media (max-width: 760px) {
    .screens-section {
        padding: 42px 0 64px;
    }

    .screens-section__heading h2 {
        font-size: 28px;
    }

    .screens-section__heading p {
        font-size: 17px;
    }

    .screens-showcase {
        display: block;
        margin-top: 38px;
    }

    .screens-showcase__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .screens-tab {
        min-height: 54px;
        padding: 0 12px;
        font-size: 16px;
        line-height: 54px;
    }

    .screens-tab:hover {
        box-shadow: none;
    }

    .screens-stage {
        width: min(320px, 92%);
        margin-top: 38px;
    }
}
