body.ec-marketing-shell {
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* EC-Ecosystem ------------------------------------------------------------ */
.ec-ecosystem {
    --ec-ecosystem-background: #f7fafe;
    --ec-ecosystem-title: #191c27;
    --ec-ecosystem-accent: #2468f2;
    --ec-ecosystem-tab: #505668;
    min-height: var(--ec-ecosystem-min-height, 576px);
    padding: 72px 0 60px;
    overflow: hidden;
    color: var(--ec-ecosystem-title);
    background: var(--ec-ecosystem-background);
}

.ec-ecosystem--plain {
    --ec-ecosystem-background: #fff;
}

.ec-ecosystem__header {
    width: min(1184px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.ec-ecosystem__title {
    color: var(--ec-ecosystem-title);
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
}

.ec-ecosystem__title-highlight {
    color: var(--ec-ecosystem-accent);
}

.ec-ecosystem__tabs {
    display: flex;
    height: 44px;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.ec-ecosystem__tab {
    position: relative;
    min-width: 0;
    height: 44px;
    padding: 0 0 8px;
    border: 0;
    border-radius: 0;
    color: var(--ec-ecosystem-tab);
    background: transparent;
    box-shadow: none;
    font: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.ec-ecosystem__tab::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: transparent;
    content: '';
}

.ec-ecosystem__tab.is-active {
    color: var(--ec-ecosystem-title);
    font-weight: 500;
}

.ec-ecosystem__tab.is-active::after {
    background: var(--ec-ecosystem-accent);
}

.ec-ecosystem__tab:focus-visible {
    outline: 2px solid var(--ec-ecosystem-accent);
    outline-offset: 4px;
}

.ec-ecosystem__panels {
    width: 100%;
    margin-top: 48px;
}

.ec-ecosystem__tabs + .ec-ecosystem__panels {
    margin-top: 50px;
}

.ec-ecosystem__panel[hidden] {
    display: none;
}

/* Mobile ecosystem styles are intentionally disabled until the mobile designs are rebuilt. */
/* /EC-Ecosystem ----------------------------------------------------------- */

/* EC-LogoMarquee ---------------------------------------------------------- */
.ec-logo-marquee {
    --ec-logo-marquee-card-width: 200px;
    --ec-logo-marquee-card-height: 96px;
    --ec-logo-marquee-gap: 24px;
    --ec-logo-marquee-row-gap: 24px;
    --ec-logo-marquee-duration: 24s;
    width: 100%;
    overflow: hidden;
}

/* Mobile logo-marquee sizing is intentionally disabled until the mobile designs are rebuilt. */

.ec-logo-marquee__row {
    display: flex;
    width: max-content;
    margin-bottom: var(--ec-logo-marquee-row-gap);
}

.ec-logo-marquee__row:last-child {
    margin-bottom: 0;
}

.ec-logo-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: ec-logo-marquee-left var(--ec-logo-marquee-duration) linear infinite;
}

.ec-logo-marquee__row--reverse .ec-logo-marquee__track {
    animation-name: ec-logo-marquee-right;
}

.ec-logo-marquee__group {
    display: flex;
    flex: 0 0 auto;
    gap: var(--ec-logo-marquee-gap);
    padding-right: var(--ec-logo-marquee-gap);
}

.ec-logo-marquee__card {
    display: flex;
    width: var(--ec-logo-marquee-card-width);
    height: var(--ec-logo-marquee-card-height);
    flex: 0 0 var(--ec-logo-marquee-card-width);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(20, 118, 255, 0.06);
}

.ec-logo-marquee__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 118px;
    max-height: 68px;
    object-fit: contain;
}

/* Exported 200 x 96 cards include 9px horizontal and 5px/13px vertical bleed. */
.ec-logo-marquee--card-artwork {
    padding: 5px 0 13px;
}

.ec-logo-marquee--card-artwork .ec-logo-marquee__card {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ec-logo-marquee--card-artwork .ec-logo-marquee__logo {
    position: absolute;
    top: -5px;
    left: -9px;
    width: 218px;
    height: 114px;
    max-width: none;
    max-height: none;
}

/* Three equal groups keep an eight-card row filled on wide desktop viewports. */
.ec-logo-marquee--card-artwork .ec-logo-marquee__track {
    animation-name: ec-logo-marquee-three-left;
}

.ec-logo-marquee--card-artwork .ec-logo-marquee__row--reverse .ec-logo-marquee__track {
    animation-name: ec-logo-marquee-three-right;
}

@keyframes ec-logo-marquee-three-left {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-33.3333333333%, 0, 0); }
}

@keyframes ec-logo-marquee-three-right {
    from { transform: translate3d(-33.3333333333%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

.ec-logo-marquee:hover .ec-logo-marquee__track,
.ec-logo-marquee:focus-within .ec-logo-marquee__track {
    animation-play-state: paused;
}

@keyframes ec-logo-marquee-left {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@keyframes ec-logo-marquee-right {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .ec-logo-marquee__track {
        animation-play-state: paused;
    }
}
/* /EC-LogoMarquee --------------------------------------------------------- */

/* EC-MediaList ------------------------------------------------------------ */
.ec-media-list {
    --ec-media-list-title: #1b1c1f;
    --ec-media-list-text: #7e8288;
    --ec-media-list-accent: #1a76ff;
    --ec-media-list-muted-surface: #f7fafe;
    overflow: hidden;
    color: var(--ec-media-list-title);
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.ec-media-list__heading {
    height: 120px;
    padding-top: 36px;
    color: var(--ec-media-list-title);
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
}

.ec-media-list--top-spaced { padding-top: 72px; }

.ec-media-feature {
    height: 600px;
    background: #fff;
}

.ec-media-list--muted-odd .ec-media-feature:nth-child(odd),
.ec-media-list--muted-even .ec-media-feature:nth-child(even) {
    background: var(--ec-media-list-muted-surface);
}

.ec-media-feature__inner {
    display: flex;
    width: 1184px;
    height: 600px;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    margin: 0 auto;
    padding: 85px 0;
}

.ec-media-feature:nth-child(even) .ec-media-feature__inner {
    flex-direction: row-reverse;
}

.ec-media-feature__visual {
    display: flex;
    width: 574px;
    height: 430px;
    flex: 0 0 574px;
    align-items: flex-start;
    justify-content: center;
}

.ec-media-feature__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
}

.ec-media-feature--visual-layered .ec-media-feature__visual {
    position: relative;
}

.ec-media-feature--visual-layered .ec-media-feature__decoration {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
    user-select: none;
}

.ec-media-feature__decoration--slot-badge {
    right: 4px;
    bottom: 4px;
    width: 17.6%;
    max-width: 101px;
    height: auto;
    object-fit: contain;
    transform-origin: 50% 55%;
}

.ec-media-feature__decoration--slot-path,
.ec-media-feature__decoration--slot-node-start,
.ec-media-feature__decoration--slot-node-end {
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
}

.ec-media-feature__decoration--slot-path { transform-origin: 21.46% 53.45%; }
.ec-media-feature__decoration--slot-node-start { transform-origin: 21.46% 49.58%; }
.ec-media-feature__decoration--slot-node-end { transform-origin: 21.46% 57.32%; }

.ec-media-feature__decoration--motion-float {
    animation: ec-media-feature-decoration-float 3.6s ease-in-out infinite;
    will-change: transform;
}

.ec-media-feature__decoration--motion-flow {
    animation: ec-media-feature-decoration-flow 2.4s ease-in-out infinite;
    will-change: opacity, transform;
}

.ec-media-feature__decoration--slot-node-end.ec-media-feature__decoration--motion-flow {
    animation-delay: 0.6s;
}

.ec-media-feature__decoration--motion-pulse {
    animation: ec-media-feature-decoration-pulse 2.4s ease-in-out 0.3s infinite;
    will-change: opacity, transform;
}

@media (min-width: 1208px) {
    .ec-media-feature--visual-layered.ec-media-feature--visual-bleed .ec-media-feature__visual {
        overflow: visible;
    }

    .ec-media-feature--visual-layered.ec-media-feature--visual-bleed .ec-media-feature__decoration--slot-badge {
        top: 320px;
        right: auto;
        bottom: auto;
        left: 493px;
        width: 101px;
        max-width: none;
        height: 101px;
        object-fit: fill;
    }

    .ec-media-feature:nth-child(even).ec-media-feature--visual-layered.ec-media-feature--visual-bleed .ec-media-feature__decoration--slot-badge {
        right: 0;
        left: auto;
    }
}

@keyframes ec-media-feature-decoration-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    45% {
        transform: translate3d(0, -9px, 0) rotate(-2deg);
    }
    70% {
        transform: translate3d(0, -4px, 0) rotate(1deg);
    }
}

@keyframes ec-media-feature-decoration-flow {
    0%,
    100% {
        opacity: 0.72;
        transform: translate3d(0, -4px, 0);
    }
    50% {
        opacity: 1;
        transform: translate3d(0, 4px, 0);
    }
}

@keyframes ec-media-feature-decoration-pulse {
    0%,
    100% {
        opacity: 0.9;
        transform: scale(0.985);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ec-media-feature__decoration--motion-float,
    .ec-media-feature__decoration--motion-flow,
    .ec-media-feature__decoration--motion-pulse {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.ec-media-feature__content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.ec-media-feature__title {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 46px;
}

.ec-media-feature__description {
    margin: 24px 0 0;
    color: #000;
    font-size: 18px;
    line-height: 26px;
}

.ec-media-feature__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 0;
}

.ec-media-feature__list-item {
    position: relative;
    padding-left: 32px;
    color: var(--ec-media-list-text);
    font-size: 18px;
    line-height: 26px;
}

.ec-media-feature__list-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("/images/components/media-feature-list-marker.svg") center / 24px 24px no-repeat;
    transform: translateY(-50%);
}

.ec-media-feature__button {
    display: inline-flex;
    min-width: 228px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 0 54px;
    border: 2px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, #4086ff 0%, var(--ec-media-list-accent) 100%);
    box-shadow: 0 8px 16px rgba(0, 69, 173, .12);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-decoration: none;
    white-space: nowrap;
}

.ec-media-feature__button:hover,
.ec-media-feature__button:focus {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .ec-media-feature,
    .ec-media-feature__inner {
        height: auto;
    }

    .ec-media-feature__inner {
        width: calc(100% - 48px);
        min-height: 600px;
    }

    .ec-media-feature__visual {
        width: 50%;
        flex-basis: 50%;
    }
}

/* Mobile media-list stacking is intentionally disabled until the mobile designs are rebuilt. */
/* /EC-MediaList ----------------------------------------------------------- */

/* EC-StatGrid ------------------------------------------------------------- */
.ec-stat-grid {
    width: 100%;
    color: #272b34;
    background: #fff;
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.ec-stat-grid__inner {
    width: min(1184px, calc(100% - 48px));
    margin: 0 auto;
}

.ec-stat-grid__heading {
    color: #1b1c1f;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
}

.ec-stat-grid__list {
    display: grid;
    width: 100%;
    height: 252px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ec-stat-grid__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 36px;
    text-align: center;
}

.ec-stat-grid__icon {
    display: block;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    object-fit: contain;
}

.ec-stat-grid__content {
    display: flex;
    width: 138px;
    height: 104px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ec-stat-grid__metric {
    display: flex;
    height: 72px;
    flex: 0 0 72px;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
}

.ec-stat-grid__value {
    color: #272b34;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}

.ec-stat-grid__unit {
    margin-left: 4px;
    color: #272b34;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.ec-stat-grid__description {
    color: #535d6d;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    white-space: nowrap;
}

.ec-stat-grid--avg-3 .ec-stat-grid__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ec-stat-grid--avg-4 .ec-stat-grid__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Default variant (Figma 1762:31452): iconless gradient metrics */
.ec-stat-grid--default .ec-stat-grid__metric {
    height: auto;
    flex: none;
    background-image: linear-gradient(90deg, #1a76ff 0%, #82b4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ec-stat-grid--default .ec-stat-grid__value,
.ec-stat-grid--default .ec-stat-grid__unit {
    margin-left: 0;
    color: inherit;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.ec-stat-grid__trend {
    width: 0;
    height: 0;
    margin-right: 10px;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.ec-stat-grid__trend--up {
    border-bottom: 14px solid #1a76ff;
}

.ec-stat-grid__trend--down {
    border-top: 14px solid #1a76ff;
}

/* Showcase variant (Figma 1762:9890): 易仓WMS运营指标，无图标、渐变数字、居中紧凑 */
.ec-stat-grid--showcase {
    background: #fff;
}

.ec-stat-grid--showcase .ec-stat-grid__inner {
    padding-top: 72px;
    padding-bottom: 72px;
}

.ec-stat-grid--showcase .ec-stat-grid__list {
    margin-top: 48px;
}

.ec-stat-grid--showcase .ec-stat-grid__item {
    gap: 4px;
    padding: 36px;
}

.ec-stat-grid--showcase .ec-stat-grid__metric {
    height: auto;
    flex: none;
    background-image: linear-gradient(90deg, #1a76ff 0%, #82b4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ec-stat-grid--showcase .ec-stat-grid__value {
    color: inherit;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 1023px) {
    .ec-stat-grid__list {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ec-stat-grid__item {
        min-height: 252px;
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* Mobile stat-grid sizing is intentionally disabled until the mobile designs are rebuilt. */
/* /EC-StatGrid ------------------------------------------------------------ */

/* EC-Product marketing components ----------------------------------------- */
.ec-product-page {
    overflow: hidden;
    color: #191c27;
    background: #fff;
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.ec-product-page__logo-marquee {
    padding-bottom: 72px;
}

/* EC-HeroSplit */
.ec-hero-split { height: 600px; background: #E8F2FF; }
.ec-hero-split__inner { display: flex; width: min(1184px, calc(100% - 48px)); height: 600px; align-items: center; justify-content: space-between; gap: 48px; margin: 0 auto; }
.ec-hero-split__content { min-width: 0; max-width: 520px; flex: 1 1 0; min-height: 430px; }
.ec-hero-split__eyebrow { display: inline-flex; min-height: 44px; align-items: center; margin: 0 0 16px; padding: 12px 24px; border-radius: 999px; color: #1a76ff; background: rgba(26, 118, 255, 0.12); font-size: 20px; font-weight: 400; line-height: 20px; }
.ec-hero-split__title { color: #1B1C1F; font-size: 48px; font-weight: 700; line-height: 56px; white-space: nowrap; }
.ec-hero-split__title-line { display: block; }
.ec-hero-split__title-line + .ec-hero-split__title-line { margin-top: 16px; line-height: 48px; }
.ec-hero-split__title-accent { color: #1a76ff; }
.ec-hero-split__title-accent--large { font-size: 58px; }
.ec-hero-split__description { margin-top: 32px; color: #7E8288; font-size: 20px; font-weight: 400; line-height: 28px; }
.ec-hero-split__description span { display: block; }
.ec-hero-split__description span + span { margin-top: 8px; }
.ec-hero-split__actions { display: flex; gap: 16px; margin-top: 48px; }
.ec-hero-split__button,
.ec-action-banner__button { display: inline-flex; align-items: center; justify-content: center; padding: 20px 54px; border: 2px solid #1a76ff; border-radius: 999px; font-size: 20px; font-weight: 700; line-height: 24px; text-decoration: none; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; }
.ec-hero-split__button:hover,
.ec-hero-split__button:focus,
.ec-action-banner__button:hover,
.ec-action-banner__button:focus { text-decoration: none; transform: translateY(-1px); }
.ec-hero-split__button--primary { color: #fff; background: #1a76ff; box-shadow: 0 10px 24px rgba(26, 118, 255, .22); }
.ec-hero-split__button--primary:hover,
.ec-hero-split__button--primary:focus { color: #fff; }
.ec-hero-split__button--secondary { color: #1a76ff; background: #fff; }
.ec-hero-split__button--secondary:hover,
.ec-hero-split__button--secondary:focus { color: #1a76ff; }
.ec-hero-split__visual { display: flex; width: 610px; height: 500px; flex: 0 0 auto; align-items: center; justify-content: center; }
.ec-hero-split__image { display: block; width: auto; height: auto; max-width: none; object-fit: contain; }
.ec-hero-split__note { margin: 20px 0 0; color: #7E8288; font-size: 20px; line-height: 28px; }

.ec-hero-split--has-background .ec-hero-split__description { color: #CCD4DF; }

/* EC-HeroArtwork: ERP and WMS keep separate fixed layer sets on shared canvases. */
.ec-hero-artwork {
    position: relative;
    display: block;
    width: 100%;
    flex: 0 0 auto;
    pointer-events: none;
}
.ec-hero-artwork--erp { aspect-ratio: 780 / 600; }
.ec-hero-artwork--wms { aspect-ratio: 790 / 600; }
.ec-hero-artwork__layer {
    position: absolute;
    display: block;
}
.ec-hero-artwork__layer img {
    position: absolute;
    display: block;
    max-width: none;
}

/* ERP artwork: five supplied layers on the 780 x 600 Figma canvas. */
.ec-hero-artwork--erp .ec-hero-artwork__layer--base {
    z-index: 1;
    top: 16.462%;
    left: 6.917%;
    width: 85.933%;
    height: 67.189%;
    transform-origin: 50% 55%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--base img {
    top: -3.21%;
    left: -3.122%;
    width: 107.434%;
    height: 112.36%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--sales {
    z-index: 2;
    top: 19%;
    left: 13.333%;
    width: 47.821%;
    height: 62.167%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--sales img {
    inset: 0;
    width: 100%;
    height: 100%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--assistant {
    z-index: 3;
    top: 19%;
    left: 62.436%;
    width: 28.462%;
    height: 62.167%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--assistant img {
    top: 0;
    left: -2.307%;
    width: 106.757%;
    height: 101.373%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--inventory {
    z-index: 4;
    top: 54%;
    left: 1.667%;
    width: 31.795%;
    height: 21.485%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--inventory img {
    top: -2.03%;
    left: -2.111%;
    width: 106.332%;
    height: 124.073%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--icon {
    z-index: 5;
    top: 10.667%;
    left: 85.513%;
    width: 12.949%;
    height: 16.833%;
    transform-origin: 50% 60%;
}
.ec-hero-artwork--erp .ec-hero-artwork__layer--icon img {
    inset: 0;
    width: 100%;
    height: 100%;
}

/* WMS artwork: four supplied layers on the 790 x 600 Figma canvas. */
.ec-hero-artwork--wms .ec-hero-artwork__layer--dashboard {
    z-index: 1;
    top: 15.667%;
    left: 1.139%;
    width: 84.845%;
    height: 67.189%;
    transform-origin: 50% 55%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--dashboard > img {
    top: -3.21%;
    left: -3.122%;
    width: 107.434%;
    height: 112.36%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--orders {
    top: 12.155%;
    left: 7.46%;
    width: 56.693%;
    height: 35.968%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--orders img {
    inset: 0;
    width: 100%;
    height: 100%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--assistant {
    z-index: 2;
    top: 47.167%;
    left: 48.481%;
    width: 45.064%;
    height: 31.009%;
    transform-origin: 50% 55%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--assistant img {
    top: -11.538%;
    left: -6.03%;
    width: 112.06%;
    height: 123.077%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--icon {
    z-index: 3;
    top: 9.167%;
    left: 74.81%;
    width: 16.709%;
    height: 19.5%;
    transform-origin: 50% 55%;
}
.ec-hero-artwork--wms .ec-hero-artwork__layer--icon img {
    inset: 0;
    width: 100%;
    height: 100%;
}

.ec-hero-split--visual-erp .ec-hero-split__visual,
.ec-hero-split--visual-wms .ec-hero-split__visual {
    overflow: visible;
}
.ec-hero-split--spotlight { position: relative; background: #f7fafe; }
.ec-hero-split--spotlight .ec-hero-split__inner { align-items: flex-start !important; justify-content: flex-start; gap: 0; overflow: visible; padding-top: 101px; }
.ec-hero-split--spotlight .ec-hero-split__content { max-width: 499px; flex: 0 0 499px; }
.ec-hero-split--spotlight .ec-hero-split__title { font-size: 48px; line-height: 64px; }
.ec-hero-split--spotlight .ec-hero-split__button { height: 68px; padding: 0 52px; border-width: 2px; border-radius: 999px; font-size: 20px; font-weight: 700; }
.ec-hero-split--spotlight .ec-hero-split__button--secondary { background: transparent; }
.ec-hero-split--spotlight .ec-hero-split__visual { width: 780px; height: 600px; flex: 0 0 780px; margin-top: -101px; margin-right: -95px; }
.ec-hero-split--spotlight .ec-hero-split__image { width: 780px; height: 600px; max-width: none; max-height: none; object-fit: contain; }
.ec-hero-split--dashboard { background: #E8F2FF; }
.ec-hero-split--dashboard .ec-hero-split__inner { align-items: flex-start !important; justify-content: flex-start; gap: 26px; padding-top: 83px; }
.ec-hero-split--dashboard .ec-hero-split__content { max-width: 505px; flex: 0 0 505px; }
.ec-hero-split--dashboard .ec-hero-split__title { font-size: 48px; line-height: 56px; }
.ec-hero-split--dashboard .ec-hero-split__title span + span { margin-top: 16px; line-height: 48px; }
.ec-hero-split--dashboard .ec-hero-split__button { height: 68px; padding: 0 52px; border-width: 2px; border-radius: 999px; font-size: 20px; font-weight: 700; }
.ec-hero-split--dashboard .ec-hero-split__button--secondary { background: transparent; }
.ec-hero-split--dashboard .ec-hero-split__visual { width: 757px; height: 450px; flex: 0 0 757px; margin-right: -104px; }
.ec-hero-split--dashboard.ec-hero-split--visual-wms .ec-hero-split__visual { width: 657px; height: 500px; flex: 0 0 657px; margin-right: -4px; }

/* EC-PainGrid */
.ec-pain-grid { padding: 72px 0; background: #f7fafe; }
.ec-pain-grid__heading,
.ec-role-grid__heading { color: #1B1C1F; font-size: 40px; font-weight: 500; line-height: 48px; }
.ec-pain-grid__list { gap: 36px; margin-top: 48px; }
.ec-pain-grid--columns-3 .ec-pain-grid__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ec-pain-grid--columns-2 .ec-pain-grid__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ec-pain-grid--columns-4 .ec-pain-grid__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ec-pain-grid__item { gap: 16px; padding: 40px; border: 1px solid #edf0f5; border-radius: 24px; background: #fff; box-shadow: 0 12px 12px rgba(26, 118, 255, .08); }
.ec-pain-grid__icon { width: 36px; height: 36px; }
.ec-pain-grid__icon-image { width: auto; max-width: 33px; height: auto; max-height: 30px; }
.ec-pain-grid__title { color: #272b34; font-size: 24px; font-weight: 700; line-height: 32px; }
.ec-pain-grid__description { margin-top: 8px; color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-pain-grid--stacked .ec-pain-grid__item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: 36px auto;
    align-content: start;
    align-items: center;
    column-gap: 16px;
    row-gap: 16px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ec-pain-grid--stacked .ec-pain-grid__content { display: contents; }
.ec-pain-grid--stacked .ec-pain-grid__title { grid-column: 2; grid-row: 1; }
.ec-pain-grid--stacked .ec-pain-grid__description {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
}
.ec-pain-grid--stacked .ec-pain-grid__title,
.ec-pain-grid--stacked .ec-pain-grid__description {
    transition: color .2s ease;
}
.ec-pain-grid--stacked .ec-pain-grid__icon-image {
    transition: filter .2s ease;
}
.ec-pain-grid--stacked .ec-pain-grid__item:hover {
    color: #fff;
    background: #1a76ff;
    border-color: #edf0f5;
    box-shadow: 0 12px 12px rgba(26, 118, 255, .08);
}
.ec-pain-grid--stacked .ec-pain-grid__item:hover .ec-pain-grid__title {
    color: #fff;
}
.ec-pain-grid--stacked .ec-pain-grid__item:hover .ec-pain-grid__description {
    color: #e1e1e1;
}
.ec-pain-grid--stacked .ec-pain-grid__item:hover .ec-pain-grid__icon-image {
    filter: brightness(0) invert(1);
}
.ec-pain-grid--compact { height: 369px; padding: 0; background: #fff; }
.ec-pain-grid--compact .ec-pain-grid__heading { height: 120px; padding-top: 36px; }
.ec-pain-grid--compact .ec-pain-grid__list { height: 249px; gap: 0; margin-top: 0; }
.ec-pain-grid--compact .ec-pain-grid__item { height: 249px; flex-direction: column; gap: 12px; padding: 36px; border: 0; border-radius: 0; box-shadow: none; text-align: center; }
.ec-pain-grid--compact .ec-pain-grid__icon { position: relative; width: 72px; height: 72px; overflow: visible; }
.ec-pain-grid--compact .ec-pain-grid__icon-image { position: absolute; top: 0; left: 50%; width: auto; max-width: none; height: auto; max-height: none; transform: translateX(-50%); }
.ec-pain-grid--compact .ec-pain-grid__item:nth-child(1) .ec-pain-grid__icon-image { top: -11px; }
.ec-pain-grid--compact .ec-pain-grid__item:nth-child(2) .ec-pain-grid__icon-image { top: -10px; }
.ec-pain-grid--compact .ec-pain-grid__content { display: flex; width: 138px; flex-direction: column; align-items: center; gap: 4px; }
.ec-pain-grid--compact .ec-pain-grid__title { margin-top: 0; color: #16171a; font-size: 28px; font-weight: 500; line-height: 41px; }
.ec-pain-grid--compact .ec-pain-grid__description { width: 163px; max-width: 163px; margin: 0; color: #7e8288; font-size: 16px; line-height: 24px; }
/* .ec-pain-grid--scenarios { background-color: #fff; } */
.ec-pain-grid--scenarios .ec-pain-grid__item { cursor: default; transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.ec-pain-grid--scenarios .ec-pain-grid__item:focus-visible { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 4px; }
.ec-pain-grid--scenarios .ec-pain-grid__item.is-active { color: #fff; background: #1a76ff; box-shadow: 0 16px 28px rgba(26, 118, 255, .24); transform: translateY(-2px); }
.ec-pain-grid--scenarios .ec-pain-grid__item.is-active .ec-pain-grid__title,
.ec-pain-grid--scenarios .ec-pain-grid__item.is-active .ec-pain-grid__description { color: #fff; }

/* Shared marketing page and content-led component variants */
.ec-marketing-page {
    overflow: hidden;
    color: #191c27;
    background: #fff;
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.ec-hero-split__background,
.ec-hero-split__overlay {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ec-hero-split__background {
    object-fit: cover;
    object-position: left center;
}

.ec-hero-split--content-only .ec-hero-split__inner,
.ec-hero-split--immersive .ec-hero-split__inner {
    position: relative;
    z-index: 1;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 101px;
}

.ec-hero-split--content-only .ec-hero-split__content,
.ec-hero-split--immersive .ec-hero-split__content,
.ec-hero-split--text-wide .ec-hero-split__content {
    max-width: 690px;
    flex: 0 1 690px;
}

.ec-hero-split--text-medium .ec-hero-split__content {
    max-width: 659px;
    flex-basis: 659px;
}

.ec-hero-split--text-narrow .ec-hero-split__content {
    max-width: 620px;
    flex-basis: 620px;
}

.ec-hero-split--content-only .ec-hero-split__eyebrow,
.ec-hero-split--immersive .ec-hero-split__eyebrow {
    height: 34px;
    min-height: 34px;
    margin: 0 0 16px;
    padding: 0 16px;
    border: 1px solid #9fc3ff;
    border-radius: 6px;
    color: #1a76ff;
    background: transparent;
    font-size: 16px;
    line-height: 32px;
}

.ec-hero-split--content-only .ec-hero-split__eyebrow {
    padding: 0 8px;
    border-color: #A5BDFD;
    background: #F6F9FF;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.ec-hero-split--content-only .ec-hero-split__button,
.ec-hero-split--immersive .ec-hero-split__button {
    min-width: 188px;
    height: 68px;
    padding: 0 54px;
    border-width: 2px;
    border-radius: 999px;
    background: linear-gradient(110deg, #4086ff 0%, #1a76ff 100%);
    box-shadow: 0 8px 16px rgba(0, 69, 173, .12);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.ec-hero-split--immersive .ec-hero-split__content {
    max-width: 560px;
    flex-basis: 560px;
}

.ec-hero-split--cover-gradient {
    position: relative;
    background: #20252d;
}

.ec-hero-split--cover-gradient .ec-hero-split__background {
    object-position: center;
}

.ec-hero-split--cover-gradient .ec-hero-split__overlay {
    background: linear-gradient(90deg, #313233 0%, #343637 10%, #5a5b5c 20%, #7a7b7d 30%, #98999b 40%, #b1b3b5 50%, #c7c8ca 60%, #d8dadc 70%, #e7e9eb 80%, #f2f4f7 90%, #f9fbfe 100%);
    mix-blend-mode: multiply;
}

.ec-hero-split--cover-gradient.ec-hero-split--overlay-soft .ec-hero-split__overlay {
    background: linear-gradient(90deg, #6e7072 0%, #717375 10%, #8b8c8e 20%, #a2a3a5 30%, #b5b7b9 40%, #c7c9cb 50%, #d6d8da 60%, #e1e3e6 70%, #eceef1 80%, #f3f6f9 90%, #f8fbfe 100%);
}

.ec-hero-split--cover-gradient .ec-hero-split__inner {
    position: relative;
    z-index: 1;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 101px;
}

.ec-hero-split--cover-gradient .ec-hero-split__content {
    flex: auto;
}

.ec-hero-split--cover-gradient .ec-hero-split__eyebrow {
    height: 34px;
    min-height: 34px;
    padding: 0 8px;
    border: 1px solid #A5BDFD;
    border-radius: 6px;
    color: #A3C4EE;
    background: transparent;
    font-size: 18px;
    line-height: 26px;
}

.ec-hero-split--cover-gradient .ec-hero-split__title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0;
}

.ec-pain-grid--centered,
.ec-pain-grid--horizontal,
.ec-pain-grid--horizontal-compact,
.ec-pain-grid--scene-cards {
    background: #fff;
}

.ec-pain-grid--centered .ec-pain-grid__title,
.ec-pain-grid--horizontal .ec-pain-grid__title,
.ec-pain-grid--horizontal-compact .ec-pain-grid__title,
.ec-pain-grid--scene-cards .ec-pain-grid__title {
    color: #1b1c1f;
    font-weight: 500;
}

.ec-pain-grid--centered .ec-pain-grid__description,
.ec-pain-grid--horizontal .ec-pain-grid__description,
.ec-pain-grid--horizontal-compact .ec-pain-grid__description,
.ec-pain-grid--scene-cards .ec-pain-grid__description {
    color: #7e8288;
}

.ec-pain-grid--title-strong .ec-pain-grid__title {
    font-weight: 700;
    line-height: normal;
}

.ec-pain-grid--centered {
    height: 852px;
}

.ec-pain-grid--centered .ec-pain-grid__list {
    row-gap: 89px;
}

.ec-pain-grid--centered .ec-pain-grid__item {
    height: 235px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px;
    text-align: center;
}

.ec-pain-grid--centered .ec-pain-grid__icon-image,
.ec-pain-grid--horizontal .ec-pain-grid__icon-image,
.ec-pain-grid--horizontal-compact .ec-pain-grid__icon-image,
.ec-pain-grid--scene-cards .ec-pain-grid__icon-image {
    width: 36px;
    max-width: 36px;
    height: 36px;
    max-height: 36px;
}

.ec-pain-grid--centered .ec-pain-grid__title {
    margin-top: 16px;
    line-height: 36px;
}

.ec-pain-grid--horizontal {
    height: 644px;
}

.ec-pain-grid--horizontal .ec-pain-grid__item {
    height: 184px;
    align-items: flex-start;
}

.ec-pain-grid--horizontal .ec-pain-grid__title {
    line-height: 36px;
}

.ec-pain-grid--horizontal-compact {
    height: 592px;
}

.ec-pain-grid--horizontal-compact .ec-pain-grid__item {
    display: grid;
    min-height: 158px;
    grid-template-columns: 36px 1fr;
    grid-template-rows: 36px 26px;
    align-items: start;
    column-gap: 16px;
    row-gap: 16px;
}

.ec-pain-grid--horizontal-compact .ec-pain-grid__content,
.ec-pain-grid--scene-cards .ec-pain-grid__content {
    display: contents;
}

.ec-pain-grid--horizontal-compact .ec-pain-grid__title {
    align-self: center;
}

.ec-pain-grid--horizontal-compact .ec-pain-grid__description {
    grid-column: 1 / -1;
    margin-top: 0;
}

.ec-pain-grid--scene-cards {
    height: 644px;
}

.ec-pain-grid--scene-cards .ec-pain-grid__item {
    display: grid;
    height: 184px;
    grid-template-columns: 36px 1fr;
    grid-template-rows: 36px 1fr;
    align-items: start;
    column-gap: 12px;
    row-gap: 16px;
    border: 1px solid #F0F2F5;
    background: #fff;
    box-shadow: 0 12px 24px 0 rgba(26, 118, 255, 0.08);
}

.ec-pain-grid--scene-cards .ec-pain-grid__title {
    align-self: center;
    font-weight: 500;
    line-height: 36px;
}

.ec-pain-grid--scene-cards .ec-pain-grid__description {
    grid-column: 1 / -1;
    margin-top: 0;
}

.ec-stat-grid--compact-cards {
    height: 454px;
    padding: 118px 0 0;
    background: #f7fafe;
}

.ec-stat-grid--compact-cards .ec-stat-grid__list {
    height: 122px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.ec-stat-grid--compact-cards .ec-stat-grid__item {
    position: relative;
    height: 122px;
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 22px;
    border: 1px solid rgba(171, 205, 255, .4);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 118, 255, .08);
    text-align: left;
}

.ec-stat-grid--compact-cards .ec-stat-grid__icon {
    position: absolute;
    right: 22px;
    top: 36px;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.ec-stat-grid--compact-cards .ec-stat-grid__content {
    width: auto;
    height: auto;
    align-items: flex-start;
    gap: 0;
}

.ec-stat-grid--compact-cards .ec-stat-grid__description {
    order: -1;
    color: #535d6d;
    font-size: 16px;
    line-height: 18px;
}

.ec-stat-grid--compact-cards .ec-stat-grid__metric {
    height: 38px;
    flex: 0 0 38px;
    justify-content: flex-start;
    margin-top: 18px;
    color: #1a76ff;
}

.ec-stat-grid--compact-cards .ec-stat-grid__value {
    color: inherit;
    font-size: 36px;
    font-weight: 500;
    line-height: 38px;
}

.ec-stat-grid--compact-cards .ec-stat-grid__trend {
    width: auto;
    height: auto;
    margin-right: 4px;
    border: 0;
    color: inherit;
    font-size: 36px;
    font-weight: 500;
    line-height: 38px;
}

.ec-stat-grid--compact-cards .ec-stat-grid__trend--up::before {
    content: '↑';
}

.ec-stat-grid--compact-cards .ec-stat-grid__trend--down::before {
    content: '↓';
}

.ec-stat-grid--compact-cards .ec-stat-grid__metric--trend-down {
    color: #14aa7b;
}

.ec-pain-grid--scene-cards .ec-pain-grid__item:hover {
    background-color: #1A76FF;
    border-color: #F0F2F5;
    box-shadow: 0 12px 24px 0 rgba(26, 118, 255, 0.08);
}

.ec-pain-grid--scene-cards .ec-pain-grid__item:hover .ec-pain-grid__title {
    color: #fff;
}

.ec-pain-grid--scene-cards .ec-pain-grid__item:hover .ec-pain-grid__description {
    color: #E1E1E1;
}

@media (max-width: 1199px) {
    .ec-hero-split--content-only .ec-hero-split__inner,
    .ec-hero-split--immersive .ec-hero-split__inner {
        padding-left: 24px;
    }

    .ec-pain-grid--centered,
    .ec-pain-grid--horizontal,
    .ec-pain-grid--horizontal-compact,
    .ec-stat-grid--compact-cards {
        height: auto;
    }

    .ec-pain-grid--scene-cards {
        height: 644px;
    }

    .ec-pain-grid--scene-cards.ec-pain-grid--columns-3 .ec-pain-grid__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ec-stat-grid--compact-cards {
        padding-bottom: 72px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .ec-stat-grid--compact-cards .ec-stat-grid__list {
        height: 122px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ec-stat-grid--compact-cards .ec-stat-grid__item {
        height: 122px;
        min-height: 0;
        padding: 22px;
    }
}

/* EC-MediaList product variant */
.ec-media-list--product .ec-media-feature__title { font-size: 36px; line-height: 50px; }
.ec-media-list--product .ec-media-feature__list { gap: 14px; margin-top: 24px; }
.ec-media-list--product .ec-media-feature__list-item { color: #535d6d; font-size: 16px; line-height: 24px; }
.ec-media-list--product .ec-media-feature__button { min-width: 158px; height: 52px; margin-top: 24px; padding: 0 36px; font-size: 16px; line-height: 24px; }

/* EC-RoleGrid */
.ec-role-grid { padding: 72px 0; background: #fff; }
.ec-role-grid__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.ec-role-grid__item { height: 197px; padding: 22px; border-radius: 24px; background: #fff; box-shadow: 0 0 12px rgba(26, 118, 255, .16); text-align: left; }
.ec-role-grid__meta { min-height: 32px; }
.ec-role-grid__icon { width: 32px; height: 32px; }
.ec-role-grid__icon-image { width: 32px; height: 32px; }
.ec-role-grid__role { color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-role-grid__content { min-height: 111px; gap: 8px; margin-top: 10px; }
.ec-role-grid__title,
.ec-role-grid__wide-title { color: #1b1c1f; font-size: 26px; font-weight: 500; line-height: 39px; }
.ec-role-grid__description,
.ec-role-grid__wide-description { color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-role-grid__wide-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 18px; }
.ec-role-grid__wide-item { height: 183px; justify-content: flex-start; gap: 8px; padding: 36px; border-radius: 24px; background: #fff; box-shadow: 0 0 12px rgba(26, 118, 255, .16); }
.ec-role-grid__wide-description a { color: #1a76ff; text-decoration: none; }

/* EC-RoleTabs */
.ec-role-tabs { width: 100%; height: 672px; padding: 104px 0 128px; background: #fff; }
.ec-role-tabs__inner { width: min(1183px, calc(100% - 48px)); margin: 0 auto; }
.ec-role-tabs__heading { color: #1b1c1f; font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif; font-size: 40px; font-weight: 500; line-height: 48px; text-align: center; }
.ec-role-tabs__list { display: flex; height: 320px; gap: 18px; margin-top: 72px; }
.ec-role-tabs__card { --ec-role-color: #1a76ff; position: relative; width: 163px; min-width: 0; height: 320px; flex: 0 1 163px; overflow: hidden; border: 1px solid #edf0f5; border-radius: 32px; background: radial-gradient(circle at 64% 62%, transparent 0 104px, rgba(255, 255, 255, .82) 105px 106px, transparent 107px), linear-gradient(180deg, rgba(235, 236, 252, .4) 0%, rgba(254, 248, 254, .4) 100%); transition: flex-basis .45s cubic-bezier(.22, .61, .36, 1), border-radius .3s ease, box-shadow .3s ease; }
.ec-role-tabs__card--orange { --ec-role-color: #ff7a00; }
.ec-role-tabs__card--green { --ec-role-color: #00a361; }
.ec-role-tabs__card.is-active { flex-basis: 640px; border-radius: 36px; background: radial-gradient(circle at 80% 64%, transparent 0 151px, rgba(255, 255, 255, .82) 152px 153px, transparent 154px), linear-gradient(118deg, transparent 0 43%, rgba(255, 255, 255, .22) 43% 62%, transparent 62%), linear-gradient(70deg, #f3f6ff 30.218%, #e9efff 100%); box-shadow: 0 0 24px rgba(26, 118, 255, .24); }
.ec-role-tabs__trigger { position: absolute; z-index: 10; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; border-radius: inherit; background: transparent; cursor: pointer; }
.ec-role-tabs__trigger:focus { outline: none; }
.ec-role-tabs__card:focus-within { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 3px; }
.ec-role-tabs__role { position: absolute; z-index: 5; top: 0; left: 0; display: flex; width: 87px; height: 44px; align-items: center; justify-content: center; border-radius: 0 0 32px 0; color: var(--ec-role-color); background: rgba(255, 255, 255, .78); font-size: 16px; font-weight: 500; line-height: 24px; transition: width .3s ease; }
.ec-role-tabs__card.is-active .ec-role-tabs__role { width: 116px; border-radius: 0 0 36px 0; }
.ec-role-tabs__detail { position: absolute; z-index: 4; top: 80px; left: 56px; width: 260px; opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility 0s linear .18s; }
.ec-role-tabs__card.is-active .ec-role-tabs__detail { opacity: 1; visibility: visible; transition-delay: .16s, .16s; }
.ec-role-tabs__title { display: block; color: #16171a; font-size: 26px; font-weight: 500; line-height: 39px; white-space: nowrap; }
.ec-role-tabs__benefits { display: grid; gap: 12px; margin-top: 13px; }
.ec-role-tabs__benefit { display: flex; align-items: center; gap: 8px; color: #535d6d; font-size: 18px; line-height: 26px; white-space: nowrap; }
.ec-role-tabs__check { position: relative; display: block; width: 24px; height: 24px; flex: 0 0 24px; color: var(--ec-role-color); }
.ec-role-tabs__check::before { position: absolute; top: 3px; left: 7px; width: 8px; height: 14px; border: solid currentColor; border-width: 0 2px 2px 0; content: ''; transform: rotate(45deg); }
.ec-role-tabs__quote { position: absolute; top: -17px; left: 303px; display: flex; width: 76px; height: 36px; align-items: center; justify-content: center; border-radius: 18px; color: #535d6d; background: #fff; box-shadow: 0 4px 12px rgba(51, 80, 122, .12); font-size: 14px; line-height: 22px; white-space: nowrap; }
.ec-role-tabs__quote::after { position: absolute; right: 6px; bottom: -7px; width: 14px; height: 12px; background: #fff; clip-path: polygon(0 0, 100% 0, 100% 100%); content: ''; }
.ec-role-tabs__visual { position: absolute; z-index: 3; inset: 0; overflow: hidden; pointer-events: none; }
.ec-role-tabs__image { position: absolute; bottom: 0; left: 50%; display: block; width: auto; max-width: none; height: 280px; transform: translateX(-50%); transition: left .45s cubic-bezier(.22, .61, .36, 1); }
.ec-role-tabs__card:nth-child(1) .ec-role-tabs__image { bottom: -130px; height: 400px; }
.ec-role-tabs__card:nth-child(2) .ec-role-tabs__image { height: 280px; }
.ec-role-tabs__card:nth-child(3) .ec-role-tabs__image { bottom: -150px; height: 490px; margin-left: 15px; }
.ec-role-tabs__card:nth-child(4) .ec-role-tabs__image { bottom: -4px; height: 290px; }
.ec-role-tabs__card:nth-child(1).is-active .ec-role-tabs__image,
.ec-role-tabs__card:nth-child(2).is-active .ec-role-tabs__image { left: 77%; }
.ec-role-tabs__card:nth-child(3).is-active .ec-role-tabs__image,
.ec-role-tabs__card:nth-child(4).is-active .ec-role-tabs__image { left: 80%; }

@media (prefers-reduced-motion: reduce) {
    .ec-role-tabs__card,
    .ec-role-tabs__role,
    .ec-role-tabs__detail,
    .ec-role-tabs__image { transition: none; }
}

/* EC-CaseGrid: unified latest case cards (Figma 1762:9159) */
.ec-case-grid { padding: 72px 0 48px; background: #fff; }
.ec-case-grid__heading { color: var(--Text-text-1, #16171A); font-family: var(--Fonts-CN, "Source Han Sans CN"); font-size: 40px; font-style: normal; font-weight: 500; line-height: 48px; text-align: center; }
.ec-case-grid__list { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 36px; margin-top: 72px; }
.ec-case-grid__item { display: flex; min-width: 0; flex-direction: column; border: 1px solid #f0f2f5; border-radius: 24px; background: #fff; overflow: hidden; }
.ec-case-grid__visual { height: 208px; flex: 0 0 208px; background: #d9d9d9; }
.ec-case-grid__body { display: flex; min-width: 0; flex: 1 1 auto; flex-direction: column; padding: 24px; }
.ec-case-grid__header { display: flex; min-width: 0; min-height: 35px; align-items: center; justify-content: space-between; gap: 16px; }
.ec-case-grid__title { overflow: hidden; color: #16171a; font-size: 24px; font-weight: 700; line-height: 35px; text-overflow: ellipsis; white-space: nowrap; }
.ec-case-grid__detail { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 4px; color: #0066ff; font-size: 16px; line-height: 24px; text-decoration: none; white-space: nowrap; }
.ec-case-grid__detail:hover,
.ec-case-grid__detail:focus { color: #0066ff; text-decoration: none; }
.ec-case-grid__detail:focus-visible { outline: 2px solid rgba(0, 102, 255, .35); outline-offset: 3px; }
.ec-case-grid__description { margin: 16px 0; color: #a9adb4; font-size: 16px; line-height: 24px; }
.ec-case-grid__metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f2f5; }
.ec-case-grid__metric { display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.ec-case-grid__metric dt { display: flex; height: 35px; align-items: flex-end; justify-content: center; color: #0066ff; font-size: inherit; font-weight: 400; }
.ec-case-grid__trend { display: block; width: 18px; height: 18px; flex: 0 0 18px; margin-right: 1px; align-self: center; }
.ec-case-grid__metric-value { font-size: 24px; font-weight: 700; line-height: 36px; }
.ec-case-grid__metric-unit { margin-left: 2px; margin-bottom: 4px; font-size: 16px; font-weight: 700; }
.ec-case-grid__metric dd { color: #a9adb4; font-size: 14px; font-weight: 400; line-height: 22px; white-space: nowrap; }
.ec-case-grid__image { display: block; width: 100%; height: 100%; object-fit: cover; }
.ec-case-grid__detail-icon { display: block; width: 16px; height: 16px; transform: rotate(180deg) translateY(-2px); }

/* EC-LogoGrid */
.ec-logo-grid { height: 336px; padding: 48px 0 72px; background: #fff; }
.ec-logo-grid__inner { width: 1184px; margin: 0 auto; }
.ec-logo-grid__list { display: grid; grid-template-columns: repeat(5, 200px); gap: 24px 46px; }
.ec-logo-grid__item { display: flex; width: 200px; height: 96px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #F0F2F5; border-radius: 24px; background: #fff; }
.ec-logo-grid__image { display: block; width: auto; height: auto; max-width: 192px; max-height: 96px; object-fit: contain; }
.ec-logo-grid__text { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 8px 16px; color: #272b34; font-size: 18px; font-weight: 700; line-height: 24px; text-align: center; white-space: nowrap; }
.ec-logo-grid--default .ec-logo-grid__text { padding: 0 2px; color: #000; font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif; font-size: 24px; font-weight: 500; line-height: 48px; }
.ec-logo-grid--default .ec-logo-grid__text--large { color: #272b34; font-size: 32px; }
.ec-logo-grid--full-width .ec-logo-grid__list { grid-template-columns: 1fr; gap: 0; }
.ec-logo-grid--full-width .ec-logo-grid__item { width: 100%; height: auto; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.ec-logo-grid--full-width .ec-logo-grid__image { max-width: 100%; max-height: none; }
.ec-case-grid + .ec-logo-grid { height: 288px; padding-top: 0; }

/* EC-ActionBanner */
.ec-inline-callout { position: relative; width: 100%; height: 200px; overflow: hidden; isolation: isolate; background: #f7fafe; }
.ec-inline-callout__background { position: absolute; z-index: 0; inset: 0; background: #f7fafe url('/images/components/inline-callout-background.png') center center / cover no-repeat; pointer-events: none; }
.ec-inline-callout__star { position: absolute; display: block; }
.ec-inline-callout__star--primary { top: 50px; left: calc(50% - 620px); width: 23px; height: 23px; }
.ec-inline-callout__star--soft { top: 57px; left: calc(50% + 322px); width: 16px; height: 16px; }
.ec-inline-callout__star--muted { top: 142px; left: calc(50% + 616px); width: 23px; height: 23px; }
.ec-inline-callout__inner { position: relative; z-index: 1; display: flex; width: min(1184px, calc(100% - 48px)); height: 200px; align-items: center; justify-content: space-between; gap: 48px; margin: 0 auto; }
.ec-inline-callout__content { max-width: 820px; min-width: 0; }
.ec-inline-callout__title { color: #16171a; font-size: 40px; font-weight: 500; line-height: 48px; }
.ec-inline-callout__description { margin: 18px 0 0; color: #7e8288; font-size: 18px; line-height: 26px; white-space: nowrap; }
.ec-inline-callout__button { display: inline-flex; width: 240px; height: 68px; flex: 0 0 240px; align-items: center; justify-content: center; gap: 8px; padding: 0 52px; overflow: hidden; border: 2px solid transparent; border-radius: 999px; color: #1a76ff; background: #fff; box-shadow: 0 0 16px rgba(1, 64, 157, .24); font-size: 20px; font-weight: 700; line-height: 28px; text-decoration: none; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; }
.ec-inline-callout__button--w-240 { width: 240px; }
.ec-inline-callout__button--light { color: #1a76ff; background: #fff; box-shadow: 0 0 16px rgba(1, 64, 157, .24); }
.ec-inline-callout__button-icon { display: block; width: 24px; height: 24px; flex: 0 0 24px; }
.ec-inline-callout__button:hover,
.ec-inline-callout__button:focus,
.ec-inline-callout__button--light:hover,
.ec-inline-callout__button--light:focus { color: #1a76ff; text-decoration: none; transform: translateY(-1px); }
.ec-inline-callout__button:focus-visible { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 3px; }
.ec-inline-callout__grainient { z-index: 0; }
.ec-inline-callout--has-grainient .ec-inline-callout__background { z-index: 1; background-color: transparent; background-image: none; }
.ec-inline-callout--has-grainient .ec-inline-callout__inner { z-index: 2; }

@media (prefers-reduced-motion: reduce) {
    .ec-inline-callout__button { transition: none; }
    .ec-inline-callout__button:hover,
    .ec-inline-callout__button:focus { transform: none; }
}

.ec-grainient { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; opacity: 0; transition: opacity .25s ease; }
.ec-grainient--ready { opacity: 1; }
.ec-grainient__canvas { display: block; width: 100%; height: 100%; }

.ec-hero-split--has-grainient {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.ec-hero-split__grainient { z-index: 0; }
.ec-hero-split--has-grainient .ec-hero-split__overlay { z-index: 1; }
.ec-hero-split--has-grainient .ec-hero-split__inner { z-index: 2; }
.ec-hero-split--content-only.ec-hero-split--has-grainient .ec-hero-split__overlay {
    background: linear-gradient(90deg, rgba(247, 250, 254, .92) 0%, rgba(247, 250, 254, .76) 42%, rgba(247, 250, 254, .18) 72%, rgba(247, 250, 254, 0) 100%);
}
.ec-hero-split--visual-portrait-tall { height: 680px; }
.ec-hero-split--visual-portrait-tall .ec-hero-split__inner { height: 680px; }
.ec-hero-split--visual-portrait-tall .ec-hero-split__visual {
    position: absolute;
    top: 33px;
    left: calc(50% + 181px);
    width: 475px;
    height: 647px;
    margin: 0;
}
.ec-hero-split--visual-portrait-tall .ec-hero-split__image {
    width: 475px;
    height: 647px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}
.ec-hero-split--visual-landscape-bleed { height: 680px; }
.ec-hero-split--visual-landscape-bleed .ec-hero-split__inner { height: 680px; }
.ec-hero-split--visual-landscape-bleed .ec-hero-split__visual {
    position: absolute;
    top: 4px;
    left: calc(50% - 32px);
    width: 1071px;
    height: 750px;
    margin: 0;
}
.ec-hero-split--visual-landscape-bleed .ec-hero-split__image {
    width: 1071px;
    height: 750px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}
.ec-hero-split--visual-portrait-bleed { height: 680px; }
.ec-hero-split--visual-portrait-bleed .ec-hero-split__inner { height: 680px; }
.ec-hero-split--visual-portrait-bleed .ec-hero-split__visual {
    position: absolute;
    top: 0;
    left: calc(50% + 90px);
    width: 630px;
    height: 735px;
    margin: 0;
}
.ec-hero-split--visual-portrait-bleed .ec-hero-split__image {
    transform: translate(0px, -38px);
}
.site-shell--overlay-header .ec-hero-split__image {
    margin-left: 150px;
}

/* Product and solution first screens share the homepage's overlay header. */
@media (min-width: 769px) {
    .site-shell--overlay-header .ec-hero-split {
        height: 100vh;
        max-height: 680px;
    }

    .site-shell--overlay-header .ec-hero-split .ec-hero-split__inner {
        height: 100%;
        align-items: center !important;
        padding-top: 80px;
        padding-bottom: 0;
    }

    .site-shell--overlay-header .ec-hero-split--visual-portrait-tall .ec-hero-split__visual,
    .site-shell--overlay-header .ec-hero-split--visual-landscape-bleed .ec-hero-split__visual,
    .site-shell--overlay-header .ec-hero-split--visual-portrait-bleed .ec-hero-split__visual {
        top: calc(50% + 40px);
        transform: translateY(-50%);
    }
}

.ec-action-banner { position: relative; isolation: isolate; overflow: hidden; }
.ec-action-banner__background { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ec-action-banner__grainient { z-index: 0; }
.ec-action-banner__inner { position: relative; z-index: 1; }
.ec-action-banner__actions { gap: 16px; }
.ec-action-banner__title { color: #1B1C1F; font-size: 48px; font-weight: 700; line-height: 56px; }
.ec-action-banner__description { margin-top: 16px; color: #292a2f66; font-size: 24px; line-height: 32px; opacity: 1; }
.ec-action-banner__button--light { border-color: #1a76ff; color: #1a76ff; background: transparent; }
.ec-action-banner__button--light:hover,
.ec-action-banner__button--light:focus { color: #1a76ff; }
.ec-action-banner--centered { height: 356px; color: #191c27; background: linear-gradient(112deg, #edf5ff 0%, #f6faff 48%, #dcecff 100%); }
.ec-action-banner--centered .ec-action-banner__inner { height: 356px; flex-direction: column; justify-content: center; text-align: center; }
.ec-action-banner--centered .ec-action-banner__actions { margin-top: 32px; }
.ec-action-banner--centered-large { height: 356px; color: #191c27; background: linear-gradient(112deg, #edf5ff 0%, #dceaff 52%, #edf5ff 100%); }
.ec-action-banner--centered-large .ec-action-banner__inner { height: 356px; flex-direction: column; justify-content: center; text-align: center; }
.ec-action-banner--centered-large .ec-action-banner__actions { gap: 44px; margin-top: 40px; }
.ec-action-banner--centered-large.ec-action-banner--content-buttons .ec-action-banner__button { min-width: 0; padding-right: 52px; padding-left: 52px; }
.ec-action-banner__button--primary { border-color: transparent; color: #fff; background: linear-gradient(98deg, #4086FF 0%, #1A76FF 100%); box-shadow: 0 8px 16px 0 rgba(0, 69, 173, 0.12); }
.ec-action-banner__button--primary:hover,
.ec-action-banner__button--primary:focus { color: #fff; }
.ec-action-banner__button--secondary { border-color: #06F; color: #277CFF; background: #fff; }
.ec-action-banner__button--secondary:hover,
.ec-action-banner__button--secondary:focus { color: #277CFF; }

@media (max-width: 1199px) {
    .ec-hero-split__visual { width: 52%; }
    .ec-pain-grid,
    .ec-role-grid,
    .ec-case-grid { height: auto; min-height: 0; }
    .ec-pain-grid--columns-3 .ec-pain-grid__list,
    .ec-role-grid__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ec-case-grid { padding-bottom: 72px; }
}

/* Mobile product-component layouts are intentionally disabled until the mobile designs are rebuilt. */
/* /EC-Product marketing components ---------------------------------------- */

/* EC-Insights ------------------------------------------------------------- */
.ec-insights { height: 672px; padding: 72px 0 64px; background: #fff; }
.ec-insights__heading { color: #191c27; font-size: 40px; font-weight: 500; line-height: 56px; }
.ec-insights__main { align-items: stretch; gap: 36px; margin-top: 48px; }
.ec-insights__column { width: 360px; flex: 0 0 360px; }
.ec-insights__column--featured { width: 392px; flex-basis: 392px; }
.ec-insights__card { width: 100%; height: 332px; border-radius: 24px; }
.ec-insights__card--feed { padding: 24px 16px; background: #f6f9ff; }
.ec-insights__card-title { gap: 8px; margin-bottom: 20px; color: #191c27; font-size: 18px; font-weight: 600; line-height: 27px; }
.ec-insights__card-icon { width: 24px; height: 24px; object-fit: contain; }
.ec-insights__article-list { gap: 12px; }
.ec-insights__article { display: block; width: 100%; overflow: hidden; padding: 15px 16px; border-radius: 12px; color: #191c27; background: #fff; font-size: 14px; line-height: 21px; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; transition: color .3s ease, box-shadow .3s ease; }
.ec-insights__article:hover { color: #2468f2; box-shadow: 0 2px 12px rgba(36, 104, 242, .12); text-decoration: none; }
.ec-insights__article:focus-visible,
.ec-insights__featured-link:focus-visible,
.ec-insights__button:focus-visible,
.ec-insights__dot:focus-visible { outline: 3px solid rgba(36, 104, 242, .38); outline-offset: 3px; }
.ec-insights__card--featured { position: relative; overflow: hidden; background: #fff; }
.ec-insights__card--featured-empty { background: #f6f9ff; }
.ec-insights__carousel { position: relative; overflow: hidden; }
.ec-insights__track { height: 100%; transition: transform .5s ease; }
.ec-insights__slide { min-width: 100%; height: 100%; }
.ec-insights__featured-link { position: relative; height: 100%; text-decoration: none; }
.ec-insights__featured-link:hover { text-decoration: none; }
.ec-insights__featured-image-wrap { height: 100%; overflow: hidden; border-radius: 24px; background: #e8edf4; }
.ec-insights__featured-image { width: 100%; height: 100%; object-fit: cover; }
.ec-insights__featured-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 24px 48px; border-radius: 0 0 24px 24px; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%); }
.ec-insights__featured-tag { display: inline-block; margin-bottom: 10px; padding: 6px 10px; border-radius: 6px; color: #fff; background: #ff4d4f; font-size: 12px; line-height: 1; }
.ec-insights__featured-title { overflow: hidden; color: #fff; font-size: 18px; font-weight: 500; line-height: 27px; text-overflow: ellipsis; white-space: nowrap; }
.ec-insights__dots { position: absolute; z-index: 2; bottom: 20px; left: 0; width: 100%; text-align: center; }
.ec-insights__dot { width: 24px; height: 4px; margin: 0 3px; padding: 0; border: 0; border-radius: 2px; background: rgba(255, 255, 255, .5); cursor: pointer; transition: background-color .3s ease; }
.ec-insights__dot.is-active { background: #fff; }
.ec-insights__actions { margin-top: 48px; }
.ec-insights__button { display: inline-block; width: 160px; height: 52px; padding: 0; border: 1px solid #bfc3cc; border-radius: 28px; color: #646a74; background: transparent; font-size: 16px; line-height: 50px; text-decoration: none; transition: border-color .3s ease, color .3s ease; }
.ec-insights__button:hover { border-color: #2468f2; color: #2468f2; text-decoration: none; }

@media (max-width: 1199px) {
    .ec-insights { height: auto; min-height: 672px; }
    .ec-insights__main { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ec-insights__column { width: auto; min-width: 0; flex-basis: auto; }
    .ec-insights__column--featured { grid-column: 1 / -1; width: auto; flex-basis: auto; }
}

/* Mobile insights stacking is intentionally disabled until the mobile designs are rebuilt. */

@media (prefers-reduced-motion: reduce) {
    .ec-insights__track,
    .ec-insights__article,
    .ec-insights__dot,
    .ec-insights__button { transition: none; }
}
/* /EC-Insights ------------------------------------------------------------ */

/* EC-Reveal --------------------------------------------------------------- */
.ec-reveal { --ec-reveal-delay: 0ms; }
.ec-reveal.ec-reveal--ready {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .72s cubic-bezier(.22, .61, .36, 1), transform .72s cubic-bezier(.22, .61, .36, 1);
    transition-delay: var(--ec-reveal-delay);
    will-change: opacity, transform;
}
.ec-reveal.ec-reveal--ready.ec-reveal--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .ec-reveal.ec-reveal--ready,
    .ec-reveal.ec-reveal--ready.ec-reveal--visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* /EC-Reveal -------------------------------------------------------------- */

.ec-pain-grid,
.ec-role-grid,
.ec-case-grid,
.ec-action-banner,
.ec-insights { width: 100%; }
.ec-pain-grid__inner,
.ec-role-grid__inner,
.ec-case-grid__inner,
.ec-insights__inner { width: min(1184px, calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.ec-pain-grid__heading,
.ec-role-grid__heading,
.ec-case-grid__heading,
.ec-insights__heading { text-align: center; }
.ec-pain-grid__list,
.ec-role-grid__list { display: grid; }
.ec-pain-grid__item { display: flex; align-items: center; }
.ec-pain-grid__icon,
.ec-role-grid__icon { display: flex; flex-shrink: 0; align-items: center; justify-content: center; }
.ec-pain-grid__icon-image,
.ec-role-grid__icon-image { display: block; }
.ec-pain-grid__content { min-width: 0; position: relative; }
.ec-role-grid__meta { display: flex; align-items: flex-start; justify-content: space-between; }
.ec-role-grid__content,
.ec-role-grid__wide-item { display: flex; flex-direction: column; }
.ec-role-grid__description-line { display: block; }
.ec-role-grid__wide-list { display: grid; }

.ec-case-grid__list,
.ec-case-grid__metrics { display: grid; }
.ec-action-banner { overflow: hidden; }
.ec-action-banner__inner { display: flex; width: min(1184px, calc(100% - 48px)); align-items: center; margin-right: auto; margin-left: auto; }
.ec-action-banner__content { min-width: 0; }
.ec-action-banner__actions { display: flex; flex-wrap: wrap; }

.ec-insights__main,
.ec-insights__card-title,
.ec-insights__track { display: flex; }
.ec-insights__column,
.ec-insights__card,
.ec-insights__carousel,
.ec-insights__article-list { display: flex; flex-direction: column; }
.ec-insights__carousel,
.ec-insights__article-list,
.ec-insights__track { flex: 1; }
.ec-insights__card-title { align-items: center; }
.ec-insights__card-icon { flex-shrink: 0; }
.ec-insights__featured-link,
.ec-insights__featured-image { display: block; }
.ec-insights__actions { text-align: center; }
.ec-insights__button { display: inline-flex; align-items: center; justify-content: center; }

.ec-hero-split--commerce-dashboard { background: #e8f2ff; }
.ec-hero-split--commerce-dashboard .ec-hero-split__content { max-width: 505px; flex: 0 0 505px; }
.ec-hero-split--commerce-dashboard .ec-hero-split__eyebrow { min-height: 44px; margin-bottom: 14px; padding: 0 24px; font-size: 20px; line-height: 28px; }
.ec-hero-split--commerce-dashboard .ec-hero-split__title { font-size: 48px; line-height: 56px; letter-spacing: 0; }
.ec-hero-split--commerce-dashboard .ec-hero-split__button { height: 68px; padding: 0 52px; border-width: 2px; border-radius: 999px; font-size: 20px; font-weight: 700; }
.ec-hero-split--commerce-dashboard .ec-hero-split__visual { width: 672px; height: 418px; flex: 0 0 672px; margin: -4px -12px 0 0; }
.ec-hero-split--commerce-dashboard .ec-hero-split__button--secondary { background-color: transparent;}

.ec-pain-grid--numbered { height: 523px; padding: 72px 0 64px; background: #fff; }
.ec-pain-grid--numbered .ec-pain-grid__list { margin-top: 86px; }
.ec-pain-grid--numbered .ec-pain-grid__item { position: relative; height: 245px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 24px; overflow: hidden; cursor: default; transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.ec-pain-grid--numbered .ec-pain-grid__number { position: absolute; top: 24px; right: 24px; color: #dce8f8; font-size: 64px; font-weight: 700; line-height: 1; }
.ec-pain-grid--numbered .ec-pain-grid__content { position: relative; z-index: 1; }
.ec-pain-grid--numbered .ec-pain-grid__description { max-width: 300px; }
.ec-pain-grid--numbered .ec-pain-grid__item.is-active { color: #fff; border-color: transparent; background: linear-gradient(135deg, #4b91ff 0%, #1a76ff 100%); box-shadow: 0 16px 30px rgba(26, 118, 255, .25); transform: translateY(-2px); }
.ec-pain-grid--numbered .ec-pain-grid__item.is-active .ec-pain-grid__number { color: rgba(255, 255, 255, .22); }
.ec-pain-grid--numbered .ec-pain-grid__item.is-active .ec-pain-grid__title,
.ec-pain-grid--numbered .ec-pain-grid__item.is-active .ec-pain-grid__description { color: #fff; }

.ec-pain-grid--numbered-interactive { padding: 72px 0 64px; background: #fff; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__list { margin-top: 86px; align-items: center; gap: 37px; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__item {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 23px;
    overflow: hidden;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    color: #272b34;
    background: #fff;
    box-shadow: 0 12px 12px rgba(26, 118, 255, .08);
    cursor: default;
    transition: height .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.ec-pain-grid--numbered-interactive .ec-pain-grid__number {
    position: relative;
    z-index: 1;
    display: block;
    color: #1a76ff;
    font-family: "HarmonyOS Sans", "Source Han Sans CN", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
}
.ec-pain-grid--numbered-interactive .ec-pain-grid__content { position: relative; z-index: 1; width: 100%; margin-top: 16px; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__title { position: relative; line-height: 35px; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__title::after {
    content: "";
    position: absolute;
    top: 51px;
    right: 0;
    left: 0;
    height: .5px;
    background: #d5d9df;
}
.ec-pain-grid--numbered-interactive .ec-pain-grid__description { max-width: none; margin-top: 48px; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__item:focus-visible { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 4px; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__item.is-active {
    padding: 22px;
    border-width: 2px;
    border-color: transparent;
    color: #fff;
    background: linear-gradient(101.477deg, #4086ff 0%, #1a76ff 100%);
    box-shadow: 0 8px 16px rgba(0, 69, 173, .12);
}
.ec-pain-grid--numbered-interactive .ec-pain-grid__item.is-active::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 124px;
    background: rgba(255, 255, 255, .1);
}
.ec-pain-grid--numbered-interactive .ec-pain-grid__item.is-active .ec-pain-grid__number,
.ec-pain-grid--numbered-interactive .ec-pain-grid__item.is-active .ec-pain-grid__title,
.ec-pain-grid--numbered-interactive .ec-pain-grid__item.is-active .ec-pain-grid__description { color: #fff; }
.ec-pain-grid--numbered-interactive .ec-pain-grid__item.is-active .ec-pain-grid__title::after { display: none; }

@media (prefers-reduced-motion: reduce) {
    .ec-pain-grid--numbered-interactive .ec-pain-grid__item { transition: none; }
}

.ec-pain-grid--benefits { height: 536px; padding: 128px 0 0; background: #f7fafe; }
.ec-pain-grid--benefits .ec-pain-grid__list { margin-top: 48px; }
.ec-pain-grid--benefits .ec-pain-grid__item { height: 130px; padding: 28px 40px; }
.ec-pain-grid--benefits .ec-pain-grid__icon { width: 36px; height: 36px; }
.ec-pain-grid--benefits .ec-pain-grid__icon-image { width: 36px; max-width: 36px; height: 36px; max-height: 36px; }
.ec-pain-grid--benefits .ec-pain-grid__title { font-size: 22px; line-height: 30px; }
.ec-pain-grid--benefits .ec-pain-grid__description { margin-top: 6px; font-size: 14px; line-height: 22px; }

.ec-media-list--waybill .ec-media-feature__inner { padding: 85px 0; }
.ec-media-list--waybill .ec-media-feature__content { justify-content: flex-start; padding-top: 0; }
.ec-media-list--waybill .ec-media-feature__title { font-size: 40px; line-height: 48px; }
.ec-media-list--waybill .ec-media-feature__description { margin-top: 24px; font-size: 18px; line-height: 26px; }
.ec-media-list--waybill .ec-media-feature__list { gap: 16px; margin-top: 16px; }
.ec-media-list--waybill .ec-media-feature__list-item { color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-media-list--waybill .ec-media-feature__button { margin-top: 24px; }

.ec-dual-role-showcase { height: 1246px; background: #fff; }
.ec-dual-role-showcase__inner { width: 1184px; margin: 0 auto; padding-top: 72px; }
.ec-dual-role-showcase__heading { color: #272b34; font-size: 40px; font-weight: 500; line-height: 48px; text-align: center; }
.ec-dual-role-showcase__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; margin-top: 48px; }
.ec-dual-role-showcase__card { height: 168px; padding: 40px; border: 1px solid #edf0f5; border-radius: 24px; background: #fff; box-shadow: 0 12px 12px rgba(26, 118, 255, .08); }
.ec-dual-role-showcase__card[data-ec-dual-role-card] { cursor: pointer; transition: border-color .3s ease, box-shadow .3s ease; }
.ec-dual-role-showcase__card[data-ec-dual-role-card].is-active { border-color: #6ba8ff; box-shadow: 0 12px 16px rgba(26, 118, 255, .14); }
.ec-dual-role-showcase__card[data-ec-dual-role-card]:focus-visible { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 3px; }
.ec-dual-role-showcase__card-head { display: flex; align-items: center; justify-content: space-between; }
.ec-dual-role-showcase__card-title-wrap { display: flex; align-items: center; gap: 16px; }
.ec-dual-role-showcase__card-icon { position: relative; width: 36px; height: 36px; flex: 0 0 36px; overflow: hidden; }
.ec-dual-role-showcase__card-icon-image { display: block; width: 36px; height: 36px; object-fit: contain; }
.ec-dual-role-showcase__card-icon:empty { border-radius: 10px; background: #1a76ff; }
.ec-dual-role-showcase__card-icon:empty::before { position: absolute; inset: 9px 8px; border: 2px solid #fff; border-radius: 3px; content: ""; }
.ec-dual-role-showcase__card-icon--green:empty { border-radius: 50% 50% 50% 8px; background: #08ae67; transform: rotate(-45deg); }
.ec-dual-role-showcase__card-icon--green:empty::before { inset: 10px; border-radius: 50%; transform: rotate(45deg); }
.ec-dual-role-showcase__card-title { color: #272b34; font-size: 24px; font-weight: 700; line-height: 32px; }
.ec-dual-role-showcase__role { color: #7e8288; font-size: 18px; line-height: 26px; }
.ec-dual-role-showcase__description { margin: 16px 0 0; color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-dual-role-showcase__visual { position: relative; display: flex; width: 1184px; min-height: 660px; align-items: center; justify-content: center; margin-top: 48px; border-radius: 32px; overflow: hidden; }
.ec-dual-role-showcase__track { display: flex; width: 100%; height: 100%; transition: transform .5s ease; }
.ec-dual-role-showcase__slide { flex: 0 0 100%; width: 100%; height: 100%; }
.ec-dual-role-showcase__image { display: block; width: 100%; height: 100%; border-radius: 32px; object-fit: cover; }
.ec-dual-role-showcase__slide .ec-dual-role-showcase__image { border-radius: 0; }
.ec-dual-role-showcase__pager { display: flex; height: 8px; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.ec-dual-role-showcase__pager span,
.ec-dual-role-showcase__pager i { display: block; width: 40px; height: 8px; border-radius: 8px; background: #1a76ff; }
.ec-dual-role-showcase__pager i { background: #dce8ff; }
.ec-dual-role-showcase__dot { width: 40px; height: 8px; padding: 0; border: 0; border-radius: 8px; background: #dce8ff; cursor: pointer; transition: background .3s ease; }
.ec-dual-role-showcase__dot.is-active { background: #1a76ff; }
@media (prefers-reduced-motion: reduce) {
    .ec-dual-role-showcase__track { transition: none; }
    .ec-dual-role-showcase__dot { transition: none; }
    .ec-dual-role-showcase__card[data-ec-dual-role-card] { transition: none; }
}
.ec-dual-role-showcase__tags { display: flex; gap: 16px; margin-top: 40px; }
.ec-dual-role-showcase__tags li { padding: 4px 16px; border: 1px solid #6ba8ff; border-radius: 26px; color: #1a76ff; background: #f0f7ff; font-size: 18px; line-height: 26px; }

.ec-logo-grid--channel-wall { height: 601px; padding: 72px 0 0; overflow: hidden; background: #f7fafe; }
.ec-logo-grid--channel-wall .ec-logo-grid__inner { width: 100%; }
.ec-logo-grid__heading { color: #272b34; font-size: 40px; font-weight: 500; line-height: 48px; text-align: center; }
.ec-logo-grid--channel-wall .ec-logo-grid__list { grid-template-columns: repeat(10, 200px); gap: 24px; width: 2216px; margin-top: 72px; transform: translateX(45px); }
.ec-logo-grid__marquee { margin-top: 72px; }
.ec-logo-grid--channel-wall .ec-logo-grid__marquee { margin-top: 67px; }
.ec-logo-grid--channel-wall .ec-logo-marquee:not(.ec-logo-marquee--card-artwork) .ec-logo-marquee__card { border-color: #edf0f5; box-shadow: 0 4px 8px rgba(82, 125, 181, .1); }
.ec-logo-grid--channel-wall .ec-logo-grid__image { max-width: 170px; max-height: 72px; }

/* EC-TruckOrder product component variants -------------------------------- */
.ec-hero-split--truck-order { background: #e8f2ff; }
.ec-hero-split--truck-order .ec-hero-split__button { height: 68px; padding: 0 52px; border-width: 2px; border-radius: 999px; font-size: 20px; font-weight: 700; }
.ec-hero-split--truck-order .ec-hero-split__button--secondary { background: transparent; }

.ec-pain-grid--truck-order { height: 424px; padding: 72px 0; background: #fff; }
.ec-pain-grid--truck-order .ec-pain-grid__list { gap: 36px; margin-top: 48px; }
.ec-pain-grid--truck-order .ec-pain-grid__item { height: 184px; align-items: flex-start; gap: 16px; padding: 40px; border-color: #edf0f5; border-radius: 24px; box-shadow: 0 12px 24px rgba(45, 111, 198, .08); }
.ec-pain-grid--truck-order .ec-pain-grid__icon { width: 36px; height: 36px; }
.ec-pain-grid--truck-order .ec-pain-grid__icon-image { width: 36px; max-width: 36px; height: 36px; max-height: 36px; }
.ec-pain-grid--truck-order .ec-pain-grid__title { font-size: 24px; line-height: 36px; }
.ec-pain-grid--truck-order .ec-pain-grid__description { margin-top: 12px; color: #8a9099; font-size: 18px; line-height: 28px; }

.ec-media-list--truck-order .ec-media-feature__inner { gap: 32px; padding: 68px 0; }
.ec-media-list--truck-order .ec-media-feature__visual { width: 574px; height: 430px; flex-basis: 574px; align-items: center; }
.ec-media-list--truck-order .ec-media-feature__title { font-size: 36px; font-weight: 500; line-height: 48px; }
.ec-media-list--truck-order .ec-media-feature__description { margin-top: 24px; color: #1b1c1f; font-size: 18px; line-height: 28px; }
.ec-media-list--truck-order .ec-media-feature__list { gap: 16px; margin-top: 16px; }
.ec-media-list--truck-order .ec-media-feature__list-item { color: #8a9099; font-size: 18px; line-height: 28px; }
.ec-media-list--truck-order .ec-media-feature__button { min-width: 188px; height: 68px; margin-top: 32px; padding: 0 52px; border-radius: 999px; font-size: 20px; font-weight: 700; }

.ec-visual-showcase { width: 100%; height: 900px; padding-top: 72px; background: #fff; }
.ec-visual-showcase__inner { width: 1184px; margin: 0 auto; }
.ec-visual-showcase__heading { color: #1b1c1f; font-size: 40px; font-weight: 500; line-height: 56px; text-align: center; }
.ec-visual-showcase__visual { display: flex; width: 1184px; height: 660px; align-items: center; justify-content: center; margin-top: 32px; overflow: hidden; border-radius: 32px; }
.ec-visual-showcase__image { display: block; width: 100%; height: 100%; object-fit: contain; }
.ec-visual-showcase__placeholder { color: #000; font-size: 48px; font-weight: 500; line-height: 64px; }

.ec-logo-grid--featured-3 { position: relative; height: 400px; padding: 48px 0 64px; overflow: hidden; background: #f7fafe; }
.ec-logo-grid--featured-3 .ec-logo-grid__backgrounds { position: absolute; z-index: 0; inset: 0; display: flex; justify-content: space-between; pointer-events: none; }
.ec-logo-grid--featured-3 .ec-logo-grid__background { width: 33.333%; height: 100%; object-fit: cover; opacity: .8; }
.ec-logo-grid--featured-3 .ec-logo-grid__inner { position: relative; z-index: 1; }
.ec-logo-grid--featured-3 .ec-logo-grid__list { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.ec-logo-grid--featured-3 .ec-logo-grid__item { width: 100%; height: 160px; padding: 24px; border: 0; border-radius: 16px; box-shadow: none; }
.ec-logo-grid--featured-3 .ec-logo-grid__image { width: 100%; height: 112px; max-width: none; max-height: none; object-fit: contain; }
.ec-logo-grid--featured-3 .ec-logo-grid__text { height: 112px; color: #272b34; background: #d9d9d9; font-size: 16px; font-weight: 400; line-height: 24px; }

.ec-action-banner__eyebrow { color: #1b1c1f; font-size: 36px; font-weight: 700; line-height: 48px; }
.ec-action-banner__title-line { display: block; }
.ec-action-banner__button-icon { display: block; width: 24px; height: 24px; margin-left: 8px; }
.ec-action-banner--truck-order { height: 356px; background: #f7fafe; }
.ec-action-banner--truck-order .ec-action-banner__inner { height: 520px; flex-direction: column; justify-content: flex-start; padding-top: 62px; text-align: center; }
.ec-action-banner--truck-order .ec-action-banner__title { font-size: 48px; font-weight: 700; line-height: 56px; }
.ec-action-banner--truck-order .ec-action-banner__description { margin-top: 16px; color: #8a9099; font-size: 24px; line-height: 32px; }
.ec-action-banner--truck-order .ec-action-banner__actions { gap: 32px; margin-top: 40px; }
.ec-action-banner--truck-order .ec-action-banner__button { height: 68px; padding: 0 52px; border-width: 2px; border-radius: 999px; font-size: 20px; font-weight: 700; }
.ec-action-banner--truck-order.ec-action-banner--content-buttons .ec-action-banner__button { min-width: 0; padding-right: 52px; padding-left: 52px; }

/* /EC-TruckOrder product component variants ------------------------------- */

/* /EC-Waybill product component variants --------------------------------- */

/* EC-SmartHardware product component variants ---------------------------- */
.ec-hero-split--hardware { background: #f7fafe; }
.ec-hero-split--hardware .ec-hero-split__inner { align-items: flex-start; justify-content: flex-start; gap: 81px; }
.ec-hero-split--hardware .ec-hero-split__content { max-width: none; flex: 0 0 568px; padding-top: 101px; }
.ec-hero-split--hardware .ec-hero-split__visual { width: 664px; height: 500px; flex: 0 0 664px; margin: 50px -129px 0 0; }
.ec-hero-split--hardware .ec-hero-split__image { width: 664px; height: 500px; object-fit: contain; }

/* EC-ProductCardGrid ------------------------------------------------------ */
.ec-product-card-grid { width: 100%; height: 475px; padding: 72px 0; background: #fff; }
.ec-product-card-grid__inner { width: min(1184px, calc(100% - 48px)); margin: 0 auto; }
.ec-product-card-grid__heading { color: #16171a; font-size: 40px; font-weight: 500; line-height: 48px; text-align: center; }
.ec-product-card-grid__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.ec-product-card-grid__item { display: flex; height: 235px; flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px; border-radius: 24px; background: #fff; box-shadow: inset 0 0 0 1px #f0f2f5, 0 12px 12px rgba(26, 118, 255, .08); }
.ec-product-card-grid__icon { display: block; width: 36px; height: 36px; flex: 0 0 36px; }
.ec-product-card-grid__title-row { display: flex; width: 100%; min-height: 35px; align-items: center; justify-content: space-between; }
.ec-product-card-grid__title { color: #000; font-size: 24px; font-weight: 700; line-height: 35px; white-space: nowrap; }
.ec-product-card-grid__tag { display: inline-flex; min-height: 28px; flex-shrink: 0; align-items: center; justify-content: center; padding: 1px 8px; border: 1px solid #a5bdfd; border-radius: 6px; color: #0066ff; background: #f6f9ff; font-size: 16px; line-height: 24px; white-space: nowrap; }
.ec-product-card-grid__description { color: #7e8288; font-size: 18px; line-height: 26px; }
/* /EC-ProductCardGrid ----------------------------------------------------- */

.ec-pain-grid--product-picker { height: 424px; padding: 72px 0; background: #fff; }
.ec-pain-grid--product-picker .ec-pain-grid__heading { color: #272b34; font-size: 40px; font-weight: 500; line-height: 48px; text-align: center; }
.ec-pain-grid--product-picker .ec-pain-grid__list { gap: 36px; margin-top: 48px; }
.ec-pain-grid--product-picker .ec-pain-grid__item { position: relative; height: 184px; align-items: flex-start; gap: 16px; padding: 40px; cursor: pointer; }
.ec-pain-grid--product-picker .ec-pain-grid__icon { width: 36px; height: 36px; }
.ec-pain-grid--product-picker .ec-pain-grid__icon-image { width: 36px; max-width: 36px; height: 36px; max-height: 36px; }
.ec-pain-grid--product-picker .ec-pain-grid__title { color: #000; font-size: 24px; line-height: 36px; }
.ec-pain-grid--product-picker .ec-pain-grid__description { position: absolute; top: 92px; left: 40px; width: 502px; color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-pain-grid--product-picker .ec-pain-grid__tag { position: absolute; top: 44px; right: 40px; padding: 1px 8px; border: 1px solid #6ba8ff; border-radius: 6px; color: #1a76ff; background: #f0f7ff; font-size: 16px; line-height: 24px; }
.ec-pain-grid--product-picker .ec-pain-grid__item:focus-visible { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 4px; }

.ec-product-showcase { position: relative; width: 100%; height: 880px; overflow: hidden; background: #fff; transition: height .2s ease; }
.ec-product-showcase--tall { height: 944px; }
.ec-product-showcase--compact { height: 846px; }
.ec-product-showcase__panel { height: 880px; }
.ec-product-showcase__panel--tall { height: 944px; }
.ec-product-showcase__panel--compact { height: 846px; }
.ec-product-showcase__panel[hidden],
.ec-product-showcase__image-slide[hidden] { display: none; }
.ec-product-showcase__inner { display: flex; width: 1184px; height: 544px; align-items: flex-start; gap: 72px; margin: 0 auto; padding-top: 128px; }
.ec-product-showcase__panel--tall .ec-product-showcase__inner { height: 608px; }
.ec-product-showcase__panel--compact .ec-product-showcase__inner { height: 510px; }
.ec-product-showcase__gallery { width: 400px; flex: 0 0 400px; }
.ec-product-showcase__main-visual { position: relative; width: 400px; height: 400px; overflow: hidden; border-radius: 32px; background: #fff; }
.ec-product-showcase__image-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #e4e5e8; }
.ec-product-showcase__main-image { display: block; width: 100%; height: 100%; object-fit: contain; }
.ec-product-showcase__main-image--transparent-large { position: absolute; top: 22px; left: -2px; width: 404px; max-width: none; height: 323px; object-fit: fill; }
.ec-product-showcase__main-image--transparent-small { position: absolute; top: 71px; left: 2px; width: 398px; max-width: none; height: 202px; object-fit: fill; }
.ec-product-showcase__gallery-controls { display: flex; width: 400px; height: 77.333px; align-items: center; gap: 24px; margin-top: 24px; }
.ec-product-showcase__gallery-arrow { display: inline-flex; width: 36px; height: 36px; flex: 0 0 36px; align-items: center; justify-content: center; margin: 0; padding: 8px; border: 0; border-radius: 999px; background: #edf0f5; cursor: pointer; }
.ec-product-showcase__gallery-arrow img { display: block; width: 20px; height: 20px; }
.ec-product-showcase__thumbnails { display: flex; align-items: center; gap: 24px; }
.ec-product-showcase__thumbnail { position: relative; width: 77.333px; height: 77.333px; flex: 0 0 77.333px; overflow: hidden; margin: 0; padding: 0; border: 1px solid rgba(0, 0, 0, .1); border-radius: 16px; background: #e4e4e7; cursor: pointer; }
.ec-product-showcase__thumbnail.is-active { border-color: #1a76ff; }
.ec-product-showcase__thumbnail-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; }
.ec-product-showcase__gallery-status { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.ec-product-showcase__content { width: 712px; flex: 0 0 712px; }
.ec-product-showcase__heading-row { display: flex; min-height: 58px; align-items: flex-start; }
.ec-product-showcase__panel--tall .ec-product-showcase__heading-row { min-height: 60px; }
.ec-product-showcase__title { color: #000; font-size: 40px; font-weight: 700; line-height: 58px; }
.ec-product-showcase__panel--tall .ec-product-showcase__title { line-height: 60px; }
.ec-product-showcase__price { margin: 16px 0 0; color: #fa4646; font-family: "HarmonyOS Sans", "Source Han Sans CN", sans-serif; font-size: 32px; font-weight: 500; line-height: 40px; }
.ec-product-showcase__description { min-height: 78px; margin: 16px 0 0; color: #535d6d; font-size: 18px; line-height: 26px; }
.ec-product-showcase__slot { margin-top: 36px; }
.ec-product-showcase__slot + .ec-product-showcase__slot { margin-top: 36px; }
.ec-product-showcase__slot-title { color: #000; font-size: 18px; font-weight: 500; line-height: 26px; }
.ec-product-showcase__model { margin: 8px 0 0; color: #272b34; font-size: 18px; line-height: 26px; }
.ec-product-showcase__advantages { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.ec-product-showcase__advantages li { position: relative; min-height: 26px; padding-left: 16px; color: #272b34; font-size: 18px; line-height: 26px; }
.ec-product-showcase__advantages li::before { position: absolute; top: 0; left: 0; content: "•"; }
.ec-product-showcase__button { display: inline-flex; width: 188px; height: 68px; align-items: center; justify-content: center; margin-top: 36px; border: 2px solid transparent; border-radius: 999px; color: #fff; background: linear-gradient(110deg, #4086ff 0%, #1a76ff 100%); box-shadow: 0 8px 16px rgba(0, 69, 173, .12); font-size: 20px; font-weight: 700; line-height: 28px; text-decoration: none; }
.ec-product-showcase__button:hover,
.ec-product-showcase__button:focus { color: #fff; text-decoration: none; transform: translateY(-1px); }
.ec-product-showcase__pager { position: absolute; top: 744px; left: 50%; display: flex; height: 8px; gap: 16px; transform: translateX(-50%); }
.ec-product-showcase--tall .ec-product-showcase__pager { top: 808px; }
.ec-product-showcase--compact .ec-product-showcase__pager { top: 710px; }
.ec-product-showcase__pager-button { width: 54px; height: 8px; margin: 0; padding: 0; border: 0; border-radius: 8px; background: #dce8ff; cursor: pointer; }
.ec-product-showcase--pager-compact .ec-product-showcase__pager-button { width: 44px; }
.ec-product-showcase__pager-button.is-active { background: #1a76ff; }
.ec-product-showcase__main-visual:focus-visible,
.ec-product-showcase__gallery-arrow:focus-visible,
.ec-product-showcase__thumbnail:focus-visible,
.ec-product-showcase__pager-button:focus-visible,
.ec-product-showcase__button:focus-visible { outline: 3px solid rgba(26, 118, 255, .35); outline-offset: 3px; }

.ec-pain-grid--scenarios .ec-pain-grid__icon-image {
    width: 36px;
    max-width: 36px;
    height: 36px;
    max-height: 36px;
}

.ec-pain-grid--scenarios .ec-pain-grid__icon-image,
.ec-pain-grid--scene-cards .ec-pain-grid__icon-image {
    transition: filter .2s ease;
}

.ec-pain-grid--scenarios .ec-pain-grid__item.is-active .ec-pain-grid__icon-image,
.ec-pain-grid--scene-cards .ec-pain-grid__item:hover .ec-pain-grid__icon-image {
    filter: brightness(0) invert(1);
}

@media (prefers-reduced-motion: reduce) {
    .ec-pain-grid--stacked .ec-pain-grid__item,
    .ec-pain-grid--stacked .ec-pain-grid__title,
    .ec-pain-grid--stacked .ec-pain-grid__description,
    .ec-pain-grid--stacked .ec-pain-grid__icon-image,
    .ec-pain-grid--scenarios .ec-pain-grid__item,
    .ec-pain-grid--numbered .ec-pain-grid__item,
    .ec-pain-grid--scenarios .ec-pain-grid__icon-image,
    .ec-pain-grid--scene-cards .ec-pain-grid__icon-image,
    .ec-product-showcase,
    .ec-product-showcase__button { transition: none; }
    .ec-pain-grid--scenarios .ec-pain-grid__item.is-active,
    .ec-pain-grid--numbered .ec-pain-grid__item.is-active,
    .ec-product-showcase__button:hover,
    .ec-product-showcase__button:focus { transform: none; }
}
/* /EC-SmartHardware product component variants --------------------------- */

/* EC-CaseShowcase: 首页客户案例（产品板块 -> 客户案例） ------------------- */
.ec-case-showcase {
    width: 100%;
    padding: 72px 0;
    overflow: hidden;
    color: #191c27;
    background: #fff;
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.ec-case-showcase__heading {
    height: 48px;
    color: #191c27;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
}

.ec-case-showcase__heading-highlight {
    color: #2468f2;
}

.ec-case-showcase > .ec-view-tabs {
    margin-top: 48px;
}

.ec-case-showcase__content {
    margin-top: 48px;
}

.ec-case-showcase__panel[hidden],
.ec-case-showcase__card[hidden] {
    display: none !important;
}

.ec-case-showcase__case-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 924px;
    height: 44px;
    gap: 12px;
    margin: 0 auto 48px;
    border-bottom: 1px solid #e5e7eb;
}

.ec-case-showcase__case-tab {
    position: relative;
    display: flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 0;
    color: #505668;
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    transition: color .3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.ec-case-showcase__case-tab.is-active {
    color: #191c27;
    font-weight: 600;
}

.ec-case-showcase__case-tab.is-active::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 2px;
    border-radius: 2px;
    background: #2468f2;
    content: '';
    transform: translateX(-50%);
}

.ec-case-showcase__case-tab:focus-visible {
    outline: 2px solid #2468f2;
    outline-offset: 2px;
}

.ec-case-showcase__card {
    width: 1184px;
    max-width: 1184px;
    margin: 0 auto;
}

.ec-case-showcase__card-frame {
    position: relative;
    height: 360px;
    min-height: 0;
    overflow: hidden;
    border-radius: 36px;
    background: #3988f7;
}

.ec-case-showcase__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ec-case-showcase__ellipse {
    position: absolute;
    z-index: 2;
    top: 149px;
    left: 804px;
    width: 422px;
    height: 422px;
}

.ec-case-showcase__card-title {
    position: absolute;
    z-index: 3;
    top: 48px;
    left: 48px;
    width: 700px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.ec-case-showcase__stats {
    position: absolute;
    z-index: 3;
    top: 224px;
    left: 48px;
    display: grid;
    grid-template-columns: 96px 107px 160px;
    column-gap: 64px;
    color: #fff;
}

.ec-case-showcase__stats--wide {
    grid-template-columns: 96px 107px 220px;
}

.ec-case-showcase__stats--text-wide {
    grid-template-columns: 128px 160px 160px;
}

.ec-case-showcase__stats--leading-wide {
    grid-template-columns: 148px 162px 160px;
}

.ec-case-showcase__metric {
    min-width: 0;
}

.ec-case-showcase__metric-value {
    display: flex;
    height: 58px;
    align-items: flex-end;
    white-space: nowrap;
}

.ec-case-showcase__metric-value strong {
    font-family: "HarmonyOS Sans", "Source Han Sans CN", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.ec-case-showcase__metric-value span {
    margin: 0 0 0 4px;
    font-size: 14px;
    line-height: 22px;
}

.ec-case-showcase__metric-value--text strong {
    font-size: 40px;
}

.ec-case-showcase__metric-value--range {
    gap: 4px;
}

.ec-case-showcase__metric-value--range img {
    width: 32px;
    height: 32px;
    margin: 0 2px 9px;
}

.ec-case-showcase__metric-label {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.ec-case-showcase__bubble {
    position: absolute;
    z-index: 4;
    top: var(--ec-case-bubble-top);
    left: var(--ec-case-bubble-left);
    width: 284px;
    height: var(--ec-case-bubble-height);
}

.ec-case-showcase__quote {
    position: absolute;
    z-index: 5;
    top: var(--ec-case-quote-top);
    left: var(--ec-case-quote-left);
    width: 236px;
    transform: translateY(-50%);
    color: #2d6eff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.ec-case-showcase__person-stage {
    position: absolute;
    z-index: 6;
    top: 0;
    left: 784px;
    width: 400px;
    height: 360px;
}

.ec-case-showcase__person {
    position: absolute;
    top: var(--ec-case-person-y);
    left: var(--ec-case-person-x);
    width: var(--ec-case-person-width);
    height: var(--ec-case-person-height);
    -webkit-mask-image: var(--ec-case-person-mask);
    mask-image: var(--ec-case-person-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: var(--ec-case-person-mask-position);
    mask-position: var(--ec-case-person-mask-position);
    -webkit-mask-size: 400px 360px;
    mask-size: 400px 360px;
}

.ec-case-showcase__person--flip-x {
    transform: scaleX(-1);
}

.ec-case-showcase__person img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-case-showcase__person--fill img {
    object-fit: fill;
    object-position: bottom;
}

.ec-case-showcase__brands {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 96px;
    width: 100%;
    max-width: 1184px;
    min-height: 208px;
    gap: 16px;
    margin: 48px auto 0;
    overflow: hidden;
}

.ec-case-showcase__brand {
    display: flex;
    height: 96px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    background: #fff;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.ec-case-showcase__brand:hover {
    border-color: #2468f2;
    box-shadow: 0 4px 12px rgba(36, 104, 242, .08);
}

.ec-case-showcase__brand-image {
    display: block;
    width: var(--ec-case-brand-width, auto);
    height: var(--ec-case-brand-height, auto);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ec-case-showcase__brand-text {
    color: #505668;
    font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .ec-case-showcase__case-tab,
    .ec-case-showcase__brand {
        transition: none;
    }
}
/* /EC-CaseShowcase -------------------------------------------------------- */

/* EC-ViewTabs ------------------------------------------------------------- */
.ec-view-tabs {
    --ec-view-tabs-background: #f0f2f5;
    --ec-view-tabs-text: #7e8288;
    --ec-view-tabs-active: #0066ff;
    display: flex;
    width: max-content;
    height: 52px;
    align-items: center;
    gap: 4px;
    margin-right: auto;
    margin-left: auto;
    padding: 4px;
    border-radius: 999px;
    background: var(--ec-view-tabs-background);
    box-sizing: border-box;
}

.ec-view-tabs__tab {
    display: flex;
    width: 96px;
    height: 44px;
    flex: 0 0 96px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px;
    border: 0;
    border-radius: 999px;
    color: var(--ec-view-tabs-text);
    background: transparent;
    box-shadow: none;
    font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.ec-view-tabs__tab.is-active {
    color: var(--ec-view-tabs-active);
    background: #fff;
    font-weight: 600;
}

.ec-view-tabs__tab:focus-visible {
    outline: 2px solid var(--ec-view-tabs-active);
    outline-offset: 2px;
}

[data-ec-view-panel][hidden] {
    display: none !important;
}
/* /EC-ViewTabs ------------------------------------------------------------ */

/* EC-StatGrid centered icon metrics (Figma 1762:9301/15112/15590) */
.ec-stat-grid--centered-icons {
    height: 494px;
    padding: 104px 0;
    background: #f7fafe;
}

.ec-stat-grid--centered-icons .ec-stat-grid__heading {
    color: #272b34;
}

.ec-stat-grid--centered-icons .ec-stat-grid__list {
    height: 150px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 88px;
}

.ec-stat-grid--centered-icons .ec-stat-grid__item {
    height: 150px;
    min-height: 0;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 22px;
}

.ec-stat-grid--centered-icons .ec-stat-grid__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.ec-stat-grid--centered-icons .ec-stat-grid__content {
    width: auto;
    height: 94px;
    gap: 24px;
}

.ec-stat-grid--centered-icons .ec-stat-grid__metric {
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
}

.ec-stat-grid--centered-icons .ec-stat-grid__value,
.ec-stat-grid--centered-icons .ec-stat-grid__unit {
    margin: 0;
    color: #0066ff;
    font-family: "DIN Pro", "Arial Narrow", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 52px;
}

.ec-stat-grid--centered-icons .ec-stat-grid__trend {
    display: none;
}

.ec-stat-grid--centered-icons .ec-stat-grid__description {
    color: #16171a;
    font-size: 18px;
    line-height: 18px;
}

/* 右侧客服悬浮窗（.float_tool_bar / .detail-phone / .detail-weixin / .tips 等）的样式
   已统一收敛到 public/css/common.css（全站加载），此处不再重复定义。 */
