:root {
    --primary: #087dff;
    --primary-deep: #0562df;
    --accent: #16d7ff;
    --ink: #11213d;
    --ink-soft: #55657e;
    --dark: #050d1c;
    --line: #e7edf5;
    --surface: #f5f8fd;
    --white: #fff;
    --shadow: 0 22px 55px rgba(20, 53, 105, .1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.8;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 600;
}

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

.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
}

.utility-bar {
    height: 40px;
    background: #030914;
    border-bottom: 1px solid rgba(120, 159, 209, .12);
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.utility-bar .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}

.utility-bar a {
    color: rgba(255, 255, 255, .88);
}

.top-services {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: rgba(232, 242, 255, .82);
    white-space: nowrap;
}

.top-services::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(22, 215, 255, .75);
    content: "";
}

.top-contact {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 20px;
    color: rgba(255, 255, 255, .86);
    white-space: nowrap;
}

.top-contact a:hover {
    color: #35d3ff;
}

.city-entry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
    color: #fff;
    font-weight: 500;
}

.city-entry em {
    color: #35d3ff;
    font-size: 12px;
    font-style: normal;
}

.navigation-bar {
    position: relative;
    z-index: 5;
    height: 80px;
    background: #050d1c;
    border-bottom: 1px solid rgba(120, 159, 209, .14);
}

.navigation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    width: auto;
    height: auto;
    gap: 11px;
}

.navigation-bar .brand {
    justify-content: flex-start;
    width: 166px;
    height: 54px;
    gap: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 46px;
    object-fit: contain;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    max-width: 242px;
}

.brand-text strong {
    overflow: hidden;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}

.brand-text small {
    margin-top: 2px;
    color: #7186a7;
    font-size: 10px;
    letter-spacing: .08em;
    white-space: nowrap;
}

.brand-text {
    display: flex;
    flex-direction: column;
    max-width: 242px;
}

.brand-text strong {
    overflow: hidden;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}

.brand-text small {
    margin-top: 2px;
    color: #7186a7;
    font-size: 10px;
    letter-spacing: .18em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 14px;
    color: rgba(237, 244, 255, .84);
}

.main-nav > a:not(.consult-button) {
    position: relative;
    padding: 29px 0;
    white-space: nowrap;
}

.main-nav > a:not(.consult-button)::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    opacity: 0;
    transform: translateY(4px);
    transition: .25s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--primary);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    opacity: 1;
    transform: translateY(0);
}

.consult-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 500;
}

.consult-button {
    height: 42px;
    padding: 0 19px;
    background: linear-gradient(120deg, var(--primary), #11bde9);
    color: #fff;
    white-space: nowrap;
}

.consult-button:hover {
    background: linear-gradient(120deg, var(--primary-deep), #08a5d0);
    color: #fff;
}

.nav-toggle,
.nav-button {
    display: none;
}

.side-consult {
    position: fixed;
    z-index: 20;
    right: 0;
    top: 48%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 17px 10px;
    border-radius: 9px 0 0 9px;
    background: linear-gradient(180deg, #0bd0f0, #087dff);
    box-shadow: 0 12px 30px rgba(5, 75, 175, .36);
    color: #fff;
    font-size: 13px;
    writing-mode: vertical-lr;
}

.side-consult strong {
    font-weight: 400;
}

.side-consult:hover {
    color: #fff;
    transform: translateX(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #040b18;
    color: #fff;
}

.hero-slider {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #040b18;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    background: #040b18 no-repeat center center / cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease, visibility .8s ease;
}

.hero-slide:nth-child(1) {
    background-image: url("../img/website/hero-carousel-software.jpg");
}

.hero-slide:nth-child(2) {
    background-image: url("../img/website/hero-carousel-ai.jpg");
}

.hero-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 9, 21, .98) 0%, rgba(3, 9, 21, .95) 34%, rgba(3, 9, 21, .58) 60%, rgba(3, 9, 21, .24) 100%),
        radial-gradient(circle at 78% 30%, rgba(15, 176, 255, .16), transparent 36%),
        linear-gradient(0deg, rgba(3, 9, 21, .72), transparent 44%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    min-height: 590px;
}

.hero-copy {
    position: relative;
    width: min(610px, 100%);
    padding: 78px 0 92px;
}

.hero-slide.is-active .hero-copy {
    animation: heroCopyIn .72s ease both;
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #39dbff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .28em;
}

.hero-kicker::before {
    width: 32px;
    height: 1px;
    background: var(--accent);
    content: "";
}

.hero-copy h1 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(44px, 4.2vw, 58px);
    line-height: 1.16;
    letter-spacing: -.045em;
}

.hero-copy h1 span {
    color: #6ce8ff;
}

.hero-copy p {
    max-width: 570px;
    margin-bottom: 39px;
    color: rgba(218, 231, 249, .78);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    min-width: 146px;
    height: 50px;
    padding: 0 25px;
}

.button-primary {
    background: var(--primary);
    box-shadow: 0 14px 27px rgba(7, 101, 255, .23);
    color: #fff;
}

.button-primary:hover {
    background: var(--primary-deep);
    box-shadow: 0 18px 34px rgba(7, 101, 255, .3);
    color: #fff;
    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid rgba(203, 221, 245, .5);
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.button-outline:hover {
    border-color: var(--accent);
    background: rgba(13, 110, 218, .22);
    color: #fff;
}

.button-dark {
    background: #111f38;
    color: #fff;
}

.button-dark:hover {
    background: var(--primary);
    color: #fff;
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(174, 212, 255, .32);
    border-radius: 50%;
    background: rgba(4, 14, 31, .45);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.hero-arrow-prev {
    left: max(24px, calc((100% - 1200px) / 2 - 78px));
}

.hero-arrow-next {
    right: max(24px, calc((100% - 1200px) / 2 - 78px));
}

.hero-arrow span {
    display: block;
    width: 13px;
    height: 13px;
    border-top: 2px solid rgba(255, 255, 255, .86);
    border-right: 2px solid rgba(255, 255, 255, .86);
}

.hero-arrow-prev span {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.hero-arrow-next span {
    transform: rotate(45deg);
    margin-right: 5px;
}

.hero-arrow:hover {
    border-color: rgba(53, 211, 255, .82);
    background: rgba(8, 125, 255, .72);
    transform: translateY(-50%) scale(1.04);
}

.capability-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 0;
    border: 1px solid rgba(109, 149, 201, .23);
    border-bottom: 0;
    border-radius: 0;
    background: rgba(5, 18, 39, .76);
    backdrop-filter: blur(10px);
}

.capability-strip div {
    position: relative;
    padding: 26px 22px 25px;
    text-align: center;
}

.capability-strip div + div::before {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    width: 1px;
    background: rgba(130, 164, 208, .18);
    content: "";
}

.capability-strip strong {
    display: block;
    color: rgba(39, 205, 255, .85);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
}

.capability-strip span {
    display: block;
    margin-top: 8px;
    color: rgba(232, 241, 255, .78);
    font-size: 14px;
}

.section {
    padding: 82px 0;
}

.section-light {
    background: #f4f7fc;
}

.business-section {
    background:
        linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
}

.section-heading {
    margin: 0 auto 47px;
    text-align: center;
}

.section-heading h2,
.split-heading h2,
.channel-intro h2,
.scene-section h2 {
    margin-bottom: 14px;
    color: #10203c;
    font-size: 34px;
    letter-spacing: -.04em;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
}

.services-scope-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background:
        linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
    border-top: 1px solid #edf3fb;
}

.services-scope-section::before,
.services-scope-section::after,
.section-solutions::before,
.section-solutions::after,
.index-cases-section::before,
.index-cases-section::after,
.process-section::before,
.process-section::after,
.index-news-section::before,
.index-news-section::after {
    position: absolute;
    display: none;
    pointer-events: none;
    content: "";
}

.services-scope-section::before {
    left: -142px;
    top: 74px;
    width: 360px;
    height: 214px;
    border: 1px solid rgba(8, 125, 255, .08);
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(8, 125, 255, .08), rgba(22, 215, 255, .08));
    transform: rotate(-15deg);
}

.services-scope-section::after {
    right: -88px;
    bottom: 62px;
    width: 250px;
    height: 250px;
    border-radius: 44px 90px 44px 90px;
    background: linear-gradient(135deg, rgba(22, 215, 255, .12), rgba(8, 125, 255, .07));
    transform: rotate(18deg);
}

.services-scope-section > .site-container,
.section-solutions > .site-container,
.index-cases-section > .site-container,
.process-section > .site-container,
.index-news-section > .site-container {
    position: relative;
    z-index: 1;
}

.reference-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.reference-heading h2 {
    display: inline-block;
    margin: 0 0 16px;
    color: #25324a;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.04em;
}

.reference-heading h2 span {
    color: var(--primary);
}

.reference-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #667085;
    font-size: 19px;
    line-height: 1.6;
}

.service-scope-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.service-scope-card {
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 430px;
    flex-direction: column;
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-scope-card::after {
    position: absolute;
    right: -68px;
    top: -68px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 125, 255, .12), transparent 68%);
    content: "";
    opacity: 0;
    transition: opacity .3s ease;
}

.service-scope-card:hover {
    box-shadow: 0 18px 44px rgba(15, 23, 42, .1);
    transform: translateY(-6px);
}

.service-scope-card:hover::after {
    opacity: 1;
}

.card-icon-container {
    position: relative;
    z-index: 1;
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
}

.icon-bg-shape {
    position: absolute;
    inset: 8px 2px 2px 8px;
    border-radius: 22px 32px 20px 38px;
    background: linear-gradient(135deg, rgba(8, 125, 255, .16), rgba(22, 215, 255, .18));
    transform: rotate(12deg);
}

.card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0a58ca;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: inset 0 0 0 1px rgba(8, 125, 255, .08);
}

.service-scope-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 15px;
    color: #25324a;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.service-scope-card h3 a:hover {
    color: var(--primary);
}

.service-scope-card > p {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    color: #344054;
    font-size: 15px;
}

.feature-list li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--primary);
    content: "✓";
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.service-more-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}

.service-more-link:hover {
    color: var(--primary-deep);
    transform: translateX(3px);
}

.service-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 286px;
    padding: 29px 27px;
    border: 1px solid #e5edf8;
    border-radius: 9px;
    background: #fff;
}

.service-card:hover {
    border-color: rgba(8, 125, 255, .28);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-number {
    display: block;
    margin-bottom: 42px;
    color: #c2d5f0;
    font-size: 29px;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.service-card p {
    min-height: 82px;
    font-size: 14px;
}

.business-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.business-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 34px;
    border: 1px solid #e1ebf7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(18, 52, 98, .06);
}

.business-card::after {
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 125, 255, .13), transparent 68%);
    content: "";
}

.business-card:hover {
    border-color: rgba(8, 125, 255, .32);
    box-shadow: 0 22px 60px rgba(18, 52, 98, .11);
    transform: translateY(-4px);
}

.business-card-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 20px;
    grid-template-columns: 56px 1fr;
    margin-bottom: 28px;
}

.business-card-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.business-card h3 {
    margin-bottom: 9px;
    color: #10203c;
    font-size: 25px;
}

.business-card-head p,
.business-list p {
    font-size: 14px;
}

.business-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.business-list div {
    padding-left: 18px;
    border-left: 3px solid #dbe8f8;
}

.business-list h4 {
    margin: 0 0 6px;
    color: #1a2f4b;
    font-size: 16px;
}

.business-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 27px;
    padding: 11px 19px;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
}

.business-action:hover {
    background: var(--primary-deep);
    color: #fff;
}

.more-link {
    color: var(--primary);
    font-size: 14px;
}

.more-link b {
    margin-left: 7px;
    font-size: 17px;
}

.section-solutions {
    position: relative;
    overflow: hidden;
    padding: 104px 0 108px;
    background:
        linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    border-top: 1px solid #edf3fb;
    border-bottom: 1px solid #edf3fb;
}

.section-solutions::before {
    right: -110px;
    top: -82px;
    width: 420px;
    height: 220px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8, 125, 255, .1), rgba(22, 215, 255, .06));
    transform: rotate(-10deg);
}

.section-solutions::after {
    left: 6%;
    bottom: 54px;
    width: 148px;
    height: 148px;
    border-radius: 30px;
    background:
        linear-gradient(90deg, rgba(8, 125, 255, .12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 125, 255, .12) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .45;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 45px;
}

.split-heading p {
    flex: 0 1 460px;
}

.solution-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.solution-card {
    position: relative;
    min-height: 192px;
    padding: 28px 25px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #f5f8fd;
}

.solution-card:hover {
    border-color: #dce8f8;
    background: #fff;
    box-shadow: 0 13px 35px rgba(16, 51, 102, .08);
}

.solution-dot {
    display: block;
    width: 30px;
    height: 4px;
    margin-bottom: 30px;
    border-radius: 4px;
    background: var(--primary);
}

.solution-card h3 {
    margin-bottom: 13px;
    font-size: 20px;
}

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

.industry-panel {
    display: grid;
    gap: 34px;
    grid-template-columns: 340px 1fr;
    align-items: start;
}

.industry-copy {
    position: sticky;
    top: 20px;
    padding: 34px;
    border: 1px solid rgba(119, 183, 255, .16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(22, 215, 255, .18), transparent 34%),
        linear-gradient(145deg, #071426 0%, #0b2650 100%);
    box-shadow: 0 26px 58px rgba(10, 40, 86, .18);
}

.industry-copy h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 25px;
    line-height: 1.4;
}

.industry-copy p {
    margin-bottom: 24px;
    color: rgba(224, 236, 250, .72);
    font-size: 14px;
}

.industry-copy .text-link {
    color: #35d3ff;
}

.industry-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.industry-card {
    min-height: 190px;
    padding: 25px 23px;
    border: 1px solid #e5edf8;
    border-radius: 18px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 34px rgba(23, 57, 105, .05);
    backdrop-filter: blur(8px);
}

.industry-card:hover {
    border-color: rgba(8, 125, 255, .28);
    background: #fff;
    box-shadow: 0 14px 38px rgba(23, 57, 105, .08);
    transform: translateY(-3px);
}

.industry-card span {
    display: inline-block;
    margin-bottom: 27px;
    padding: 5px 11px;
    border-radius: 18px;
    background: #e9f4ff;
    color: var(--primary);
    font-size: 12px;
}

.industry-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

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

.section-link-row {
    margin-top: 38px;
    text-align: right;
}

.text-link {
    color: var(--primary);
    font-weight: 500;
}

.text-link span {
    margin-left: 9px;
}

.index-cases-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background:
        linear-gradient(180deg, #071426 0%, #061021 100%);
}

.index-cases-section::before {
    left: -130px;
    top: 104px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(116, 198, 255, .1);
    border-radius: 50%;
    background: rgba(8, 125, 255, .06);
}

.index-cases-section::after {
    right: 7%;
    bottom: 62px;
    width: 180px;
    height: 180px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(22, 215, 255, .12), rgba(8, 125, 255, .05));
    transform: rotate(22deg);
}

.index-cases-section .reference-heading h2 {
    color: #fff;
}

.index-cases-section .reference-heading h2 span {
    color: #5be7ff;
}

.index-cases-section .reference-heading p {
    color: rgba(219, 232, 249, .72);
}

.customer-case-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.customer-case-card {
    overflow: hidden;
    border: 1px solid rgba(169, 213, 255, .14);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.customer-case-card:hover {
    border-color: rgba(8, 125, 255, .18);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .12);
    transform: translateY(-7px);
}

.customer-case-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 240px;
}

.customer-case-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    background:
        radial-gradient(circle at 72% 20%, rgba(22, 215, 255, .35), transparent 34%),
        linear-gradient(135deg, #0b2242 0%, #087dff 100%);
    color: #fff;
    transition: transform .45s ease;
}

.customer-case-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.customer-case-card:nth-child(2n) .customer-case-visual {
    background:
        radial-gradient(circle at 22% 18%, rgba(22, 215, 255, .34), transparent 33%),
        linear-gradient(135deg, #112a52 0%, #15a9e8 100%);
}

.customer-case-card:nth-child(3n) .customer-case-visual {
    background:
        radial-gradient(circle at 78% 74%, rgba(114, 238, 255, .3), transparent 34%),
        linear-gradient(135deg, #071426 0%, #2355d9 100%);
}

.customer-case-visual span {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .32em;
    opacity: .75;
}

.customer-case-visual strong {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: .04em;
}

.customer-case-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 9, 21, .58);
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease;
}

.customer-case-overlay span {
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: 14px;
}

.customer-case-card:hover .customer-case-visual,
.customer-case-card:hover .customer-case-image img {
    transform: scale(1.06);
}

.customer-case-card:hover .customer-case-overlay {
    opacity: 1;
}

.customer-case-content {
    padding: 30px;
}

.case-category-index {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(8, 125, 255, .08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.customer-case-title {
    margin: 0 0 13px;
    color: #25324a;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
}

.customer-case-title a:hover {
    color: var(--primary);
}

.customer-case-description {
    margin-bottom: 18px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.customer-case-features {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.customer-case-features li {
    display: flex;
    align-items: flex-start;
    color: #344054;
    font-size: 14px;
    line-height: 1.6;
}

.customer-case-features li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 2px 10px 0 0;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--primary);
    content: "✓";
    font-size: 12px;
    font-weight: 700;
}

.customer-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
}

.customer-case-tags span {
    padding: 6px 12px;
    border-radius: 16px;
    background: rgba(8, 125, 255, .08);
    color: var(--primary);
    font-size: 13px;
}

.section-cases {
    background:
        radial-gradient(circle at 87% 16%, rgba(8, 125, 255, .2), transparent 26%),
        #071426;
}

.section-cases .eyebrow {
    color: #44cffc;
}

.section-cases .section-heading h2 {
    color: #fff;
}

.section-cases .section-heading p {
    color: rgba(223, 232, 247, .68);
}

.case-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.case-card {
    min-height: 240px;
    padding: 32px;
    border: 1px solid rgba(206, 223, 249, .13);
    border-radius: 8px;
    background:
        linear-gradient(130deg, rgba(13, 33, 61, .85), rgba(7, 20, 38, .88)),
        rgba(255, 255, 255, .04);
}

.case-card:hover {
    border-color: rgba(30, 184, 255, .28);
    background: linear-gradient(130deg, rgba(10, 57, 114, .58), rgba(7, 20, 38, .88));
    transform: translateY(-3px);
}

.case-card span {
    display: inline-block;
    margin-bottom: 31px;
    padding: 6px 13px;
    border: 1px solid rgba(30, 184, 255, .4);
    border-radius: 20px;
    color: #35cbff;
    font-size: 13px;
}

.case-card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 21px;
}

.case-card p {
    color: rgba(220, 231, 247, .7);
    font-size: 14px;
}

.center-action {
    margin-top: 44px;
    text-align: center;
}

.index-cases-section .button-dark {
    border: 1px solid rgba(91, 231, 255, .26);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.index-cases-section .button-dark:hover {
    background: var(--primary);
    color: #fff;
}

.process-section {
    position: relative;
    overflow: hidden;
    padding: 104px 0 108px;
    background:
        linear-gradient(180deg, #f7faff 0%, #fff 100%);
    border-bottom: 1px solid #edf3fb;
}

.process-section::before {
    right: -160px;
    top: 66px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 125, 255, .13), transparent 66%);
}

.process-section::after {
    left: -58px;
    bottom: 70px;
    width: 230px;
    height: 118px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(22, 215, 255, .12), rgba(8, 125, 255, .05));
    transform: rotate(-12deg);
}

.process-grid {
    position: relative;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(6, 1fr);
}

.process-grid::before {
    position: absolute;
    right: 7%;
    left: 7%;
    top: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8, 125, 255, .32), transparent);
    content: "";
}

.process-grid article {
    position: relative;
    z-index: 1;
    min-height: 210px;
    padding: 25px 20px;
    border: 1px solid rgba(8, 125, 255, .11);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
    box-shadow: 0 16px 42px rgba(18, 52, 98, .08);
}

.process-grid article:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    right: -24px;
    top: 42px;
    width: 30px;
    height: 1px;
    background: var(--primary);
    content: "";
}

.process-grid strong {
    display: block;
    margin-bottom: 31px;
    color: rgba(8, 125, 255, .42);
    font-size: 34px;
}

.process-grid h3 {
    margin-bottom: 11px;
    font-size: 20px;
}

.process-grid p {
    font-size: 14px;
}

.news-section {
    background: var(--surface);
}

.index-news-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background:
        linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}

.index-news-section::before {
    right: 7%;
    top: 86px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 215, 255, .16), rgba(8, 125, 255, .08));
}

.index-news-section::after {
    left: 5%;
    bottom: 74px;
    width: 200px;
    height: 86px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 20px 50px rgba(18, 52, 98, .08);
}

.index-news-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.news-carousel {
    position: relative;
}

.news-carousel-viewport {
    overflow: hidden;
    padding: 6px 2px 14px;
}

.index-news-track {
    display: flex;
    gap: 24px;
    transition: transform .48s cubic-bezier(.22, .75, .27, 1);
    will-change: transform;
}

.index-news-card {
    display: flex;
    overflow: hidden;
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 470px;
    flex-direction: column;
    border-radius: 16px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.index-news-card:hover {
    box-shadow: 0 18px 42px rgba(15, 23, 42, .11);
    transform: translateY(-6px);
}

.index-news-image {
    display: block;
    overflow: hidden;
    height: 200px;
    background: #d9e7f8;
}

.default-news-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    background:
        radial-gradient(circle at 78% 25%, rgba(22, 215, 255, .32), transparent 32%),
        linear-gradient(135deg, #0a2a56 0%, #087dff 100%);
    color: #fff;
}

.default-news-image span {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .32em;
    opacity: .72;
}

.default-news-image strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .04em;
}

.index-news-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.news-date {
    display: flex;
    margin-bottom: 12px;
    color: #999;
    font-size: 15px;
    line-height: 1.5;
}

.index-news-title {
    margin: 0 0 10px;
    color: #25324a;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.index-news-title a:hover {
    color: var(--primary);
}

.index-news-excerpt {
    flex: 1;
    margin-bottom: 15px;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.index-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 15px;
    border-top: 1px solid #eef2f7;
    color: #999;
    font-size: 14px;
}

.index-news-category {
    flex-shrink: 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
}

.index-news-link {
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.index-news-link:hover {
    color: var(--primary-deep);
}

.news-carousel-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(8, 125, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 36px rgba(18, 52, 98, .14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.news-carousel-prev {
    left: -23px;
}

.news-carousel-next {
    right: -23px;
}

.news-carousel-arrow span {
    display: block;
    width: 11px;
    height: 11px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.news-carousel-prev span {
    margin-left: 4px;
    transform: rotate(-135deg);
}

.news-carousel-next span {
    margin-right: 4px;
    transform: rotate(45deg);
}

.news-carousel-arrow:hover {
    border-color: rgba(8, 125, 255, .42);
    background: var(--primary);
    transform: translateY(-50%) scale(1.04);
}

.news-carousel-arrow:hover span {
    border-color: #fff;
}

.news-more-row {
    margin-top: 36px;
    text-align: center;
}

.news-more-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
}

.news-more-row a:hover {
    color: var(--primary-deep);
    transform: translateX(3px);
}

.news-layout {
    display: grid;
    gap: 65px;
    grid-template-columns: 350px 1fr;
}

.compact-heading {
    margin: 0;
    text-align: left;
}

.compact-heading p {
    margin-bottom: 27px;
}

.news-list {
    background: #fff;
}

.news-item {
    display: grid;
    gap: 29px;
    grid-template-columns: 92px 1fr;
    padding: 27px 30px;
    border-bottom: 1px solid var(--line);
}

.news-item:last-child {
    border-bottom: 0;
}

.news-item > span {
    padding-top: 5px;
    color: #8090a7;
    font-size: 13px;
}

.news-item h3 {
    margin-bottom: 7px;
    font-size: 19px;
}

.news-item p {
    font-size: 14px;
}

.cta-section {
    padding: 0 0 80px;
    background: var(--surface);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 48px 60px;
    border-radius: 10px;
    background: linear-gradient(112deg, #0c213f, #102f60);
}

.conversion-card {
    align-items: stretch;
}

.conversion-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.conversion-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(225, 237, 252, .8);
    font-size: 14px;
}

.conversion-list li::before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.conversion-box {
    display: flex;
    flex: 0 0 320px;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    border: 1px solid rgba(133, 178, 235, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.conversion-box strong {
    margin-bottom: 11px;
    color: #fff;
    font-size: 22px;
}

.conversion-box span {
    margin-bottom: 24px;
    color: rgba(223, 233, 248, .72);
    font-size: 14px;
    line-height: 1.7;
}

.cta-card .eyebrow {
    color: #44cffc;
}

.cta-card h2 {
    margin-bottom: 9px;
    color: #fff;
    font-size: 30px;
}

.cta-card p {
    color: rgba(223, 233, 248, .7);
}

.website-footer {
    padding-top: 70px;
    border-top: 1px solid rgba(120, 159, 209, .14);
    background:
        radial-gradient(circle at 12% 16%, rgba(8, 125, 255, .18), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(22, 215, 255, .12), transparent 26%),
        #061021;
    color: rgba(229, 240, 255, .82);
}

.footer-main {
    display: grid;
    gap: 54px;
    grid-template-columns: 1.7fr .9fr .9fr .95fr 1.45fr;
    padding-bottom: 56px;
}

.footer-company {
    min-width: 0;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 230px;
}

.footer-logo {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-company p {
    max-width: 320px;
    margin-top: 22px;
    color: rgba(212, 223, 239, .68);
    font-size: 15px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid rgba(83, 156, 255, .22);
    background: rgba(8, 125, 255, .12);
    color: #6bdfff;
    font-size: 13px;
    font-weight: 700;
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-column h3 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-column h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.footer-links-list,
.footer-contact-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-list a {
    color: rgba(212, 223, 239, .68);
    font-size: 15px;
}

.footer-links-list a:hover {
    color: #35d3ff;
    transform: translateX(3px);
}

.footer-contact-list {
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(212, 223, 239, .68);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.footer-contact-list a {
    color: rgba(212, 223, 239, .68);
}

.footer-contact-list a:hover {
    color: #35d3ff;
}

.footer-contact-list em {
    font-style: normal;
}

.footer-consult-link {
    display: inline-flex;
    margin-top: 20px;
    color: #35d3ff;
    font-size: 15px;
    font-weight: 700;
}

.footer-consult-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid rgba(214, 229, 248, .1);
    color: rgba(204, 218, 236, .52);
    font-size: 14px;
    text-align: center;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom a {
    color: rgba(204, 218, 236, .52);
}

.footer-bottom a:hover {
    color: #35d3ff;
}

.channel-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background:
        radial-gradient(circle at 78% 18%, rgba(11, 127, 255, .3), transparent 30%),
        linear-gradient(110deg, #050d1c 0%, #081b35 100%);
}

.channel-backdrop {
    position: absolute;
    right: 8%;
    top: -90px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 178, 250, .25), rgba(17, 129, 255, 0) 66%);
}

.channel-hero .site-container {
    position: relative;
}

.channel-hero h1 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 48px;
    letter-spacing: -.05em;
}

.channel-hero p {
    max-width: 600px;
    margin-bottom: 35px;
    font-size: 18px;
    color: rgba(219, 231, 247, .76);
}

.channel-intro {
    background: #fff;
}

.channel-intro-grid {
    display: grid;
    align-items: center;
    gap: 82px;
    grid-template-columns: .9fr 1fr;
}

.channel-features .section-heading {
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
    min-height: 220px;
    padding: 32px 30px;
    background: #fff;
}

.feature-grid article > span {
    display: block;
    margin-bottom: 31px;
    color: #cfddf1;
    font-size: 29px;
    font-weight: 600;
}

.feature-grid h3 {
    margin-bottom: 13px;
    font-size: 21px;
}

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

.scene-section {
    background: #fff;
}

.scene-grid {
    display: grid;
    align-items: center;
    gap: 80px;
    grid-template-columns: 365px 1fr;
}

.scene-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.scene-list span {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: #233750;
    font-size: 17px;
}

.scene-list span::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 13px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
    vertical-align: middle;
}

.recommended-section {
    padding-top: 0;
    background: #fff;
}

.related-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.related-grid a {
    padding: 28px;
    border-radius: 6px;
    background: var(--surface);
}

.related-grid a:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.related-grid h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.related-grid p {
    min-height: 80px;
    margin-bottom: 15px;
    font-size: 14px;
}

.related-grid span {
    color: var(--primary);
    font-size: 14px;
}

@media (max-width: 1199px) {
    .site-container {
        width: min(100% - 40px, 1060px);
    }

    .navigation-bar .brand {
        width: 150px;
    }

    .brand-logo {
        height: 42px;
    }

    .main-nav {
        gap: 12px;
        font-size: 13px;
    }

    .consult-button {
        padding: 0 13px;
    }
}

@media (max-width: 991px) {
    .utility-bar {
        display: none;
    }

    .navigation-bar {
        height: 70px;
    }

    .nav-button {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 38px;
        padding: 8px;
        cursor: pointer;
    }

    .nav-button span {
        display: block;
        height: 2px;
        background: #eaf1fb;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 10px 20px 20px;
        border-top: 1px solid rgba(120, 159, 209, .14);
        background: #050d1c;
        box-shadow: var(--shadow);
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .main-nav > a:not(.consult-button) {
        padding: 13px 0;
    }

    .main-nav > a:not(.consult-button)::after {
        display: none;
    }

    .consult-button {
        margin-top: 10px;
    }

    .hero-slide {
        background-position: 62% center;
    }

    .hero-slider,
    .hero-grid {
        display: grid;
        min-height: 580px;
    }

    .channel-intro-grid,
    .scene-grid,
    .news-layout {
        display: block;
    }

    .capability-strip,
    .service-scope-grid,
    .business-grid,
    .service-grid,
    .solution-grid,
    .index-news-grid,
    .customer-case-grid,
    .case-grid,
    .process-grid,
    .feature-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-heading {
        align-items: start;
        flex-direction: column;
        gap: 15px;
    }

    .compact-heading {
        margin-bottom: 38px;
    }

    .scene-list {
        margin-top: 35px;
    }

    .industry-panel {
        display: block;
    }

    .industry-copy {
        position: static;
        margin-bottom: 24px;
    }

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

    .process-grid article:not(:last-child)::after {
        display: none;
    }

    .footer-main {
        gap: 36px 42px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-company {
        grid-column: 1 / -1;
    }

    .reference-heading h2 {
        font-size: 34px;
    }

    .reference-heading p {
        font-size: 17px;
    }

    .index-news-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .news-carousel-prev {
        left: -12px;
    }

    .news-carousel-next {
        right: -12px;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: calc(100% - 32px);
    }

    .navigation-bar .brand {
        width: 136px;
    }

    .brand-logo {
        height: 38px;
    }

    .hero-slide {
        background-position: 67% center;
    }

    .hero-slider,
    .hero-grid {
        min-height: 640px;
    }

    .hero-copy h1,
    .channel-hero h1 {
        font-size: 36px;
    }

    .hero-copy {
        padding: 52px 0 44px;
    }

    .hero-copy p,
    .channel-hero p {
        font-size: 15px;
    }

    .hero-actions,
    .cta-card {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-arrow {
        top: auto;
        bottom: 78px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .hero-arrow:hover {
        transform: none;
    }

    .hero-arrow-prev {
        left: 16px;
    }

    .hero-arrow-next {
        right: 16px;
    }

    .side-consult {
        display: none;
    }

    .capability-strip,
    .service-scope-grid,
    .business-grid,
    .service-grid,
    .solution-grid,
    .index-news-grid,
    .customer-case-grid,
    .industry-grid,
    .case-grid,
    .process-grid,
    .feature-grid,
    .related-grid,
    .scene-list {
        grid-template-columns: 1fr;
    }

    .services-scope-section,
    .index-cases-section,
    .process-section,
    .index-news-section {
        padding: 64px 0 70px;
    }

    .customer-case-content {
        padding: 24px;
    }

    .reference-heading {
        margin-bottom: 34px;
    }

    .reference-heading h2 {
        font-size: 30px;
    }

    .reference-heading p {
        font-size: 15px;
    }

    .capability-strip div + div::before {
        right: 24px;
        top: 0;
        bottom: auto;
        left: 24px;
        width: auto;
        height: 1px;
    }

    .capability-strip div {
        padding: 20px 22px;
    }

    .service-scope-card,
    .business-card,
    .industry-copy {
        padding: 26px 22px;
    }

    .index-news-content {
        padding: 22px;
    }

    .index-news-card {
        flex-basis: 100%;
        min-height: auto;
    }

    .news-carousel-viewport {
        padding: 4px 0 62px;
    }

    .news-carousel-arrow {
        top: auto;
        bottom: 4px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .news-carousel-arrow:hover {
        transform: none;
    }

    .news-carousel-prev {
        left: calc(50% - 52px);
    }

    .news-carousel-next {
        right: calc(50% - 52px);
    }

    .process-grid::before {
        display: none;
    }

    .business-card-head {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .section.section-solutions,
    .section.process-section {
        padding: 64px 0 70px;
    }

    .section-heading h2,
    .split-heading h2,
    .channel-intro h2,
    .scene-section h2 {
        font-size: 28px;
    }

    .process-grid article:not(:last-child)::after {
        display: none;
    }

    .news-item {
        display: block;
        padding: 22px;
    }

    .news-item > span {
        display: block;
        margin-bottom: 8px;
    }

    .cta-card {
        padding: 34px 26px;
    }

    .conversion-box {
        flex-basis: auto;
        padding: 24px;
    }

    .cta-card h2 {
        font-size: 26px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-company p {
        max-width: none;
    }

    .footer-logo {
        width: 190px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }
}

.channel-solutions .channel-hero-modern,
.channel-cases .channel-hero-modern,
.channel-saas .channel-hero-modern,
.channel-news .channel-hero-modern,
.channel-about .channel-hero-modern,
.channel-contact .channel-hero-modern {
    position: relative;
    overflow: hidden;
}

.channel-solutions .channel-hero-modern::before,
.channel-cases .channel-hero-modern::before,
.channel-saas .channel-hero-modern::before,
.channel-news .channel-hero-modern::before,
.channel-about .channel-hero-modern::before,
.channel-contact .channel-hero-modern::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(53, 211, 255, .2), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: auto, 68px 68px, 68px 68px;
    content: "";
    opacity: .76;
}

.channel-solutions .channel-hero-grid,
.channel-cases .channel-hero-grid,
.channel-saas .channel-hero-grid,
.channel-news .channel-hero-grid,
.channel-about .channel-hero-grid,
.channel-contact .channel-hero-grid {
    position: relative;
    z-index: 1;
}

.sol-pain-section,
.sol-industry-section,
.sol-blueprint-section,
.sol-capability-section,
.casep-feature-section,
.casep-list-section,
.casep-process-section,
.saasp-suite-section,
.saasp-module-section,
.saasp-deploy-section,
.news-simple-section,
.newsp-feature-section,
.newsp-slider-section,
.newsp-list-section,
.aboutp-story-section,
.aboutp-value-section,
.aboutp-capability-section,
.aboutp-team-section,
.aboutp-timeline-section,
.contactp-main-section,
.contactp-promise-section,
.contactp-process-section {
    padding: 92px 0;
}

.sol-section-head,
.casep-section-head,
.saasp-section-head,
.newsp-section-head {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.sol-section-head.compact,
.saasp-section-head {
    max-width: 860px;
}

.sol-section-head h2,
.sol-blueprint-copy h2,
.sol-capability-layout h2,
.casep-feature-card h2,
.casep-section-head h2,
.saasp-section-head h2,
.saasp-module-layout h2,
.newsp-feature-card h2,
.newsp-section-head h2,
.aboutp-story-copy h2,
.aboutp-capability-layout h2,
.contactp-card h2,
.contactp-form-card h2 {
    margin-bottom: 14px;
    color: #10203c;
    font-size: 38px;
    line-height: 1.22;
    letter-spacing: -.045em;
}

.sol-pain-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
}

.sol-pain-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, 1fr);
}

.sol-pain-grid article {
    min-height: 245px;
    padding: 30px 26px;
    border: 1px solid #e2ebf6;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(18, 52, 98, .06);
}

.sol-pain-grid span {
    display: block;
    margin-bottom: 32px;
    color: #c3d5ed;
    font-size: 32px;
    font-weight: 800;
}

.sol-pain-grid h3,
.sol-industry-grid h3,
.sol-blueprint-stack h3,
.sol-workflow h3,
.casep-grid h3,
.casep-process-grid h3,
.saasp-product-grid h3,
.saasp-module-grid h3,
.saasp-deploy-grid h3,
.saasp-roadmap h3,
.newsp-card-body h3,
.newsp-list h3,
.aboutp-value-grid h3,
.aboutp-capability-grid h3,
.contactp-promise-grid h3,
.contactp-process-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 22px;
    line-height: 1.35;
}

.sol-pain-grid p,
.sol-industry-grid p,
.sol-blueprint-stack p,
.sol-workflow p,
.casep-grid p,
.casep-process-grid p,
.saasp-product-grid p,
.saasp-module-grid p,
.saasp-deploy-grid p,
.saasp-roadmap p,
.newsp-card-body p,
.newsp-list p,
.aboutp-value-grid p,
.aboutp-capability-grid p,
.aboutp-team-grid p,
.contactp-promise-grid p,
.contactp-process-grid p {
    font-size: 14px;
}

.sol-industry-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.sol-industry-section::before {
    position: absolute;
    right: -160px;
    top: 120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 125, 255, .12), transparent 62%);
    content: "";
}

.sol-industry-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.sol-industry-grid article {
    padding: 32px;
    border: 1px solid #dfeaf7;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #f7fbff);
    box-shadow: 0 18px 48px rgba(18, 52, 98, .06);
}

.sol-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sol-card-top span {
    padding: 7px 13px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.sol-card-top b {
    color: #c4d6ef;
    font-size: 34px;
}

.sol-module-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0;
}

.sol-module-list em,
.casep-grid em,
.saasp-product-grid em,
.newsp-feature-card em,
.newsp-card-body em {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(8, 125, 255, .08);
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
}

.sol-industry-grid strong {
    display: block;
    padding-top: 18px;
    border-top: 1px solid #e4edf8;
    color: #173452;
    font-size: 15px;
}

.sol-blueprint-section {
    background:
        radial-gradient(circle at 18% 16%, rgba(53, 211, 255, .12), transparent 32%),
        #071426;
}

.sol-blueprint-layout,
.sol-capability-layout,
.saasp-module-layout,
.aboutp-story-layout,
.aboutp-capability-layout,
.contactp-main-layout {
    display: grid;
    align-items: center;
    gap: 64px;
    grid-template-columns: 390px 1fr;
}

.sol-blueprint-copy h2,
.sol-blueprint-copy p,
.sol-capability-layout h2,
.saasp-module-layout h2,
.saasp-module-layout p {
    color: #fff;
}

.sol-blueprint-copy p,
.sol-capability-layout p,
.saasp-module-layout p {
    color: rgba(226, 238, 255, .72);
}

.sol-blueprint-copy .button {
    margin-top: 30px;
}

.sol-blueprint-stack {
    display: grid;
    gap: 16px;
}

.sol-blueprint-stack article {
    display: grid;
    gap: 22px;
    grid-template-columns: 74px 1fr;
    padding: 24px;
    border: 1px solid rgba(174, 212, 255, .16);
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
}

.sol-blueprint-stack span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(53, 211, 255, .12);
    color: #35d3ff;
    font-weight: 800;
}

.sol-blueprint-stack h3,
.sol-blueprint-stack p {
    color: #fff;
}

.sol-blueprint-stack p {
    color: rgba(226, 238, 255, .68);
}

.sol-capability-section {
    background: #f5f8fd;
}

.sol-capability-layout {
    grid-template-columns: 1fr 1.35fr;
}

.sol-capability-layout h2 {
    color: #10203c;
}

.sol-capability-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sol-capability-cloud span {
    padding: 14px 18px;
    border: 1px solid #dfeaf7;
    border-radius: 999px;
    background: #fff;
    color: #173452;
    box-shadow: 0 10px 24px rgba(18, 52, 98, .04);
}

.sol-workflow {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}

.sol-workflow article {
    min-height: 250px;
    padding: 24px 18px;
    border: 1px solid #e1ebf7;
    border-radius: 18px;
    background: #fff;
}

.sol-workflow b {
    display: block;
    margin-bottom: 32px;
    color: #c3d5ed;
    font-size: 27px;
}

.casep-feature-section {
    background: #f5f8fd;
}

.casep-feature-card {
    display: grid;
    gap: 46px;
    grid-template-columns: 1fr 360px;
    padding: 54px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 86% 18%, rgba(53, 211, 255, .2), transparent 32%),
        linear-gradient(120deg, #061426 0%, #0d2a52 100%);
    box-shadow: 0 28px 72px rgba(8, 28, 60, .18);
}

.casep-feature-card h2,
.casep-feature-card p {
    color: #fff;
}

.casep-feature-card p {
    max-width: 720px;
    color: rgba(226, 238, 255, .74);
}

.casep-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 34px;
}

.casep-feature-tags span {
    padding: 8px 13px;
    border: 1px solid rgba(53, 211, 255, .28);
    border-radius: 999px;
    color: #dff8ff;
    font-size: 13px;
}

.casep-feature-metrics {
    display: grid;
    gap: 16px;
}

.casep-feature-metrics article {
    padding: 26px;
    border: 1px solid rgba(174, 212, 255, .15);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
}

.casep-feature-metrics b {
    display: block;
    color: #35d3ff;
    font-size: 34px;
}

.casep-feature-metrics span {
    color: rgba(226, 238, 255, .74);
}

.casep-list-section {
    background: #fff;
}

.casep-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.casep-grid article {
    overflow: hidden;
    border: 1px solid #dfeaf7;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 52, 98, .06);
}

.casep-card-cover {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 128px;
    padding: 24px;
    background:
        radial-gradient(circle at 86% 18%, rgba(53, 211, 255, .28), transparent 34%),
        linear-gradient(135deg, #0d2b55, #087dff);
}

.casep-card-cover span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 12px;
}

.casep-card-cover b {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    letter-spacing: .18em;
}

.casep-grid h3,
.casep-grid p,
.casep-grid strong,
.casep-grid a,
.casep-grid article > div:not(.casep-card-cover) {
    margin-right: 26px;
    margin-left: 26px;
}

.casep-grid h3 {
    margin-top: 26px;
}

.casep-grid article > div:not(.casep-card-cover) {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.casep-grid strong {
    display: block;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e6eef8;
    color: #173452;
    font-size: 14px;
}

.casep-grid a {
    display: inline-flex;
    margin-top: 18px;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.casep-process-section {
    background: #071426;
}

.casep-process-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.casep-process-grid article {
    padding: 34px;
    border: 1px solid rgba(174, 212, 255, .15);
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
}

.casep-process-grid span {
    display: block;
    margin-bottom: 34px;
    color: #35d3ff;
    font-size: 32px;
    font-weight: 800;
}

.casep-process-grid h3,
.casep-process-grid p {
    color: #fff;
}

.casep-process-grid p {
    color: rgba(226, 238, 255, .7);
}

.casesx-hero {
    position: relative;
    min-height: 430px;
    background:
        linear-gradient(90deg, rgba(4, 13, 28, .88), rgba(8, 61, 124, .46)),
        url("../img/website/hero-carousel-software.jpg") center/cover;
}

.casesx-hero-inner {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 58px;
}

.casesx-hero span {
    margin-bottom: 14px;
    color: #51ddff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
}

.casesx-hero h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 46px;
    line-height: 1.18;
    letter-spacing: 0;
}

.casesx-hero p {
    max-width: 560px;
    color: rgba(238, 246, 255, .84);
    font-size: 17px;
}

.casesx-hero-button {
    position: absolute;
    left: 50%;
    bottom: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 50px;
    border-radius: 5px;
    background: #1989fb;
    color: #fff;
    font-size: 18px;
    transform: translateX(-50%);
}

.casesx-hero-button:hover {
    background: #087dff;
    color: #fff;
}

.casesx-section {
    padding: 40px 0 120px;
    background: #fff;
}

.casesx-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 10px;
    margin-bottom: 25px;
}

.casesx-toolbar h2 {
    margin-right: 4px;
    color: #000;
    font-size: 30px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0;
}

.casesx-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.casesx-filter button {
    min-height: 42px;
    padding: 8px 28px;
    border: 1px solid #dedede;
    border-radius: 30px;
    background: #fff;
    color: #808080;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.casesx-filter button.active,
.casesx-filter button:hover {
    border-color: #1989fb;
    background: #1989fb;
    color: #fff;
}

.casesx-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.casesx-card {
    overflow: hidden;
    background: #fff;
}

.casesx-thumb {
    display: block;
    height: 288px;
    overflow: hidden;
    background: #eef4ff;
}

.casesx-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.casesx-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 22px;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .38), transparent 28%),
        linear-gradient(135deg, #0d62d8, #19b6ff);
    transition: transform .3s ease;
}

.casesx-card:nth-child(2) .casesx-screen {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .34), transparent 30%),
        linear-gradient(135deg, #12a37d, #6be1b5);
}

.casesx-card:nth-child(3) .casesx-screen {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .34), transparent 30%),
        linear-gradient(135deg, #1e2875, #6c7bff);
}

.casesx-card:nth-child(4) .casesx-screen {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .34), transparent 30%),
        linear-gradient(135deg, #f56a35, #ffc15b);
}

.casesx-card:nth-child(5) .casesx-screen {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .34), transparent 30%),
        linear-gradient(135deg, #722ed1, #b37feb);
}

.casesx-card:nth-child(6) .casesx-screen {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .34), transparent 30%),
        linear-gradient(135deg, #0b7285, #66d9e8);
}

.casesx-card:hover .casesx-screen,
.casesx-card:hover .casesx-thumb img {
    transform: scale(1.035);
}

.casesx-screen-top {
    display: flex;
    gap: 7px;
    width: 100%;
    height: 34px;
    padding: 12px;
    border-radius: 12px 12px 0 0;
    background: rgba(255, 255, 255, .86);
}

.casesx-screen-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(8, 125, 255, .35);
}

.casesx-screen-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 154px;
    padding: 28px;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
}

.casesx-screen-main strong {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: #173452;
    font-size: 14px;
}

.casesx-screen-main i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: rgba(25, 137, 251, .96);
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}

.casesx-screen-lines {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.casesx-screen-lines span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
}

.casesx-screen-lines span:nth-child(2) {
    width: 76%;
}

.casesx-screen-lines span:nth-child(3) {
    width: 54%;
}

.casesx-card-body {
    padding: 16px 0 8px;
}

.casesx-category {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1989fb;
    font-size: 13px;
    font-weight: 700;
}

.casesx-card-body h3 {
    margin-bottom: 8px;
    color: #242936;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.casesx-card-body h3 a {
    color: inherit;
}

.casesx-card-body h3 a:hover {
    color: #1989fb;
}

.casesx-card-body p {
    min-height: 52px;
    margin-bottom: 12px;
    color: #687386;
    font-size: 14px;
    line-height: 1.8;
}

.casesx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.casesx-tags span {
    padding: 4px 9px;
    border-radius: 4px;
    background: #f4f7fb;
    color: #58657a;
    font-size: 12px;
}

.casesx-card[hidden] {
    display: none;
}

.case-detail-hero {
    padding: 150px 0 72px;
    background:
        linear-gradient(90deg, rgba(4, 13, 28, .92), rgba(8, 61, 124, .62)),
        url("../img/website/hero-carousel-software.jpg") center/cover;
}

.case-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.case-detail-breadcrumb a,
.case-detail-breadcrumb strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.case-detail-hero-grid {
    display: grid;
    align-items: center;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.case-detail-category {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(81, 221, 255, .14);
    color: #51ddff;
    font-size: 13px;
    font-weight: 700;
}

.case-detail-copy h1 {
    max-width: 780px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 44px;
    line-height: 1.22;
}

.case-detail-subtitle,
.case-detail-summary {
    max-width: 720px;
    color: rgba(238, 246, 255, .86);
    font-size: 17px;
    line-height: 1.9;
}

.case-detail-summary {
    margin-top: 12px;
}

.case-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.case-detail-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

.case-detail-cover {
    min-height: 320px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .26);
}

.case-detail-cover img,
.case-detail-cover-fallback {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.case-detail-cover img {
    object-fit: cover;
}

.case-detail-cover-fallback {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .36), transparent 30%),
        linear-gradient(135deg, #0d62d8, #19b6ff);
    color: #fff;
}

.case-detail-cover-fallback span {
    font-size: 13px;
    font-weight: 700;
}

.case-detail-cover-fallback strong {
    margin-top: 10px;
    font-size: 32px;
}

.case-detail-section {
    padding: 72px 0 86px;
    background: #fff;
}

.case-detail-layout {
    display: grid;
    align-items: start;
    gap: 54px;
    grid-template-columns: 300px minmax(0, 1fr);
}

.case-detail-meta {
    position: sticky;
    top: 96px;
    padding: 24px;
    border: 1px solid #e7ecf3;
    border-radius: 8px;
    background: #f8fbff;
}

.case-detail-meta h2 {
    margin-bottom: 18px;
    color: #18243a;
    font-size: 20px;
}

.case-detail-meta dl {
    margin-bottom: 22px;
}

.case-detail-meta dt {
    margin-top: 14px;
    color: #7a8699;
    font-size: 13px;
}

.case-detail-meta dd {
    margin-top: 5px;
    color: #243247;
    font-size: 15px;
    font-weight: 700;
}

.case-detail-meta .button {
    width: 100%;
}

.case-detail-content {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.95;
}

.case-detail-content h1,
.case-detail-content h2,
.case-detail-content h3,
.case-detail-content h4 {
    margin: 30px 0 14px;
    color: #172033;
    line-height: 1.4;
}

.case-detail-content h2 {
    font-size: 28px;
}

.case-detail-content h3 {
    font-size: 22px;
}

.case-detail-content p,
.case-detail-content ul,
.case-detail-content ol,
.case-detail-content blockquote {
    margin-bottom: 18px;
}

.case-detail-content ul,
.case-detail-content ol {
    padding-left: 22px;
}

.case-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.case-detail-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.case-detail-content th,
.case-detail-content td {
    padding: 12px;
    border: 1px solid #e3e8f0;
}

.case-related-section {
    padding: 64px 0 92px;
    background: #f5f8fc;
}

.case-related-head {
    margin-bottom: 24px;
}

.case-related-head span {
    color: #1989fb;
    font-size: 13px;
    font-weight: 700;
}

.case-related-head h2 {
    margin-top: 8px;
    color: #172033;
    font-size: 30px;
}

.case-related-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-related-grid article {
    padding: 0 0 18px;
    background: #fff;
}

.case-related-cover {
    display: block;
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #eaf2ff;
}

.case-related-cover img,
.case-related-cover div {
    width: 100%;
    height: 100%;
}

.case-related-cover img {
    object-fit: cover;
}

.case-related-cover div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d62d8, #19b6ff);
    color: #fff;
}

.case-related-cover span {
    font-weight: 700;
}

.case-related-grid article > span,
.case-related-grid h3,
.case-related-grid p {
    margin-right: 18px;
    margin-left: 18px;
}

.case-related-grid article > span {
    display: inline-flex;
    margin-bottom: 7px;
    color: #1989fb;
    font-size: 13px;
    font-weight: 700;
}

.case-related-grid h3 {
    margin-bottom: 8px;
    color: #172033;
    font-size: 18px;
    line-height: 1.45;
}

.case-related-grid h3 a {
    color: inherit;
}

.case-related-grid p {
    color: #657287;
    font-size: 14px;
    line-height: 1.75;
}

.saas-detail-page .case-detail-hero {
    background:
        linear-gradient(90deg, rgba(5, 0, 109, .9), rgba(25, 137, 251, .62)),
        url("../img/website/hero-tech-v2.jpg") center/cover;
}

.saas-detail-page .case-detail-category {
    background: rgba(255, 255, 255, .14);
    color: #baf3ff;
}

.saas-detail-page .case-detail-cover-fallback {
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 255, 255, .32), transparent 30%),
        linear-gradient(135deg, #05006d, #1989fb 62%, #35d3ff);
}

@media (max-width: 991px) {
    .casesx-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-detail-hero-grid,
    .case-detail-layout,
    .case-related-grid {
        grid-template-columns: 1fr;
    }

    .case-detail-meta {
        position: static;
    }
}

@media (max-width: 640px) {
    .casesx-hero,
    .casesx-hero-inner {
        min-height: 360px;
    }

    .casesx-hero h1 {
        font-size: 34px;
    }

    .casesx-hero-button {
        left: 0;
        bottom: 34px;
        transform: none;
    }

    .casesx-section {
        padding: 32px 0 72px;
    }

    .casesx-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .casesx-filter button {
        padding: 8px 18px;
        font-size: 14px;
    }

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

    .casesx-thumb {
        height: 248px;
    }

    .casesx-screen {
        padding: 20px;
    }

    .casesx-screen-main {
        height: 142px;
        justify-content: flex-start;
        gap: 18px;
        padding: 20px;
    }

    .casesx-screen-main i {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        border-radius: 18px;
        font-size: 18px;
    }

    .casesx-screen-main strong {
        max-width: calc(100% - 78px);
        font-size: 13px;
    }

    .case-detail-hero {
        padding: 118px 0 48px;
    }

    .case-detail-copy h1 {
        font-size: 32px;
    }

    .case-detail-hero-grid {
        gap: 30px;
    }

    .case-detail-cover,
    .case-detail-cover img,
    .case-detail-cover-fallback {
        min-height: 230px;
    }

    .case-detail-section {
        padding: 46px 0 64px;
    }

    .case-detail-layout {
        gap: 32px;
    }

    .case-detail-content h2 {
        font-size: 24px;
    }

    .case-related-section {
        padding: 46px 0 68px;
    }
}

.saasx-hero {
    padding: 88px 0 86px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 0, 109, .92), rgba(26, 58, 138, .9) 52%, rgba(25, 137, 251, .88)),
        url("../img/website/hero-tech-v2.jpg") center/cover;
    color: #fff;
}

.saasx-hero-inner {
    display: grid;
    align-items: center;
    gap: 62px;
    grid-template-columns: minmax(0, 1fr) 470px;
}

.saasx-hero-inner > *,
.saasx-product-card,
.saasx-capability-layout > * {
    min-width: 0;
}

.saasx-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: #8ee7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.saasx-hero-copy h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: 0;
}

.saasx-hero-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.7;
}

.saasx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.saasx-hero .button-outline {
    border-color: rgba(255, 255, 255, .56);
    color: #fff;
}

.saasx-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.saasx-hero-tags span {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
}

.saasx-hero-visual {
    position: relative;
    min-height: 340px;
}

.saasx-dashboard {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(3, 16, 54, .28);
}

.saasx-dashboard-top {
    display: flex;
    gap: 7px;
    padding: 16px 18px;
    background: #eef4ff;
}

.saasx-dashboard-top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1989fb;
}

.saasx-dashboard-main {
    display: grid;
    min-height: 252px;
    grid-template-columns: 118px 1fr;
}

.saasx-dashboard-menu {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px 18px;
    background: #0f285d;
}

.saasx-dashboard-menu span {
    height: 10px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .24);
}

.saasx-dashboard-menu span:first-child {
    background: #46d6c9;
}

.saasx-dashboard-content {
    padding: 26px;
}

.saasx-dashboard-content b {
    display: block;
    margin-bottom: 22px;
    color: #10203c;
    font-size: 20px;
}

.saasx-chart-row {
    display: grid;
    align-items: end;
    gap: 14px;
    height: 96px;
    grid-template-columns: repeat(3, 1fr);
}

.saasx-chart-row i {
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #1989fb, #46d6c9);
}

.saasx-chart-row i:nth-child(1) {
    height: 58%;
}

.saasx-chart-row i:nth-child(2) {
    height: 86%;
}

.saasx-chart-row i:nth-child(3) {
    height: 68%;
}

.saasx-table-row {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    grid-template-columns: 1.4fr 1fr .8fr;
}

.saasx-table-row span {
    height: 9px;
    border-radius: 99px;
    background: #dfe8f6;
}

.saasx-table-row.short span:last-child {
    background: #ffc36a;
}

.saasx-float-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    min-width: 128px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(3, 16, 54, .18);
}

.saasx-float-card strong {
    color: #0f285d;
    font-size: 18px;
}

.saasx-float-card span {
    color: #6c7b90;
    font-size: 13px;
}

.saasx-float-one {
    right: -18px;
    top: 34px;
}

.saasx-float-two {
    bottom: 34px;
    left: -28px;
}

.saasx-products-section,
.saasx-advantages-section,
.saasx-capability-section {
    padding: 80px 0;
}

.saasx-products-section,
.saasx-capability-section {
    background: #fff;
}

.saasx-advantages-section,
.saasx-cta-section {
    background: #f7f9fc;
}

.saasx-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.saasx-section-head h2 {
    margin-bottom: 12px;
    color: #1a1a2e;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: 0;
}

.saasx-section-head p {
    color: #66758a;
    font-size: 16px;
    line-height: 1.8;
}

.saasx-product-list {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saasx-product-card {
    overflow: hidden;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(18, 52, 98, .07);
    transition: box-shadow .25s ease, transform .25s ease;
}

.saasx-product-card:hover {
    box-shadow: 0 14px 34px rgba(18, 52, 98, .12);
    transform: translateY(-4px);
}

.saasx-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 238px;
    padding: 24px;
    background: linear-gradient(135deg, #eef5ff, #f8fbff 52%, #e8f9f6);
    color: inherit;
}

.saasx-card-img-photo {
    display: block;
    padding: 0;
    overflow: hidden;
    background: #edf3fa;
}

.saasx-card-img-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.saasx-product-card:hover .saasx-card-img-photo img {
    transform: scale(1.04);
}

.saasx-card-screen {
    width: 100%;
    max-width: 420px;
    height: 188px;
    padding: 18px;
    border: 1px solid rgba(25, 137, 251, .16);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(18, 52, 98, .09);
}

.saasx-card-screen-top {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.saasx-card-screen-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a9c6ec;
}

.saasx-card-screen strong {
    display: block;
    margin-bottom: 18px;
    color: #10203c;
    font-size: 18px;
    line-height: 1.3;
}

.saasx-card-screen-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}

.saasx-card-screen-grid i {
    height: 28px;
    border-radius: 6px;
    background: #eef4ff;
}

.saasx-card-screen-grid i:nth-child(2n) {
    background: #e5faf7;
}

.saasx-card-screen-grid i:nth-child(3n) {
    background: #fff4df;
}

.saasx-card-content {
    padding: 28px;
}

.saasx-card-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1989fb;
    font-size: 12px;
    font-weight: 800;
}

.saasx-card-content h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 23px;
    line-height: 1.35;
}

.saasx-card-content h3 a {
    color: inherit;
}

.saasx-card-content p {
    color: #5d6d82;
    font-size: 14px;
    line-height: 1.8;
}

.saasx-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.saasx-card-features span,
.saasx-module-cloud span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(25, 137, 251, .08);
    color: #1c70c9;
    font-size: 12px;
}

.saasx-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #edf2f8;
}

.saasx-card-bottom strong {
    max-width: 360px;
    color: #173452;
    font-size: 14px;
    line-height: 1.7;
}

.saasx-card-bottom a {
    flex-shrink: 0;
    padding: 10px 22px;
    border-radius: 4px;
    background: #1989fb;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.saasx-advantage-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.saasx-advantage-list article {
    min-height: 222px;
    padding: 34px 24px;
    border: 1px solid #e8eef6;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 18px rgba(18, 52, 98, .05);
    transition: transform .25s ease;
}

.saasx-advantage-list article:hover {
    transform: translateY(-3px);
}

.saasx-adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1989fb, #05006d);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.saasx-advantage-list h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 20px;
}

.saasx-advantage-list p {
    color: #66758a;
    font-size: 14px;
    line-height: 1.75;
}

.saasx-capability-layout {
    display: grid;
    align-items: start;
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) 430px;
}

.saasx-capability-copy h2 {
    max-width: 640px;
    margin-bottom: 14px;
    color: #10203c;
    font-size: 32px;
    line-height: 1.28;
    letter-spacing: 0;
}

.saasx-capability-copy p {
    max-width: 720px;
    color: #66758a;
    font-size: 16px;
    line-height: 1.8;
}

.saasx-deploy-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.saasx-deploy-list article,
.saasx-module-panel {
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
}

.saasx-deploy-list article {
    min-height: 184px;
    padding: 22px;
}

.saasx-deploy-list span {
    display: block;
    margin-bottom: 18px;
    color: #b9cbe5;
    font-size: 26px;
    font-weight: 800;
}

.saasx-deploy-list h3 {
    margin-bottom: 9px;
    color: #10203c;
    font-size: 18px;
}

.saasx-deploy-list p {
    color: #66758a;
    font-size: 13px;
    line-height: 1.7;
}

.saasx-module-panel {
    padding: 32px;
    background: #f8fbff;
}

.saasx-module-panel h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 23px;
}

.saasx-module-panel p {
    color: #66758a;
    font-size: 14px;
    line-height: 1.8;
}

.saasx-module-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.saasx-roadmap {
    display: grid;
    gap: 10px;
    margin-top: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saasx-roadmap article {
    padding: 14px;
    border-radius: 8px;
    background: #fff;
}

.saasx-roadmap b {
    display: block;
    margin-bottom: 6px;
    color: #1989fb;
    font-size: 18px;
}

.saasx-roadmap span {
    color: #173452;
    font-size: 14px;
}

.saasx-cta-section {
    padding: 0 0 82px;
}

.saasx-cta-card {
    padding: 58px 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #05006d, #1989fb);
    color: #fff;
    text-align: center;
}

.saasx-cta-card h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 32px;
    line-height: 1.28;
    letter-spacing: 0;
}

.saasx-cta-card p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    line-height: 1.8;
}

.saasx-cta-card .button-primary {
    background: #fff;
    color: #0f4fbd;
}

@media (max-width: 1180px) {
    .saasx-hero-inner,
    .saasx-capability-layout {
        grid-template-columns: 1fr;
    }

    .saasx-hero-visual {
        max-width: 520px;
    }

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

@media (max-width: 820px) {
    .saasx-product-list,
    .saasx-deploy-list {
        grid-template-columns: 1fr;
    }

    .saasx-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .saasx-hero {
        padding: 58px 0 56px;
    }

    .saasx-hero-inner {
        gap: 34px;
    }

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

    .saasx-hero-copy p,
    .saasx-capability-copy p,
    .saasx-section-head p,
    .saasx-cta-card p {
        font-size: 15px;
    }

    .saasx-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .saasx-hero-actions .button {
        justify-content: center;
    }

    .saasx-hero-visual {
        min-height: 250px;
        width: 100%;
        overflow: hidden;
    }

    .saasx-dashboard,
    .saasx-product-card,
    .saasx-card-screen {
        max-width: 100%;
    }

    .saasx-dashboard {
        width: calc(100vw - 32px);
    }

    .saasx-card-screen {
        width: calc(100vw - 68px);
    }

    .saasx-dashboard-main {
        min-height: 196px;
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .saasx-dashboard-menu,
    .saasx-dashboard-content {
        padding: 18px;
    }

    .saasx-dashboard-content {
        min-width: 0;
        overflow: hidden;
    }

    .saasx-dashboard-content b {
        font-size: 16px;
    }

    .saasx-card-screen strong {
        font-size: 16px;
        word-break: break-word;
    }

    .saasx-float-card {
        display: none;
    }

    .saasx-products-section,
    .saasx-advantages-section,
    .saasx-capability-section {
        padding: 58px 0;
    }

    .saasx-section-head {
        margin-bottom: 28px;
    }

    .saasx-section-head h2,
    .saasx-capability-copy h2,
    .saasx-cta-card h2 {
        font-size: 26px;
    }

    .saasx-card-img {
        height: 190px;
        padding: 18px;
        overflow: hidden;
    }

    .saasx-card-screen {
        height: 154px;
        padding: 14px;
    }

    .saasx-card-screen-grid {
        gap: 7px;
    }

    .saasx-card-screen-grid i {
        height: 22px;
    }

    .saasx-card-content,
    .saasx-module-panel,
    .saasx-cta-card {
        padding: 24px;
    }

    .saasx-advantage-list,
    .saasx-roadmap {
        grid-template-columns: 1fr;
    }

    .saasx-cta-section {
        padding-bottom: 58px;
    }
}

.saasp-suite-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
}

.saasp-product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.saasp-product-grid article {
    display: flex;
    flex-direction: column;
    min-height: 460px;
    padding: 30px;
    border: 1px solid #dfeaf7;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 52, 98, .06);
}

.saasp-product-grid article > span {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 28px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.saasp-product-grid strong {
    display: block;
    margin-top: 20px;
    color: #173452;
    font-size: 14px;
    line-height: 1.7;
}

.saasp-product-grid article > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.saasp-product-grid a {
    display: inline-flex;
    margin-top: auto;
    padding-top: 24px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.saasp-module-section {
    background:
        radial-gradient(circle at 16% 18%, rgba(53, 211, 255, .12), transparent 32%),
        #071426;
}

.saasp-module-layout {
    grid-template-columns: 360px 1fr;
}

.saasp-module-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.saasp-module-grid article {
    min-height: 160px;
    padding: 24px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .07);
}

.saasp-module-grid h3,
.saasp-module-grid p {
    color: #fff;
}

.saasp-module-grid p {
    color: rgba(226, 238, 255, .68);
}

.saasp-deploy-section {
    background: #fff;
}

.saasp-deploy-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.saasp-deploy-grid article {
    padding: 34px;
    border: 1px solid #dfeaf7;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.saasp-deploy-grid span {
    display: block;
    margin-bottom: 30px;
    color: #c3d5ed;
    font-size: 34px;
    font-weight: 800;
}

.saasp-roadmap {
    display: grid;
    gap: 16px;
    margin-top: 34px;
    grid-template-columns: repeat(4, 1fr);
}

.saasp-roadmap article {
    min-height: 210px;
    padding: 26px 22px;
    border-radius: 20px;
    background: #f5f8fd;
}

.saasp-roadmap b {
    display: block;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 28px;
}

.news-page-hero {
    padding: 82px 0 76px;
    background:
        linear-gradient(135deg, rgba(6, 40, 86, .9), rgba(8, 125, 255, .78)),
        url("../img/website/hero-tech-v2.jpg") center/cover;
}

.news-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
}

.news-breadcrumb a,
.news-breadcrumb strong {
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
}

.news-page-hero h1 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: 0;
}

.news-page-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.8;
}

.news-simple-section {
    background: #f6f9fd;
}

.news-category-panel {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(18, 52, 98, .05);
}

.news-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-category-list button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid #e3ebf5;
    border-radius: 999px;
    background: #f8fbff;
    color: #173452;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.news-category-list button.active,
.news-category-list button:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.news-simple-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-simple-item {
    overflow: hidden;
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(18, 52, 98, .06);
}

.news-simple-cover {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 148px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(8, 125, 255, .92), rgba(12, 39, 78, .94)),
        #0c274e;
    color: #fff;
}

.news-simple-cover span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
}

.news-simple-cover strong {
    margin-left: auto;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    letter-spacing: 0;
}

.news-simple-body {
    padding: 24px;
}

.news-simple-body time {
    display: block;
    margin-bottom: 12px;
    color: #8090a7;
    font-size: 13px;
}

.news-simple-item h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 21px;
    line-height: 1.38;
    letter-spacing: 0;
}

.news-simple-item h3 a {
    color: inherit;
}

.news-simple-item h3 a:hover,
.news-read-link:hover {
    color: var(--primary-deep);
}

.news-simple-item p {
    color: #5d6d83;
    font-size: 15px;
    line-height: 1.75;
}

.news-read-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.aboutp-story-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
}

.aboutp-story-layout {
    grid-template-columns: 1fr 380px;
}

.aboutp-story-copy p + p {
    margin-top: 16px;
}

.aboutp-metric-card {
    display: grid;
    gap: 16px;
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(18, 52, 98, .08);
}

.aboutp-metric-card div {
    padding: 22px;
    border-radius: 18px;
    background: #f5f8fd;
}

.aboutp-metric-card b {
    display: block;
    color: var(--primary);
    font-size: 34px;
}

.aboutp-metric-card span {
    color: var(--ink-soft);
}

.aboutp-value-section {
    background: #fff;
}

.aboutp-value-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.aboutp-value-grid article {
    min-height: 250px;
    padding: 34px;
    border: 1px solid #dfeaf7;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.aboutp-value-grid article::before {
    display: block;
    width: 48px;
    height: 5px;
    margin-bottom: 34px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.aboutp-capability-section {
    background: #071426;
}

.aboutp-capability-layout {
    grid-template-columns: 360px 1fr;
}

.aboutp-capability-layout h2,
.aboutp-capability-layout p {
    color: #fff;
}

.aboutp-capability-layout p {
    color: rgba(226, 238, 255, .7);
}

.aboutp-capability-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

.aboutp-capability-grid article {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.aboutp-capability-grid h3,
.aboutp-capability-grid p {
    color: #fff;
}

.aboutp-capability-grid p {
    color: rgba(226, 238, 255, .68);
}

.aboutp-team-section {
    background: #f5f8fd;
}

.aboutp-team-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.aboutp-team-grid article {
    min-height: 210px;
    padding: 30px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .06);
}

.aboutp-team-grid span {
    display: inline-flex;
    margin-bottom: 30px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-weight: 800;
}

.aboutp-timeline-section {
    background: #fff;
}

.aboutp-timeline {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.aboutp-timeline article {
    position: relative;
    min-height: 180px;
    padding: 30px;
    border: 1px solid #dfeaf7;
    border-radius: 22px;
    background: #fff;
}

.aboutp-timeline article::before {
    position: absolute;
    left: 30px;
    top: -7px;
    width: 44px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.aboutp-timeline b {
    display: block;
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 30px;
}

.contactp-main-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(8, 125, 255, .12), transparent 32%),
        #f5f8fd;
}

.contactp-main-layout {
    align-items: stretch;
    grid-template-columns: .9fr 1.1fr;
}

.contactp-card,
.contactp-form-card {
    padding: 42px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(18, 52, 98, .08);
}

.contactp-methods {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.contactp-methods a {
    display: block;
    padding: 24px;
    border: 1px solid #dfeaf7;
    border-radius: 18px;
    background: #f8fbff;
}

.contactp-methods span {
    display: block;
    margin-bottom: 10px;
    color: #8090a7;
    font-size: 14px;
}

.contactp-methods strong {
    color: #10203c;
    font-size: 22px;
}

.contactp-form-mock {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contactp-form-mock label {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid #dfeaf7;
    border-radius: 14px;
    background: #f8fbff;
    color: #6c7d94;
    font-size: 14px;
}

.contactp-form-mock label:last-child {
    min-height: 112px;
    align-items: flex-start;
    padding-top: 16px;
}

.contactp-need-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 30px;
}

.contactp-need-tags span {
    padding: 8px 13px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 13px;
}

.contactp-promise-section {
    background: #fff;
}

.contactp-promise-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.contactp-promise-grid article {
    min-height: 230px;
    padding: 34px;
    border: 1px solid #dfeaf7;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.contactp-promise-grid span {
    display: block;
    margin-bottom: 32px;
    color: #c3d5ed;
    font-size: 34px;
    font-weight: 800;
}

.contactp-process-section {
    background: #071426;
}

.contactp-process-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.contactp-process-grid article {
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.contactp-process-grid b {
    display: block;
    margin-bottom: 30px;
    color: #35d3ff;
    font-size: 30px;
}

.contactp-process-grid h3,
.contactp-process-grid p {
    color: #fff;
}

.contactp-process-grid p {
    color: rgba(226, 238, 255, .7);
}

.contactx-hero {
    padding: 82px 0 76px;
    background:
        linear-gradient(135deg, rgba(6, 40, 86, .9), rgba(8, 125, 255, .78)),
        url("../img/website/hero-tech-v2.jpg") center/cover;
}

.contactx-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
}

.contactx-breadcrumb a,
.contactx-breadcrumb strong {
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
}

.contactx-hero h1 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: 0;
}

.contactx-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
}

.contactx-section,
.contactx-process-section {
    padding: 88px 0;
}

.contactx-section {
    background: #f6f9fd;
}

.contactx-section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.contactx-section-head h2 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: 0;
}

.contactx-section-head h2 span {
    color: var(--primary);
}

.contactx-section-head p {
    font-size: 16px;
}

.contactx-info-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 38px;
}

.contactx-info-card {
    display: block;
    min-height: 220px;
    padding: 32px 28px;
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(18, 52, 98, .06);
    text-align: center;
}

.contactx-info-card:hover {
    border-color: rgba(8, 125, 255, .34);
    box-shadow: 0 18px 42px rgba(18, 52, 98, .1);
    transform: translateY(-3px);
}

.contactx-info-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
}

.contactx-info-card h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 21px;
    letter-spacing: 0;
}

.contactx-info-card p {
    color: #5d6d83;
    font-size: 15px;
}

.contactx-form-container {
    display: grid;
    gap: 36px;
    grid-template-columns: 320px minmax(0, 1fr);
    padding: 34px;
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(18, 52, 98, .06);
}

.contactx-form-intro h2 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0;
}

.contactx-form-intro p {
    color: #5d6d83;
    font-size: 15px;
}

.contactx-need-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.contactx-need-tags span {
    padding: 7px 12px;
    border: 1px solid #dfe8f3;
    border-radius: 999px;
    background: #f8fbff;
    color: #173452;
    font-size: 13px;
}

.contactx-form {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contactx-field {
    display: grid;
    gap: 8px;
}

.contactx-field-full,
.contactx-form-bottom {
    grid-column: 1 / -1;
}

.contactx-field label {
    color: #173452;
    font-size: 14px;
    font-weight: 600;
}

.contactx-field input,
.contactx-field select,
.contactx-field textarea {
    width: 100%;
    border: 1px solid #dfe8f3;
    border-radius: 6px;
    background: #f8fbff;
    color: #10203c;
    font: inherit;
    outline: none;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.contactx-field input,
.contactx-field select {
    height: 48px;
    padding: 0 14px;
}

.contactx-field textarea {
    min-height: 132px;
    resize: vertical;
    padding: 13px 14px;
}

.contactx-field input:focus,
.contactx-field select:focus,
.contactx-field textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(8, 125, 255, .12);
}

.contactx-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contactx-form-message {
    color: #5d6d83;
    font-size: 14px;
}

.contactx-form-message.is-error {
    color: #d33f49;
}

.contactx-process-section {
    background: #fff;
}

.contactx-process-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.contactx-process-grid article {
    min-height: 230px;
    padding: 30px 24px;
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(18, 52, 98, .05);
    text-align: center;
}

.contactx-process-grid b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
}

.contactx-process-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 20px;
    letter-spacing: 0;
}

.contactx-process-grid p {
    color: #5d6d83;
    font-size: 14px;
}

.contactx-cta-section {
    padding: 0 0 88px;
    background: #fff;
}

.contactx-cta-card {
    padding: 54px 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0a58ca, #4a90e2);
    color: #fff;
    text-align: center;
}

.contactx-cta-card h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: 0;
}

.contactx-cta-card p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
}

.contactx-cta-card > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.contactx-cta-card .button-outline {
    border-color: rgba(255, 255, 255, .65);
}

.contactx-cta-card ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, .9);
    list-style: none;
}

.contactx-cta-card li::before {
    margin-right: 7px;
    content: "✓";
}

@media (max-width: 991px) {
    .contactx-info-grid,
    .contactx-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contactx-form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contactx-hero {
        padding: 62px 0 58px;
    }

    .contactx-hero h1 {
        font-size: 32px;
    }

    .contactx-section,
    .contactx-process-section {
        padding: 62px 0;
    }

    .contactx-section-head h2,
    .contactx-cta-card h2 {
        font-size: 28px;
    }

    .contactx-info-grid,
    .contactx-process-grid,
    .contactx-form {
        grid-template-columns: 1fr;
    }

    .contactx-form-container,
    .contactx-cta-card {
        padding: 26px;
    }

    .contactx-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }
}

.channel-solutions .channel-cta-section,
.channel-cases .channel-cta-section,
.channel-saas .channel-cta-section,
.channel-news .channel-cta-section,
.channel-about .channel-cta-section,
.channel-contact .channel-cta-section {
    background: #f5f8fd;
}

@media (max-width: 1180px) {
    .saasp-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sol-workflow {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .sol-pain-grid,
    .casep-grid,
    .saasp-module-grid,
    .saasp-roadmap,
    .aboutp-team-grid,
    .aboutp-timeline,
    .contactp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sol-industry-grid,
    .sol-blueprint-layout,
    .sol-capability-layout,
    .casep-feature-card,
    .saasp-module-layout,
    .newsp-feature-layout,
    .aboutp-story-layout,
    .aboutp-capability-layout,
    .contactp-main-layout {
        grid-template-columns: 1fr;
    }

    .casep-feature-metrics,
    .saasp-deploy-grid,
    .contactp-promise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsp-list article {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .newsp-list a:last-child {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .sol-pain-section,
    .sol-industry-section,
    .sol-blueprint-section,
    .sol-capability-section,
    .casep-feature-section,
    .casep-list-section,
    .casep-process-section,
    .saasp-suite-section,
    .saasp-module-section,
    .saasp-deploy-section,
    .news-simple-section,
    .newsp-feature-section,
    .newsp-slider-section,
    .newsp-list-section,
    .aboutp-story-section,
    .aboutp-value-section,
    .aboutp-capability-section,
    .aboutp-team-section,
    .aboutp-timeline-section,
    .contactp-main-section,
    .contactp-promise-section,
    .contactp-process-section {
        padding: 62px 0;
    }

    .sol-section-head h2,
    .sol-blueprint-copy h2,
    .sol-capability-layout h2,
    .casep-feature-card h2,
    .casep-section-head h2,
    .saasp-section-head h2,
    .saasp-module-layout h2,
    .newsp-feature-card h2,
    .newsp-section-head h2,
    .aboutp-story-copy h2,
    .aboutp-capability-layout h2,
    .contactp-card h2,
    .contactp-form-card h2 {
        font-size: 29px;
    }

    .sol-pain-grid,
    .sol-industry-grid,
    .sol-workflow,
    .casep-grid,
    .casep-feature-metrics,
    .casep-process-grid,
    .saasp-product-grid,
    .saasp-module-grid,
    .saasp-deploy-grid,
    .saasp-roadmap,
    .newsp-topic-grid,
    .aboutp-value-grid,
    .aboutp-capability-grid,
    .aboutp-team-grid,
    .aboutp-timeline,
    .contactp-promise-grid,
    .contactp-process-grid {
        grid-template-columns: 1fr;
    }

    .casep-feature-card,
    .newsp-feature-card,
    .contactp-card,
    .contactp-form-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .sol-blueprint-stack article {
        grid-template-columns: 1fr;
    }

    .newsp-card-track {
        grid-auto-columns: minmax(280px, 86vw);
    }

    .news-page-hero {
        padding: 62px 0 58px;
    }

    .news-page-hero h1 {
        font-size: 32px;
    }

    .news-simple-list {
        grid-template-columns: 1fr;
    }

    .news-category-panel {
        padding: 16px;
    }

    .news-simple-body {
        padding: 22px;
    }
}

.aboutx-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    padding: 118px 0 126px;
    background:
        radial-gradient(circle at 78% 20%, rgba(53, 211, 255, .24), transparent 31%),
        radial-gradient(circle at 20% 80%, rgba(8, 125, 255, .18), transparent 34%),
        linear-gradient(118deg, #040b18 0%, #071b38 48%, #0d376b 100%);
    color: #fff;
}

.aboutx-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 70px 70px;
    content: "";
    opacity: .56;
}

.aboutx-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 80px;
    grid-template-columns: minmax(0, 1fr) 430px;
}

.aboutx-kicker,
.aboutx-section-head .eyebrow,
.aboutx-intro-copy .eyebrow,
.aboutx-team-copy .eyebrow,
.aboutx-qualification-layout .eyebrow {
    color: #35d3ff;
}

.aboutx-hero-copy h1 {
    max-width: 800px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(42px, 4.5vw, 66px);
    line-height: 1.12;
    letter-spacing: -.055em;
}

.aboutx-hero-copy p {
    max-width: 740px;
    color: rgba(226, 238, 255, .76);
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.aboutx-hero-contact {
    display: inline-flex;
    margin-top: 34px;
    padding: 14px 20px;
    border: 1px solid rgba(53, 211, 255, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(242, 250, 255, .92);
    font-size: 15px;
}

.aboutx-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.aboutx-hero-tags span {
    padding: 9px 15px;
    border: 1px solid rgba(153, 205, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(235, 246, 255, .88);
    font-size: 13px;
}

.aboutx-hero-visual {
    position: relative;
    min-height: 450px;
}

.aboutx-building-card {
    position: absolute;
    inset: 24px 18px 58px 26px;
    padding: 38px;
    border: 1px solid rgba(174, 212, 255, .18);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04)),
        rgba(5, 19, 39, .76);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
}

.aboutx-building-card strong {
    display: block;
    color: #fff;
    font-size: 36px;
    letter-spacing: .18em;
}

.aboutx-building-card span {
    display: block;
    margin-top: 10px;
    color: rgba(226, 238, 255, .72);
}

.aboutx-building-card i {
    display: block;
    height: 34px;
    margin-top: 22px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(53, 211, 255, .38), rgba(8, 125, 255, .08));
}

.aboutx-building-card i:nth-child(4) {
    width: 78%;
}

.aboutx-building-card i:nth-child(5) {
    width: 58%;
}

.aboutx-cert-card {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 180px;
    padding: 24px;
    border: 1px solid rgba(53, 211, 255, .24);
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.aboutx-cert-two {
    left: auto;
    right: 0;
    bottom: 0;
}

.aboutx-cert-card b {
    display: block;
    color: #35d3ff;
    font-size: 34px;
}

.aboutx-cert-card span {
    color: rgba(226, 238, 255, .76);
}

.aboutx-intro-section,
.aboutx-field-section,
.aboutx-team-section,
.aboutx-vision-section,
.aboutx-value-section,
.aboutx-qualification-section,
.aboutx-process-section,
.aboutx-advantage-section {
    padding: 94px 0;
}

.aboutx-intro-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
}

.aboutx-intro-layout {
    display: grid;
    align-items: center;
    gap: 76px;
    grid-template-columns: minmax(0, 1fr) 360px;
}

.aboutx-intro-copy h2,
.aboutx-section-head h2,
.aboutx-team-copy h2,
.aboutx-vision-grid h2,
.aboutx-qualification-layout h2 {
    margin-bottom: 16px;
    color: #10203c;
    font-size: 38px;
    line-height: 1.24;
    letter-spacing: -.045em;
}

.aboutx-intro-copy p + p,
.aboutx-team-copy p + p {
    margin-top: 16px;
}

.aboutx-metric-panel {
    display: grid;
    gap: 14px;
    padding: 34px;
    border: 1px solid #dfeaf7;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(18, 52, 98, .08);
}

.aboutx-metric-panel div {
    padding: 22px;
    border-radius: 18px;
    background: #f5f8fd;
}

.aboutx-metric-panel b {
    display: block;
    color: var(--primary);
    font-size: 34px;
}

.aboutx-metric-panel span {
    color: var(--ink-soft);
}

.aboutx-section-head {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.aboutx-field-section,
.aboutx-value-section,
.aboutx-process-section {
    background: #fff;
}

.aboutx-field-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.aboutx-field-grid article {
    min-height: 268px;
    padding: 30px 26px;
    border: 1px solid #dfeaf7;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #f7fbff);
    box-shadow: 0 16px 44px rgba(18, 52, 98, .05);
}

.aboutx-field-grid span,
.aboutx-value-grid span,
.aboutx-advantage-grid span {
    display: block;
    margin-bottom: 32px;
    color: #c2d4ee;
    font-size: 32px;
    font-weight: 800;
}

.aboutx-field-grid h3,
.aboutx-value-grid h3,
.aboutx-qualification-grid h3,
.aboutx-process-list h3,
.aboutx-advantage-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 22px;
    line-height: 1.35;
}

.aboutx-field-grid p,
.aboutx-value-grid p,
.aboutx-qualification-grid p,
.aboutx-process-list li,
.aboutx-advantage-grid p {
    font-size: 14px;
}

.aboutx-team-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(53, 211, 255, .13), transparent 30%),
        #071426;
}

.aboutx-team-layout {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: 520px 1fr;
}

.aboutx-team-visual {
    position: relative;
    min-height: 420px;
}

.aboutx-team-photo {
    position: absolute;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(8, 125, 255, .88), rgba(53, 211, 255, .52)),
        #0c2d57;
    box-shadow: 0 28px 72px rgba(0, 0, 0, .22);
}

.aboutx-team-photo-main {
    inset: 0 90px 46px 0;
}

.aboutx-team-photo-small {
    right: 0;
    bottom: 0;
    width: 230px;
    height: 180px;
    border: 8px solid #071426;
}

.aboutx-team-photo span {
    position: absolute;
    left: 28px;
    bottom: 26px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .22em;
}

.aboutx-team-copy h2,
.aboutx-team-copy p {
    color: #fff;
}

.aboutx-team-copy p {
    color: rgba(226, 238, 255, .72);
}

.aboutx-vision-section {
    background: #f5f8fd;
}

.aboutx-vision-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.aboutx-vision-grid article {
    min-height: 300px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 20%, rgba(53, 211, 255, .16), transparent 35%),
        #fff;
    box-shadow: 0 20px 54px rgba(18, 52, 98, .08);
}

.aboutx-vision-grid span {
    display: inline-flex;
    margin-bottom: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-weight: 800;
}

.aboutx-vision-grid p {
    color: #8da0ba;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.aboutx-value-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.aboutx-value-grid article {
    min-height: 230px;
    padding: 30px;
    border: 1px solid #dfeaf7;
    border-radius: 22px;
    background: #fff;
}

.aboutx-value-grid article:nth-child(3n + 2) {
    background: #f7fbff;
}

.aboutx-qualification-section {
    background:
        radial-gradient(circle at 82% 18%, rgba(53, 211, 255, .12), transparent 32%),
        #071426;
}

.aboutx-qualification-layout {
    display: grid;
    align-items: center;
    gap: 64px;
    grid-template-columns: 380px 1fr;
}

.aboutx-qualification-layout h2,
.aboutx-qualification-layout p {
    color: #fff;
}

.aboutx-qualification-layout p {
    color: rgba(226, 238, 255, .72);
}

.aboutx-qualification-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

.aboutx-qualification-grid article {
    min-height: 190px;
    padding: 30px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
}

.aboutx-qualification-grid h3,
.aboutx-qualification-grid p {
    color: #fff;
}

.aboutx-qualification-grid p {
    color: rgba(226, 238, 255, .68);
}

.aboutx-process-list {
    display: grid;
    gap: 16px;
}

.aboutx-process-list article {
    display: grid;
    align-items: center;
    gap: 24px;
    grid-template-columns: 86px 220px 1fr;
    padding: 24px 30px;
    border: 1px solid #dfeaf7;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(18, 52, 98, .04);
}

.aboutx-process-list b {
    color: #c2d4ee;
    font-size: 34px;
}

.aboutx-process-list article > div span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.aboutx-process-list ul {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.aboutx-process-list li {
    position: relative;
    padding-left: 16px;
    color: #55657e;
}

.aboutx-process-list li::before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
}

.aboutx-advantage-section {
    background: #f5f8fd;
}

.aboutx-advantage-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
}

.aboutx-advantage-grid article {
    min-height: 230px;
    padding: 28px 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .06);
}

@media (max-width: 1180px) {
    .aboutx-field-grid,
    .aboutx-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aboutx-process-list article {
        grid-template-columns: 70px 190px 1fr;
    }
}

@media (max-width: 991px) {
    .aboutx-hero-grid,
    .aboutx-intro-layout,
    .aboutx-team-layout,
    .aboutx-qualification-layout {
        grid-template-columns: 1fr;
    }

    .aboutx-hero-visual {
        min-height: 430px;
    }

    .aboutx-value-grid,
    .aboutx-qualification-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aboutx-process-list article {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .aboutx-hero {
        min-height: auto;
        padding: 72px 0 88px;
    }

    .aboutx-hero-copy h1,
    .aboutx-intro-copy h2,
    .aboutx-section-head h2,
    .aboutx-team-copy h2,
    .aboutx-vision-grid h2,
    .aboutx-qualification-layout h2 {
        font-size: 29px;
    }

    .aboutx-hero-visual {
        min-height: 350px;
    }

    .aboutx-building-card {
        inset: 0;
        padding: 28px;
    }

    .aboutx-cert-card {
        display: none;
    }

    .aboutx-intro-section,
    .aboutx-field-section,
    .aboutx-team-section,
    .aboutx-vision-section,
    .aboutx-value-section,
    .aboutx-qualification-section,
    .aboutx-process-section,
    .aboutx-advantage-section {
        padding: 62px 0;
    }

    .aboutx-field-grid,
    .aboutx-vision-grid,
    .aboutx-value-grid,
    .aboutx-qualification-grid,
    .aboutx-advantage-grid,
    .aboutx-process-list ul {
        grid-template-columns: 1fr;
    }

    .aboutx-team-visual {
        min-height: 320px;
    }

    .aboutx-team-photo-main {
        inset: 0 40px 40px 0;
    }

    .aboutx-team-photo-small {
        width: 180px;
        height: 136px;
    }
}

.channel-custom-software {
    background: #fff;
}

.csw-hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    padding: 110px 0 128px;
    background:
        radial-gradient(circle at 76% 24%, rgba(8, 125, 255, .28), transparent 30%),
        linear-gradient(118deg, #051021 0%, #0b2a56 58%, #087dff 140%);
    color: #fff;
}

.csw-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    opacity: .38;
}

.csw-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 86px;
    grid-template-columns: minmax(0, 1fr) 460px;
}

.csw-kicker,
.csw-section-title > span,
.csw-plan-card span,
.csw-standard-layout > div > span,
.csw-tech-layout > div > span,
.csw-deliver-layout > div > span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #39ddff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
}

.csw-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(44px, 4.5vw, 66px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.csw-hero-copy p {
    max-width: 700px;
    color: rgba(226, 238, 255, .78);
    font-size: 18px;
}

.csw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.csw-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.csw-hero-tags span {
    padding: 9px 16px;
    border: 1px solid rgba(178, 219, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(239, 248, 255, .88);
    font-size: 13px;
}

.csw-hero-visual {
    position: relative;
    min-height: 430px;
}

.csw-dashboard {
    position: absolute;
    right: 0;
    top: 20px;
    width: 390px;
    min-height: 318px;
    padding: 26px;
    border: 1px solid rgba(183, 220, 255, .2);
    border-radius: 26px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.csw-dashboard-top {
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .18);
}

.csw-chart {
    height: 128px;
    margin-top: 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(57, 221, 255, .5), rgba(8, 125, 255, .18)),
        repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, .1) 27px 28px);
}

.csw-table {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.csw-table i {
    display: block;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.csw-float-card {
    position: absolute;
    z-index: 2;
    min-width: 150px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
}

.csw-float-card strong {
    display: block;
    color: #fff;
    font-size: 24px;
}

.csw-float-card span {
    color: rgba(226, 238, 255, .72);
    font-size: 13px;
}

.csw-float-one {
    left: 0;
    top: 88px;
}

.csw-float-two {
    right: 42px;
    bottom: 34px;
}

.csw-proof-section {
    position: relative;
    z-index: 2;
    margin-top: -70px;
    padding-bottom: 74px;
}

.csw-proof-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.csw-proof-grid article {
    min-height: 196px;
    padding: 28px 26px;
    border: 1px solid #e2ebf6;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 52, 98, .1);
}

.csw-proof-grid span {
    display: block;
    margin-bottom: 30px;
    color: #c5d7ef;
    font-size: 30px;
    font-weight: 800;
}

.csw-proof-grid h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 19px;
}

.csw-proof-grid p {
    font-size: 14px;
}

.csw-section {
    padding: 94px 0;
}

.csw-section-title {
    max-width: 800px;
    margin: 0 auto 46px;
    text-align: center;
}

.csw-section-title h2,
.csw-plan-card h2,
.csw-standard-layout h2,
.csw-tech-layout h2,
.csw-deliver-layout h2,
.csw-final-cta h2 {
    margin-bottom: 14px;
    color: #10203c;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.csw-section-title p {
    font-size: 17px;
}

.csw-service-section,
.csw-solution-section,
.csw-deliver-section {
    background: #f5f8fc;
}

.csw-service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.csw-service-grid article {
    min-height: 430px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(18, 52, 98, .06);
}

.csw-service-grid article > div {
    margin-bottom: 36px;
    color: #c2d4ee;
    font-size: 36px;
    font-weight: 800;
}

.csw-service-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 24px;
}

.csw-service-grid p {
    min-height: 84px;
    font-size: 14px;
}

.csw-service-grid ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.csw-service-grid li {
    color: #344054;
    font-size: 14px;
}

.csw-service-grid li::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
    vertical-align: middle;
}

.csw-plan-band {
    padding: 0;
    background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
}

.csw-plan-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 52px;
    border-radius: 24px;
    background: linear-gradient(112deg, #061426, #0c3470);
    box-shadow: 0 24px 60px rgba(8, 36, 78, .18);
}

.csw-plan-card h2 {
    color: #fff;
    font-size: 30px;
}

.csw-plan-card p {
    color: rgba(226, 238, 255, .74);
}

.csw-solution-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.csw-solution-grid article,
.csw-guarantee-grid article {
    min-height: 230px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: #fff;
}

.csw-solution-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.csw-solution-grid h3,
.csw-case-body h3,
.csw-standard-grid h3,
.csw-flow-grid h3,
.csw-guarantee-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 22px;
}

.csw-solution-grid p,
.csw-case-body p,
.csw-standard-grid p,
.csw-flow-grid p,
.csw-guarantee-grid p {
    font-size: 14px;
}

.csw-case-section,
.csw-flow-section,
.csw-guarantee-section {
    background: #fff;
}

.csw-case-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.csw-case-grid article {
    overflow: hidden;
    border: 1px solid #e0eaf6;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .07);
}

.csw-case-cover {
    display: flex;
    min-height: 196px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(3, 15, 35, .18), transparent),
        linear-gradient(135deg, #0b2d59, #087dff);
    color: #fff;
}

.csw-case-cover span {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    font-size: 13px;
}

.csw-case-cover strong {
    font-size: 13px;
    letter-spacing: .2em;
    opacity: .76;
}

.csw-case-body {
    padding: 26px;
}

.csw-case-body div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.csw-case-body div span {
    padding: 6px 11px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 12px;
}

.csw-standard-section,
.csw-tech-section {
    padding: 88px 0;
    background: #071426;
}

.csw-standard-layout,
.csw-tech-layout {
    display: grid;
    align-items: center;
    gap: 56px;
    grid-template-columns: 360px 1fr;
}

.csw-standard-layout h2,
.csw-standard-layout p,
.csw-tech-layout h2,
.csw-tech-layout p {
    color: #fff;
}

.csw-standard-layout p,
.csw-tech-layout p {
    color: rgba(226, 238, 255, .68);
}

.csw-standard-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.csw-standard-grid article {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.csw-standard-grid h3 {
    color: #fff;
}

.csw-standard-grid p {
    color: rgba(226, 238, 255, .68);
}

.csw-tech-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
}

.csw-tech-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: rgba(235, 246, 255, .9);
    text-align: center;
}

.csw-flow-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(7, 1fr);
}

.csw-flow-grid article {
    min-height: 232px;
    padding: 25px 18px;
    border: 1px solid #e0eaf6;
    border-radius: 18px;
    background: #fff;
}

.csw-flow-grid b {
    display: block;
    margin-bottom: 34px;
    color: #c2d4ee;
    font-size: 31px;
}

.csw-deliver-layout {
    display: grid;
    align-items: center;
    gap: 64px;
    grid-template-columns: 360px 1fr;
}

.csw-deliver-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}

.csw-deliver-grid span {
    padding: 18px 22px;
    border: 1px solid #dfe9f6;
    border-radius: 14px;
    background: #fff;
    color: #173452;
    font-weight: 700;
}

.csw-guarantee-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.csw-final-cta {
    padding: 94px 0;
    background:
        linear-gradient(116deg, rgba(4, 12, 28, .94), rgba(7, 42, 90, .94)),
        #071426;
    text-align: center;
}

.csw-final-cta h2 {
    max-width: 820px;
    margin: 0 auto 15px;
    color: #fff;
}

.csw-final-cta p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: rgba(226, 238, 255, .72);
}

@media (max-width: 1199px) {
    .csw-hero-grid {
        grid-template-columns: 1fr 390px;
        gap: 52px;
    }

    .csw-service-grid,
    .csw-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .csw-flow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .csw-hero-grid,
    .csw-standard-layout,
    .csw-tech-layout,
    .csw-deliver-layout {
        grid-template-columns: 1fr;
    }

    .csw-hero-visual {
        min-height: 420px;
    }

    .csw-proof-grid,
    .csw-solution-grid,
    .csw-case-grid,
    .csw-standard-grid,
    .csw-tech-grid,
    .csw-deliver-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .csw-plan-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .csw-hero {
        min-height: auto;
        padding: 66px 0 86px;
    }

    .csw-hero-visual {
        min-height: 330px;
    }

    .csw-dashboard {
        right: 50%;
        width: 280px;
        transform: translateX(50%);
    }

    .csw-float-card {
        display: none;
    }

    .csw-proof-section {
        margin-top: -42px;
    }

    .csw-section,
    .csw-standard-section,
    .csw-tech-section,
    .csw-final-cta {
        padding: 62px 0;
    }

    .csw-proof-grid,
    .csw-service-grid,
    .csw-solution-grid,
    .csw-case-grid,
    .csw-standard-grid,
    .csw-tech-grid,
    .csw-flow-grid,
    .csw-deliver-grid,
    .csw-guarantee-grid {
        grid-template-columns: 1fr;
    }

    .csw-section-title h2,
    .csw-plan-card h2,
    .csw-standard-layout h2,
    .csw-tech-layout h2,
    .csw-deliver-layout h2,
    .csw-final-cta h2 {
        font-size: 29px;
    }

    .csw-plan-card {
        padding: 30px 24px;
    }
}

.channel-ai-system {
    background: #fff;
}

.aiw-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    padding: 112px 0 132px;
    background:
        radial-gradient(circle at 76% 22%, rgba(36, 225, 255, .22), transparent 30%),
        radial-gradient(circle at 28% 68%, rgba(8, 125, 255, .16), transparent 35%),
        linear-gradient(118deg, #020714 0%, #061426 48%, #0a2a56 100%);
    color: #fff;
}

.aiw-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 58px 58px;
    content: "";
    opacity: .45;
}

.aiw-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 84px;
    grid-template-columns: minmax(0, 1fr) 440px;
}

.aiw-kicker,
.aiw-section-title > span,
.aiw-plan-card span,
.aiw-tech-layout > div > span,
.aiw-deliver-layout > div > span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #49e6ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
}

.aiw-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(44px, 4.5vw, 66px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.aiw-hero-copy p {
    max-width: 700px;
    color: rgba(226, 238, 255, .78);
    font-size: 18px;
}

.aiw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.aiw-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.aiw-hero-tags span {
    padding: 9px 16px;
    border: 1px solid rgba(89, 231, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(239, 248, 255, .88);
    font-size: 13px;
}

.aiw-hero-visual {
    position: relative;
    min-height: 460px;
}

.aiw-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 178px;
    border: 1px solid rgba(82, 231, 255, .38);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(73, 230, 255, .32), rgba(8, 125, 255, .08) 62%, rgba(255, 255, 255, .04));
    box-shadow: 0 0 80px rgba(34, 208, 255, .24);
    color: #fff;
    font-size: 54px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.aiw-core::before,
.aiw-core::after {
    position: absolute;
    border: 1px solid rgba(89, 231, 255, .18);
    border-radius: 50%;
    content: "";
}

.aiw-core::before {
    inset: -58px;
}

.aiw-core::after {
    inset: -112px;
}

.aiw-node {
    position: absolute;
    z-index: 2;
    padding: 12px 18px;
    border: 1px solid rgba(89, 231, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
    color: #eaf8ff;
    font-size: 14px;
    backdrop-filter: blur(12px);
}

.aiw-node-a {
    left: 16px;
    top: 74px;
}

.aiw-node-b {
    right: 0;
    top: 98px;
}

.aiw-node-c {
    left: 0;
    bottom: 98px;
}

.aiw-node-d {
    right: 24px;
    bottom: 78px;
}

.aiw-panel-card {
    position: absolute;
    right: 74px;
    bottom: 0;
    width: 240px;
    padding: 24px;
    border: 1px solid rgba(89, 231, 255, .2);
    border-radius: 22px;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.aiw-panel-card b {
    display: block;
    margin-bottom: 10px;
    color: #57e9ff;
    font-size: 32px;
}

.aiw-panel-card p {
    color: rgba(226, 238, 255, .72);
    font-size: 14px;
}

.aiw-proof-section {
    position: relative;
    z-index: 2;
    margin-top: -70px;
    padding-bottom: 74px;
}

.aiw-proof-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.aiw-proof-grid article {
    min-height: 196px;
    padding: 28px 26px;
    border: 1px solid #e2ebf6;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 52, 98, .1);
}

.aiw-proof-grid span {
    display: block;
    margin-bottom: 30px;
    color: #c5d7ef;
    font-size: 30px;
    font-weight: 800;
}

.aiw-proof-grid h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 19px;
}

.aiw-proof-grid p {
    font-size: 14px;
}

.aiw-section {
    padding: 94px 0;
}

.aiw-section-title {
    max-width: 800px;
    margin: 0 auto 46px;
    text-align: center;
}

.aiw-section-title h2,
.aiw-plan-card h2,
.aiw-tech-layout h2,
.aiw-deliver-layout h2,
.aiw-final-cta h2 {
    margin-bottom: 14px;
    color: #10203c;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.aiw-section-title p {
    font-size: 17px;
}

.aiw-service-section,
.aiw-scenario-section,
.aiw-deliver-section {
    background: #f5f8fc;
}

.aiw-service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.aiw-service-grid article {
    min-height: 430px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(18, 52, 98, .06);
}

.aiw-service-grid article > div {
    margin-bottom: 36px;
    color: #c2d4ee;
    font-size: 36px;
    font-weight: 800;
}

.aiw-service-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 24px;
}

.aiw-service-grid p {
    min-height: 84px;
    font-size: 14px;
}

.aiw-service-grid ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.aiw-service-grid li {
    color: #344054;
    font-size: 14px;
}

.aiw-service-grid li::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
    vertical-align: middle;
}

.aiw-plan-band {
    padding: 0;
    background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
}

.aiw-plan-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 52px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 26%, rgba(73, 230, 255, .16), transparent 30%),
        linear-gradient(112deg, #061426, #0c3470);
    box-shadow: 0 24px 60px rgba(8, 36, 78, .18);
}

.aiw-plan-card h2 {
    color: #fff;
    font-size: 30px;
}

.aiw-plan-card p {
    color: rgba(226, 238, 255, .74);
}

.aiw-scenario-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.aiw-scenario-grid article,
.aiw-reason-grid article,
.aiw-guarantee-grid article {
    min-height: 235px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: #fff;
}

.aiw-scenario-grid span,
.aiw-reason-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.aiw-scenario-grid h3,
.aiw-case-grid h3,
.aiw-reason-grid h3,
.aiw-flow-grid h3,
.aiw-guarantee-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 22px;
}

.aiw-scenario-grid p,
.aiw-case-grid p,
.aiw-reason-grid p,
.aiw-flow-grid p,
.aiw-guarantee-grid p {
    font-size: 14px;
}

.aiw-case-section,
.aiw-flow-section,
.aiw-guarantee-section {
    background: #fff;
}

.aiw-case-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.aiw-case-grid article {
    min-height: 305px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f7fbff);
    box-shadow: 0 16px 42px rgba(18, 52, 98, .06);
}

.aiw-case-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
}

.aiw-case-head span {
    padding: 6px 13px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 13px;
}

.aiw-case-head strong {
    color: #b6c9e3;
    font-size: 12px;
    letter-spacing: .18em;
}

.aiw-case-grid article > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.aiw-case-grid article > div:last-child span {
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(8, 125, 255, .08);
    color: var(--primary);
    font-size: 12px;
}

.aiw-reason-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.aiw-tech-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at 14% 16%, rgba(73, 230, 255, .12), transparent 30%),
        #071426;
}

.aiw-tech-layout {
    display: grid;
    align-items: center;
    gap: 56px;
    grid-template-columns: 360px 1fr;
}

.aiw-tech-layout h2,
.aiw-tech-layout p {
    color: #fff;
}

.aiw-tech-layout p {
    color: rgba(226, 238, 255, .68);
}

.aiw-tech-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
}

.aiw-tech-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: rgba(235, 246, 255, .9);
    text-align: center;
}

.aiw-flow-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(6, 1fr);
}

.aiw-flow-grid article {
    min-height: 230px;
    padding: 26px 20px;
    border: 1px solid #e0eaf6;
    border-radius: 18px;
    background: #fff;
}

.aiw-flow-grid b {
    display: block;
    margin-bottom: 34px;
    color: #c2d4ee;
    font-size: 31px;
}

.aiw-deliver-layout {
    display: grid;
    align-items: center;
    gap: 64px;
    grid-template-columns: 360px 1fr;
}

.aiw-deliver-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

.aiw-deliver-grid span {
    padding: 18px 22px;
    border: 1px solid #dfe9f6;
    border-radius: 14px;
    background: #fff;
    color: #173452;
    font-weight: 700;
}

.aiw-guarantee-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.aiw-final-cta {
    padding: 94px 0;
    background:
        linear-gradient(116deg, rgba(4, 12, 28, .94), rgba(7, 42, 90, .94)),
        #071426;
    text-align: center;
}

.aiw-final-cta h2 {
    max-width: 800px;
    margin: 0 auto 15px;
    color: #fff;
}

.aiw-final-cta p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: rgba(226, 238, 255, .72);
}

@media (max-width: 1199px) {
    .aiw-hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 52px;
    }

    .aiw-service-grid,
    .aiw-reason-grid,
    .aiw-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aiw-flow-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .aiw-hero-grid,
    .aiw-tech-layout,
    .aiw-deliver-layout {
        grid-template-columns: 1fr;
    }

    .aiw-hero-visual {
        min-height: 430px;
    }

    .aiw-proof-grid,
    .aiw-scenario-grid,
    .aiw-case-grid,
    .aiw-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aiw-plan-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .aiw-hero {
        min-height: auto;
        padding: 66px 0 86px;
    }

    .aiw-hero-visual {
        min-height: 360px;
    }

    .aiw-core {
        width: 138px;
        height: 138px;
        font-size: 42px;
    }

    .aiw-node,
    .aiw-panel-card {
        display: none;
    }

    .aiw-proof-section {
        margin-top: -42px;
    }

    .aiw-section,
    .aiw-tech-section,
    .aiw-final-cta {
        padding: 62px 0;
    }

    .aiw-proof-grid,
    .aiw-service-grid,
    .aiw-scenario-grid,
    .aiw-case-grid,
    .aiw-reason-grid,
    .aiw-tech-grid,
    .aiw-flow-grid,
    .aiw-deliver-grid,
    .aiw-guarantee-grid {
        grid-template-columns: 1fr;
    }

    .aiw-section-title h2,
    .aiw-plan-card h2,
    .aiw-tech-layout h2,
    .aiw-deliver-layout h2,
    .aiw-final-cta h2 {
        font-size: 29px;
    }

    .aiw-plan-card {
        padding: 30px 24px;
    }
}

.channel-mini-program {
    background: #fff;
}

.mp-hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    padding: 110px 0 128px;
    background:
        radial-gradient(circle at 74% 22%, rgba(26, 154, 255, .32), transparent 30%),
        linear-gradient(118deg, #041128 0%, #082f65 56%, #087dff 130%);
    color: #fff;
}

.mp-hero::before {
    position: absolute;
    right: -150px;
    bottom: -230px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    content: "";
}

.mp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 86px;
    grid-template-columns: minmax(0, 1fr) 430px;
}

.mp-kicker,
.mp-section-title > span,
.mp-plan-card span,
.mp-client-layout > div > span,
.mp-deliver-layout > div > span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #31dfff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
}

.mp-hero-copy h1 {
    max-width: 720px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(44px, 4.5vw, 66px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.mp-hero-copy p {
    max-width: 680px;
    color: rgba(228, 240, 255, .8);
    font-size: 18px;
}

.mp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.mp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.mp-hero-tags span {
    padding: 9px 16px;
    border: 1px solid rgba(178, 219, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(239, 248, 255, .88);
    font-size: 13px;
}

.mp-hero-visual {
    position: relative;
    min-height: 430px;
}

.mp-phone-card {
    position: absolute;
    right: 42px;
    top: 0;
    width: 270px;
    height: 430px;
    padding: 24px 20px;
    border: 8px solid rgba(255, 255, 255, .9);
    border-radius: 38px;
    background: linear-gradient(180deg, #f7fbff 0%, #e8f2ff 100%);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .32);
}

.mp-phone-top {
    width: 74px;
    height: 7px;
    margin: 0 auto 25px;
    border-radius: 999px;
    background: #cbd8ea;
}

.mp-phone-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 126px;
    border-radius: 24px;
    background: linear-gradient(135deg, #087dff, #0ed6ff);
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: .06em;
}

.mp-phone-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
}

.mp-phone-row span {
    height: 58px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(18, 52, 98, .08);
}

.mp-phone-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.mp-phone-list i {
    display: block;
    height: 36px;
    border-radius: 999px;
    background: #fff;
}

.mp-float-card {
    position: absolute;
    min-width: 150px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
}

.mp-float-card strong {
    display: block;
    color: #fff;
    font-size: 24px;
}

.mp-float-card span {
    color: rgba(226, 238, 255, .72);
    font-size: 13px;
}

.mp-float-card-one {
    left: 0;
    top: 86px;
}

.mp-float-card-two {
    right: 0;
    bottom: 40px;
}

.mp-proof-section {
    position: relative;
    z-index: 2;
    margin-top: -70px;
    padding-bottom: 74px;
}

.mp-proof-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.mp-proof-grid article {
    min-height: 190px;
    padding: 28px 26px;
    border: 1px solid #e2ebf6;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 52, 98, .1);
}

.mp-proof-grid span {
    display: block;
    margin-bottom: 30px;
    color: #c5d7ef;
    font-size: 30px;
    font-weight: 800;
}

.mp-proof-grid h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 19px;
}

.mp-proof-grid p {
    font-size: 14px;
}

.mp-section {
    padding: 94px 0;
}

.mp-section-title {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.mp-section-title h2,
.mp-plan-card h2,
.mp-client-layout h2,
.mp-deliver-layout h2,
.mp-final-cta h2 {
    margin-bottom: 14px;
    color: #10203c;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.mp-section-title p {
    font-size: 17px;
}

.mp-scope-section,
.mp-industry-section,
.mp-deliver-section {
    background: #f5f8fc;
}

.mp-scope-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.mp-scope-grid article {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(18, 52, 98, .06);
}

.mp-scope-index {
    margin-bottom: 36px;
    color: #c2d4ee;
    font-size: 36px;
    font-weight: 800;
}

.mp-scope-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 24px;
}

.mp-scope-grid p {
    min-height: 84px;
    font-size: 14px;
}

.mp-scope-grid ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.mp-scope-grid li {
    color: #344054;
    font-size: 14px;
}

.mp-scope-grid li::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
    vertical-align: middle;
}

.mp-plan-band {
    padding: 0;
    background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
}

.mp-plan-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 52px;
    border-radius: 24px;
    background: linear-gradient(112deg, #061426, #0c3470);
    box-shadow: 0 24px 60px rgba(8, 36, 78, .18);
}

.mp-plan-card h2 {
    color: #fff;
    font-size: 30px;
}

.mp-plan-card p {
    color: rgba(226, 238, 255, .74);
}

.mp-why-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.mp-why-grid article {
    min-height: 250px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: #fff;
}

.mp-why-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 32px;
    border-radius: 18px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.mp-why-grid h3,
.mp-case-body h3,
.mp-flow-grid h3,
.mp-guarantee-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 22px;
}

.mp-why-grid p,
.mp-case-body p,
.mp-flow-grid p,
.mp-guarantee-grid p {
    font-size: 14px;
}

.mp-industry-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, 1fr);
}

.mp-industry-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    border: 1px solid #dfe9f6;
    border-radius: 14px;
    background: #fff;
    color: #173452;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(18, 52, 98, .04);
}

.mp-case-section,
.mp-flow-section,
.mp-guarantee-section {
    background: #fff;
}

.mp-case-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.mp-case-grid article {
    overflow: hidden;
    border: 1px solid #e0eaf6;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .07);
}

.mp-case-cover {
    display: flex;
    min-height: 200px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(3, 15, 35, .18), transparent),
        linear-gradient(135deg, #0b2d59, #087dff);
    color: #fff;
}

.mp-case-cover span {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    font-size: 13px;
}

.mp-case-cover strong {
    font-size: 13px;
    letter-spacing: .2em;
    opacity: .76;
}

.mp-case-body {
    padding: 26px;
}

.mp-case-body div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.mp-case-body div span {
    padding: 6px 11px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 12px;
}

.mp-client-section {
    padding: 88px 0;
    background: #071426;
}

.mp-client-layout {
    display: grid;
    align-items: center;
    gap: 54px;
    grid-template-columns: 320px 1fr;
}

.mp-client-layout h2,
.mp-client-layout p {
    color: #fff;
}

.mp-client-layout p {
    color: rgba(226, 238, 255, .68);
}

.mp-client-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
}

.mp-client-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: rgba(235, 246, 255, .9);
}

.mp-flow-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(6, 1fr);
}

.mp-flow-grid article {
    min-height: 230px;
    padding: 26px 20px;
    border: 1px solid #e0eaf6;
    border-radius: 18px;
    background: #fff;
}

.mp-flow-grid b {
    display: block;
    margin-bottom: 34px;
    color: #c2d4ee;
    font-size: 31px;
}

.mp-deliver-layout {
    display: grid;
    align-items: center;
    gap: 64px;
    grid-template-columns: 360px 1fr;
}

.mp-deliver-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

.mp-deliver-grid span {
    padding: 18px 22px;
    border: 1px solid #dfe9f6;
    border-radius: 14px;
    background: #fff;
    color: #173452;
    font-weight: 700;
}

.mp-guarantee-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.mp-guarantee-grid article {
    min-height: 220px;
    padding: 30px;
    border: 1px solid #e0eaf6;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.mp-final-cta {
    padding: 94px 0;
    background:
        linear-gradient(116deg, rgba(4, 12, 28, .94), rgba(7, 42, 90, .94)),
        #071426;
    text-align: center;
}

.mp-final-cta h2 {
    max-width: 780px;
    margin: 0 auto 15px;
    color: #fff;
}

.mp-final-cta p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: rgba(226, 238, 255, .72);
}

@media (max-width: 1199px) {
    .mp-hero-grid {
        grid-template-columns: 1fr 370px;
        gap: 48px;
    }

    .mp-scope-grid,
    .mp-why-grid,
    .mp-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-flow-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .mp-hero-grid,
    .mp-client-layout,
    .mp-deliver-layout {
        grid-template-columns: 1fr;
    }

    .mp-hero-visual {
        min-height: 420px;
    }

    .mp-proof-grid,
    .mp-case-grid,
    .mp-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-plan-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .mp-hero {
        min-height: auto;
        padding: 66px 0 86px;
    }

    .mp-hero-visual {
        min-height: 350px;
    }

    .mp-phone-card {
        right: 50%;
        width: 232px;
        height: 350px;
        transform: translateX(50%);
    }

    .mp-float-card {
        display: none;
    }

    .mp-proof-section {
        margin-top: -42px;
    }

    .mp-section,
    .mp-client-section,
    .mp-final-cta {
        padding: 62px 0;
    }

    .mp-proof-grid,
    .mp-scope-grid,
    .mp-why-grid,
    .mp-industry-grid,
    .mp-case-grid,
    .mp-client-grid,
    .mp-flow-grid,
    .mp-deliver-grid,
    .mp-guarantee-grid {
        grid-template-columns: 1fr;
    }

    .mp-section-title h2,
    .mp-plan-card h2,
    .mp-client-layout h2,
    .mp-deliver-layout h2,
    .mp-final-cta h2 {
        font-size: 29px;
    }

    .mp-plan-card {
        padding: 30px 24px;
    }
}

.channel-page .channel-hero-modern {
    padding: 96px 0 94px;
    background:
        linear-gradient(116deg, rgba(4, 12, 28, .94), rgba(7, 35, 74, .94)),
        #061021;
}

.channel-mini-program .channel-hero-modern {
    background: linear-gradient(120deg, #06142c 0%, #0a4385 100%);
}

.channel-ai-system .channel-hero-modern {
    background:
        radial-gradient(circle at 76% 18%, rgba(40, 216, 255, .2), transparent 34%),
        linear-gradient(120deg, #020714 0%, #071c38 100%);
}

.channel-custom-software .channel-hero-modern {
    background: linear-gradient(120deg, #071426 0%, #17365f 100%);
}

.channel-solutions .channel-hero-modern {
    background: linear-gradient(120deg, #051326 0%, #0b2d59 58%, #087dff 150%);
}

.channel-cases .channel-hero-modern {
    background: linear-gradient(120deg, #050d1c 0%, #10233e 100%);
}

.channel-saas .channel-hero-modern {
    background: linear-gradient(120deg, #061021 0%, #12336b 100%);
}

.channel-news .channel-hero-modern,
.channel-about .channel-hero-modern,
.channel-contact .channel-hero-modern {
    background: linear-gradient(120deg, #061021 0%, #0c274e 100%);
}

.channel-hero-grid {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: minmax(0, 1fr) 390px;
}

.channel-hero-copy h1 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.14;
    letter-spacing: -.05em;
}

.channel-hero-copy p {
    max-width: 640px;
    color: rgba(226, 237, 252, .76);
    font-size: 18px;
}

.channel-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.channel-hero-tags span {
    padding: 8px 14px;
    border: 1px solid rgba(153, 205, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(235, 246, 255, .86);
    font-size: 13px;
}

.channel-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.channel-hero-panel {
    padding: 34px;
    border: 1px solid rgba(153, 205, 255, .18);
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.channel-hero-panel > strong {
    display: block;
    margin-bottom: 18px;
    color: #48dfff;
    font-size: 12px;
    letter-spacing: .24em;
}

.channel-hero-panel h2 {
    color: #fff;
    font-size: 25px;
    line-height: 1.45;
}

.channel-metric-grid {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    grid-template-columns: 1fr;
}

.channel-metric-grid div {
    padding: 18px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .08);
}

.channel-metric-grid b {
    display: block;
    color: #61e7ff;
    font-size: 25px;
}

.channel-metric-grid span {
    display: block;
    margin-top: 5px;
    color: rgba(230, 240, 255, .72);
    font-size: 14px;
}

.channel-section {
    padding: 92px 0;
}

.channel-section-head {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.channel-section-head.align-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.channel-section-head h2,
.mini-scene-layout h2,
.custom-architecture-copy h2,
.ai-scenario-card h2,
.news-topic-panel h2,
.contact-need-panel h2,
.about-company-layout h2 {
    margin-bottom: 14px;
    color: #10203c;
    font-size: 36px;
    line-height: 1.22;
    letter-spacing: -.04em;
}

.mini-service-section,
.solution-map-section,
.news-channel-section {
    background: #f6f9fd;
}

.mini-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.mini-card-grid article {
    min-height: 245px;
    padding: 28px;
    border: 1px solid #e3edf8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(20, 53, 105, .05);
}

.mini-card-grid span {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.mini-card-grid h3,
.custom-system-grid h3,
.ai-capability-grid h3,
.solution-industry-grid h3,
.channel-case-grid h3,
.saas-product-deck h3,
.about-value-grid h3,
.contact-process-grid h3 {
    margin-bottom: 12px;
    color: #10203c;
    font-size: 22px;
}

.mini-card-grid p,
.custom-system-grid p,
.ai-capability-grid p,
.solution-industry-grid p,
.channel-case-grid p,
.saas-product-deck p,
.about-value-grid p,
.contact-process-grid p {
    font-size: 14px;
}

.mini-scene-section,
.custom-value-section,
.about-value-section {
    background: #fff;
}

.mini-scene-layout {
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: 360px 1fr;
}

.mini-scene-cloud,
.saas-module-cloud,
.contact-need-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mini-scene-cloud span,
.saas-module-cloud span,
.contact-need-grid span {
    padding: 16px 22px;
    border: 1px solid #dfeaf7;
    border-radius: 999px;
    background: #fff;
    color: #173452;
    box-shadow: 0 10px 26px rgba(18, 52, 98, .04);
    font-size: 15px;
}

.delivery-strip-section,
.custom-delivery-section,
.contact-process-section {
    background: #071426;
}

.delivery-strip,
.custom-delivery-board,
.contact-process-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.delivery-strip article,
.custom-delivery-board article,
.contact-process-grid article {
    min-height: 210px;
    padding: 28px 24px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.delivery-strip span,
.custom-delivery-board b,
.contact-process-grid b {
    display: block;
    margin-bottom: 26px;
    color: #56e4ff;
    font-size: 28px;
}

.delivery-strip h3,
.custom-delivery-board h3,
.contact-process-grid h3 {
    color: #fff;
}

.delivery-strip p,
.custom-delivery-board p,
.contact-process-grid p {
    color: rgba(222, 234, 250, .72);
    font-size: 14px;
}

.ai-lab-section {
    background: #071426;
}

.ai-lab-section .channel-section-head h2 {
    color: #fff;
}

.ai-lab-section .channel-section-head p {
    color: rgba(222, 234, 250, .72);
}

.ai-capability-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.ai-capability-grid article {
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(10, 44, 86, .88), rgba(7, 20, 38, .88));
}

.ai-capability-grid h3 {
    color: #fff;
}

.ai-capability-grid p {
    color: rgba(222, 234, 250, .7);
}

.ai-scenario-section,
.custom-architecture-section,
.saas-product-section {
    background: #f6f9fd;
}

.ai-scenario-layout {
    display: grid;
    gap: 30px;
    grid-template-columns: 380px 1fr;
}

.ai-scenario-card,
.contact-need-panel,
.about-metric-card {
    padding: 36px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .07);
}

.ai-scenario-card > span {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
}

.ai-scenario-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.ai-scenario-list span {
    padding: 25px;
    border: 1px solid #e1ebf7;
    border-radius: 16px;
    background: #fff;
    color: #173452;
}

.ai-process-section,
.blueprint-section {
    background: #fff;
}

.ai-process-line,
.blueprint-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, 1fr);
}

.ai-process-line article,
.blueprint-grid article,
.custom-value-grid article,
.about-value-grid article {
    padding: 30px;
    border: 1px solid #e2ebf6;
    border-radius: 18px;
    background: #fff;
}

.ai-process-line b,
.blueprint-grid span,
.custom-value-grid span {
    display: block;
    margin-bottom: 24px;
    color: #c7d8ef;
    font-size: 34px;
}

.custom-architecture {
    display: grid;
    gap: 56px;
    grid-template-columns: 360px 1fr;
}

.custom-system-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.custom-system-grid article {
    padding: 28px;
    border: 1px solid #e1ebf7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 52, 98, .05);
}

.custom-value-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.solution-industry-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.solution-industry-grid article {
    padding: 28px;
    border: 1px solid #e2ebf6;
    border-radius: 18px;
    background: #fff;
}

.blueprint-grid article {
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.case-showcase-section {
    background: #071426;
}

.case-showcase-section .channel-section-head h2 {
    color: #fff;
}

.case-showcase-section .channel-section-head p {
    color: rgba(222, 234, 250, .7);
}

.channel-case-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.channel-case-grid article {
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(174, 212, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.channel-case-grid span {
    display: inline-flex;
    margin-bottom: 34px;
    padding: 6px 13px;
    border: 1px solid rgba(53, 211, 255, .34);
    border-radius: 999px;
    color: #35d3ff;
    font-size: 13px;
}

.channel-case-grid h3 {
    color: #fff;
}

.channel-case-grid p {
    color: rgba(222, 234, 250, .7);
}

.channel-case-grid a,
.saas-product-deck a,
.news-article-list a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.saas-product-deck {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.saas-product-deck article {
    min-height: 270px;
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .07);
}

.saas-module-cloud {
    margin-top: 34px;
}

.news-channel-layout {
    display: grid;
    gap: 42px;
    grid-template-columns: 300px 1fr;
}

.news-topic-panel {
    position: sticky;
    top: 24px;
    align-self: start;
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .07);
}

.news-topic-panel div {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.news-topic-panel a {
    padding: 13px 15px;
    border-radius: 12px;
    background: #f4f8fd;
    color: #233750;
}

.news-topic-panel a:hover {
    background: var(--primary);
    color: #fff;
}

.news-article-list {
    display: grid;
    gap: 18px;
}

.news-article-list article {
    padding: 30px 34px;
    border: 1px solid #e2ebf6;
    border-radius: 20px;
    background: #fff;
}

.news-article-list article > span {
    display: block;
    margin-bottom: 12px;
    color: #8090a7;
    font-size: 13px;
}

.news-article-list h3 {
    margin-bottom: 10px;
    color: #10203c;
    font-size: 24px;
}

.about-company-section {
    background: #fff;
}

.about-company-layout {
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1fr 360px;
}

.about-company-layout p + p {
    margin-top: 16px;
}

.about-metric-card {
    display: grid;
    gap: 18px;
}

.about-metric-card b {
    display: block;
    color: var(--primary);
    font-size: 34px;
}

.about-metric-card span {
    color: var(--ink-soft);
}

.about-value-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.about-timeline-section {
    background: #f6f9fd;
}

.about-timeline {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.about-timeline article {
    padding: 28px;
    border-radius: 18px;
    background: #fff;
}

.about-timeline b {
    display: block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 30px;
}

.contact-main-section {
    background: #f6f9fd;
}

.contact-main-layout {
    display: grid;
    gap: 34px;
    grid-template-columns: 430px 1fr;
}

.contact-methods {
    display: grid;
    gap: 18px;
}

.contact-methods a {
    display: block;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 52, 98, .06);
}

.contact-methods span {
    display: block;
    margin-bottom: 10px;
    color: #8090a7;
    font-size: 14px;
}

.contact-methods strong {
    color: #10203c;
    font-size: 22px;
}

.contact-need-grid {
    margin-top: 24px;
}

.channel-cta-section {
    padding: 0 0 86px;
    background: #f6f9fd;
}

.channel-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px 54px;
    border-radius: 24px;
    background: linear-gradient(112deg, #071426, #103269);
}

.channel-cta-card h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 30px;
}

.channel-cta-card p {
    color: rgba(224, 236, 250, .72);
}

@media (max-width: 991px) {
    .channel-hero-grid,
    .mini-scene-layout,
    .ai-scenario-layout,
    .custom-architecture,
    .news-channel-layout,
    .about-company-layout,
    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .mini-card-grid,
    .ai-capability-grid,
    .delivery-strip,
    .custom-delivery-board,
    .ai-process-line,
    .blueprint-grid,
    .solution-industry-grid,
    .channel-case-grid,
    .saas-product-deck,
    .about-timeline,
    .contact-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-value-grid,
    .about-value-grid,
    .custom-system-grid,
    .ai-scenario-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-topic-panel,
    .industry-copy {
        position: static;
    }

    .channel-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .channel-page .channel-hero-modern {
        padding: 66px 0 70px;
    }

    .channel-section {
        padding: 62px 0;
    }

    .channel-hero-panel,
    .ai-scenario-card,
    .contact-need-panel,
    .about-metric-card,
    .channel-cta-card {
        padding: 26px;
    }

    .channel-section-head h2,
    .mini-scene-layout h2,
    .custom-architecture-copy h2,
    .ai-scenario-card h2,
    .news-topic-panel h2,
    .contact-need-panel h2,
    .about-company-layout h2 {
        font-size: 28px;
    }

    .mini-card-grid,
    .ai-capability-grid,
    .delivery-strip,
    .custom-delivery-board,
    .ai-process-line,
    .blueprint-grid,
    .solution-industry-grid,
    .channel-case-grid,
    .saas-product-deck,
    .about-timeline,
    .contact-process-grid,
    .custom-value-grid,
    .about-value-grid,
    .custom-system-grid,
    .ai-scenario-list {
        grid-template-columns: 1fr;
    }
}
