.website-page {
    background: var(--site-bg);
    color: #16315f;
}

.website-main {
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 720px, rgba(35, 132, 255, .055), transparent 30%),
        radial-gradient(ellipse at 50% 1640px, rgba(35, 132, 255, .045), transparent 28%),
        linear-gradient(180deg, var(--site-bg-soft) 0%, var(--site-bg) 100%);
}

.web-shell {
    width: min(1600px, calc(100% - 72px));
    margin: 0 auto;
}

.web-hero {
    position: relative;
    height: 550px;
    min-height: 550px;
    padding: 96px 0 104px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 8, 25, .98) 0%, rgba(1, 14, 40, .92) 27%, rgba(2, 18, 48, .52) 43%, rgba(2, 18, 48, .1) 58%, rgba(2, 18, 48, 0) 70%),
        url("/template/xqd/assets/images/website/website-banner.webp") 70% center / cover no-repeat;
}

.web-hero::before,
.web-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.web-hero::before {
    background: linear-gradient(90deg, rgba(0, 10, 31, .28) 0%, rgba(0, 10, 31, .12) 28%, transparent 48%);
    opacity: .72;
}

.web-hero::after {
    background: none;
    opacity: 0;
}

.web-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(420px, 690px) minmax(0, 1fr);
    align-items: center;
    min-height: 350px;
    gap: 28px;
}

.web-hero-copy {
    max-width: 680px;
    padding-left: 0;
}

.web-hero-copy h1 {
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 16px 36px rgba(0, 20, 70, .46);
}

.web-hero-copy h2 {
    margin: 0 0 18px;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #f5f9ff;
    letter-spacing: 0;
}

.web-hero-copy p {
    width: min(690px, 100%);
    margin: 0;
    color: #d9e9ff;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}

.web-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
}

.web-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 166px;
    height: 54px;
    padding: 0 28px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.web-btn:hover,
.web-btn:focus-visible {
    transform: translateY(-2px);
}

.web-btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #2f95ff 0%, #066dff 100%);
    box-shadow: 0 18px 34px rgba(5, 93, 235, .34);
}

.web-btn-outline {
    color: #edf6ff;
    border-color: rgba(224, 238, 255, .68);
    background: rgba(255, 255, 255, .05);
}

.web-hero-metrics {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    display: grid;
    grid-template-columns: 1.08fr .96fr 1.26fr 1.16fr 1.14fr;
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid rgba(112, 181, 255, .42);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(25, 88, 182, .24), rgba(3, 28, 86, .38)),
        rgba(2, 14, 48, .16);
    box-shadow:
        0 12px 28px rgba(0, 17, 58, .24),
        inset 0 1px 0 rgba(128, 200, 255, .2),
        inset 0 -1px 0 rgba(33, 123, 255, .24),
        inset 0 0 30px rgba(27, 119, 255, .12);
    backdrop-filter: blur(12px) saturate(142%);
    -webkit-backdrop-filter: blur(12px) saturate(142%);
}

.web-hero-metrics::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: 9px;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(70, 165, 255, .1), transparent 40%),
        linear-gradient(90deg, rgba(31, 119, 255, .1), transparent 18%, transparent 82%, rgba(31, 119, 255, .1));
}

.web-hero-metrics article {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 13px 18px;
    background: transparent;
}

.web-hero-metrics article + article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(205, 230, 255, .36), transparent);
}

.web-hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.22;
    font-weight: 800;
}

.web-hero-metrics span {
    display: block;
    margin-top: 3px;
    color: #c7e2ff;
    font-size: 13px;
    line-height: 1.35;
}

.web-hero-metrics article:nth-child(-n + 2) strong {
    color: #2f9aff;
    font-size: 22px;
}

.web-icon,
.web-line-icon,
.web-mini-icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.web-icon {
    width: 44px;
    height: 44px;
    color: #fff;
}

.web-icon::before,
.web-icon::after,
.web-line-icon::before,
.web-line-icon::after,
.web-mini-icon::before,
.web-mini-icon::after {
    content: "";
    position: absolute;
}

.web-icon-globe::before,
.web-icon-global::before {
    inset: 4px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.web-icon-globe::after,
.web-icon-global::after {
    inset: 13px 6px;
    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 50%;
}

.web-icon-chart::before {
    left: 7px;
    bottom: 7px;
    width: 38px;
    height: 30px;
    background: linear-gradient(135deg, transparent 35%, currentColor 36% 46%, transparent 47%);
}

.web-icon-chart::after {
    left: 8px;
    bottom: 7px;
    width: 8px;
    height: 20px;
    box-shadow: 12px -8px 0 currentColor, 24px -18px 0 currentColor;
    background: currentColor;
}

.web-icon-ai::before {
    inset: 6px;
    border: 2px dashed currentColor;
    border-radius: 50%;
}

.web-icon-ai::after {
    content: "AI";
    position: static;
    font-size: 16px;
    font-weight: 800;
}

.web-icon-lock::before {
    left: 12px;
    top: 22px;
    width: 28px;
    height: 22px;
    border: 3px solid currentColor;
    border-radius: 5px;
}

.web-icon-lock::after {
    left: 18px;
    top: 8px;
    width: 16px;
    height: 20px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.web-section {
    position: relative;
    background: var(--site-bg);
}

.web-section-title {
    margin: 0 0 24px;
    color: #102d63;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
}

.web-problems {
    padding: 32px 0 30px;
    background:
        linear-gradient(180deg, var(--site-bg-tint) 0%, var(--site-bg-soft) 46%, var(--site-bg) 100%);
}

.web-problems .web-section-title {
    margin-bottom: 22px;
    color: #102c61;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .86);
}

.web-problem-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    padding: 0 48px;
}

.web-problem-grid article,
.web-gain-grid article {
    min-height: 150px;
    border: 1px solid #dceafb;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 26px rgba(18, 74, 146, .08);
}

.web-problem-grid article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 150px;
    padding: 19px 14px 17px;
    text-align: center;
}

.web-problem-grid article::after {
    display: none;
}

.web-problem-icon,
.web-problem-grid h3 {
    position: relative;
    z-index: 1;
}

.web-problem-grid h3,
.web-gain-grid h3,
.web-process-grid h3,
.web-industry-grid h3,
.web-case-cover h3 {
    margin: 0;
    color: #13336a;
    font-weight: 800;
    letter-spacing: 0;
}

.web-problem-grid h3 {
    color: #1a3567;
    font-size: 16px;
    line-height: 1.48;
    font-weight: 700;
}

.web-line-icon {
    width: 56px;
    height: 56px;
    color: #1378ff;
    filter: drop-shadow(0 8px 12px rgba(18, 112, 255, .16));
}

.web-problem-icon {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.icon-pen::before {
    width: 10px;
    height: 43px;
    border: 3px solid currentColor;
    border-radius: 999px;
    transform: rotate(40deg);
}

.icon-pen::after {
    width: 34px;
    height: 27px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 0 0 0 18px;
    transform: translate(4px, 14px) rotate(-23deg);
}

.icon-world::before {
    inset: 7px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.icon-world::after {
    inset: 17px 10px;
    border-left: 3px solid currentColor;
    border-right: 3px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 -13px 0 -11px currentColor, 0 13px 0 -11px currentColor;
}

.icon-structure::before {
    top: 7px;
    left: 22px;
    width: 13px;
    height: 13px;
    border: 3px solid currentColor;
    border-radius: 3px;
    box-shadow: -20px 31px 0 -3px #fff, -20px 31px 0 0 currentColor, 20px 31px 0 -3px #fff, 20px 31px 0 0 currentColor;
}

.icon-structure::after {
    top: 26px;
    left: 28px;
    width: 2px;
    height: 18px;
    background: currentColor;
    box-shadow: -20px 18px 0 currentColor, 20px 18px 0 currentColor;
}

.icon-phone::before {
    inset: 7px 16px;
    border: 3px solid currentColor;
    border-radius: 7px;
}

.icon-phone::after {
    left: 26px;
    bottom: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.icon-doc::before {
    inset: 9px 12px;
    border: 3px solid currentColor;
    border-radius: 6px;
}

.icon-doc::after {
    left: 22px;
    right: 22px;
    top: 24px;
    height: 3px;
    background: currentColor;
    box-shadow: 0 10px 0 currentColor, 0 20px 0 currentColor;
}

.icon-brand::before {
    inset: 7px 14px;
    border: 4px solid currentColor;
    border-radius: 6px;
}

.icon-brand::after {
    left: 22px;
    top: 17px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 4px solid currentColor;
    box-shadow: 0 22px 0 -8px currentColor;
}

.icon-ai::before {
    inset: 8px;
    border: 4px dashed currentColor;
    border-radius: 50%;
}

.icon-ai::after {
    content: "AI";
    position: static;
    color: currentColor;
    font-size: 16px;
    font-weight: 800;
}

.icon-service::before {
    inset: 8px;
    border: 4px solid currentColor;
    border-radius: 50%;
}

.icon-service::after {
    left: 28px;
    top: 8px;
    width: 6px;
    height: 46px;
    border-radius: 99px;
    background: currentColor;
    box-shadow: -16px 16px 0 -1px currentColor, 16px 16px 0 -1px currentColor;
}

.web-process {
    padding: 10px 0 30px;
    background: #f7fbff;
}

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

.web-process .web-shell {
    position: relative;
    z-index: 1;
}

.web-process .web-section-title {
    margin-bottom: 12px;
    color: #102d63;
    font-size: 28px;
    line-height: 1.16;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .88);
}

.web-process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 38px;
    padding: 0 4px;
}

.web-process-grid article {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 184px;
    padding: 17px 17px 16px;
    border: 1px solid rgba(217, 232, 250, .95);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow:
        0 12px 28px rgba(22, 74, 145, .08),
        inset 0 1px 0 rgba(255, 255, 255, .96);
}

.web-process-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -29px;
    top: 52%;
    width: 21px;
    height: 15px;
    background: linear-gradient(90deg, #1880ff, #0b70ff);
    clip-path: polygon(0 39%, 66% 39%, 66% 0, 100% 50%, 66% 100%, 66% 61%, 0 61%);
    transform: translateY(-50%);
    filter: drop-shadow(0 3px 5px rgba(18, 112, 255, .18));
}

.web-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, #2a94ff 0%, #0870ff 100%);
    box-shadow: 0 7px 14px rgba(12, 108, 245, .2);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.web-process-grid h3 {
    min-height: 50px;
    color: #143366;
    font-size: 18px;
    line-height: 1.36;
    font-weight: 800;
}

.web-process-grid p {
    margin: 10px 0 0;
    color: #6a7d98;
    font-size: 13px;
    line-height: 1.58;
    font-weight: 500;
}

.web-platform {
    padding: 0 0 30px;
    background: #f7fbff;
}

.web-platform-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 16px;
}

.web-map-card,
.web-architecture-card,
.web-more-card {
    border: 1px solid #d7e7f8;
    border-radius: 8px;
    background: linear-gradient(180deg, #f9fcff 0%, #eef7ff 100%);
    box-shadow: 0 15px 36px rgba(19, 72, 145, .08);
}

.web-map-card,
.web-architecture-card {
    min-height: 318px;
    padding: 18px 26px 22px;
}

.web-map-card {
    position: relative;
    overflow: hidden;
    border-color: #d9e9fb;
    background:
        radial-gradient(circle at 50% 48%, rgba(99, 167, 255, .18), transparent 46%),
        linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
    box-shadow:
        0 14px 34px rgba(35, 94, 166, .09),
        inset 0 1px 0 rgba(255, 255, 255, .98);
}

.web-map-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(77, 147, 239, .045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(77, 147, 239, .04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: .72;
}

.web-map-card::after,
.web-architecture-card::after {
    display: none;
}

.web-map-card > * {
    position: relative;
    z-index: 1;
}

.web-map-card h2,
.web-architecture-card h2 {
    margin: 0;
    color: #103168;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
}

.web-map-card h2 {
    color: #102d63;
    font-size: 27px;
    line-height: 1.14;
}

.web-map-card > p {
    margin: 7px 0 0;
    color: #58749c;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    text-align: center;
}

.web-map {
    position: relative;
    height: 188px;
    margin: 2px auto 0;
}

.web-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .98;
    filter: none;
}

.web-map span {
    position: absolute;
    min-width: 72px;
    padding: 6px 12px;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(180deg, #2c8fff 0%, #056aff 100%);
    box-shadow: 0 8px 17px rgba(8, 105, 245, .24);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}

.map-en { left: 10%; top: 24%; }
.map-fr { left: 43%; top: 21%; }
.map-de { left: 65%; top: 37%; }
.map-jp { right: 6%; top: 45%; }
.map-es { left: 17%; top: 54%; }
.map-ar { left: 50%; top: 62%; }

.web-map-card footer {
    margin-top: 3px;
    color: #58749c;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
}

.web-architecture-card {
    position: relative;
    overflow: hidden;
    border-color: #d9e9fb;
    background:
        radial-gradient(circle at 36% 56%, rgba(82, 154, 255, .16), transparent 44%),
        linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
    box-shadow:
        0 14px 34px rgba(35, 94, 166, .09),
        inset 0 1px 0 rgba(255, 255, 255, .98);
}

.web-architecture-card > * {
    position: relative;
    z-index: 1;
}

.web-map-card,
.web-architecture-card {
    border-bottom-color: #d9e9fb;
}

.web-architecture {
    position: relative;
    display: grid;
    grid-template-columns: 372px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    min-height: 242px;
    margin-top: 14px;
}

.web-architecture::before {
    content: "";
    position: absolute;
    left: 122px;
    top: 54px;
    width: 230px;
    height: 176px;
    border: 1px solid rgba(180, 215, 255, .56);
    border-radius: 10px;
    background: rgba(255, 255, 255, .42);
    box-shadow: inset 0 0 22px rgba(89, 157, 255, .08);
}

.web-site-tree {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    width: 205px;
    min-height: 222px;
    padding: 52px 18px 18px;
    border: 1px solid #d7e8fa;
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 34px rgba(31, 91, 160, .12);
}

.web-site-tree::before {
    content: "";
    position: absolute;
    left: 76px;
    top: 20px;
    width: 92px;
    height: 9px;
    border-radius: 9px;
    background: #e4f0ff;
}

.web-window-dots {
    position: absolute;
    left: 18px;
    top: 19px;
    display: flex;
    gap: 7px;
}

.web-window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff5c8b;
}

.web-window-dots i:nth-child(2) {
    background: #ffd76b;
}

.web-window-dots i:nth-child(3) {
    background: #70d8b1;
}

.web-site-tree strong,
.web-site-tree span {
    position: relative;
    display: block;
    height: 35px;
    padding: 0 12px 0 35px;
    border-radius: 6px;
    line-height: 35px;
    font-size: 14px;
    font-weight: 800;
}

.web-site-tree strong {
    color: #fff;
    background: linear-gradient(90deg, #0b6eff 0%, #1686ff 100%);
    box-shadow: 0 8px 16px rgba(12, 111, 255, .22);
}

.web-site-tree span {
    margin-top: 9px;
    color: #5c7daa;
    background: #f5f9ff;
}

.web-site-tree strong::before,
.web-site-tree span::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 4px;
    transform: translateY(-50%);
    opacity: .95;
}

.web-site-tree span:nth-of-type(1)::before {
    border-radius: 50%;
}

.web-site-tree span:nth-of-type(2)::before,
.web-site-tree span:nth-of-type(3)::before {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: 0 8px 0 -3px currentColor;
}

.web-site-tree span:nth-of-type(4)::before {
    width: 10px;
    height: 13px;
    border-radius: 5px 5px 4px 4px;
}

.web-node-list {
    position: absolute;
    z-index: 3;
    grid-column: 1;
    grid-row: 1;
    left: 202px;
    top: 61px;
    display: grid;
    width: 150px;
    gap: 13px;
}

.web-node-list::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 18px;
    bottom: 18px;
    width: 27px;
    border-top: 1px solid #9ecaff;
    border-bottom: 1px solid #9ecaff;
    border-left: 1px solid #9ecaff;
    border-radius: 8px 0 0 8px;
}

.web-node-list::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -18px -22px -18px -22px;
    border: 1px solid rgba(214, 232, 255, .84);
    border-radius: 10px;
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 14px 28px rgba(42, 109, 191, .08);
}

.web-node-list span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border: 1px solid #d4e7fb;
    border-radius: 8px;
    color: #0c6eff;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    box-shadow: 0 9px 18px rgba(23, 104, 221, .1);
    font-size: 14px;
    font-weight: 800;
}

.web-node-list span::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
    width: 28px;
    height: 1px;
    background: #9ecaff;
}

.web-node-list span::after {
    content: "";
    position: absolute;
    right: -23px;
    top: 50%;
    width: 23px;
    height: 1px;
    background: #c1ddff;
}

.web-architecture-points {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1;
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #dceafa;
    border-radius: 10px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 16px 32px rgba(31, 91, 160, .09);
}

.web-architecture-points section {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 13px;
    align-items: center;
    min-height: 47px;
}

.web-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #0d78ff;
    background: linear-gradient(180deg, #eef8ff 0%, #dceeff 100%);
    box-shadow:
        inset 0 0 0 1px rgba(67, 147, 255, .13),
        0 8px 16px rgba(18, 111, 255, .12);
}

.web-mini-icon.icon-shield::before {
    left: 13px;
    top: 10px;
    width: 16px;
    height: 20px;
    border: 3px solid currentColor;
    border-radius: 4px;
}

.web-mini-icon.icon-shield::after {
    right: 7px;
    bottom: 8px;
    width: 11px;
    height: 11px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.web-mini-icon.icon-chat::before {
    left: 8px;
    top: 10px;
    width: 22px;
    height: 17px;
    border: 3px solid currentColor;
    border-radius: 10px;
}

.web-mini-icon.icon-chat::after {
    right: 8px;
    bottom: 8px;
    width: 12px;
    height: 12px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.web-mini-icon.icon-flow::before {
    left: 18px;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: -11px 17px 0 currentColor, 11px 17px 0 currentColor;
}

.web-mini-icon.icon-flow::after {
    left: 21px;
    top: 18px;
    width: 3px;
    height: 14px;
    background: currentColor;
    box-shadow: -10px 9px 0 -1px currentColor, 10px 9px 0 -1px currentColor;
}

.web-mini-icon.icon-lock::before {
    left: 11px;
    top: 20px;
    width: 22px;
    height: 16px;
    border: 3px solid currentColor;
    border-radius: 5px;
}

.web-mini-icon.icon-lock::after {
    left: 16px;
    top: 8px;
    width: 12px;
    height: 15px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.web-architecture-points h3 {
    margin: 0 0 4px;
    color: #153a72;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.web-architecture-points p {
    margin: 0;
    color: #617797;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.web-gains {
    padding: 4px 0 30px;
    background: #f7fbff;
}

.web-gains .web-section-title {
    margin-bottom: 11px;
    color: #102c61;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
}

.web-gain-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.web-gain-grid article {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    row-gap: 3px;
    align-items: center;
    min-height: 104px;
    padding: 14px 14px;
    border-color: #dceafb;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow:
        0 10px 24px rgba(21, 79, 150, .07),
        inset 0 1px 0 rgba(255, 255, 255, .98);
}

.web-gain-grid .web-line-icon,
.web-gain-grid .web-gain-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 50px;
    height: 50px;
}

.web-gain-grid .web-line-icon {
    border-radius: 12px;
    color: #0d75ff;
    background: linear-gradient(180deg, #edf7ff 0%, #dcecff 100%);
    box-shadow:
        inset 0 0 0 1px rgba(72, 151, 255, .16),
        0 9px 16px rgba(14, 112, 255, .13);
    filter: none;
}

.web-gain-grid .web-gain-icon {
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(14, 112, 255, .12));
}

.web-gain-grid .icon-service::before {
    inset: 9px;
    border-width: 3px;
}

.web-gain-grid .icon-service::after {
    left: 24px;
    top: 11px;
    width: 5px;
    height: 34px;
    box-shadow: -13px 13px 0 -1px currentColor, 13px 13px 0 -1px currentColor;
}

.web-gain-grid h3 {
    grid-column: 2;
    align-self: end;
    color: #18386d;
    font-size: 15px;
    line-height: 1.28;
    font-weight: 800;
}

.web-gain-grid p {
    grid-column: 2;
    align-self: start;
    margin: 4px 0 0;
    color: #5f789d;
    font-size: 13px;
    line-height: 1.42;
    font-weight: 500;
}

.web-industries {
    padding: 0 0 30px;
    background: #f7fbff;
}

.web-industries .web-section-title,
.web-cases .web-section-title,
.web-faq .web-section-title {
    margin-bottom: 12px;
}

.web-industries .web-section-title {
    color: #102c61;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
}

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

.web-industry-grid article {
    position: relative;
    min-height: 156px;
    overflow: hidden;
    border: 1px solid #d5e5f7;
    border-radius: 8px;
    background: #eaf4ff;
    box-shadow: 0 14px 30px rgba(23, 73, 143, .09);
}

.web-industry-grid img {
    display: block;
    width: 100%;
    height: 156px;
    object-fit: cover;
    filter: none;
}

.web-industry-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, transparent 42%, rgba(232, 244, 255, .42) 100%);
}

.web-industry-grid div {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 9px;
    min-height: 56px;
    padding: 10px 12px 9px;
    border: 1px solid rgba(207, 226, 247, .82);
    border-radius: 8px;
    text-align: center;
    background: rgba(238, 247, 255, .84);
    box-shadow: 0 10px 22px rgba(23, 73, 143, .1);
    backdrop-filter: blur(10px);
}

.web-industry-grid h3 {
    color: #15366c;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.web-industry-grid p {
    margin: 4px 0 0;
    color: #51739f;
    font-size: 13px;
    line-height: 1.32;
    font-weight: 500;
}

.web-cases {
    padding: 0 0 32px;
    background: #f7fbff;
}

.web-cases::after {
    display: none;
}

.web-case-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.web-case-grid article {
    position: relative;
    overflow: hidden;
    border: 1px solid #d9e7f8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(23, 73, 143, .09);
}

.web-case-grid article::after {
    display: none;
}

.web-case-cover {
    position: relative;
    min-height: 116px;
    padding: 22px 24px;
    overflow: hidden;
    color: #fff;
    background: #073378;
}

.web-case-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95) hue-rotate(178deg) brightness(.82);
}

.web-case-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 18, 52, .86), rgba(5, 69, 164, .56), rgba(7, 96, 200, .16));
}

.web-case-cover h3,
.web-case-cover p {
    position: relative;
    z-index: 1;
}

.web-case-cover h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.32;
}

.web-case-cover p {
    margin: 8px 0 0;
    color: #b9d9ff;
    font-size: 13px;
}

.web-case-grid footer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 74px;
    background: #fff;
}

.web-case-grid footer span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #58749b;
    font-size: 12px;
    line-height: 1.28;
    text-align: center;
}

.web-case-grid footer span + span {
    border-left: 1px solid #e3edf8;
}

.web-case-grid footer strong {
    color: #0877ff;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
}

.web-faq {
    padding: 8px 0 28px;
    background: #f7fbff;
}

.web-faq::before {
    display: none;
}

.web-faq .web-shell {
    position: relative;
    z-index: 1;
}

.web-faq .web-section-title {
    margin-bottom: 8px;
    color: #102c61;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
}

.web-faq-grid {
    display: grid;
    grid-template-columns: 41% minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.web-faq-list {
    overflow: hidden;
    min-height: 154px;
    border: 1px solid #d7e8fa;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 30px rgba(23, 73, 143, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.web-faq-list details {
    border-bottom: 1px solid #e1edf8;
}

.web-faq-list details:last-child {
    border-bottom: 0;
}

.web-faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 38px;
    padding: 0 50px 0 36px;
    color: #183b72;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
}

.web-faq-list summary::-webkit-details-marker {
    display: none;
}

.web-faq-list summary::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #5277aa;
    border-bottom: 2px solid #5277aa;
    transform: translateY(-62%) rotate(45deg);
}

.web-faq-list details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.web-faq-list summary span {
    flex: 0 0 22px;
    color: #10376e;
    text-align: right;
}

.web-faq-list p {
    margin: 0;
    padding: 0 54px 12px 72px;
    color: #657a99;
    font-size: 13px;
    line-height: 1.55;
}

.web-more-card {
    position: relative;
    min-height: 154px;
    padding: 20px clamp(270px, 32%, 445px) 16px 48px;
    overflow: hidden;
    border: 1px solid #d7e8fa;
    border-radius: 10px;
    background: #eef6ff;
    box-shadow: 0 14px 30px rgba(23, 73, 143, .08), inset 0 1px 0 rgba(255, 255, 255, .88);
}

.web-more-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(250, 253, 255, .9) 33%, rgba(248, 252, 255, .56) 52%, rgba(248, 252, 255, .12) 70%, transparent 100%);
    pointer-events: none;
}

.web-more-card > div:first-child {
    position: relative;
    z-index: 2;
}

.web-more-card h3 {
    margin: 0 0 8px;
    color: #183b72;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.web-more-card p {
    max-width: 460px;
    margin: 0 0 10px;
    color: #617997;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.web-more-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 114px;
    padding: 0 22px;
    border: 2px solid #77aafa;
    border-radius: 9px;
    color: #0b73ff;
    background: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 18px rgba(14, 116, 255, .12);
}

.web-security-visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.web-security-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.web-bottom-cta {
    padding: 0;
    background: #f7fbff;
}

.web-bottom-cta-inner {
    position: relative;
    display: grid;
    width: min(1760px, calc(100% - 160px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    min-height: 128px;
    padding: 26px clamp(52px, 5.8vw, 112px);
    overflow: hidden;
    border: 1px solid rgba(62, 126, 227, .72);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    color: #fff;
    background:
        radial-gradient(circle at 76% 42%, rgba(56, 150, 255, .2), transparent 34%),
        linear-gradient(90deg, rgba(2, 14, 45, .84), rgba(3, 21, 63, .36) 47%, rgba(2, 14, 45, .84));
    box-shadow: 0 -8px 26px rgba(10, 62, 148, .11), inset 0 1px 0 rgba(134, 190, 255, .32);
}

.web-bottom-cta-inner::before,
.web-bottom-cta-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.web-bottom-cta-inner::before {
    background:
        linear-gradient(90deg, rgba(0, 101, 255, .18), transparent 18%, transparent 82%, rgba(0, 101, 255, .18)),
        radial-gradient(circle at 50% 100%, rgba(4, 101, 255, .25), transparent 42%);
}

.web-bottom-cta-inner::after {
    top: auto;
    height: 34px;
    background: linear-gradient(180deg, transparent, rgba(0, 15, 48, .62));
}

.web-bottom-cta h2,
.web-bottom-cta p,
.web-bottom-actions {
    position: relative;
    z-index: 1;
}

.web-bottom-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 19, 68, .46);
}

.web-bottom-cta p {
    margin: 10px 0 0;
    color: #c7d7f3;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
}

.web-bottom-actions {
    display: flex;
    gap: 28px;
    align-items: center;
}

.web-bottom-actions .web-btn {
    min-width: 210px;
    height: 58px;
    border-radius: 7px;
    font-size: 17px;
    font-weight: 800;
}

.website-home-cta .hm-cta-banner h2::after {
    display: none;
}

.website-home-cta .hm-cta-banner p {
    margin-top: 12px;
}

.web-bottom-actions .web-btn-primary {
    background: linear-gradient(180deg, #1489ff 0%, #0472ff 100%);
    box-shadow: 0 12px 24px rgba(0, 107, 255, .34), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.web-bottom-actions .web-btn-outline {
    border: 2px solid rgba(198, 221, 255, .45);
    color: #f3f8ff;
    background: rgba(255, 255, 255, .04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

@media (max-width: 1500px) {
    .web-shell {
        width: min(1600px, calc(100% - 72px));
    }

    .web-hero {
        height: 550px;
        min-height: 550px;
        padding-top: 96px;
        padding-bottom: 104px;
    }

    .web-hero-inner {
        grid-template-columns: minmax(420px, .9fr) minmax(550px, 1.1fr);
    }

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

    .web-hero-copy h2 {
        font-size: 23px;
    }

    .web-hero-copy p {
        font-size: 16px;
    }

    .web-btn {
        min-width: 166px;
        height: 54px;
        font-size: 16px;
    }

    .web-problem-grid {
        gap: 28px;
        padding: 0 34px;
    }

    .web-process-grid {
        gap: 36px;
        padding: 0 28px;
    }

    .web-process-grid article:not(:last-child)::after {
        right: -27px;
    }

    .web-architecture {
        grid-template-columns: 372px minmax(0, 1fr);
        gap: 24px;
    }

    .web-gain-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .web-bottom-cta-inner {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (max-width: 1180px) {
    .web-hero {
        height: auto;
        min-height: 620px;
        margin-bottom: 0;
        padding: 104px 0 132px;
        overflow: hidden;
        background:
            linear-gradient(90deg, rgba(0, 8, 25, .98) 0%, rgba(1, 14, 40, .9) 30%, rgba(2, 18, 48, .48) 52%, rgba(2, 18, 48, .12) 72%, rgba(2, 18, 48, 0) 100%),
            url("/ChatGPT%20Image%202026%E5%B9%B46%E6%9C%882%E6%97%A5%2017_15_44.webp") 62% center / cover no-repeat;
    }

    .web-hero::before {
        background: linear-gradient(90deg, rgba(0, 10, 31, .32) 0%, rgba(0, 10, 31, .14) 38%, transparent 62%);
        opacity: .72;
    }

    .web-hero::after {
        background: none;
        opacity: 0;
    }

    .web-hero-inner {
        grid-template-columns: minmax(0, 680px);
        min-height: 320px;
        gap: 0;
    }

    .web-hero-copy {
        max-width: 680px;
        padding-left: 0;
    }

    .web-hero-metrics {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        bottom: 0;
    }

    .web-hero-metrics article {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        min-height: 82px;
        padding: 9px 6px;
        text-align: center;
    }

    .web-hero-metrics .web-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        transform: none;
    }

    .web-hero-metrics .web-icon::before,
    .web-hero-metrics .web-icon::after {
        box-sizing: border-box;
    }

    .web-hero-metrics .web-icon-globe::before,
    .web-hero-metrics .web-icon-global::before {
        inset: 5px;
        border-width: 2px;
    }

    .web-hero-metrics .web-icon-globe::after,
    .web-hero-metrics .web-icon-global::after {
        inset: 10px 7px;
        border-left-width: 1.5px;
        border-right-width: 1.5px;
    }

    .web-hero-metrics .web-icon-chart::before {
        left: 5px;
        bottom: 6px;
        width: 22px;
        height: 18px;
    }

    .web-hero-metrics .web-icon-chart::after {
        left: 6px;
        bottom: 6px;
        width: 5px;
        height: 12px;
        box-shadow: 8px -5px 0 currentColor, 16px -11px 0 currentColor;
    }

    .web-hero-metrics .web-icon-ai::before {
        inset: 5px;
        border-width: 2px;
    }

    .web-hero-metrics .web-icon-ai::after {
        font-size: 11px;
    }

    .web-hero-metrics .web-icon-lock::before {
        left: 6px;
        top: 15px;
        width: 18px;
        height: 12px;
        border-width: 2px;
        border-radius: 4px;
    }

    .web-hero-metrics .web-icon-lock::after {
        left: 10px;
        top: 5px;
        width: 10px;
        height: 13px;
        border-width: 2px;
        border-radius: 10px 10px 0 0;
    }

    .web-hero-metrics strong {
        font-size: 15px;
    }

    .web-hero-metrics article:nth-child(-n + 2) strong {
        font-size: 17px;
    }

    .web-hero-metrics article:nth-child(5) {
        grid-column: auto;
    }

    .web-problem-grid,
    .web-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0;
    }

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

    .web-platform-grid,
    .web-faq-grid,
    .web-bottom-cta-inner {
        grid-template-columns: 1fr;
    }

    .web-bottom-cta-inner {
        justify-items: center;
        text-align: center;
    }

    .web-more-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
        gap: 24px;
        align-items: center;
        min-height: 190px;
        padding: 26px 28px 26px 32px;
        background: linear-gradient(135deg, #f8fcff 0%, #edf6ff 100%);
    }

    .web-more-card::before {
        background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(248, 252, 255, .9) 48%, rgba(235, 246, 255, .58) 100%);
    }

    .web-more-card > div:first-child {
        max-width: 520px;
    }

    .web-more-card h3 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .web-more-card p {
        max-width: none;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.65;
    }

    .web-more-card a {
        height: 38px;
        min-width: 128px;
    }

    .web-security-visual {
        position: relative;
        inset: auto;
        width: 100%;
        height: 138px;
        overflow: hidden;
        border: 1px solid rgba(118, 173, 239, .32);
        border-radius: 8px;
        opacity: .96;
        box-shadow: 0 14px 28px rgba(26, 91, 171, .14);
    }

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

    .web-case-grid {
        grid-template-columns: 1fr;
    }

    .web-bottom-actions {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .web-shell {
        width: min(100% - 32px, 640px);
    }

    .web-hero {
        min-height: 620px;
        padding: 104px 0 136px;
        background-position: 60% center;
    }

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

    .web-hero-copy h2 {
        font-size: 21px;
    }

    .web-hero-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .web-hero-actions {
        gap: 14px;
        margin-top: 24px;
    }

    .web-btn {
        min-width: 138px;
        height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }

    .web-hero-metrics {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        bottom: 0;
    }

    .web-hero-metrics article,
    .web-hero-metrics article:nth-child(5) {
        grid-column: auto;
        gap: 4px;
        min-height: 76px;
        padding: 8px 4px;
    }

    .web-hero-metrics article + article::before {
        left: 0;
        right: auto;
        top: 16px;
        bottom: 16px;
        width: 1px;
        height: auto;
    }

    .web-hero-metrics .web-icon {
        width: 30px;
        height: 30px;
    }

    .web-hero-metrics strong,
    .web-hero-metrics article:nth-child(-n + 2) strong {
        font-size: 15px;
        line-height: 1.16;
    }

    .web-hero-metrics span {
        font-size: 11.5px;
        line-height: 1.24;
    }

    .web-section-title,
    .web-map-card h2,
    .web-architecture-card h2 {
        font-size: 23px;
    }

    .web-problems {
        padding-top: 28px;
    }

    .web-problem-grid,
    .web-process-grid,
    .web-gain-grid,
    .web-industry-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .web-problem-grid article {
        min-height: 130px;
    }

    .web-process-grid article {
        min-height: auto;
    }

    .web-process-grid h3 {
        min-height: 0;
    }

    .web-map-card,
    .web-architecture-card {
        padding: 18px;
    }

    .web-map {
        height: 180px;
    }

    .web-map span {
        padding: 5px 8px;
        font-size: 11px;
    }

    .web-architecture {
        grid-template-columns: 1fr;
    }

    .web-node-list::before,
    .web-node-list span::before {
        display: none;
    }

    .web-gain-grid article {
        min-height: 90px;
    }

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

    .web-case-grid footer span {
        min-height: 56px;
    }

    .web-case-grid footer span + span {
        border-left: 0;
        border-top: 1px solid #e3edf8;
    }

    .web-faq-list summary {
        min-height: 52px;
        padding-left: 18px;
        padding-right: 42px;
        font-size: 14px;
    }

    .web-faq-list summary::after {
        right: 18px;
    }

    .web-faq-list p {
        padding-left: 48px;
        padding-right: 22px;
    }

    .web-more-card {
        min-height: 292px;
        padding: 22px 20px 150px;
    }

    .web-more-card p {
        max-width: none;
    }

    .web-security-visual {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 146px;
        opacity: .95;
    }

    .web-bottom-cta-inner {
        min-height: 0;
        padding: 24px 18px;
        border-radius: 10px 10px 0 0;
    }

    .web-bottom-cta h2 {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        font-size: 22px;
        white-space: normal;
    }

    .web-bottom-cta p {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .web-bottom-actions {
        flex-wrap: wrap;
        gap: 12px;
    }

    .web-bottom-actions .web-btn {
        min-width: 138px;
        height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .web-hero {
        min-height: 690px;
        padding-bottom: 190px;
        background-position: 56% center;
    }

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

    .web-hero-copy h2 {
        font-size: 18px;
    }

    .web-hero-actions .web-btn {
        flex: 1 1 0;
        min-width: 0;
    }

    .web-problem-grid h3 {
        font-size: 16px;
    }

    .web-map {
        height: 150px;
    }

    .map-en { left: 6%; top: 25%; }
    .map-fr { left: 37%; top: 21%; }
    .map-de { left: 57%; top: 35%; }
    .map-jp { right: 0; top: 49%; }
    .map-es { left: 10%; top: 54%; }
    .map-ar { left: 48%; top: 61%; }

    .web-industry-grid img {
        height: 150px;
    }
}

@media (max-width: 760px) {
    .web-architecture {
        display: block;
        min-height: 0;
    }

    .web-architecture::before {
        display: none;
    }

    .web-site-tree {
        width: 100%;
        min-height: 0;
        padding: 50px 18px 18px;
    }

    .web-node-list {
        position: relative;
        left: auto;
        top: auto;
        width: min(100%, 260px);
        margin: 16px auto 0;
        gap: 10px;
    }

    .web-node-list::before,
    .web-node-list span::before,
    .web-node-list span::after {
        display: none;
    }

    .web-node-list::after {
        inset: -12px;
    }

    .web-architecture-points {
        width: 100%;
        margin-top: 18px;
        padding: 14px;
    }

    .web-architecture-points section {
        grid-template-columns: 44px 1fr;
    }
}

@media (min-width: 721px) and (max-width: 820px) {
    .web-shell {
        width: min(100% - 48px, 720px);
    }

    .web-hero {
        min-height: 608px;
        padding: 104px 0 130px;
    }

    .web-hero-metrics {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        bottom: 0;
    }

    .web-hero-metrics article,
    .web-hero-metrics article:nth-child(5) {
        min-height: 76px;
        padding: 8px 4px;
    }

    .web-hero-metrics article:nth-child(5) {
        grid-column: auto;
    }

    .web-problem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .web-problem-grid article {
        min-height: 118px;
        padding: 18px 12px 16px;
    }

    .web-problem-grid h3 {
        font-size: 15px;
        line-height: 1.42;
    }

    .web-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .web-process-grid article {
        min-height: 150px;
        padding: 16px 14px 15px;
    }

    .web-process-grid span {
        margin-bottom: 12px;
    }

    .web-process-grid h3 {
        min-height: 44px;
        font-size: 16px;
    }

    .web-process-grid p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.5;
    }

    .web-gain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .web-industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .web-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .web-case-grid article:last-child {
        grid-column: 1 / -1;
    }

    .web-case-cover {
        min-height: 142px;
        padding: 20px 22px;
    }

    .web-case-grid footer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 76px;
    }

    .web-case-grid footer span {
        min-height: 76px;
        padding: 8px 6px;
        font-size: 11px;
    }

    .web-case-grid footer span + span {
        border-left: 1px solid #e3edf8;
        border-top: 0;
    }

    .web-case-grid footer strong {
        font-size: 20px;
    }

    .web-more-card {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 18px;
        min-height: 178px;
        padding: 24px 22px;
    }

    .web-more-card h3 {
        font-size: 20px;
    }

    .web-more-card p {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .web-security-visual {
        height: 130px;
    }
}

@media (max-width: 520px) {
    .web-hero {
        min-height: 648px;
        padding: 104px 0 176px;
        background-position: 66% center;
    }

    .web-hero::before {
        background:
            linear-gradient(180deg, rgba(1, 10, 33, .12) 0%, rgba(1, 12, 37, .28) 46%, rgba(1, 18, 54, .72) 100%),
            linear-gradient(90deg, rgba(0, 9, 31, .98) 0%, rgba(1, 18, 50, .92) 56%, rgba(1, 28, 78, .56) 100%);
        opacity: 1;
    }

    .web-hero::after {
        background: radial-gradient(circle at 76% 50%, rgba(14, 110, 255, .2), transparent 42%);
        opacity: .68;
    }

    .web-hero-copy {
        max-width: 360px;
    }

    .web-hero-copy h1 {
        font-size: 31px;
        line-height: 1.18;
    }

    .web-hero-copy h2 {
        max-width: 350px;
        font-size: 18px;
        line-height: 1.38;
    }

    .web-hero-copy p {
        max-width: 350px;
        font-size: 14px;
        line-height: 1.72;
        color: #dcecff;
    }

    .web-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .web-hero-metrics {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 8px;
        bottom: 18px;
        padding: 10px;
        overflow: visible;
        border-radius: 16px;
        background:
            linear-gradient(180deg, rgba(20, 96, 204, .18), rgba(3, 27, 82, .46)),
            rgba(3, 18, 56, .72);
        box-shadow:
            0 16px 28px rgba(0, 18, 66, .28),
            inset 0 1px 0 rgba(143, 207, 255, .28),
            inset 0 0 30px rgba(27, 119, 255, .16);
    }

    .web-hero-metrics article,
    .web-hero-metrics article:nth-child(5) {
        flex-direction: row;
        justify-content: flex-start;
        gap: 9px;
        text-align: left;
        min-height: 58px;
        padding: 10px 11px;
        border: 1px solid rgba(153, 211, 255, .18);
        border-radius: 12px;
        background: rgba(255, 255, 255, .07);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .web-hero-metrics article:nth-child(1),
    .web-hero-metrics article:nth-child(2) {
        grid-column: span 3;
    }

    .web-hero-metrics article:nth-child(n + 3) {
        grid-column: span 2;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 78px;
        padding: 9px 4px 8px;
        text-align: center;
    }

    .web-hero-metrics article:nth-child(5) {
        grid-column: span 2;
    }

    .web-hero-metrics article + article::before {
        display: none;
    }

    .web-hero-metrics .web-icon {
        width: 28px;
        height: 28px;
        margin-right: 0;
        transform: none;
    }

    .web-hero-metrics article div {
        min-width: 0;
    }

    .web-hero-metrics strong,
    .web-hero-metrics article:nth-child(-n + 2) strong {
        font-size: 17px;
        line-height: 1.18;
    }

    .web-hero-metrics article:nth-child(n + 3) strong {
        font-size: 11.5px;
        line-height: 1.18;
        white-space: nowrap;
    }

    .web-hero-metrics span {
        font-size: 11.5px;
        line-height: 1.28;
    }

    .web-hero-metrics article:nth-child(n + 3) span {
        margin-top: 0;
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .web-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .web-problem-grid article {
        height: auto;
        min-height: 112px;
        padding: 13px 8px 12px;
        gap: 8px;
    }

    .web-problem-icon {
        width: 42px;
        height: 42px;
    }

    .web-problem-grid h3 {
        font-size: 13.5px;
        line-height: 1.38;
    }

    .web-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .web-process-grid article {
        display: flex;
        flex-direction: column;
        min-height: 150px;
        padding: 14px 12px;
    }

    .web-process-grid span {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .web-process-grid h3 {
        min-height: 0;
        font-size: 14.5px;
        line-height: 1.36;
    }

    .web-process-grid p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.45;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .web-gain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .web-gain-grid article {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        justify-items: center;
        min-height: 146px;
        padding: 15px 10px 13px;
        text-align: center;
    }

    .web-gain-grid .web-gain-icon,
    .web-gain-grid .web-line-icon {
        grid-row: auto;
        grid-column: 1;
        width: 42px;
        height: 42px;
    }

    .web-gain-grid h3 {
        grid-column: 1;
        align-self: auto;
        font-size: 14px;
        line-height: 1.34;
    }

    .web-gain-grid p {
        grid-column: 1;
        margin-top: 2px;
        font-size: 12px;
        line-height: 1.42;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media (max-width: 720px) {
    .web-architecture-card {
        padding: 18px 14px 16px;
    }

    .web-architecture-card h2 {
        font-size: clamp(21px, 5.4vw, 24px);
        line-height: 1.22;
    }

    .web-architecture {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch;
        min-height: 0;
        margin-top: 12px;
    }

    .web-site-tree {
        grid-column: 1;
        grid-row: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        min-height: 0;
        padding: 36px 12px 12px;
        border-radius: 10px;
    }

    .web-site-tree::before {
        left: 84px;
        right: 18px;
        top: 17px;
        width: auto;
        height: 8px;
    }

    .web-window-dots {
        left: 16px;
        top: 17px;
    }

    .web-site-tree strong,
    .web-site-tree span {
        height: 32px;
        margin-top: 0;
        padding: 0 8px 0 29px;
        font-size: 13px;
        line-height: 32px;
    }

    .web-site-tree strong {
        grid-column: 1 / -1;
    }

    .web-site-tree strong::before,
    .web-site-tree span::before {
        left: 10px;
        width: 11px;
        height: 11px;
        border-width: 2px;
    }

    .web-site-tree span:nth-of-type(2)::before,
    .web-site-tree span:nth-of-type(3)::before {
        width: 10px;
        height: 10px;
        box-shadow: 0 7px 0 -3px currentColor;
    }

    .web-node-list {
        position: relative;
        left: auto;
        top: auto;
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin: 10px 0 0;
        gap: 8px;
    }

    .web-node-list::after {
        inset: -8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .5);
        box-shadow: none;
    }

    .web-node-list span {
        height: 34px;
        border-radius: 7px;
        font-size: 13px;
        box-shadow: 0 6px 14px rgba(23, 104, 221, .08);
    }

    .web-architecture-points {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .web-architecture-points section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 118px;
        padding: 11px 8px 10px;
        border: 1px solid #dceafa;
        border-radius: 8px;
        background: rgba(255, 255, 255, .86);
        text-align: center;
    }

    .web-architecture-points .web-mini-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .web-architecture-points h3 {
        margin-bottom: 4px;
        font-size: 13.5px;
        line-height: 1.28;
    }

    .web-architecture-points p {
        font-size: 11.5px;
        line-height: 1.36;
    }

    .web-more-card {
        display: block;
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
        padding: 18px 16px 16px;
        overflow: hidden;
        border-radius: 12px;
        border-color: #d6e8fb;
        background:
            radial-gradient(circle at 92% 18%, rgba(25, 135, 255, .16), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
        box-shadow:
            0 12px 24px rgba(23, 73, 143, .08),
            inset 0 1px 0 rgba(255, 255, 255, .9);
    }

    .web-more-card::before {
        background:
            linear-gradient(90deg, rgba(16, 115, 255, .08), transparent 40%),
            linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .5));
    }

    .web-more-card::after {
        content: "";
        position: absolute;
        right: -18px;
        bottom: -22px;
        z-index: 1;
        width: 118px;
        height: 118px;
        border-radius: 50%;
        background:
            radial-gradient(circle, rgba(43, 141, 255, .18) 0 38%, transparent 39%),
            radial-gradient(circle, rgba(43, 141, 255, .08), transparent 64%);
        pointer-events: none;
    }

    .web-more-card > div:first-child {
        max-width: none;
    }

    .web-more-card h3 {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 9px;
        font-size: 20px;
    }

    .web-more-card h3::before {
        content: "?";
        display: inline-flex;
        flex: 0 0 30px;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 9px;
        color: #fff;
        background: linear-gradient(180deg, #36a0ff 0%, #0874ff 100%);
        box-shadow: 0 8px 16px rgba(8, 116, 255, .24);
        font-size: 19px;
        line-height: 1;
        font-weight: 800;
    }

    .web-more-card p {
        max-width: none;
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.62;
    }

    .web-more-card a {
        width: 100%;
        height: 44px;
        border: 0;
        border-radius: 9px;
        color: #fff;
        background: linear-gradient(180deg, #2f9bff 0%, #0872ff 100%);
        box-shadow: 0 12px 22px rgba(8, 114, 255, .2);
    }

    .web-security-visual {
        display: none;
    }

    .web-case-cover {
        min-height: 136px;
        padding: 20px 18px;
    }

    .web-case-grid footer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 72px;
    }

    .web-case-grid footer span {
        min-height: 72px;
        padding: 8px 4px;
        font-size: 11px;
    }

    .web-case-grid footer span + span {
        border-left: 1px solid #e3edf8;
        border-top: 0;
    }

    .web-case-grid footer strong {
        font-size: 18px;
    }
}
