:root {
    --font-family-base: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
    --color-white: #ffffff;
    --color-background: var(--color-white);
    --color-white-08: rgba(255, 255, 255, 0.08);
    --color-white-muted: rgba(255, 255, 255, 0.72);
    --color-text: #111111;
    --color-text-muted: rgba(17, 17, 17, 0.68);
    --color-text-dim: rgba(17, 17, 17, 0.48);
    --color-ink-025: rgba(17, 17, 17, 0.025);
    --color-line: rgba(17, 17, 17, 0.1);
    --color-primary: #2667ff;
    --color-primary-bright: #4f82ff;
    --color-primary-32: rgba(38, 103, 255, 0.32);
    --container-width: 1320px;
    --article-detail-body-width: 760px;
    --article-detail-aside-width: 280px;
    --article-detail-layout-gap: 72px;
    --article-detail-simple-body-width: 840px;
    --header-height: 88px;
    --section-space: 120px;
    --section-space-md: 56px;
    --section-space-sm: 32px;
    --radius-pill: 999px;
    --color-deep-navy: #071220;
    --color-surface-blue-soft: #edf3fb;
    --transition-base: 0.35s ease;
}

@property --process-grid-blue-alpha {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    background: var(--color-background);
    color: var(--color-text);
}

body.is-locked {
    overflow: hidden;
}

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

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

a:focus,
a:focus-visible {
    outline: none;
    box-shadow: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

button:focus,
button:focus-visible {
    outline: none;
    box-shadow: none;
}

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

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background-color var(--transition-base), transform var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.site-button,
.site-button span {
    color: var(--color-white);
}

.site-button span {
    position: relative;
    z-index: 1;
}

.site-button:hover,
.site-button:focus-visible {
    background-color: var(--color-deep-navy);
    border-color: var(--color-deep-navy);
    transform: translateY(-1px);
}

.site-button.site-button-gradient {
    border-color: transparent;
    background-color: transparent;
    background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-bright) 50%, var(--color-primary) 100%);
    background-size: 220% 100%;
    background-position: 0 0;
    transition: background-position 0.45s ease, transform var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.site-button.site-button-gradient:hover,
.site-button.site-button-gradient:focus-visible {
    background-color: transparent;
    border-color: transparent;
    background-position: 85% 0;
}

.site-button.site-button-newsletter::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 115%;
    height: 150px;
    background: var(--color-deep-navy);
    transform: translateY(-45%) skew(25deg) scale(0);
    transition: transform 0.3s ease-out;
    z-index: 0;
}

.site-button.site-button-newsletter:hover,
.site-button.site-button-newsletter:focus-visible {
    background-color: var(--color-primary);
    border-color: var(--color-white);
}

.site-button.site-button-newsletter:hover::after,
.site-button.site-button-newsletter:focus-visible::after {
    transform: translateY(-45%) skew(25deg) scale(1.08);
}

.section-kicker {
    margin: 0 0 20px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.22em;
}

.section-title {
    margin: 0;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.section-desc {
    margin: 24px 0 0;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.9;
}

.section-heading {
    margin-bottom: 56px;
    text-align: center;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.section-link::after {
    content: "→";
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.section-link:hover,
.section-link:focus-visible {
    color: var(--color-primary);
}

.section-link:hover::after,
.section-link:focus-visible::after {
    transform: translateX(6px);
}

.site-page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--color-text-dim);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-page-breadcrumb a,
.site-page-breadcrumb span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-page-breadcrumb a {
    color: var(--color-text-dim);
    transition: color var(--transition-base);
}

.site-page-breadcrumb a:hover,
.site-page-breadcrumb a:focus-visible {
    color: var(--color-primary);
}

.site-page-breadcrumb span {
    color: var(--color-text);
}

.site-page-breadcrumb > * + *::before {
    content: "/";
    color: var(--color-text-dim);
    font-weight: 500;
}

.site-page-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background var(--transition-base), border-color var(--transition-base), backdrop-filter var(--transition-base);
}

.site-page-header.is-scrolled {
    background: var(--color-white);
    border-color: var(--color-line);
    backdrop-filter: blur(18px);
}

.site-page-header.is-scrolled .site-logo .site-logo-image {
    filter: none;
}

.site-page-header .header-inner {
    display: flex;
    align-items: center;
    min-height: var(--header-height);
    gap: 28px;
}

.site-page-header .site-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.site-page-header .site-logo .site-logo-image,
.site-page-footer .site-logo .site-logo-image {
    height: 72px;
    width: auto;
}

.site-page-header .site-logo .site-logo-image {
    filter: none;
    transition: filter var(--transition-base);
}

.site-page-header .header-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
    margin-left: auto;
    padding-right: 36px;
}

.site-page-header .header-nav > a,
.site-page-header .header-nav > .header-nav-item > .header-nav-link {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.site-page-header .header-nav > a,
.site-page-header .header-nav > .header-nav-item > .header-nav-link {
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-base);
}

.site-page-header .header-nav > .header-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--header-height);
}

.site-page-header .header-nav > .header-nav-item > .header-nav-link {
    display: inline-flex;
    align-items: center;
    padding-right: 18px;
}

.site-page-header .header-nav > .header-nav-item .header-nav-dropdown-toggle {
    position: absolute;
    right: -2px;
    top: 50%;
    width: 12px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
    transform: translateY(-50%);
}

.site-page-header .header-nav > .header-nav-item .header-nav-dropdown-toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translate(-50%, -64%) rotate(45deg);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.site-page-header .header-nav > .header-nav-item .header-nav-submenu {
    list-style: none;
    position: absolute;
    top: calc(var(--header-height) - 13px);
    left: 0;
    z-index: 30;
    width: 220px;
    margin: 8px 0 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--color-background);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
}

.site-page-header .header-nav > .header-nav-item .header-nav-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
}

.site-page-header .header-nav > .header-nav-item:hover > .header-nav-submenu,
.site-page-header .header-nav > .header-nav-item:focus-within > .header-nav-submenu,
.site-page-header .header-nav > .header-nav-item.is-open > .header-nav-submenu {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-page-header .header-nav > .header-nav-item .header-nav-submenu li {
    position: relative;
    width: 100%;
}

.site-page-header .header-nav > .header-nav-item .header-nav-submenu a {
    display: block;
    margin: 0 24px;
    padding: 8px 0;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.site-page-header .header-nav > .header-nav-item .header-nav-submenu a::after {
    content: none;
}

.site-page-header .header-nav > .header-nav-item .header-nav-submenu a:hover,
.site-page-header .header-nav > .header-nav-item .header-nav-submenu a:focus-visible {
    padding-left: 5px;
    color: var(--color-primary);
}

.site-page-header .header-nav > a:hover,
.site-page-header .header-nav > a:focus-visible,
.site-page-header .header-nav > .header-nav-item:hover > .header-nav-link,
.site-page-header .header-nav > .header-nav-item:focus-within > .header-nav-link,
.site-page-header .header-nav > .header-nav-item:hover > .header-nav-dropdown-toggle,
.site-page-header .header-nav > .header-nav-item:focus-within > .header-nav-dropdown-toggle {
    color: var(--color-primary);
}

.site-page-header .header-nav > a[aria-current="page"],
.site-page-header .header-nav > .header-nav-item > .header-nav-link[aria-current="page"],
.site-page-header .header-nav > .header-nav-item > .header-nav-link[aria-current="page"] + .header-nav-dropdown-toggle {
    color: var(--color-primary);
}

.site-page-header .header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0;
}

.site-page-header .header-actions .header-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, color 0.3s ease;
}

.site-page-header .header-actions .header-contact-link .header-contact-link-text {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    color: var(--color-white);
}

.site-page-header .header-actions .header-contact-link .header-contact-link-text .text-1,
.site-page-header .header-actions .header-contact-link .header-contact-link-text .text-2 {
    display: block;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), top 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-page-header .header-actions .header-contact-link .header-contact-link-text .text-1 {
    position: relative;
}

.site-page-header .header-actions .header-contact-link .header-contact-link-text .text-2 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.site-page-header .header-actions .header-contact-link i {
    position: relative;
    overflow: hidden;
    width: 14px;
    height: 14px;
    display: inline-flex;
    margin-left: 10px;
}

.site-page-header .header-actions .header-contact-link i svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    color: #ffffff;
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease-out;
}

.site-page-header .header-actions .header-contact-link i svg:last-child {
    left: -12px;
    bottom: -12px;
    opacity: 0;
}

.site-page-header .header-actions .header-contact-link:hover,
.site-page-header .header-actions .header-contact-link:focus-visible {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-page-header .header-actions .header-contact-link:hover .header-contact-link-text .text-1,
.site-page-header .header-actions .header-contact-link:focus-visible .header-contact-link-text .text-1 {
    transform: translateY(-150%);
}

.site-page-header .header-actions .header-contact-link:hover .header-contact-link-text .text-2,
.site-page-header .header-actions .header-contact-link:focus-visible .header-contact-link-text .text-2 {
    top: 50%;
    transform: translateY(-50%);
}

.site-page-header .header-actions .header-contact-link:hover i svg:first-child,
.site-page-header .header-actions .header-contact-link:focus-visible i svg:first-child {
    transform: translate(16px, -16px);
}

.site-page-header .header-actions .header-contact-link:hover i svg:last-child,
.site-page-header .header-actions .header-contact-link:focus-visible i svg:last-child {
    opacity: 1;
    transform: translate(13px, -12px);
}

.site-page-header.is-scrolled .header-actions .header-contact-link {
    background: var(--color-primary);
    color: #ffffff;
}

.site-page-header .header-menu-toggle {
    display: none;
    width: 25px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
}

.site-page-header .header-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin-left: 0;
    background: var(--color-text);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.site-page-header .header-menu-toggle span:not(:last-child) {
    margin-bottom: 7px;
}

.site-page-header .header-menu-toggle span:nth-child(2) {
    width: 12px;
}

.site-page-header .header-menu-toggle:hover span,
.site-page-header .header-menu-toggle:focus-visible span {
    width: 12px;
}

.site-page-header .header-menu-toggle:hover span:nth-child(2),
.site-page-header .header-menu-toggle:focus-visible span:nth-child(2) {
    width: 25px;
}

.site-page-header.site-page-header-home {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
}

.site-page-header.site-page-header-home .site-logo .site-logo-image {
    filter: brightness(0) invert(1);
}

.site-page-header.site-page-header-home .header-nav > a,
.site-page-header.site-page-header-home .header-nav > .header-nav-item > .header-nav-link,
.site-page-header.site-page-header-home .header-nav > .header-nav-item .header-nav-dropdown-toggle,
.site-page-header.site-page-header-home .header-menu-toggle {
    color: #ffffff;
}

.site-page-header.site-page-header-home .header-menu-toggle span {
    background: var(--color-white);
}

.site-page-header.site-page-header-home .header-nav > a:hover,
.site-page-header.site-page-header-home .header-nav > a:focus-visible,
.site-page-header.site-page-header-home .header-nav > .header-nav-item:hover > .header-nav-link,
.site-page-header.site-page-header-home .header-nav > .header-nav-item:focus-within > .header-nav-link,
.site-page-header.site-page-header-home .header-nav > .header-nav-item:hover > .header-nav-dropdown-toggle,
.site-page-header.site-page-header-home .header-nav > .header-nav-item:focus-within > .header-nav-dropdown-toggle {
    color: var(--color-white-muted);
}

.site-page-header.site-page-header-home.is-scrolled {
    background: var(--color-white);
    border-color: var(--color-line);
    backdrop-filter: blur(18px);
}

.site-page-header.site-page-header-home.is-scrolled .site-logo .site-logo-image {
    filter: none;
}

.site-page-header.site-page-header-home.is-scrolled .header-nav > a,
.site-page-header.site-page-header-home.is-scrolled .header-nav > .header-nav-item > .header-nav-link,
.site-page-header.site-page-header-home.is-scrolled .header-nav > .header-nav-item .header-nav-dropdown-toggle,
.site-page-header.site-page-header-home.is-scrolled .header-menu-toggle {
    color: var(--color-text);
}

.site-page-header.site-page-header-home.is-scrolled .header-menu-toggle span {
    background: var(--color-text);
}

.site-page-header.site-page-header-home.is-scrolled .header-nav > a:hover,
.site-page-header.site-page-header-home.is-scrolled .header-nav > a:focus-visible,
.site-page-header.site-page-header-home.is-scrolled .header-nav > .header-nav-item:hover > .header-nav-link,
.site-page-header.site-page-header-home.is-scrolled .header-nav > .header-nav-item:focus-within > .header-nav-link,
.site-page-header.site-page-header-home.is-scrolled .header-nav > .header-nav-item:hover > .header-nav-dropdown-toggle,
.site-page-header.site-page-header-home.is-scrolled .header-nav > .header-nav-item:focus-within > .header-nav-dropdown-toggle {
    color: var(--color-primary);
}

.site-page-sidebar {
    position: fixed;
    inset: 0;
    z-index: 40;
    visibility: hidden;
    pointer-events: none;
}

.site-page-sidebar.is-open {
    visibility: visible;
    pointer-events: auto;
}

.site-page-sidebar .site-page-sidebar-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.site-page-sidebar.is-open .site-page-sidebar-mask {
    opacity: 1;
}

.site-page-sidebar .site-page-sidebar-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(400px, calc(100% - 48px));
    height: 100%;
    background: var(--color-background);
    transform: translateX(calc(-100% - 80px));
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.site-page-sidebar.is-open .site-page-sidebar-panel {
    transform: translateX(0);
}

.site-page-sidebar .site-page-sidebar-panel::-webkit-scrollbar {
    display: none;
}

.site-page-sidebar .site-page-sidebar-wrapper {
    position: relative;
    min-height: 100%;
    padding: 30px;
}

.site-page-sidebar .site-page-sidebar-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.site-page-sidebar .site-page-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.site-page-sidebar .site-page-sidebar-logo .site-logo {
    display: inline-flex;
    align-items: center;
}

.site-page-sidebar .site-page-sidebar-logo .site-logo-image {
    height: 72px;
    width: auto;
}

.site-page-sidebar .site-page-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-page-sidebar .site-page-sidebar-close button {
    position: relative;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}

.site-page-sidebar .site-page-sidebar-close button span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-page-sidebar .site-page-sidebar-close button span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-page-sidebar .site-page-sidebar-close button span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-page-sidebar .site-page-sidebar-close button:hover,
.site-page-sidebar .site-page-sidebar-close button:focus-visible {
    background-color: var(--color-primary);
    transform: rotate(90deg);
}

.site-page-sidebar .site-page-sidebar-close button:hover span:first-child,
.site-page-sidebar .site-page-sidebar-close button:focus-visible span:first-child {
    transform: translate(-50%, -50%) rotate(135deg);
}

.site-page-sidebar .site-page-sidebar-close button:hover span:last-child,
.site-page-sidebar .site-page-sidebar-close button:focus-visible span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-page-sidebar .site-page-sidebar-text {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.site-page-sidebar .site-page-sidebar-menu {
    margin-top: 26px;
}

.site-page-sidebar .site-page-sidebar-menu-list,
.site-page-sidebar .site-page-sidebar-submenu,
.site-page-sidebar .site-page-sidebar-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-page-sidebar .site-page-sidebar-menu-list > li {
    border-bottom: 1px solid var(--color-line);
}

.site-page-sidebar .site-page-sidebar-menu-list > li:first-child {
    border-top: 1px solid var(--color-line);
}

.site-page-sidebar .site-page-sidebar-menu-list > li > a,
.site-page-sidebar .site-page-sidebar-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-page-sidebar .site-page-sidebar-menu-list > li > a,
.site-page-sidebar .site-page-sidebar-menu-link {
    flex: 1 1 auto;
    padding: 17px 0;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-page-sidebar .site-page-sidebar-menu-list > li > a:hover,
.site-page-sidebar .site-page-sidebar-menu-list > li > a:focus-visible,
.site-page-sidebar .site-page-sidebar-menu-link:hover,
.site-page-sidebar .site-page-sidebar-menu-link:focus-visible {
    color: var(--color-primary);
    transform: translateX(5px);
}

.site-page-sidebar .site-page-sidebar-submenu-toggle {
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
}

.site-page-sidebar .site-page-sidebar-submenu-toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translate(-50%, -64%) rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.site-page-sidebar .site-page-sidebar-menu-item.is-open .site-page-sidebar-submenu-toggle::before {
    transform: translate(-50%, -34%) rotate(225deg);
}

.site-page-sidebar .site-page-sidebar-submenu {
    display: none;
    padding: 0 0 10px;
}

.site-page-sidebar .site-page-sidebar-menu-item.is-open .site-page-sidebar-submenu {
    display: block;
}

.site-page-sidebar .site-page-sidebar-submenu a {
    display: block;
    padding: 8px 0 8px 20px;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-page-sidebar .site-page-sidebar-submenu a:hover,
.site-page-sidebar .site-page-sidebar-submenu a:focus-visible {
    color: var(--color-primary);
    transform: translateX(5px);
}

.site-page-sidebar .site-page-sidebar-contact {
    margin-top: 30px;
    padding-top: 28px;
}

.site-page-sidebar .site-page-sidebar-contact .site-page-sidebar-contact-title {
    margin: 0;
    color: var(--color-text);
    font-size: 22px;
    font-weight: 500;
}

.site-page-sidebar .site-page-sidebar-contact ul {
    margin-top: 20px;
}

.site-page-sidebar .site-page-sidebar-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
}

.site-page-sidebar .site-page-sidebar-contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.site-page-sidebar .site-page-sidebar-contact-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--color-primary);
}

.site-page-sidebar .site-page-sidebar-contact-icon svg {
    width: 20px;
    height: 20px;
}

.site-page-sidebar .site-page-sidebar-contact-text {
    flex: 1 1 auto;
}

.site-page-sidebar .site-page-sidebar-contact-text a,
.site-page-sidebar .site-page-sidebar-contact-text span {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.site-page-sidebar .site-page-sidebar-action {
    margin-top: 30px;
}

.site-page-sidebar .site-page-sidebar-action .site-button {
    width: 100%;
    min-height: 56px;
}

.site-page-right-tools {
    position: fixed;
    right: 0;
    bottom: 30%;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
    border-radius: 28px;
    background: #eeeeee;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, right 0.4s ease-in-out;
    overflow: visible;
}

.site-page-right-tools button {
    border: 0;
    background: transparent;
    color: var(--color-text);
}

.site-page-right-tools > .site-page-right-tools-item {
    display: flex;
    position: relative;
}

.site-page-right-tools > .site-page-right-tools-item > button,
.site-page-right-tools > .site-page-right-tools-item > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 5px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: center;
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    color: var(--color-text);
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-text {
    display: flex;
    align-items: center;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.site-page-right-tools .site-page-right-tools-item:hover .right-tools-item-text{
    color:var(--color-primary);
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-popup {
    position: absolute;
    right: calc(100% + 18px);
    top: 0;
    padding: 25px;
    background: var(--color-white);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    min-width: max-content;
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-popup.right-tools-wechat-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-text);
    display: block;
}

.site-page-right-tools .site-page-right-tools-item:hover .right-tools-item-icon svg{
    color:var(--color-primary)
}

.site-page-right-tools .site-page-right-tools-item .right-tools-item-popup.right-tools-wechat-popup img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    min-width: max-content;
}

.site-page-right-tools .site-page-right-tools-item .right-tools-wechat-popup-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: max-content;
    font-size: 14px;
    color: var(--color-text);
}

.site-page-right-tools .site-page-right-tools-item:hover .right-tools-item-popup.right-tools-wechat-popup,
.site-page-right-tools .site-page-right-tools-item:focus-within .right-tools-item-popup.right-tools-wechat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.site-page-right-tools.is-visible {
    right: 24px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-page-main {
    overflow: hidden;
}

.article-detail-page .site-page-main {
    overflow: visible;
}

.article-detail-simple-page .site-page-main {
    overflow: visible;
}

.article-detail-blank-page .site-page-main {
    overflow: visible;
}

.site-page-main-top-background {
    padding-top: calc(var(--header-height) + 36px);
    background: url("../images/pages/common/site-page-main-top-background.jpg") center top / 100% 300px no-repeat;
}


/* Home Page */
.index-page .banner-block,
.index-page .solution-block,
.index-page .product-block,
.index-page .case-block,
.index-page .process-block,
.index-page .why-block,
.index-page .faq-block,
.index-page .brand-block,
.about-block {
    position: relative;
}

.index-page .banner-block {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 68px);
    padding-bottom: 72px;
    background: #000000;
}

.index-page .banner-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0.6;
}

.index-page .banner-block .banner-background {
    position: absolute;
    inset: 0;
}

.index-page .banner-block .banner-background .banner-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.index-page .banner-block .banner-shape-right-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 28vw;
    opacity: 0.14;
}

.index-page .banner-block .banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 140px);
    gap: 64px;
}

.index-page .banner-block .banner-text {
    flex: 1 1 0;
}

.index-page .banner-block .banner-side {
    flex: 0 0 min(32%, 360px);
}

.index-page .banner-block .banner-text .banner-kicker {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.26em;
}

.index-page .banner-block .banner-text .banner-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: 118px;
    line-height: 1.02;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    isolation: isolate;
}

.index-page .banner-block .banner-text .banner-title strong {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
}

.index-page .banner-block .banner-text .banner-title::after {
    content: "";
    position: absolute;
    left: -14%;
    top: 50%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(66, 126, 255, 0.56) 0%, rgba(92, 145, 255, 0.5) 22%, rgba(66, 126, 255, 0.34) 46%, rgba(66, 126, 255, 0.14) 66%, rgba(66, 126, 255, 0) 80%);
    transform: translateY(-50%);
    filter: blur(12px);
    opacity: 0.88;
    z-index: -1;
    will-change: transform, opacity;
    animation: banner-title-breathe 4.8s ease-in-out infinite;
}

.index-page .banner-block .banner-text .banner-desc {
    max-width: 700px;
    margin: 30px 0 0;
    color: var(--color-white-muted);
    font-size: 18px;
    line-height: 1.9;
}

.index-page .banner-block .banner-text .banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.index-page .banner-block .banner-side {
    display: flex;
    align-items: center;
}

.index-page .banner-block .banner-side .banner-side-info {
    width: min(100%, 360px);
    margin-left: auto;
    color: #ffffff;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list {
    display: flex;
    flex-direction: column;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact .banner-side-counter {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    line-height: 1;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact .banner-side-counter b {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact .banner-side-counter span {
    font-size: 16px;
    font-weight: 500;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list > p {
    margin: 30px 0 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}

.index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-button-wrap {
    margin-top: 30px;
}

.index-page .banner-block .banner-side .banner-side-button {
    z-index: 1;
    position: relative;
    font-size: 18px;
    display: inline-block;
    min-height: 60px;
    padding-left: 65px;
    line-height: 60px;
    white-space: nowrap;
    transform: translate3d(10px, 0, 0);
    transition: transform 0.35s ease-in-out;
    will-change: transform;
}

.index-page .banner-block .banner-side .banner-side-button i {
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text);
    font-style: normal;
    transform: translate3d(0, -50%, 0) scale(0);
    transition: transform 0.35s ease-in-out;
    will-change: transform;
}

.index-page .banner-block .banner-side .banner-side-button::after {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate3d(0, -50%, 0) scale(1);
    transition: transform 0.35s ease-in-out;
    z-index: -1;
    will-change: transform;
}

.index-page .banner-block .banner-side .banner-side-button span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transform: translate3d(-50px, 0, 0);
    transition: transform 0.35s ease-in-out;
    will-change: transform;
}

.index-page .banner-block .banner-side .banner-side-button:hover {
    transform: translate3d(0, 0, 0);
}

.index-page .banner-block .banner-side .banner-side-button:hover i {
    transform: translate3d(0, -50%, 0) scale(1);
}

.index-page .banner-block .banner-side .banner-side-button:hover::after {
    transform: translate3d(0, -50%, 0) scale(0);
}

.index-page .banner-block .banner-side .banner-side-button:hover span {
    transform: translate3d(0, 0, 0);
}

.index-page .solution-block,
.index-page .case-block,
.index-page .faq-block {
    padding: var(--section-space) 0;
}

.about-block {
    padding: var(--section-space) 0;
}

.index-page .product-block,
.index-page .why-block {
    padding: var(--section-space) 0;
    background: var(--color-background);
}

.index-page .process-block {
    padding: var(--section-space) 0;
    background: var(--color-background);
}

.index-page .brand-block {
    padding: 160px 0;
}

.index-page .solution-block::before,
.index-page .product-block::before,
.index-page .case-block::before,
.index-page .why-block::before,
.index-page .faq-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-ink-025) 1px, transparent 1px);
    background-size: 180px 100%;
    opacity: 0.42;
}

.about-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-ink-025) 1px, transparent 1px);
    background-size: 180px 100%;
    opacity: 0.42;
}

.index-page .solution-block {
    background: linear-gradient(180deg, rgba(242, 246, 252, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.index-page .product-block {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.2) 100%),
    url("../images/pages/index/product-background-cover.jpg") center center / cover no-repeat;
}

.index-page .case-block {
    background: #f7f9fc;
}

.index-page .process-block {
    --process-grid-blue-alpha: 0;
    background-image: linear-gradient(rgba(17, 17, 17, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(38, 103, 255, var(--process-grid-blue-alpha)) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 103, 255, var(--process-grid-blue-alpha)) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 247, 252, 1) 100%);
    background-size: 72px 72px, 72px 72px, 72px 72px, 72px 72px, 100% 100%;
    animation: process-grid-breathe 8.2s ease-in-out infinite;
}

.index-page .why-block {
    background: linear-gradient(120deg, rgba(5, 12, 20, 0.95) 0%, rgba(7, 18, 32, 0.92) 100%);
}

.about-block {
}

.index-page .faq-block {
    background: linear-gradient(135deg, rgba(6, 12, 22, 0.96) 0%, rgba(8, 18, 32, 0.92) 100%);
}

.index-page .solution-block .solution-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 30px;
}

.index-page .solution-block .solution-heading {
    flex: 0 0 calc(50% - 15px);
    position: relative;
    overflow: hidden;
    padding: 58px 56px;
    background: radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(115deg, rgba(122, 92, 255, 0.98) 0%, rgba(38, 103, 255, 0.96) 100%);
}

.index-page .solution-block .solution-heading::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 6%;
    right: -12%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, rgba(176, 153, 255, 0.44) 18%, rgba(101, 92, 255, 0.36) 38%, rgba(38, 103, 255, 0.12) 60%, rgba(38, 103, 255, 0) 76%);
    filter: blur(18px);
    opacity: 0.88;
    transform-origin: center center;
    animation: solution-heading-breathe 5.4s ease-in-out infinite;
    pointer-events: none;
}

.index-page .solution-block .solution-heading .section-kicker,
.index-page .solution-block .solution-heading .section-title,
.index-page .solution-block .solution-heading .section-desc,
.index-page .solution-block .solution-heading .section-link {
    position: relative;
    z-index: 2;
}

.index-page .solution-block .solution-heading .section-kicker,
.index-page .solution-block .solution-heading .section-title,
.index-page .solution-block .solution-heading .section-link {
    color: #ffffff;
}

.index-page .solution-block .solution-heading .section-desc {
    color: var(--color-white-muted);
}

.index-page .solution-block .solution-heading .solution-heading-action {
    position: relative;
    margin-top: 36px;
    z-index: 2;
}

.index-page .solution-block .solution-heading .solution-heading-action::after {
    content: "";
    position: absolute;
    left: 194px;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
}

.index-page .solution-block .solution-heading .section-link::after {
    color: #ffffff;
}

.index-page .solution-block .solution-heading .section-link:hover,
.index-page .solution-block .solution-heading .section-link:focus-visible {
    color: var(--color-white-muted);
}

.index-page .solution-block .solution-heading .section-link:hover::after,
.index-page .solution-block .solution-heading .section-link:focus-visible::after {
    color: #ffffff;
}

.site-solution-card {
    position: relative;
    display: block;
    min-height: 354px;
    padding: 48px 34px 40px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.site-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(38, 103, 255, 0.5);
    background: rgba(246, 249, 255, 0.98);
}

.site-solution-card .site-solution-card-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
}

.site-solution-card .site-solution-card-desc,
.site-solution-card .site-solution-card-code {
    position: relative;
    z-index: 1;
}

.site-solution-card .site-solution-card-desc {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.site-solution-card .site-solution-card-title {
    margin: 28px 0 0;
    font-size: 28px;
    line-height: 1.2;
}

.site-solution-card .site-solution-card-code {
    display: block;
    margin-top: 10px;
    color: var(--color-text-dim);
    font-weight: 500;
    letter-spacing: 0.18em;
}

.site-solution-card .site-solution-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(38, 103, 255, 0.2);
    background: rgba(38, 103, 255, 0.08);
    color: transparent;
    font-size: 0;
    margin-top: 22px;
    transition: all var(--transition-base);
}

.site-solution-card .site-solution-card-link::before {
    content: "↗";
    color: var(--color-primary);
    font-size: 18px;
}

.site-solution-card:hover .site-solution-card-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.site-solution-card:hover .site-solution-card-link::before {
    color: #ffffff;
}

.index-page .solution-block .solution-card {
    flex: 0 0 calc(25% - 22.5px);
}

.index-page .solution-block a.solution-card {
    color: inherit;
}

.index-page .product-block .product-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.index-page .product-block .product-content {
    width: 100%;
}

.index-page .product-block .product-content .product-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
}

.index-page .product-block .product-content .product-heading .product-heading-copy {
    flex: 0 0 calc(58% - 18px);
}

.index-page .product-block .product-content .product-heading .product-heading-action {
    flex: 0 0 calc(42% - 18px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.index-page .product-block .product-content .product-heading .product-heading-text {
    margin: 0 0 18px;
    color: var(--color-line);
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-transform: uppercase;
}

.index-page .product-block .product-content .product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.site-product-card {
    flex: 1 1 auto;
    flex-direction: column;
    display: flex;
    border: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    position: relative;
    transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.site-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-32);
    background: rgba(255, 255, 255, 0.92);
}

.site-product-card .site-product-card-media {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.site-product-card .site-product-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 32, 0.08) 0%, rgba(7, 18, 32, 0.62) 100%);
}

.site-product-card .site-product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.site-product-card:hover .site-product-card-media img {
    transform: scale(1.05);
}

.site-product-card .site-product-card-media .site-product-card-tags {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 1;
}

.site-product-card .site-product-card-media .site-product-card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--color-white-08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-product-card .site-product-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 26px 28px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.94) 100%);
}

.site-product-card .site-product-card-body .product-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-product-card .site-product-card-body h3 {
    margin: 16px 0 0;
    font-size: 28px;
    line-height: 1.2;
    transition: color var(--transition-base);
}

.site-product-card .site-product-card-body p {
    margin: 14px 0 0;
    color: var(--color-text-muted);
    line-height: 1.85;
}

.site-product-card:hover .site-product-card-body h3 {
    color: var(--color-primary);
}

.site-product-card .site-product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    margin-top: auto;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-product-card .site-product-card-link::after {
    content: "→";
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.site-product-card:hover .site-product-card-link::after {
    transform: translateX(6px);
}

.index-page .product-block .product-content .product-item {
    flex: 1 1 calc(33.333% - 16px);
}

.index-page .case-block .case-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px;
}

.index-page .case-block .case-heading .section-heading {
    margin-bottom: 0;
    text-align: left;
}

.index-page .case-block .case-list {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.index-page .case-block .case-featured-item,
.index-page .case-block .case-main-box {
    display: block;
    flex: 1 1 0;
}

.index-page .case-block .case-featured-item .case-featured-thumb {
    position: relative;
    height: 328px;
    overflow: hidden;
}

.index-page .case-block .case-featured-item .case-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .case-block .case-featured-item .case-featured-tags {
    position: absolute;
    top: 30px;
    left: 30px;
}

.index-page .case-block .case-featured-item .case-featured-tags span {
    display: inline-block;
    margin: 0 12px 12px 0;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: var(--color-white-08);
    color: #ffffff;
    backdrop-filter: blur(25px);
}

.index-page .case-block .case-featured-item .case-featured-title {
    position: absolute;
    left: 30px;
    bottom: 30px;
    margin: 0;
    max-width: calc(100% - 110px);
    font-size: 32px;
    line-height: 1.18;
}

.index-page .case-block .case-featured-item .case-featured-title {
    color: #ffffff;
}

.index-page .case-block .case-featured-item .case-featured-number {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50%;
}

.index-page .case-block .case-main-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.index-page .case-block .case-main-box .case-expand-item {
    display: block;
    position: relative;
    width: 92px;
    min-width: 92px;
    height: 328px;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(7, 18, 32, 0.62) 0%, rgba(7, 18, 32, 0.9) 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.index-page .case-block .case-main-box .case-expand-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(38, 103, 255, 0.66);
    transition: all 0.4s ease-in-out;
}
.index-page .case-block .case-main-box .case-expand-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-title {
    position: absolute;
    left: 0;
    top:0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-title h3 {
    position: absolute;
    top: 40%;
    left: 70%;
    margin: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-title h3 {
    color: #ffffff;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-title .number,
.index-page .case-block .case-main-box .case-expand-item .case-expand-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50%;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-title .number {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-number {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-content {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    bottom: -120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.18;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-content h3,
.index-page .case-block .case-main-box .case-expand-item .case-expand-content p,
.index-page .case-block .case-main-box .case-expand-item .case-expand-content .case-item-link {
    color: #ffffff;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-content .case-item-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.index-page .case-block .case-main-box .case-expand-item .case-expand-content .case-item-link::after {
    content: "→";
}

.index-page .case-block .case-main-box .case-expand-item.is-active {
    width: 328px;
    min-width: 328px;
}

.index-page .case-block .case-main-box .case-expand-item.is-active::before {
    background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.index-page .case-block .case-main-box .case-expand-item.is-active .case-expand-number {
    opacity: 1;
    visibility: visible;
}

.index-page .case-block .case-main-box .case-expand-item.is-active .case-expand-content {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.index-page .case-block .case-main-box .case-expand-item.is-active .case-expand-title {
    opacity: 0;
    visibility: hidden;
}

.index-page .process-block .process-layout {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 36px;
}

.index-page .process-block .process-heading {
    flex: 0 0 calc(40% - 18px);
}

.index-page .process-block .process-list {
    flex: 0 0 calc(60% - 18px);
}

.index-page .process-block .process-heading,
.index-page .process-block .process-list .process-item {
    border: 1px solid var(--color-line);
    background: var(--color-white);
    backdrop-filter: blur(8px);
}

.index-page .process-block .process-heading {
    padding: 54px 48px;
    background: linear-gradient(180deg, rgba(245, 248, 255, 0.98) 0%, rgba(236, 244, 255, 0.94) 100%);
}

.index-page .process-block .process-heading .section-kicker {
    color: rgba(38, 103, 255, 0.72);
}

.index-page .process-block .process-heading .section-title {
    color: #1f3160;
}

.index-page .process-block .process-heading .section-desc {
    color: rgba(31, 49, 96, 0.68);
}

.index-page .process-block .process-heading .section-link {
    color: var(--color-primary);
}

.index-page .process-block .process-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.index-page .process-block .process-list .process-item {
    flex: 1 1 calc(50% - 9px);
    min-height: 240px;
    padding: 28px 28px 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
}

.index-page .process-block .process-list .process-item:nth-child(1) {
    background: linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(232, 241, 255, 0.96) 100%);
}

.index-page .process-block .process-list .process-item:nth-child(2) {
    background: linear-gradient(180deg, rgba(248, 246, 255, 0.98) 0%, rgba(239, 236, 255, 0.96) 100%);
}

.index-page .process-block .process-list .process-item:nth-child(3) {
    background: linear-gradient(180deg, rgba(244, 250, 255, 0.98) 0%, rgba(232, 246, 255, 0.96) 100%);
}

.index-page .process-block .process-list .process-item:nth-child(4) {
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.98) 0%, rgba(237, 242, 248, 0.96) 100%);
}

.index-page .process-block .process-list .process-item span {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17, 17, 17, 0.4);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.index-page .process-block .process-list .process-item:nth-child(1) span {
    -webkit-text-stroke-color: rgba(38, 103, 255, 0.34);
}

.index-page .process-block .process-list .process-item:nth-child(2) span {
    -webkit-text-stroke-color: rgba(122, 92, 255, 0.32);
}

.index-page .process-block .process-list .process-item:nth-child(3) span {
    -webkit-text-stroke-color: rgba(44, 156, 214, 0.32);
}

.index-page .process-block .process-list .process-item:nth-child(4) span {
    -webkit-text-stroke-color: rgba(17, 17, 17, 0.26);
}

.index-page .process-block .process-list .process-item h3 {
    margin: 22px 0 14px;
    color: #233456;
    font-size: 28px;
    line-height: 1.22;
}

.index-page .process-block .process-list .process-item p {
    margin: 0;
    color: rgba(35, 52, 86, 0.66);
    line-height: 1.85;
}

.index-page .why-block .why-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 72px;
}

.index-page .why-block .why-content {
    flex: 0 0 calc(36% - 36px);
}

.index-page .why-block .why-visual {
    flex: 0 0 calc(64% - 36px);
}

.index-page .why-block .section-kicker,
.index-page .why-block .section-title,
.index-page .why-block .why-content .why-list li h3,
.index-page .why-block .why-visual h3 {
    color: #ffffff;
}

.index-page .why-block .why-content .why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.index-page .why-block .why-content .why-list li {
    padding-top: 28px;
    padding-left: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
}

.index-page .why-block .why-content .why-list li .why-item-icon {
    position: absolute;
    left: 0;
    top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--color-white-08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.index-page .why-block .why-content .why-list li .why-item-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.index-page .why-block .why-content .why-list li h3 {
    margin: 0 0 10px;
    font-size: 28px;
}

.index-page .why-block .why-content .why-list li p {
    margin: 0;
    color: var(--color-white-muted);
    line-height: 1.85;
}

.index-page .why-block .why-visual {
    position: relative;
    margin-top: 90px;
    padding-bottom: 30px;
    text-align: right;
}

.index-page .why-block .why-visual .why-visual-circle {
    position: absolute;
    left: -60px;
    top: 82px;
    z-index: 2;
    width: 132px;
    height: 132px;
    animation: why-visual-float 6.4s ease-in-out infinite;
}

.index-page .why-block .why-visual .why-visual-circle .why-visual-circle-solid,
.index-page .why-block .why-visual .why-visual-circle .why-visual-circle-outline {
    position: absolute;
    display: block;
}

.index-page .why-block .why-visual .why-visual-circle .why-visual-circle-solid {
    left: 0;
    bottom: 0;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(122, 92, 255, 0.96) 0%, rgba(38, 103, 255, 0.92) 100%);
}

.index-page .why-block .why-visual .why-visual-circle .why-visual-circle-outline {
    right: 0;
    top: 0;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
}

.index-page .why-block .why-visual h3 {
    margin: 0 0 6px;
    font-size: 24px;
}

.index-page .why-block .why-visual h2 {
    margin: 0 0 42px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.86);
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
}

.index-page .why-block .why-visual img {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.index-page .brand-block {
    background: url("../images/pages/index/brand-background-fixed.png") center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.index-page .brand-block .brand-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 160px 100%;
}

.index-page .brand-block .brand-block-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.index-page .brand-block .brand-block-kicker {
    margin: 0 0 22px;
    color: var(--color-white-muted);
    font-weight: 500;
    letter-spacing: 0.26em;
}

.index-page .brand-block .brand-block-title {
    margin: 0;
    font-size: 74px;
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.index-page .brand-block .brand-block-desc {
    max-width: 760px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.9;
}


.about-block .about-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 72px;
}

.about-block .about-visual {
    flex: 0 0 calc(46% - 36px);
}

.about-block .about-content {
    flex: 0 0 calc(54% - 36px);
}

.about-block .about-visual {
    padding-left: 50px;
    padding-right: 36px;
    padding-bottom: 50px;
    position: relative;
}

.about-block .about-visual::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-left: 4px solid var(--color-primary);
    border-bottom: 4px solid var(--color-primary);
    z-index: 2;
    pointer-events: none;
}

.about-block .about-visual::after {
    content: none;
}

.about-block .about-visual img {
    width: 100%;
    border: 1px solid var(--color-line);
    position: relative;
    z-index: 1;
}

.about-block .about-visual .about-experience {
    position: absolute;
    right: -24px;
    top: 60px;
    bottom: auto;
    padding: 50px;
    background: var(--color-deep-navy);
    z-index: 2;
}

.about-block .about-visual .about-experience h2 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.about-block .about-visual .about-experience h2 strong {
    display: block;
    margin-bottom: 10px;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    font-size: 100px;
    line-height: 0.9;
}

.about-block .about-visual .about-experience h2 span {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.about-block .about-content .about-grid {
    display: flex;
    gap: 34px;
    align-items: start;
    margin-top: 50px;
}

.about-block .about-content .about-round-button {
    flex: 0 0 auto;
    flex-shrink: 0;
}

.about-block .about-content .about-list {
    flex: 1 1 auto;
}

.about-block .about-content .about-round-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    aspect-ratio: 1 / 1;
    padding: 0 24px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    background: transparent;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    line-height: 1.4;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
}

.about-block .about-content .about-round-button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: rgba(79, 130, 255, 0.72);
    border-radius: 50%;
    opacity: 1;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: -1;
}

.about-block .about-content .about-round-button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    transition: height 0.4s ease-in-out;
    z-index: -1;
}

.about-block .about-content .about-round-button:hover,
.about-block .about-content .about-round-button:focus-visible {
    color: #ffffff;
}

.about-block .about-content .about-round-button:hover::before,
.about-block .about-content .about-round-button:focus-visible::before {
    height: 100%;
}

.about-block .about-content .about-round-button:hover::after,
.about-block .about-content .about-round-button:focus-visible::after {
    height: 80%;
    opacity: 0.4;
}

.about-block .about-content .about-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-block .about-content .about-list li {
    position: relative;
    padding: 0;
    border-top: 1px solid var(--color-line);
    color: var(--color-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}

.about-block .about-content .about-list li a {
    display: block;
    padding: 13px 34px 13px 0;
    color: var(--color-text);
    transition: transform var(--transition-base), color var(--transition-base);
}

.about-block .about-content .about-list li::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-text);
    font-size: 20px;
    font-weight: 400;
    transition: color var(--transition-base);
}

.about-block .about-content .about-list li:first-child {
    border-top: 0;
}

.about-block .about-content .about-list li:hover a,
.about-block .about-content .about-list li:focus-within a {
    transform: translateX(10px);
    color: var(--color-primary);
}

.about-block .about-content .about-list li:hover::after,
.about-block .about-content .about-list li:focus-within::after {
    color: var(--color-primary);
}

.index-page .faq-block .faq-layout {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 64px;
}

.index-page .faq-block .faq-summary {
    flex: 0 0 calc(37% - 32px);
}

.index-page .faq-block .faq-content-area {
    flex: 0 0 calc(63% - 32px);
}

.index-page .faq-block .faq-content {
    width: 100%;
}

.index-page .faq-block .faq-summary {
    position: relative;
}

.index-page .faq-block .faq-summary::before {
    content: "";
    position: absolute;
    right: 0;
    top: -18px;
    width: 84px;
    height: 84px;
    background: url("../images/pages/index/faq-quote-shape.png") center center / contain no-repeat;
    opacity: 0.28;
}

.index-page .faq-block .section-kicker,
.index-page .faq-block .section-title,
.index-page .faq-block .faq-content .faq-item .faq-question,
.index-page .faq-block .faq-summary .faq-metrics .faq-metric-item strong {
    color: #ffffff;
}

.index-page .faq-block .faq-summary .faq-summary-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.index-page .faq-block .faq-summary .faq-summary-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.85;
}

.index-page .faq-block .faq-summary .faq-summary-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
}

.index-page .faq-block .faq-summary .faq-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.index-page .faq-block .faq-summary .faq-metrics .faq-metric-item {
    flex: 1 1 calc(50% - 9px);
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.index-page .faq-block .faq-summary .faq-metrics .faq-metric-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 44px;
    letter-spacing: -0.05em;
}

.index-page .faq-block .faq-summary .faq-metrics .faq-metric-item span {
    color: var(--color-white-muted);
    line-height: 1.8;
}

.index-page .faq-block .faq-content .faq-item {
    background: transparent;
    border: 0;
}

.index-page .faq-block .faq-content-area .faq-content-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.index-page .faq-block .faq-content-area .faq-content-head .section-link {
    margin-top: 0;
    color: #ffffff;
}

.index-page .faq-block .faq-content-area .faq-content-head .section-link::after {
    color: #ffffff;
}

.index-page .faq-block .faq-content-area .faq-content-head .section-link:hover,
.index-page .faq-block .faq-content-area .faq-content-head .section-link:focus-visible {
    color: var(--color-white-muted);
}

.index-page .faq-block .faq-content-area .faq-content-head .section-link:hover::after,
.index-page .faq-block .faq-content-area .faq-content-head .section-link:focus-visible::after {
    color: #ffffff;
}

.index-page .faq-block .faq-content .faq-item .faq-question {
    position: relative;
    width: 100%;
    padding: 26px 56px 26px 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1px solid rgba(17, 17, 17, 0.3);
    transition: padding-left var(--transition-base), color var(--transition-base);
}

.index-page .faq-block .faq-content .faq-item:last-child:not(.is-active) .faq-question {
    border-bottom: 0;
}

.index-page .faq-block .faq-content .faq-item:hover .faq-question,
.index-page .faq-block .faq-content .faq-item .faq-question:focus-visible {
    padding-left: 10px;
    color: var(--color-primary);
}

.index-page .faq-block .faq-content .faq-item .faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    color: var(--color-text);
    font-size: 28px;
    font-weight: 300;
    transition: color var(--transition-base);
}

.index-page .faq-block .faq-content .faq-item:hover .faq-question::after,
.index-page .faq-block .faq-content .faq-item .faq-question:focus-visible::after {
    color: var(--color-primary);
}

.index-page .faq-block .faq-content .faq-item.is-active .faq-question::after {
    content: "−";
}

.index-page .faq-block .faq-content .faq-item .faq-answer {
    padding: 24px 0;
}

.index-page .faq-block .faq-content .faq-item .faq-answer p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.index-page .faq-block .faq-content {
    position: relative;
    background: var(--color-background);
    padding: 50px;
}

.index-page .faq-block .faq-content::before {
    content: none;
}


/* About Page */
.about-page .about-hero-block,
.about-page .about-block,
.about-page .about-value-block,
.about-page .about-slogan-block {
    position: relative;
}

.about-page .about-block {
    padding-top: var(--section-space-md);
}

.about-page .about-hero-block .site-page-breadcrumb,
.contact-page .contact-hero-block .site-page-breadcrumb {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.about-page .about-hero-block .about-hero-content {
    position: relative;
    max-width: 720px;
    padding-top: 18px;
}

.about-page .about-hero-block h1 {
    margin: 0;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.about-page .about-value-block {
    padding: var(--section-space) 0;
    background: var(--color-deep-navy);
}

.about-page .about-value-block .section-kicker,
.about-page .about-value-block .section-title,
.about-page .about-value-block .about-value-item h3 {
    color: #ffffff;
}

.about-page .about-value-block .about-value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.about-page .about-value-block .about-value-item {
    flex: 1 1 calc(33.333% - 19px);
    min-width: 260px;
    padding: 34px 32px 30px;
    background: rgba(255, 255, 255, 0.04);
}

.about-page .about-value-block .about-value-item .about-value-icon {
    width: 72px;
    margin-bottom: 24px;
}

.about-page .about-value-block .about-value-item h3 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
}

.about-page .about-value-block .about-value-item p {
    margin: 0;
    color: var(--color-white-muted);
    line-height: 1.9;
}

.about-page .about-slogan-block {
    padding: var(--section-space) 0;
    background: url("../images/pages/about/about-proof-visual.png") center center / cover no-repeat;
    background-attachment: fixed;
}

.about-page .about-slogan-block .about-slogan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 12, 22, 0.82) 0%, rgba(8, 18, 32, 0.7) 100%);
}

.about-page .about-slogan-block .about-slogan-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-page .about-slogan-block .about-slogan-kicker {
    margin: 0 0 20px;
    color: var(--color-white-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.22em;
}

.about-page .about-slogan-block .about-slogan-title {
    margin: 0;
    color: #ffffff;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.about-page .about-slogan-block .about-slogan-desc {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    line-height: 1.9;
}


/* Contact Page */
.contact-page .contact-hero-block,
.contact-page .contact-channel-block,
.contact-page .contact-boundary-block {
    position: relative;
}


.contact-page .contact-hero-block .contact-hero-content {
    position: relative;
    max-width: 720px;
    padding-top: 18px;
}

.contact-page .contact-hero-block h1 {
    margin: 0;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.contact-page .contact-channel-block {
    padding: var(--section-space-md) 0 var(--section-space) 0;
}

.contact-page .contact-channel-block .contact-channel-panel {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 0;
    background: transparent;
}

.contact-page .contact-channel-block .contact-channel-layout {
    display: flex;
    align-items: flex-start;
    gap: 72px;
}

.contact-page .contact-channel-block .contact-channel-intro {
    flex: 0 0 calc(40% - 36px);
}

.contact-page .contact-channel-block .contact-channel-main {
    flex: 0 0 calc(60% - 36px);
}

.contact-page .contact-channel-block .contact-channel-intro h2,
.contact-page .contact-channel-block .contact-channel-wechat-content h4 {
    color: var(--color-text);
}

.contact-page .contact-channel-block .contact-channel-intro h2 {
    margin: 0;
}

.contact-page .contact-channel-block .contact-channel-intro p,
.contact-page .contact-channel-block .contact-channel-wechat-content p {
    margin: 20px 0 0;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.contact-page .contact-channel-block .contact-channel-intro strong {
    display: inline-block;
    margin-top: 28px;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
}

.contact-page .contact-channel-block .contact-channel-wechat-box {
    margin-bottom: 52px;
}

.contact-page .contact-channel-block .contact-channel-wechat-box-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.contact-page .contact-channel-block .contact-channel-directory-qr {
    flex: 0 0 156px;
    width: 156px;
    padding: 0;
    background: var(--color-background);
}

.contact-page .contact-channel-block .contact-channel-directory-qr img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-page .contact-channel-block .contact-channel-wechat-content {
    flex: 1 1 auto;
    padding-top: 6px;
}

.contact-page .contact-channel-block .contact-channel-wechat-content h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.contact-page .contact-channel-block .contact-channel-wechat-content .contact-channel-wechat-tip {
    color: rgba(17, 17, 17, 0.62);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.contact-page .contact-channel-block .contact-channel-main .contact-channel-directory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-page .contact-channel-block .contact-channel-directory-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1 1 calc(50% - 15px);
    min-width: 260px;
    padding: 24px 0;
    border-top: 1px solid var(--color-line);
    background: transparent;
}

.contact-page .contact-channel-block .contact-channel-directory-list li:nth-child(-n + 2) {
    padding-top: 0;
    border-top: 0;
}

.contact-page .contact-channel-block .contact-channel-directory-list li:nth-last-child(-n + 2) {
    padding-bottom: 0;
}

.contact-page .contact-channel-block .contact-channel-directory-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.contact-page .contact-channel-block .contact-channel-directory-icon svg {
    width: 22px;
    height: 22px;
}

.contact-page .contact-channel-block .contact-channel-directory-content {
    flex: 1 1 auto;
}

.contact-page .contact-channel-block .contact-channel-directory-content span {
    display: block;
    margin-bottom: 6px;
    color: rgba(17, 17, 17, 0.5);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-page .contact-channel-block .contact-channel-directory-content a,
.contact-page .contact-channel-block .contact-channel-directory-content p {
    margin: 0;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-page .contact-channel-block .contact-channel-directory-content a {
    transition: color var(--transition-base);
}

.contact-page .contact-channel-block .contact-channel-directory-content a:hover,
.contact-page .contact-channel-block .contact-channel-directory-content a:focus-visible {
    color: var(--color-primary);
}

.contact-page .contact-channel-block .contact-channel-main .site-button {
    margin-top: 34px;
}

.contact-page .contact-boundary-block {
    padding: var(--section-space) 0;
    border-top: 1px solid var(--color-line);
}

.contact-page .contact-boundary-block .contact-boundary-layout {
    display: flex;
    align-items: center;
    gap: 72px;
}

.contact-page .contact-boundary-block .contact-boundary-intro {
    flex: 0 0 calc(36% - 36px);
}

.contact-page .contact-boundary-block .contact-boundary-content {
    flex: 0 0 calc(64% - 36px);
}

.contact-page .contact-boundary-block .contact-boundary-intro .section-title,
.contact-page .contact-boundary-block .contact-boundary-intro .contact-boundary-note {
    color: var(--color-text);
}

.contact-page .contact-boundary-block .contact-boundary-intro .contact-boundary-note {
    margin: 18px 0 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-page .contact-boundary-block .contact-boundary-content p {
    margin: 0;
    color: rgba(17, 17, 17, 0.76);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.95;
}

.contact-page .contact-boundary-block .contact-boundary-content p + p {
    margin-top: 24px;
}


/* Listing Pages */
.article-list-page .article-filter-block,
.article-list-page .article-list-content-block,
.product-list-page .product-filter-block,
.product-list-page .product-list-content-block,
.case-list-page .case-filter-block,
.case-list-page .case-list-content-block {
    position: relative;
}

.article-list-page .article-filter-block::before,
.article-list-page .article-list-content-block::before,
.product-list-page .product-filter-block::before,
.product-list-page .product-list-content-block::before,
.case-list-page .case-filter-block::before,
.case-list-page .case-list-content-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-ink-025) 1px, transparent 1px);
    background-size: 180px 100%;
    opacity: 0.3;
}

.article-list-page .article-filter-block .article-filter-layout,
.product-list-page .product-filter-block .product-filter-layout,
.case-list-page .case-filter-block .case-filter-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-top: 18px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--color-line);
}

.article-list-page .article-filter-block .article-filter-summary,
.product-list-page .product-filter-block .product-filter-summary,
.case-list-page .case-filter-block .case-filter-summary {
    flex: 0 0 calc(30% - 16px);
}

.article-list-page .article-filter-block .article-filter-tools,
.product-list-page .product-filter-block .product-filter-tools,
.case-list-page .case-filter-block .case-filter-tools {
    flex: 0 0 auto;
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 0 2px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.article-list-page .article-filter-block .article-filter-tools::-webkit-scrollbar,
.product-list-page .product-filter-block .product-filter-tools::-webkit-scrollbar,
.case-list-page .case-filter-block .case-filter-tools::-webkit-scrollbar {
    display: none;
}

.article-list-page .article-filter-block .article-filter-group,
.product-list-page .product-filter-block .product-filter-group,
.case-list-page .case-filter-block .case-filter-group {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    min-width: max-content;
    justify-content: flex-start;
    gap: 12px;
}

.article-list-page .article-filter-block .article-filter-group a,
.product-list-page .product-filter-block .product-filter-group a,
.case-list-page .case-filter-block .case-filter-group a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.article-list-page .article-filter-block .article-filter-group a:hover,
.article-list-page .article-filter-block .article-filter-group a:focus-visible,
.product-list-page .product-filter-block .product-filter-group a:hover,
.product-list-page .product-filter-block .product-filter-group a:focus-visible,
.case-list-page .case-filter-block .case-filter-group a:hover,
.case-list-page .case-filter-block .case-filter-group a:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.article-list-page .article-filter-block .article-filter-group a.is-active,
.product-list-page .product-filter-block .product-filter-group a.is-active,
.case-list-page .case-filter-block .case-filter-group a.is-active {
    border-color: var(--color-deep-navy);
    background: var(--color-deep-navy);
    color: #ffffff;
}

.article-list-page .article-list-content-block {
    padding: var(--section-space-sm) 0 var(--section-space);
}

.product-list-page .product-list-content-block {
    padding: var(--section-space-sm) 0 var(--section-space);
}

.case-list-page .case-list-content-block {
    padding: var(--section-space-sm) 0 var(--section-space);
}

.article-list-page .article-list-content-block .article-list-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 32px;
}

.product-list-page .product-list-content-block .product-list-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 24px;
}

.case-list-page .case-list-content-block .case-featured-item {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
}

.case-list-page .case-list-content-block .case-featured-item.is-hidden {
    display: none;
}

.case-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    border: 1px solid var(--color-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 247, 255, 0.96) 100%);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.case-featured-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-32);
}

.case-featured-card .case-featured-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-surface-blue-soft);
}

.case-featured-card .case-featured-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 32, 0.08) 0%, rgba(7, 18, 32, 0.55) 100%);
}

.case-featured-card .case-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.case-featured-card:hover .case-featured-media img {
    transform: scale(1.04);
}

.case-featured-card .case-featured-tags {
    position: absolute;
    left: 26px;
    right: 26px;
    top: 26px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.case-featured-card .case-featured-tags span,
.case-list-card .case-list-card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--color-white-08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.case-featured-card .case-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 36px;
}

.case-featured-card .case-featured-meta,
.case-list-card .case-list-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-featured-card .case-featured-title {
    margin: 18px 0 0;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    transition: color var(--transition-base);
}

.case-featured-card .case-featured-desc,
.case-list-card .case-list-card-desc {
    margin: 16px 0 0;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.case-featured-card .case-featured-link,
.case-list-card .case-list-card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.case-featured-card .case-featured-link::after,
.case-list-card .case-list-card-link::after {
    content: "→";
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.case-featured-card:hover .case-featured-link,
.case-list-card:hover .case-list-card-link {
    color: var(--color-primary);
}

.case-featured-card:hover .case-featured-title {
    color: var(--color-primary);
}

.case-featured-card:hover .case-featured-link::after,
.case-list-card:hover .case-list-card-link::after {
    transform: translateX(6px);
}

.case-list-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
}

.case-list-item {
    display: flex;
    flex-direction: column;
}

.case-list-page .case-list-content-block .case-list-item.is-hidden {
    display: none;
}

.case-list-card {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-line);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.case-list-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-32);
}

.case-list-card .case-list-card-media {
    position: relative;
    overflow: hidden;
    height: 274px;
    background: var(--color-surface-blue-soft);
}

.case-list-card .case-list-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 32, 0.08) 0%, rgba(7, 18, 32, 0.58) 100%);
}

.case-list-card .case-list-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.case-list-card:hover .case-list-card-media img {
    transform: scale(1.05);
}

.case-list-card .case-list-card-tags {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.case-list-card .case-list-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 28px 28px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 248, 255, 0.95) 100%);
    transition: background var(--transition-base);
}

.case-list-card:hover .case-list-card-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(238, 245, 255, 0.97) 100%);
}

.case-list-card .case-list-card-title {
    margin: 18px 0 0;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.04em;
    transition: color var(--transition-base);
}

.case-list-card .case-list-card-link {
    margin-top: auto;
    padding-top: 22px;
}

.case-list-card:hover .case-list-card-title {
    color: var(--color-primary);
}

.article-list-page .article-list-content-block .article-list-item {
    display: flex;
    flex-direction: column;
}

.product-list-page .product-list-content-block .product-list-item {
    display: flex;
    flex-direction: column;
}

.article-list-page .article-list-content-block .article-list-item.is-hidden {
    display: none;
}

.product-list-page .product-list-content-block .product-list-item.is-hidden {
    display: none;
}

.article-list-page .article-list-content-block .article-list-item .article-list-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-surface-blue-soft);
}

.article-list-page .article-list-content-block .article-list-item .article-list-media .article-list-tags {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.article-list-page .article-list-content-block .article-list-item .article-list-media .article-list-tags .article-list-category {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--color-white-08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-list-page .article-list-content-block .article-list-item .article-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-list-page .article-list-content-block .article-list-item .article-list-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding-top: 22px;
}

.article-list-page .article-list-content-block .article-list-item .article-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-list-page .article-list-content-block .article-list-item .article-list-title {
    margin: 18px 0 0;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.article-list-page .article-list-content-block .article-list-item .article-list-title a {
    transition: color var(--transition-base);
}

.article-list-page .article-list-content-block .article-list-item .article-list-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: auto;
    padding-top: 28px;
    position: relative;
    z-index: 1;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.article-list-page .article-list-content-block .article-list-item .article-list-link::before {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 18px;
    letter-spacing: 0;
    transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.article-list-page .article-list-content-block .article-list-item:hover .article-list-media img,
.article-list-page .article-list-content-block .article-list-item:focus-within .article-list-media img {
    transform: scale(1.04);
}

.article-list-page .article-list-content-block .article-list-item:hover .article-list-title a,
.article-list-page .article-list-content-block .article-list-item:focus-within .article-list-title a {
    color: var(--color-primary);
}

.article-list-page .article-list-content-block .article-list-item:hover .article-list-link,
.article-list-page .article-list-content-block .article-list-item:focus-within .article-list-link {
    color: var(--color-primary);
}

.article-list-page .article-list-content-block .article-list-item:hover .article-list-link::before,
.article-list-page .article-list-content-block .article-list-item:focus-within .article-list-link::before,
.article-list-page .article-list-content-block .article-list-item .article-list-link:hover::before,
.article-list-page .article-list-content-block .article-list-item .article-list-link:focus-visible::before {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    transform: translateX(4px);
}

.article-list-page .article-list-content-block .article-list-empty {
    position: relative;
    z-index: 1;
    padding: 72px 0 28px;
    color: var(--color-text-muted);
    text-align: center;
}

.product-list-page .product-list-content-block .product-list-empty {
    position: relative;
    z-index: 1;
    padding: 72px 0 28px;
    color: var(--color-text-muted);
    text-align: center;
}

.case-list-page .case-list-content-block .case-list-empty {
    position: relative;
    z-index: 1;
    padding: 72px 0 28px;
    color: var(--color-text-muted);
    text-align: center;
}

.article-list-page .article-list-content-block .article-list-empty h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 34px;
    letter-spacing: -0.04em;
}

.product-list-page .product-list-content-block .product-list-empty h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 34px;
    letter-spacing: -0.04em;
}

.case-list-page .case-list-content-block .case-list-empty h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 34px;
    letter-spacing: -0.04em;
}

.article-list-page .article-list-content-block .article-list-empty p {
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.9;
}

.product-list-page .product-list-content-block .product-list-empty p {
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.9;
}

.case-list-page .case-list-content-block .case-list-empty p {
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.9;
}

.site-page-pagination-block {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 54px;
    padding-top: 34px;
    border-top: 1px solid var(--color-line);
}

.site-page-pagination-block[hidden] {
    display: none;
}

.site-page-pagination-arrow,
.site-page-pagination-list a,
.site-page-pagination-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.site-page-pagination-arrow:hover,
.site-page-pagination-arrow:focus-visible,
.site-page-pagination-list a:hover,
.site-page-pagination-list a:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.site-page-pagination-list span {
    padding: 0 6px;
    border: 0;
    color: var(--color-text-dim);
    transform: none;
}

.site-page-pagination-arrow.is-disabled {
    opacity: 0.34;
    pointer-events: none;
    transform: none;
}

.site-page-pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.site-page-pagination-list a.is-active,
.site-page-pagination-list span.is-active {
    border-color: var(--color-deep-navy);
    background: var(--color-deep-navy);
    color: #ffffff;
}

/* Article Detail */
.article-detail-page .article-detail-hero-block,
.article-detail-page .article-detail-content-block,
.article-detail-simple-page .article-detail-simple-hero-block,
.article-detail-simple-page .article-detail-simple-content-block,
.article-detail-blank-page .article-detail-blank-hero-block,
.site-page-action-block {
    position: relative;
}

.article-detail-page .article-detail-hero-block::before,
.article-detail-page .article-detail-content-block::before,
.article-detail-simple-page .article-detail-simple-hero-block::before,
.article-detail-simple-page .article-detail-simple-content-block::before,
.article-detail-blank-page .article-detail-blank-hero-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-ink-025) 1px, transparent 1px);
    background-size: 180px 100%;
    opacity: 0.24;
}

.article-detail-page .article-detail-hero-block {
    padding-bottom: var(--section-space-sm);
}

.article-detail-simple-page .article-detail-simple-hero-block {
    padding-bottom: var(--section-space-sm);
}

.article-detail-blank-page .article-detail-blank-hero-block {
    padding-bottom: var(--section-space-sm);
}

.article-detail-blank-page .article-detail-blank-hero-block .site-page-breadcrumb {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    margin-bottom: 0;
}

.article-detail-page .article-detail-hero-block .article-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding-top: 18px;
}

.article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--article-detail-simple-body-width);
    padding-top: 18px;
    margin: 0 auto;
}

.article-detail-page .article-detail-hero-block .section-kicker {
    margin-bottom: 18px;
}

.article-detail-page .article-detail-hero-block h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.article-detail-simple-page .article-detail-simple-hero-block h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.article-detail-page .article-detail-hero-block .article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 28px;
}

.article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 28px;
}

.article-detail-page .article-detail-hero-block .article-detail-meta .article-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-meta .article-detail-simple-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-detail-page .article-detail-hero-block .article-detail-meta .article-detail-meta-item span {
    color: var(--color-text-dim);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-meta .article-detail-simple-meta-item span {
    color: var(--color-text-dim);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-detail-page .article-detail-hero-block .article-detail-meta .article-detail-meta-item strong {
    font-size: 16px;
    font-weight: 500;
}

.article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-meta .article-detail-simple-meta-item strong {
    font-size: 16px;
    font-weight: 500;
}

.article-detail-page .article-detail-content-block {
    padding: var(--section-space-sm) 0 var(--section-space);
}

.article-detail-simple-page .article-detail-simple-content-block {
    padding: var(--section-space-sm) 0 var(--section-space);
}

.article-detail-page .article-detail-content-block .article-detail-content-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, var(--article-detail-body-width)) minmax(0, var(--article-detail-aside-width));
    justify-content: space-between;
    gap: var(--article-detail-layout-gap);
}

.article-detail-simple-page .article-detail-simple-content-block .article-detail-simple-content-layout {
    position: relative;
    z-index: 1;
}

.article-detail-simple-page .article-detail-simple-content-block .article-detail-simple-body {
    width: min(100%, var(--article-detail-simple-body-width));
    margin: 0 auto;
}

.rich-text {
    color: rgba(17, 17, 17, 0.84);
    font-size: 18px;
    line-height: 1.95;
}

.rich-text > :first-child {
    margin-top: 0;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote {
    margin: 0 0 28px;
}

.rich-text h2,
.rich-text h3 {
    color: var(--color-text);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.rich-text h2 {
    margin: 62px 0 20px;
    font-size: 38px;
    line-height: 1.14;
    scroll-margin-top: calc(var(--header-height) + 40px);
}

.rich-text h3 {
    margin: 34px 0 16px;
    font-size: 24px;
    line-height: 1.24;
    scroll-margin-top: calc(var(--header-height) + 40px);
}

.rich-text ul,
.rich-text ol {
    padding-left: 22px;
}

.rich-text li + li {
    margin-top: 10px;
}

.rich-text blockquote {
    padding: 4px 0 4px 28px;
    border-left: 3px solid var(--color-primary);
    color: var(--color-text);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.03em;
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-aside-panel {
    position: sticky;
    top: calc(var(--header-height) + 26px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 12px 0 12px 28px;
    border-left: 1px solid var(--color-line);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-title {
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-nav .article-detail-toc-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-nav a {
    color: rgba(17, 17, 17, 0.62);
    font-size: 15px;
    line-height: 1.7;
    transition: color var(--transition-base);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-nav a:hover,
.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-nav a:focus-visible,
.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-toc-nav a.is-active {
    color: var(--color-primary);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-aside-actions {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-line);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-aside-actions .site-button {
    width: 100%;
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-back-link::before {
    content: "←";
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-back-link:hover,
.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-back-link:focus-visible {
    color: var(--color-primary);
}

.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-back-link:hover::before,
.article-detail-page .article-detail-content-block .article-detail-aside .article-detail-back-link:focus-visible::before {
    transform: translateX(-4px);
}

.site-page-action-block {
    padding: var(--section-space-md) 0;
    border-top: 1px solid var(--color-white-08);
    background: var(--color-deep-navy);
}

.site-page-action-block .site-page-action-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 48px;
    padding: 0;
    color: #ffffff;
}

.site-page-action-block .site-page-action-title {
    margin: 0;
    max-width: 560px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.site-page-action-block .site-page-action-desc {
    max-width: 420px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.85;
}

.site-page-action-block .site-page-action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.site-page-action-block .site-page-action-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.site-page-action-block .site-page-action-link::after {
    content: "→";
    color: #ffffff;
    transition: transform var(--transition-base), color var(--transition-base);
}

.site-page-action-block .site-page-action-link:hover,
.site-page-action-block .site-page-action-link:focus-visible {
    color: #ffffff;
}

.site-page-action-block .site-page-action-link:hover::after,
.site-page-action-block .site-page-action-link:focus-visible::after {
    color: #ffffff;
}

.site-page-action-block .site-page-action-link:hover::after,
.site-page-action-block .site-page-action-link:focus-visible::after {
    transform: translateX(4px);
}

/* FAQ Page */
.faq-page .faq-hero-block,
.faq-page .faq-guide-block {
    position: relative;
}

.faq-page .faq-hero-block .site-page-breadcrumb {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.faq-page .faq-hero-block .faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    padding-top: 18px;
}

.faq-page .faq-hero-block h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.faq-page .faq-hero-block p {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.9;
}

.faq-page .faq-guide-block {
    padding: var(--section-space-md) 0;
}

.faq-page .faq-guide-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-ink-025) 1px, transparent 1px);
    background-size: 180px 100%;
    opacity: 0.24;
}

.faq-page .faq-guide-block .faq-guide-groups {
    position: relative;
    z-index: 1;
}

.faq-page .faq-guide-block .faq-guide-groups {
    border-top: 1px solid var(--color-line);
}

.faq-page .faq-guide-block .faq-group {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 48px;
    padding: 42px 0;
    border-bottom: 1px solid var(--color-line);
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.faq-page .faq-guide-block .faq-group:last-child {
    border-bottom: 0;
}

.faq-page .faq-guide-block .faq-group-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-page .faq-guide-block .faq-group-head .faq-group-index {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17, 17, 17, 0.3);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.faq-page .faq-guide-block .faq-group-head h3 {
    margin: 24px 0 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.faq-page .faq-guide-block .faq-group-head p {
    margin: 14px 0 0;
    color: var(--color-text-muted);
    line-height: 1.85;
}

.faq-page .faq-guide-block .faq-group-content .faq-item {
    border-top: 1px solid var(--color-line);
}

.faq-page .faq-guide-block .faq-group-content .faq-item:first-child {
    border-top: 0;
}

.faq-page .faq-guide-block .faq-group-content .faq-item .faq-question {
    position: relative;
    width: 100%;
    padding: 28px 84px 28px 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.03em;
    transition: color var(--transition-base);
}

.faq-page .faq-guide-block .faq-group-content .faq-item .faq-question:hover,
.faq-page .faq-guide-block .faq-group-content .faq-item .faq-question:focus-visible,
.faq-page .faq-guide-block .faq-group-content .faq-item.is-active .faq-question {
    color: var(--color-primary);
}

.faq-page .faq-guide-block .faq-group-content .faq-item .faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--color-text);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    transition: border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.faq-page .faq-guide-block .faq-group-content .faq-item .faq-question:hover::after,
.faq-page .faq-guide-block .faq-group-content .faq-item .faq-question:focus-visible::after {
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.02);
}

.faq-page .faq-guide-block .faq-group-content .faq-item.is-active .faq-question::after {
    content: "−";
    color: var(--color-primary);
}

.faq-page .faq-guide-block .faq-group-content .faq-item .faq-answer {
    padding: 0 0 26px;
}

.faq-page .faq-guide-block .faq-group-content .faq-item .faq-answer p {
    max-width: 760px;
    margin: 0;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.9;
}

/* Solution Pages */
.solution-list-page .solution-hero-block,
.solution-list-page .solution-overview-block {
    position: relative;
}

.solution-list-page .solution-overview-block::before {
    content: none;
}

.solution-list-page .solution-hero-block .solution-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    padding-bottom: 36px;
}

.solution-list-page .solution-hero-block .solution-hero-content .section-kicker {
    margin-bottom: 22px;
}

.solution-list-page .solution-hero-block h1 {
    margin: 0;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.solution-list-page .solution-hero-block .solution-hero-summary {
    max-width: 980px;
    margin: 24px 0 0;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.9;
}

.solution-list-page .solution-overview-block {
    padding: var(--section-space-sm) 0 var(--section-space);
    background: transparent;
}

.solution-list-page .solution-overview-block .solution-overview-layout {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0;
}

.solution-list-page .solution-overview-block .solution-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
}

.solution-list-page .solution-overview-block .solution-overview-grid .site-solution-card {
    min-height: 0;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(10px);
}

.solution-detail-page .solution-detail-hero-block,
.solution-detail-page .solution-detail-scenario-block,
.solution-detail-page .solution-detail-case-block {
    position: relative;
}

.solution-detail-page .solution-detail-hero-block::before,
.solution-detail-page .solution-detail-scenario-block::before,
.solution-detail-page .solution-detail-case-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-ink-025) 1px, transparent 1px);
    background-size: 180px 100%;
    opacity: 0.24;
}

.solution-detail-page .solution-detail-hero-block {
    padding-bottom: var(--section-space-md);
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 72px;
    align-items: center;
    padding-top: 18px;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-copy h1 {
    margin: 0;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-summary {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.9;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-meta-item {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--color-line);
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-meta-item:first-child {
    border-top: 0;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-meta-item span {
    display: flex;
    align-items: center;
    color: var(--color-text-dim);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-meta-item strong {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-aside {
    display: flex;
    flex-direction: column;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-panel {
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: var(--color-surface-blue-soft);
    aspect-ratio: 1 / 1;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-detail-page .solution-detail-hero-block .solution-detail-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 42px;
}

.solution-detail-page .solution-detail-scenario-block {
    padding: var(--section-space-md) 0 0;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-heading {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-groups {
    position: relative;
    z-index: 1;
    margin-top: 8px;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group {
    display: grid;
    gap: 88px;
    align-items: center;
    padding: 72px 0;
    scroll-margin-top: calc(var(--header-height) + 30px);
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group:nth-child(odd) {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group:nth-child(even) {
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content h3 {
    margin: 24px 0 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-visual {
    overflow: hidden;
    background: var(--color-surface-blue-soft);
    aspect-ratio: 16 / 11;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-lead {
    margin: 16px 0 0;
    color: rgba(17, 17, 17, 0.76);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.85;
}

.solution-detail-page .solution-detail-case-block {
    padding: var(--section-space-sm) 0 var(--section-space);
}

.solution-detail-page .solution-detail-case-block .solution-detail-case-heading {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px 32px;
}

.solution-detail-page .solution-detail-case-block .solution-detail-case-heading-copy {
    max-width: 760px;
}

.solution-detail-page .solution-detail-case-block .solution-detail-case-grid {
    margin-top: 42px;
}

/* Site Footer */
.site-page-footer {
    position: relative;
    overflow: hidden;
    padding: 64px 0 32px;
    background: url("../images/pages/common/site-page-footer-background.jpg") center bottom / 100% 600px no-repeat;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.site-page-footer .site-page-footer-shape {
    display: none;
}

.site-page-footer .footer-top,
.site-page-footer .footer-bottom {
    position: relative;
    z-index: 1;
}

.site-page-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 36px;
}

.site-page-footer .footer-brand {
    flex: 1 1 36%;
    min-width: 280px;
    padding-right: 100px;
}

.site-page-footer .footer-nav {
    flex: 1 1 24%;
    min-width: 220px;
}

.site-page-footer .footer-contact {
    flex: 1 1 24%;
    min-width: 240px;
}

.site-page-footer .footer-brand p {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.site-page-footer .footer-brand .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.site-page-footer .footer-brand .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-text);
    background: var(--color-text);
    color: var(--color-white);
    border-radius: 50%;
    transition: color var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), transform var(--transition-base);
}

.site-page-footer .footer-brand .footer-social a img,
.site-page-footer .footer-brand .footer-social a svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-page-footer .footer-brand .footer-social a:hover,
.site-page-footer .footer-brand .footer-social a:focus-visible {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.site-page-footer .footer-nav,
.site-page-footer .footer-contact {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    gap: 14px;
}

.site-page-footer .footer-nav .header,
.site-page-footer .footer-contact .header {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--color-text);
    font-weight: 500;
}

.site-page-footer .footer-nav a,
.site-page-footer .footer-contact a:not(.site-button),
.site-page-footer .footer-contact p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.site-page-footer .footer-contact .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-page-footer .footer-contact .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.site-page-footer .footer-contact .footer-contact-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 4px;
    color: var(--color-primary);
}

.site-page-footer .footer-contact .footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.site-page-footer .footer-contact .footer-contact-text {
    flex: 1 1 auto;
}

.site-page-footer .footer-contact .footer-contact-text a,
.site-page-footer .footer-contact .footer-contact-text span {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.site-page-footer .footer-nav a,
.site-page-footer .footer-contact a:not(.site-button) {
    transition: color var(--transition-base);
}

.site-page-footer .footer-nav a:hover,
.site-page-footer .footer-nav a:focus-visible,
.site-page-footer .footer-contact .footer-contact-text a:hover,
.site-page-footer .footer-contact .footer-contact-text a:focus-visible {
    color: var(--color-primary);
}

.site-page-footer .footer-contact .site-button {
    margin-top: 10px;
    width: fit-content;
}

.site-page-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-page-footer .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.52);
}

.site-page-footer .footer-bottom-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
}

.site-page-footer .footer-bottom-links,
.site-page-footer .footer-bottom-filing {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.site-page-footer .footer-bottom-filing {
    position: relative;
    margin-left: 28px;
    padding-left: 28px;
}

.site-page-footer .footer-bottom-filing::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(17, 17, 17, 0.52);
    transform: translateY(-50%);
}

.site-page-footer .footer-bottom-links a,
.site-page-footer .footer-bottom-filing a {
    font-size: 14px;
    color: rgba(17, 17, 17, 0.52);
    transition: color var(--transition-base);
}

.site-page-footer .footer-bottom-filing a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-page-footer .footer-bottom-filing a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-page-footer .footer-bottom-links a:hover,
.site-page-footer .footer-bottom-links a:focus-visible,
.site-page-footer .footer-bottom-filing a:hover,
.site-page-footer .footer-bottom-filing a:focus-visible {
    color: var(--color-primary);
}

@keyframes why-visual-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

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

@keyframes banner-title-breathe {
    0%,
    100% {
        transform: translateY(-50%) scale(0.84);
    }

    50% {
        transform: translateY(-50%) scale(1.14);
    }
}

@keyframes process-grid-breathe {
    0%,
    100% {
        --process-grid-blue-alpha: 0;
    }

    50% {
        --process-grid-blue-alpha: 0.065;
    }
}

@keyframes solution-heading-breathe {
    0%,
    100% {
        opacity: 0.62;
        transform: scale(0.88) translate3d(0, -10px, 0);
    }

    50% {
        opacity: 1;
        transform: scale(1.08) translate3d(-48px, 18px, 0);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-space-md: 48px;
        --section-space-sm: 28px;
        --header-height: 78px;
        --section-space: 96px;
    }

    .site-page-header .header-inner {
        justify-content: space-between;
    }

    .site-page-header .header-menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .site-page-header .header-nav {
        display: none;
    }

    .site-page-header .header-actions {
        display: none;
    }

    .site-page-header .site-logo .site-logo-image,
    .site-page-footer .site-logo .site-logo-image,
    .site-page-sidebar .site-page-sidebar-logo .site-logo-image {
        height: 60px;
    }

    .site-page-main-top-background {
        padding-top: calc(var(--header-height) + 28px);
    }

    /* Home Page */

    .index-page .banner-block .banner-content,
    .index-page .process-block .process-layout,
    .index-page .why-block .why-layout,
    .index-page .faq-block .faq-layout {
        flex-direction: column;
        gap: 40px;
    }

    .index-page .banner-block .banner-side,
    .index-page .product-block .product-content,
    .index-page .process-block .process-heading,
    .index-page .process-block .process-list,
    .index-page .why-block .why-content,
    .index-page .why-block .why-visual,
    .index-page .faq-block .faq-summary,
    .index-page .faq-block .faq-content-area,
    .index-page .faq-block .faq-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .index-page .banner-block .banner-text .banner-title {
        font-size: 72px;
    }

    .index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact strong {
        font-size: 22px;
    }

    .index-page .banner-block .banner-text .banner-title::after {
        width: 300px;
        height: 300px;
    }

    .index-page .banner-block .banner-side .banner-side-info {
        width: 100%;
        margin-left: 0;
    }

    .index-page .solution-block .solution-heading,
    .index-page .solution-block .solution-card {
        flex-basis: calc(50% - 15px);
    }

    .index-page .product-block .product-content .product-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .index-page .product-block .product-content .product-heading .product-heading-copy,
    .index-page .product-block .product-content .product-heading .product-heading-action {
        flex: 1 1 100%;
        width: 100%;
    }

    .index-page .product-block .product-content .product-heading .product-heading-action {
        align-items: flex-start;
    }

    .index-page .product-block .product-content .product-heading .product-heading-text {
        font-size: 68px;
    }

    .index-page .product-block .product-content .product-item {
        flex-basis: calc(50% - 12px);
    }

    .index-page .case-block .case-list {
        flex-direction: column;
    }

    .index-page .case-block .case-featured-item {
        width: 100%;
        min-width: 100%;
    }

    .index-page .case-block .case-featured-item .case-featured-thumb,
    .index-page .case-block .case-main-box .case-expand-item {
        height: 520px;
    }

    .index-page .process-block .process-list {
        flex-wrap: wrap;
    }

    .index-page .why-block .why-visual {
        margin-top: 0;
    }

    .index-page .why-block .why-visual .why-visual-circle {
        left: 0;
        top: -20px;
    }

    .index-page .brand-block .brand-block-title {
        font-size: 48px;
    }

    .about-block .about-visual,
    .about-block .about-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .about-block .about-layout {
        flex-direction: column;
        gap: 40px;
    }

    .about-block .about-content .about-grid {
        gap: 28px;
    }

    .about-block .about-visual {
        padding-right: 0;
    }

    .about-block .about-visual .about-experience {
        right: 0;
        top: 36px;
        padding: 40px 34px;
    }

    .about-block .about-content .about-round-button {
        width: 160px;
        height: 160px;
        min-width: 160px;
        min-height: 160px;
    }

    .about-block .about-content .about-list li {
        font-size: 22px;
    }

    .index-page .why-block .why-content .why-list li {
        padding-left: 62px;
    }

    /* About Page */

    .about-page .about-value-block .about-value-item {
        flex-basis: calc(50% - 14px);
    }

    .about-page .about-slogan-block .about-slogan-title {
        font-size: 52px;
    }

    /* Contact Page */

    .contact-page .contact-channel-block .contact-channel-layout {
        flex-direction: column;
        gap: 44px;
    }

    .contact-page .contact-channel-block .contact-channel-intro,
    .contact-page .contact-channel-block .contact-channel-main {
        flex: 1 1 100%;
        width: 100%;
    }

    .contact-page .contact-channel-block .contact-channel-wechat-box {
        margin-bottom: 46px;
    }

    .contact-page .contact-channel-block .contact-channel-wechat-box-inner {
        gap: 20px;
    }

    .contact-page .contact-channel-block .contact-channel-directory-list li {
        flex-basis: calc(50% - 15px);
    }

    .contact-page .contact-boundary-block .contact-boundary-layout {
        flex-direction: column;
        gap: 28px;
    }

    .contact-page .contact-boundary-block .contact-boundary-intro,
    .contact-page .contact-boundary-block .contact-boundary-content {
        flex: 1 1 100%;
        width: 100%;
    }

    /* Listing Pages */

    .article-list-page .article-filter-block .article-filter-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-list-page .product-filter-block .product-filter-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-list-page .case-filter-block .case-filter-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-list-page .article-filter-block .article-filter-summary,
    .article-list-page .article-filter-block .article-filter-tools {
        flex: 1 1 100%;
        width: 100%;
    }

    .product-list-page .product-filter-block .product-filter-summary,
    .product-list-page .product-filter-block .product-filter-tools {
        flex: 1 1 100%;
        width: 100%;
    }

    .case-list-page .case-filter-block .case-filter-summary,
    .case-list-page .case-filter-block .case-filter-tools {
        flex: 1 1 100%;
        width: 100%;
    }

    .article-list-page .article-filter-block .article-filter-tools {
        justify-content: flex-start;
    }

    .product-list-page .product-filter-block .product-filter-tools {
        justify-content: flex-start;
    }

    .case-list-page .case-filter-block .case-filter-tools {
        justify-content: flex-start;
    }

    .article-list-page .article-filter-block .article-filter-group {
        justify-content: flex-start;
    }

    .product-list-page .product-filter-block .product-filter-group {
        justify-content: flex-start;
    }

    .case-list-page .case-filter-block .case-filter-group {
        justify-content: flex-start;
    }

    .article-list-page .article-list-content-block .article-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-list-page .product-list-content-block .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-list-page .case-list-content-block .case-featured-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .case-list-page .case-list-content-block .case-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-list-page .article-list-content-block .article-list-item .article-list-title {
        font-size: 27px;
    }

    /* Article Detail */

    .article-detail-page .article-detail-content-block .article-detail-content-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 46px;
    }

    .article-detail-simple-page .article-detail-simple-content-block .article-detail-simple-body {
        width: 100%;
    }

    .rich-text {
        max-width: none;
    }

    .article-detail-page .article-detail-content-block .article-detail-aside .article-detail-aside-panel {
        position: static;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--color-line);
        padding-top: 28px;
    }

    .site-page-action-block .site-page-action-content {
        gap: 22px 32px;
    }

    .site-page-action-block .site-page-action-title {
        max-width: 520px;
        font-size: 34px;
    }

    /* FAQ Page */

    .faq-page .faq-guide-block .faq-group {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .faq-page .faq-guide-block .faq-group-head h3 {
        font-size: 32px;
    }

    .faq-page .faq-guide-block .faq-group-content .faq-item .faq-question {
        font-size: 22px;
    }

    /* Solution Pages */

    .solution-list-page .solution-overview-block .solution-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-detail-page .solution-detail-hero-block .solution-detail-hero-layout,
    .solution-detail-page .solution-detail-case-block .case-featured-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 56px;
    }

    .solution-detail-page .solution-detail-case-block .solution-detail-case-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content {
        order: initial;
        max-width: none;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-visual {
        order: initial;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .solution-detail-page .solution-detail-case-block .solution-detail-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group {
        display: grid;
        gap: 32px;
        padding: 56px 0;
        align-items: center;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group:nth-child(odd) {
        grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group:nth-child(even) {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content h3 {
        margin-top: 20px;
        font-size: 32px;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-lead {
        margin-top: 14px;
        line-height: 1.8;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content .section-link {
        margin-top: 28px;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-visual {
        aspect-ratio: 16 / 10;
    }

    .solution-detail-page .solution-detail-case-block .case-featured-body {
        padding: 32px 30px;
    }

    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-body {
        padding: 26px 24px 28px;
    }

    .solution-detail-page .solution-detail-case-block .solution-detail-case-grid {
        margin-top: 36px;
    }

    /* Site Footer */

    .site-page-footer .footer-top {
        flex-wrap: wrap;
    }

    .site-page-footer .footer-brand,
    .site-page-footer .footer-nav,
    .site-page-footer .footer-contact {
        flex-basis: calc(50% - 18px);
    }

    .site-page-footer .footer-brand {
        padding-right: 0;
    }

    .site-page-footer .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px 12px;
        justify-content: center;
        text-align: center;
    }

    .site-page-footer .footer-bottom-meta,
    .site-page-footer .footer-bottom-links,
    .site-page-footer .footer-bottom-filing {
        justify-content: center;
    }

    .site-page-footer .footer-bottom-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px 12px;
    }

    .site-page-footer .footer-bottom-links,
    .site-page-footer .footer-bottom-filing {
        gap: 8px 12px;
    }

    .site-page-footer .footer-bottom-filing {
        margin-left: 0;
        padding-left: 0;
    }

    .site-page-footer .footer-bottom-filing::before {
        content: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-space: 80px;
        --section-space-md: 40px;
        --section-space-sm: 24px;
    }

    .container {
        width: min(var(--container-width), calc(100% - 32px));
    }

    .section-title {
        font-size: 42px;
    }

    .site-page-header .header-inner {
        gap: 16px;
    }

    .site-page-header .site-logo .site-logo-text {
        display: none;
    }

    .site-page-sidebar .site-page-sidebar-panel {
        width: min(320px, calc(100% - 20px));
    }

    .site-page-sidebar .site-page-sidebar-wrapper {
        padding: 20px;
    }

    .site-page-right-tools {
        bottom:10%
    }

    .site-page-main-top-background {
        padding-top: calc(var(--header-height) + 22px);
    }

    .site-page-breadcrumb {
        margin-bottom: 18px;
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    /* Home Page */

    .index-page .banner-block {
        min-height: auto;
        padding-top: calc(var(--header-height) + 56px);
    }

    .index-page .banner-block .banner-content {
        min-height: auto;
        gap: 32px;
    }

    .index-page .banner-block .banner-text .banner-title {
        font-size: 46px;
    }

    .index-page .banner-block .banner-text .banner-desc {
        font-size: 16px;
    }

    .index-page .banner-block .banner-text .banner-title::after {
        width: 220px;
        height: 220px;
        left: -10%;
    }

    .index-page .banner-block .banner-text .banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .index-page .banner-block .banner-text .banner-actions .site-button {
        width: 100%;
    }

    .index-page .banner-block .banner-side .banner-side-info {
        margin-left: 0;
    }

    .index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact .banner-side-counter b {
        font-size: 64px;
    }

    .index-page .banner-block .banner-side .banner-side-info .banner-side-list .banner-side-fact strong {
        font-size: 20px;
    }

    .index-page .solution-block .solution-heading,
    .index-page .solution-block .solution-card,
    .index-page .process-block .process-heading,
    .index-page .process-block .process-list .process-item,
    .index-page .faq-block .faq-summary .faq-metrics .faq-metric-item {
        padding-left: 22px;
        padding-right: 22px;
    }

    .index-page .solution-block .solution-layout,
    .index-page .process-block .process-list,
    .index-page .faq-block .faq-summary .faq-metrics {
        flex-direction: column;
    }

    .index-page .solution-block .solution-heading,
    .index-page .solution-block .solution-card {
        flex-basis: 100%;
    }

    .index-page .solution-block .solution-heading .solution-heading-action::after {
        left: 0;
        right: auto;
        width: 100%;
        top: auto;
        bottom: -18px;
    }

    .index-page .process-block .process-list .process-item,
    .index-page .faq-block .faq-summary .faq-metrics .faq-metric-item {
        flex-basis: 100%;
    }

    .about-block .about-content .about-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .about-block .about-content .about-list {
        order: 1;
        width: 100%;
    }

    .about-block .about-content .about-list {
        width: 100%;
    }

    .about-block .about-content .about-round-button {
        order: 2;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: auto;
        height: auto;
        min-height: 0;
        aspect-ratio: auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--color-primary);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.14em;
        line-height: 1;
        text-transform: uppercase;
        overflow: visible;
        text-align: left;
    }

    .about-block .about-content .about-round-button::before {
        content: none;
    }

    .about-block .about-content .about-round-button::after {
        content: "→";
        position: static;
        width: auto;
        height: auto;
        background: none;
        border-radius: 0;
        color: var(--color-primary);
        opacity: 1;
        transition: transform var(--transition-base);
    }

    .about-block .about-content .about-round-button:hover::after,
    .about-block .about-content .about-round-button:focus-visible::after {
        height: auto;
        background: none;
        opacity: 1;
        transform: translateX(6px);
    }

    .about-block .about-content .about-round-button:hover,
    .about-block .about-content .about-round-button:focus-visible {
        color: var(--color-primary);
    }

    .about-block .about-content .about-list li {
        padding-right: 28px;
        font-size: 18px;
    }

    .index-page .brand-block {
        padding: 88px 0;
        background-attachment: scroll;
    }

    .index-page .brand-block .brand-block-title {
        font-size: 34px;
    }

    .index-page .brand-block .brand-block-desc {
        font-size: 16px;
    }

    .index-page .product-block .product-content .product-heading .product-heading-text {
        font-size: 46px;
    }

    .index-page .case-block .case-main-box .case-expand-item .case-expand-content h3,
    .index-page .process-block .process-list .process-item h3,
    .index-page .why-block .why-content .why-list li h3,
    .site-product-card .site-product-card-body h3 {
        font-size: 24px;
    }

    .index-page .product-block .product-content .product-list {
        flex-direction: column;
    }

    .index-page .product-block .product-content .product-item {
        flex-basis: 100%;
    }

    .site-product-card .site-product-card-body {
        padding: 24px 22px 28px;
    }

    .site-product-card .site-product-card-media {
        height: 232px;
    }

    .index-page .why-block .why-visual .why-visual-circle {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }

    .index-page .why-block .why-visual h2 {
        font-size: 44px;
    }

    .index-page .case-block .case-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .index-page .case-block .case-list {
        align-items: stretch;
    }

    .index-page .case-block .case-featured-item,
    .index-page .case-block .case-main-box {
        flex: none;
        width: 100%;
        min-width: 100%;
    }

    .index-page .case-block .case-main-box {
        align-items: stretch;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .index-page .case-block .case-main-box .case-expand-item {
        flex: 0 0 100px;
        width: 100px;
        min-width: 100px;
        height: 328px;
    }

    .index-page .case-block .case-main-box .case-expand-item.is-active {
        flex-basis: 220px;
        width: 220px;
        min-width: 220px;
    }

    .index-page .case-block .case-main-box .case-expand-item .case-expand-title {
        opacity: 1;
        visibility: visible;
    }

    .index-page .case-block .case-main-box .case-expand-item .case-expand-content {
        left: 16px;
        right: 16px;
        top: 72px;
        bottom: 20px;
    }

    .index-page .case-block .case-featured-item .case-featured-thumb {
        height: 328px;
    }

    .about-block .about-visual .about-experience {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        padding: 28px 24px;
    }

    .about-block .about-visual {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .about-block .about-visual::before {
        left: 16px;
        bottom: 16px;
    }

    .index-page .faq-block .faq-content .faq-item .faq-question {
        padding-right: 40px;
        font-size: 18px;
    }

    .index-page .faq-block .faq-content {
        padding: 34px 22px;
    }

    .index-page .faq-block .faq-content-area .faq-content-head {
        justify-content: flex-start;
        margin-bottom: 14px;
    }

    /* About Page */

    .about-page .about-hero-block h1 {
        font-size: 42px;
    }

    .about-page .about-value-block .about-value-item {
        flex-basis: 100%;
    }

    .about-page .about-slogan-block {
        background-attachment: scroll;
    }

    .about-page .about-slogan-block .about-slogan-title {
        font-size: 38px;
    }

    .about-page .about-slogan-block .about-slogan-desc {
        font-size: 16px;
    }

    /* Contact Page */

    .contact-page .contact-hero-block h1 {
        font-size: 42px;
    }

    .contact-page .contact-channel-block .contact-channel-intro strong {
        font-size: 20px;
    }

    .contact-page .contact-channel-block .contact-channel-wechat-box {
        margin-bottom: 40px;
    }

    .contact-page .contact-channel-block .contact-channel-wechat-box-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .contact-page .contact-channel-block .contact-channel-directory-qr {
        width: 132px;
        flex-basis: 132px;
    }

    .contact-page .contact-channel-block .contact-channel-wechat-content h4 {
        font-size: 22px;
    }

    .contact-page .contact-channel-block .contact-channel-main .contact-channel-directory-list {
        gap: 0;
    }

    .contact-page .contact-channel-block .contact-channel-directory-list li {
        flex-basis: 100%;
    }

    .contact-page .contact-channel-block .contact-channel-directory-list li:nth-child(2) {
        padding-top: 24px;
        border-top: 1px solid var(--color-line);
    }

    .contact-page .contact-channel-block .contact-channel-directory-list li:nth-last-child(2) {
        padding-bottom: 24px;
    }

    .contact-page .contact-channel-block .contact-channel-directory-content a,
    .contact-page .contact-channel-block .contact-channel-directory-content p {
        font-size: 18px;
    }

    .contact-page .contact-boundary-block .contact-boundary-intro .contact-boundary-note,
    .contact-page .contact-boundary-block .contact-boundary-content p {
        font-size: 18px;
    }

    /* Listing Pages */

    .article-list-page .article-filter-block .article-filter-group a,
    .product-list-page .product-filter-block .product-filter-group a,
    .case-list-page .case-filter-block .case-filter-group a,
    .site-page-pagination-arrow,
    .site-page-pagination-list a,
    .site-page-pagination-list span {
        min-height: 48px;
        min-width: 48px;
    }

    .article-list-page .article-list-content-block .article-list-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .product-list-page .product-list-content-block .product-list-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .case-list-page .case-list-content-block .case-featured-item {
        margin-bottom: 28px;
    }

    .case-list-page .case-list-content-block .case-featured-card .case-featured-body {
        padding: 28px 24px;
    }

    .case-list-page .case-list-content-block .case-featured-card .case-featured-title {
        font-size: 32px;
    }

    .case-list-page .case-list-content-block .case-list-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .case-list-page .case-list-content-block .case-list-card .case-list-card-title {
        font-size: 25px;
    }

    .article-list-page .article-list-content-block .article-list-item .article-list-title {
        font-size: 24px;
    }

    .site-page-pagination-list {
        display: none;
    }

    /* Article Detail */

    .article-detail-page .article-detail-hero-block h1 {
        font-size: 42px;
    }

    .article-detail-simple-page .article-detail-simple-hero-block h1 {
        font-size: 42px;
    }

    .site-page-action-block .site-page-action-desc,
    .rich-text {
        font-size: 16px;
    }

    .article-detail-page .article-detail-hero-block .article-detail-meta {
        gap: 14px 22px;
    }

    .article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-meta {
        gap: 14px 22px;
    }

    .article-detail-page .article-detail-hero-block .article-detail-meta .article-detail-meta-item {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .article-detail-simple-page .article-detail-simple-hero-block .article-detail-simple-meta .article-detail-simple-meta-item {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .rich-text h2 {
        margin-top: 48px;
        font-size: 30px;
    }

    .rich-text h3 {
        font-size: 22px;
    }

    .rich-text blockquote {
        padding-left: 20px;
        font-size: 22px;
    }

    .article-detail-page .article-detail-content-block .article-detail-aside .article-detail-aside-panel {
        gap: 24px;
    }

    .site-page-action-block .site-page-action-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .site-page-action-block .site-page-action-title {
        max-width: none;
        font-size: 28px;
    }

    .site-page-action-block .site-page-action-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .site-page-action-block .site-page-action-buttons .site-button {
        width: auto;
    }

    /* FAQ Page */

    .faq-page .faq-hero-block h1 {
        font-size: 42px;
    }

    .faq-page .faq-hero-block p,
    .faq-page .faq-guide-block .faq-group-head p,
    .faq-page .faq-guide-block .faq-group-content .faq-item .faq-answer p {
        font-size: 16px;
    }

    .faq-page .faq-guide-block .faq-group {
        gap: 24px;
        padding: 34px 0;
    }

    .faq-page .faq-guide-block .faq-group-head .faq-group-index {
        font-size: 46px;
    }

    .faq-page .faq-guide-block .faq-group-head h3 {
        margin-top: 20px;
        font-size: 28px;
    }

    .faq-page .faq-guide-block .faq-group-content .faq-item .faq-question {
        padding: 24px 60px 24px 0;
        font-size: 18px;
        line-height: 1.55;
    }

    .faq-page .faq-guide-block .faq-group-content .faq-item .faq-question::after {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    /* Solution Pages */

    .solution-list-page .solution-hero-block h1 {
        font-size: 42px;
    }

    .solution-list-page .solution-hero-block .solution-hero-content .section-kicker {
        margin-bottom: 18px;
    }

    .solution-list-page .solution-hero-block .solution-hero-summary {
        margin-top: 18px;
        font-size: 16px;
    }

    .solution-list-page .solution-overview-block .solution-overview-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .site-solution-card {
        min-height: 0;
        padding: 34px 24px 30px;
    }

    .site-solution-card .site-solution-card-icon img {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }

    .site-solution-card .site-solution-card-title {
        margin-top: 22px;
        font-size: 24px;
    }

    .solution-detail-page .solution-detail-hero-block .solution-detail-hero-copy h1 {
        font-size: 42px;
    }

    .solution-detail-page .solution-detail-hero-block .solution-detail-hero-summary,
    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-lead,
    .solution-detail-page .solution-detail-case-block .case-featured-desc,
    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-desc {
        font-size: 16px;
    }

    .solution-detail-page .solution-detail-hero-block .solution-detail-hero-meta-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .solution-detail-page .solution-detail-hero-block .solution-detail-hero-panel {
        aspect-ratio: 5 / 4;
    }

    .solution-detail-page .solution-detail-case-block .solution-detail-case-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 36px 0;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content h3,
    .solution-detail-page .solution-detail-case-block .case-featured-title,
    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-title {
        font-size: 24px;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-visual {
        order: 1;
        max-width: none;
        aspect-ratio: 4 / 3;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content {
        order: 2;
        max-width: none;
    }

    .solution-detail-page .solution-detail-scenario-block .solution-detail-scenario-group-content .section-link {
        margin-top: 22px;
    }

    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-media {
        height: 240px;
    }

    .solution-detail-page .solution-detail-case-block .case-featured-media {
        aspect-ratio: 16 / 11;
    }

    .solution-detail-page .solution-detail-case-block .case-featured-body,
    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-body {
        padding: 24px;
    }

    .solution-detail-page .solution-detail-case-block .case-featured-tags,
    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-tags {
        left: 16px;
        right: 16px;
        top: 16px;
        gap: 8px;
    }

    .solution-detail-page .solution-detail-case-block .case-featured-tags span,
    .solution-detail-page .solution-detail-case-block .case-list-card .case-list-card-tags span {
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .solution-detail-page .solution-detail-case-block .solution-detail-case-grid {
        margin-top: 28px;
    }

    /* Site Footer */

    .site-page-footer .footer-top {
        flex-direction: column;
    }

    .site-page-footer .footer-brand,
    .site-page-footer .footer-nav,
    .site-page-footer .footer-contact {
        flex-basis: 100%;
    }

    .site-page-footer {
        padding-top: 56px;
    }

    .site-page-footer .footer-bottom {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        text-align: center;
    }

    .site-page-footer .footer-bottom-meta,
    .site-page-footer .footer-bottom-links,
    .site-page-footer .footer-bottom-filing {
        justify-content: center;
    }

    .site-page-footer .footer-bottom-filing {
        margin-left: 0;
        padding-left: 0;
    }

    .site-page-footer .footer-bottom-filing::before {
        content: none;
    }
}
