* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-color: #0077ff;
    --secondary-color: #3399ff;
    --accent-color: #0077ff;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --white: #FFFFFF;
    --bg-primary: #F9FAFB;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #055eff, #0077ff);
    --gradient-accent: linear-gradient(135deg, #055eff, #3399ff);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-button: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 992px) {
    header {
        z-index: 1002;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--text-primary);
    min-width: 0;
}

.logo-mark {
    height: 48px;
    width: auto;
    max-width: min(240px, 46vw);
    object-fit: contain;
    object-position: left center;
    display: block;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.contact-btn {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 内页 Hero 单栏居中 */
.hero-content--single {
    grid-template-columns: 1fr;
    justify-items: center;
}

.hero-text--page {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text--page h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-text--page .subtitle {
    font-size: 24px;
    margin-bottom: 32px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F9FF 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero:not(.hero--home):not(.hero--solutions):not(.hero--news):not(.hero--about):not(.hero--cases)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 119, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* 首页：全宽 Banner（白底等距 3D / 玻璃科技插画 + 左侧文案压暗带） */
.hero--home {
    background: #e8ecf4;
    padding: clamp(88px, 14vh, 140px) 0 clamp(72px, 11vh, 120px);
    min-height: min(560px, 88vh);
}

.hero--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #e8ecf4;
    /* 首页：当前素材 首页@2x 约 1920×700（并非 DPI 意义上的 2×）；统一 cover 铺满，避免宽屏 auto 100% 两侧露底 */
    background-image: url("../assets/images/banner/首页@2x.png");
    background-size: cover;
    background-position: 88% center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero--home::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            98deg,
            rgba(7, 22, 48, 0.94) 0%,
            rgba(8, 28, 56, 0.86) 26%,
            rgba(10, 36, 68, 0.52) 46%,
            rgba(12, 44, 78, 0.18) 64%,
            rgba(232, 236, 244, 0) 78%
        ),
        radial-gradient(ellipse 85% 75% at 18% 45%, rgba(0, 130, 255, 0.12) 0%, transparent 62%);
    pointer-events: none;
    z-index: 1;
}

.hero--home .container {
    position: relative;
    z-index: 2;
}

.hero--home .hero-content {
    grid-template-columns: 1fr;
    max-width: min(640px, 100%);
    gap: 0;
    text-align: left;
}

.hero--home .hero-text h1 {
    color: rgba(255, 255, 255, 0.98);
}

.hero--home .hero-text h1 .hero-brand {
    background: linear-gradient(135deg, #7ecbff 0%, #38a0ff 45%, #0077ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero--home .hero-text h1 .hero-title-line {
    color: rgba(255, 255, 255, 0.98);
}

.hero--home .hero-text .subtitle {
    color: rgba(226, 236, 255, 0.88);
}

.hero--home .hero-text .tagline {
    color: rgba(180, 200, 230, 0.65);
}

.hero--home .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero--home .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* 仅品牌名做渐变字；副行 .hero-title-line 保持实色白字 */
.hero-text h1 .hero-brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-text .tagline {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-button);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-button);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Features Section */
.features {
    background: var(--bg-primary);
}

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

.feature-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Cases Section */
.cases {
    background: var(--white);
}

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

.case-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.case-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comparison-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.comparison-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
}

/* About Section */
.about {
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* News Section */
.news {
    background: var(--white);
}

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

.news-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-btn {
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.news-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

a.news-btn {
    display: inline-block;
    text-decoration: none;
}

/* ===== Homepage: 我们的服务（流程图版） ===== */
.home-services {
    background: var(--white);
    padding-bottom: 0;
    overflow: visible;
}

.section-header--home-services {
    margin-bottom: 40px;
}

.section-header--muted-band {
    margin-bottom: 40px;
}

.section-header--muted-band .section-title {
    margin-bottom: 0;
}

.section-title--teal-center {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    margin: 0;
}

@keyframes home-services-orbit-glow {
    0%,
    100% {
        border-color: rgba(74, 128, 240, 0.14);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        border-color: rgba(74, 128, 240, 0.24);
        transform: translate(-50%, -50%) scale(1.018);
    }
}

/* 流程图风：左入口 → 授权箭头 → 双模块 → 右出口，底弧线标语 */
.home-services__flow {
    position: relative;
    padding: clamp(30px, 5vw, 48px) clamp(12px, 2vw, 20px) clamp(64px, 11vw, 100px);
    margin-bottom: 0;
    background: linear-gradient(180deg, #f5f8fd 0%, #eef3fb 45%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid rgba(74, 128, 240, 0.12);
    box-shadow: 0 14px 40px rgba(42, 94, 212, 0.08);
    overflow: visible;
}

.home-services__orbit {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: min(96%, 920px);
    aspect-ratio: 1;
    max-height: 118%;
    border: 2px solid rgba(74, 128, 240, 0.14);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: home-services-orbit-glow 9s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .home-services__orbit {
        animation: none;
    }
}

.home-services__flow-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: clamp(8px, 2vw, 20px);
}

.home-services__flow-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.home-services__pill {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 22px 13px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--white);
    background: linear-gradient(180deg, #4a80f0 0%, #3566d6 55%, #2a5ed4 100%);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(53, 102, 214, 0.38);
}

.home-services__pill--out {
    min-height: 120px;
    background: linear-gradient(180deg, #3d89ff 0%, #2a6ae8 100%);
}

.home-services__chips {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.home-services__chip {
    font-size: 11px;
    font-weight: 600;
    color: #3355a3;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(74, 128, 240, 0.12);
    border: 1px solid rgba(74, 128, 240, 0.18);
    max-width: 8em;
    line-height: 1.35;
}

.home-services__bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 140px;
}

.home-services__bridge-shape {
    width: 58px;
    min-height: 132px;
    background: linear-gradient(180deg, #c8ddff 0%, #e8f1ff 100%);
    border: 1px solid rgba(74, 128, 240, 0.22);
    border-radius: 6px;
    clip-path: polygon(0 14%, 62% 14%, 100% 50%, 62% 86%, 0 86%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-services__bridge-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #1d4a9e;
}

.home-services__hub {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

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

.home-services__capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4px;
    padding: 16px 10px 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f4f8ff 100%);
    border: 1px solid rgba(74, 128, 240, 0.14);
    box-shadow:
        0 8px 24px rgba(42, 94, 212, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.home-services__capabilities::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(74, 128, 240, 0.28) 20%,
        rgba(74, 128, 240, 0.28) 80%,
        transparent
    );
}

.home-services__cap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 10px;
    text-align: center;
}

.home-services__cap-item:not(:last-child) {
    border-right: 1px dashed rgba(74, 128, 240, 0.22);
}

.home-services__cap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(155deg, rgba(74, 128, 240, 0.14) 0%, rgba(74, 128, 240, 0.05) 100%);
    color: #3b72ea;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-services__cap-label {
    font-size: 13px;
    font-weight: 800;
    color: #3452a0;
    letter-spacing: 0.04em;
    line-height: 1.35;
}

.home-services__module {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(74, 128, 240, 0.14);
    box-shadow: 0 10px 28px rgba(15, 40, 80, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 96px;
}

.home-services__module-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(90deg, #4a80f0 0%, #3b72ea 50%, #3566d6 100%);
    color: var(--white);
}

.home-services__module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.95;
}

.home-services__module-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.home-services__module-body {
    padding: 14px 16px 16px;
    flex: 1;
}

.home-services__module-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-services__module-list li {
    position: relative;
    padding-left: 1em;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.home-services__module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4a80f0;
}

.home-services__module-para {
    margin: 0;
    font-size: 13px;
    line-height: 1.72;
    color: var(--text-secondary);
}

.home-services__flow-sink {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 外层负责居中定位；内层 p 上的 AOS 会改写 transform，不可与 translate(-50%) 写在同一元素 */
.home-services__flow-tagline-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(18px, 4.5vw, 40px);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 12px;
    pointer-events: none;
}

.home-services__flow-tagline {
    position: relative;
    margin: 0;
    max-width: min(100% - 24px, 920px);
    text-align: center;
    font-size: clamp(22px, 3.8vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a53d4;
    letter-spacing: 0.08em;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.95),
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 14px rgba(42, 94, 212, 0.18);
    pointer-events: none;
}

.home-services__flow-tagline span:first-of-type {
    font-weight: 800;
    opacity: 0.95;
}

/* ===== Homepage: 我们的服务 · 小屏 ===== */
@media (max-width: 992px) {
    .section-header--home-services {
        margin-bottom: 28px;
    }

    .home-services__orbit {
        display: none;
    }

    .home-services__flow {
        padding: 18px 14px clamp(48px, 12vw, 72px);
        border-radius: 18px;
    }

    .home-services__flow-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
    }

    .home-services__flow-source {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .home-services__pill,
    .home-services__pill--out {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        min-height: unset;
        padding: 12px 22px;
        letter-spacing: 0.08em;
    }

    .home-services__chips {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-services__bridge {
        min-height: auto;
        width: 100%;
        flex-direction: column;
        padding: 8px 0;
    }

    .home-services__bridge-shape {
        width: min(100%, 200px);
        min-height: 48px;
        clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    }

    .home-services__bridge-title {
        writing-mode: horizontal-tb;
        letter-spacing: 0.1em;
    }

    .home-services__hub {
        width: 100%;
    }

    .home-services__hub-grid {
        grid-template-columns: 1fr;
    }

    .home-services__flow-sink {
        width: 100%;
    }

    .home-services__flow-tagline-wrap {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 0;
        margin-top: clamp(16px, 4vw, 24px);
        margin-bottom: 4px;
    }

    .home-services__flow-tagline {
        max-width: none;
        font-size: clamp(18px, 5.2vw, 26px);
    }
}

@media (max-width: 480px) {
    .home-services__flow {
        padding: 14px 12px 22px;
    }

    .home-services__module-head {
        padding: 10px 12px;
    }

    .home-services__module-title {
        font-size: 15px;
    }

    .home-services__module-list li,
    .home-services__module-para {
        font-size: 12px;
    }

    .home-services__capabilities {
        padding: 12px 4px 10px;
        border-radius: 14px;
    }

    .home-services__cap-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .home-services__cap-label {
        font-size: 11px;
        letter-spacing: 0.02em;
    }

    .home-services__flow-tagline-wrap {
        margin-top: 14px;
    }

    .home-services__flow-tagline {
        font-size: clamp(16px, 4.8vw, 22px);
    }

    .advantage-card__desc {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* ===== Homepage: 核心优势 + 客户案例（灰底带） ===== */
.home-muted-band {
    background: var(--bg-primary);
}

.home-advantages {
    padding-bottom: 48px;
}

.home-cases {
    padding-top: 0;
    background: var(--white);
}

.home-cases .section-header {
    padding-top: 8px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.advantage-card {
    background: var(--white);
    border: 1px solid rgba(5, 94, 255, 0.08);
    border-radius: 20px;
    padding: 22px 20px 20px;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    box-shadow: 0 10px 28px rgba(15, 40, 80, 0.06);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 40, 80, 0.11);
}

.advantage-card__visual {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(165deg, rgba(231, 241, 255, 0.98) 0%, rgba(245, 249, 255, 0.88) 100%);
    border: 1px solid rgba(5, 94, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.advantage-card__icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.advantage-card:hover .advantage-card__icon {
    transform: scale(1.07) translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .advantage-card:hover {
        transform: none;
    }

    .advantage-card:hover .advantage-card__icon {
        transform: none;
    }
}

.advantage-card__title {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 10px;
    font-weight: 800;
}

.advantage-card__desc {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.advantage-card--accent .advantage-card__title {
    color: #0a66ff;
}

.home-cases-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.home-case-block {
    background: var(--white);
    border: 1px solid rgba(15, 40, 80, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 24px 22px;
    box-shadow: 0 12px 36px rgba(15, 40, 80, 0.06);
}

.home-case-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.home-case-num {
    color: var(--accent-color);
}

.home-case-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* 客户案例：双卡对照（柔和配色 + 版式：顶栏标题、列表行 flex 顶对齐、宽屏中线） */
.home-case-compare-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    position: relative;
    align-items: stretch;
}

@media (min-width: 993px) {
    .home-case-compare-v2::before {
        content: '';
        position: absolute;
        left: calc(50% - 0.5px);
        top: 18px;
        bottom: 18px;
        width: 1px;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(15, 23, 42, 0.1) 15%,
            rgba(15, 23, 42, 0.1) 85%,
            transparent 100%
        );
        pointer-events: none;
    }
}

.case-side {
    border-radius: 14px;
    padding: 0;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.case-side__title {
    margin: 0;
    padding: 13px 16px 11px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.35;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.case-side__list {
    list-style: none;
    margin: 0;
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.case-side__list li {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: flex-start;
    min-height: 3rem;
}

.case-side--before {
    background: linear-gradient(180deg, #fffaf4 0%, #f8f2ea 100%);
    border-color: rgba(168, 120, 68, 0.2);
}

.case-side--before .case-side__title {
    color: #805f3d;
    background: rgba(255, 255, 255, 0.4);
}

.case-side--before .case-side__list li {
    padding: 12px 12px 12px 14px;
    justify-content: space-between;
    gap: 14px;
    color: #5e4630;
    font-weight: 500;
}

.case-side--before .case-side__list li::after {
    content: "−";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: #97a1ad;
    background: #eef2f6;
}

.case-side--after {
    background: linear-gradient(165deg, #f4f9ff 0%, #edf4ff 100%);
    border-color: rgba(5, 94, 255, 0.2);
    box-shadow: 0 10px 24px rgba(15, 40, 80, 0.05);
}

.case-side--after .case-side__title {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.45);
}

.case-side--after .case-side__list li {
    padding: 12px 14px 12px 12px;
    justify-content: flex-start;
    gap: 12px;
    color: #173d6d;
    font-weight: 600;
}

.case-side--after .case-side__list li::before {
    content: "✓";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.14);
}

.cases-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 28px;
    margin-bottom: 0;
}

/* 客户案例：A 方案（逐行对照） */
.home-case-compare-v3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
}

.case-compare-head {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.case-compare-head--before {
    color: #805f3d;
    background: linear-gradient(180deg, #fffaf4 0%, #f8f2ea 100%);
    border-color: rgba(168, 120, 68, 0.2);
}

.case-compare-head--after {
    color: var(--primary-color);
    background: linear-gradient(165deg, #f4f9ff 0%, #edf4ff 100%);
    border-color: rgba(5, 94, 255, 0.2);
}

.case-compare-row {
    display: contents;
}

.case-compare-cell {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.45;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
}

.case-compare-cell--before {
    color: #5e4630;
    justify-content: space-between;
}

.case-compare-cell--before::after {
    content: "−";
    width: 18px;
    height: 18px;
    margin-left: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #97a1ad;
    background: #eef2f6;
}

.case-compare-cell--after {
    color: #173d6d;
    font-weight: 600;
}

.case-compare-cell--after::before {
    content: "✓";
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.14);
}

.case-compare-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.22);
}

/* 客户案例：方案 B · Before / After 时间轴（中轴节点 + 左右分屏） */
.home-case-timeline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 14px 12px;
    align-items: stretch;
}

.case-timeline-panel {
    border-radius: 14px;
    padding: 14px 14px 16px;
    border: 1px solid transparent;
    min-width: 0;
}

.case-timeline-panel--before {
    background: linear-gradient(180deg, #fffaf4 0%, #f8f2ea 100%);
    border-color: rgba(168, 120, 68, 0.22);
}

.case-timeline-panel--after {
    background: linear-gradient(165deg, #f4f9ff 0%, #edf4ff 100%);
    border-color: rgba(5, 94, 255, 0.22);
    box-shadow: 0 10px 28px rgba(15, 40, 80, 0.06);
}

.case-timeline-panel__title {
    margin: 0 0 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.3;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.case-timeline-panel--before .case-timeline-panel__title {
    color: #805f3d;
}

.case-timeline-panel--after .case-timeline-panel__title {
    color: var(--primary-color);
}

.case-timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-timeline-list li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.case-timeline-panel--before .case-timeline-list li {
    justify-content: space-between;
    gap: 10px;
    color: #5e4630;
    font-weight: 500;
}

.case-timeline-panel--before .case-timeline-list li::after {
    content: "−";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #97a1ad;
    background: #eef2f6;
}

.case-timeline-panel--after .case-timeline-list li {
    padding-left: 38px;
    color: #173d6d;
    font-weight: 600;
}

.case-timeline-panel--after .case-timeline-list li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.14);
}

.case-timeline-axis {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 56px;
    min-width: 44px;
}

.case-timeline-axis__line {
    position: absolute;
    left: 50%;
    top: 56px;
    bottom: 4px;
    width: 3px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        rgba(0, 119, 255, 0.15) 0%,
        rgba(0, 119, 255, 0.35) 35%,
        rgba(13, 148, 136, 0.35) 70%,
        rgba(13, 148, 136, 0.12) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.case-timeline-axis__node {
    position: relative;
    z-index: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    color: #1d4ed8;
    background: #ffffff;
    border-radius: 999px;
    border: 2px solid rgba(37, 99, 235, 0.35);
    box-shadow:
        0 2px 8px rgba(37, 99, 235, 0.12),
        0 0 0 4px rgba(255, 255, 255, 0.95);
}

/* 客户案例：三栏桥接对照（双侧同系灰白，仅用主色点「长风」与 ✓，避免绿蓝撞色） */
.home-case-bridge {
    --case-bridge-row-gap: 10px;
    --case-bridge-row-min: 48px;
    --case-bridge-banner-h: 56px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px 16px;
    padding: 20px 18px 22px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(15, 23, 42, 0.028) 1px,
        transparent 0
    );
    background-size: 18px 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.case-bridge-stack {
    flex: 1 1 0;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow:
        2px 2px 0 rgba(15, 23, 42, 0.025),
        5px 5px 0 rgba(15, 23, 42, 0.018),
        0 10px 28px rgba(15, 23, 42, 0.045);
}

.case-bridge-stack--before,
.case-bridge-stack--after {
    background: linear-gradient(180deg, #fcfcfd 0%, #f3f4f6 100%);
    border: 1px solid rgba(15, 23, 42, 0.07);
}

.case-bridge-banner {
    flex-shrink: 0;
    min-height: var(--case-bridge-banner-h);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    box-sizing: border-box;
}

.case-bridge-banner__title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.case-bridge-banner--before,
.case-bridge-banner--after {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.case-bridge-banner--before .case-bridge-banner__title {
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.case-bridge-banner--after .case-bridge-banner__title {
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.case-bridge-list {
    list-style: none;
    margin: 0;
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: var(--case-bridge-row-gap);
}

.case-bridge-list--before li {
    min-height: var(--case-bridge-row-min);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 10px 12px 10px 14px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.case-bridge-list--before li::after {
    content: '−';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-tertiary);
}

.case-bridge-list--after li {
    position: relative;
    min-height: var(--case-bridge-row-min);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 12px 10px 40px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.case-bridge-list--after li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: var(--primary-color);
    box-shadow: 0 1px 2px rgba(0, 119, 255, 0.2);
}

.case-bridge-mid {
    flex: 0 0 auto;
    width: min(7.5rem, 18vw);
    min-width: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-bridge-mid__spacer {
    flex-shrink: 0;
    height: var(--case-bridge-banner-h);
    width: 100%;
}

.case-bridge-mid__labels {
    list-style: none;
    margin: 0;
    padding: 14px 0 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--case-bridge-row-gap);
}

.case-bridge-mid__labels > li {
    min-height: var(--case-bridge-row-min);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-bridge-mid__text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 100%;
    padding: 6px 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    text-align: center;
}

.case-bridge-mid__text::before,
.case-bridge-mid__text::after {
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.22);
    line-height: 1;
}

.case-bridge-mid__text::before {
    content: '\2039';
}

.case-bridge-mid__text::after {
    content: '\203a';
}

@media (max-width: 992px) {
    /*
     * 客户案例卡片：取消 AOS 在窄屏上的入场态（opacity:0 + transform），避免与父级布局组合后
     * 对比区在部分 WebKit/微信内核中整段不绘制；见 issue 移动端只见灰块占位。
     */
    .home-case-block[data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .home-case-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .home-case-bridge {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 12px 16px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /*
     * 关键：宽屏下 .case-bridge-stack 为 flex:1 1 0（横向等分）。
     * 窄屏改为纵排后若仍用 flex-grow + overflow:hidden，按 Flex 规则子项 min-height 可塌成 0，
     * 列表被裁没，只剩灰色底上的细线（误以为是「审美/占位图」）。
     */
    .case-bridge-stack {
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: min-content;
        box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
    }

    .case-bridge-stack:hover {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
    }

    .case-bridge-list {
        padding: 12px 12px 14px;
    }

    .case-bridge-list--before li,
    .case-bridge-list--after li {
        min-height: 0;
        padding-top: 11px;
        padding-bottom: 11px;
        justify-content: center;
        text-align: center;
        padding-left: 40px;
        padding-right: 40px;
    }

    .case-bridge-list--before li {
        position: relative;
        flex-wrap: nowrap;
    }

    .case-bridge-list--before li::after {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        flex-shrink: 0;
    }

    .case-bridge-mid {
        display: none;
    }

    .case-bridge-mid__spacer {
        height: 0;
    }
}

/* ===== Homepage: 关于（白底） ===== */
.home-about {
    background: var(--white);
}

.home-about .about-text h2 {
    color: var(--primary-color);
}

/* ===== Homepage: 合规咨询（文案在上 + 横向卡片轮播） ===== */
.home-consult {
    background: var(--bg-primary);
    padding: 100px 0;
    /* Swiper 轨道总宽会远大于视口，需截断横向溢出，避免把整个页面撑出横向滚动条 */
    max-width: 100%;
    overflow-x: clip;
}

.home-consult-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    justify-items: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.home-consult-intro {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.home-consult-intro__title {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0 0 16px;
}

.home-consult-intro__desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 28px;
}

.home-consult-intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #0077ff;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 119, 255, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-consult-intro__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 119, 255, 0.35);
}

.home-consult-intro__btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.home-consult-marquee {
    position: relative;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: var(--bg-primary);
}

.home-consult-marquee__viewport {
    overflow: hidden;
    height: auto;
    margin: 0 auto;
    width: 100%;
    max-width: min(1240px, 100%);
    padding: 0 14px;
    box-sizing: border-box;
    background-color: var(--bg-primary);
}

.home-consult-marquee__track {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: stretch;
    box-sizing: border-box;
    background: var(--bg-primary);
    will-change: transform;
    padding-top: 0;
    padding-bottom: 0;
}

/* 横向卡片：控制 slide 宽度，确保左右可见上一张/下一张 */
.home-consult-marquee .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3) !important;
    min-width: 0;
}

.consult-marquee-card {
    margin: 0;
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    transform-origin: center center;
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s ease,
        width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.consult-marquee-card.is-active,
.consult-marquee-card.swiper-slide-active {
    z-index: 2;
    width: 100%;
    opacity: 1;
    transform: none;
}

.home-consult-marquee__pagination {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.home-consult-marquee__pagination .swiper-pagination-bullet {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    margin: 0 !important;
    background: rgba(8, 30, 66, 0.22);
    opacity: 1;
}

.home-consult-marquee__pagination .swiper-pagination-bullet-active {
    background: rgba(8, 30, 66, 0.62);
}

.consult-marquee-card__link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px 18px 20px;
    height: 260px;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e7edf6;
    box-shadow: none;
    background: #ffffff;
    transition: border-color 0.25s ease;
}

.consult-marquee-card.is-active .consult-marquee-card__link:hover,
.consult-marquee-card.swiper-slide-active .consult-marquee-card__link:hover {
    border-color: #e7edf6;
}

.consult-marquee-card:not(.is-active):not(.swiper-slide-active) .consult-marquee-card__link:hover {
    border-color: #e7edf6;
}

.consult-marquee-card__media {
    display: block;
    width: calc(100% + 40px);
    margin: 0 -20px 12px -20px;
    height: 118px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #edf3fb;
}

.consult-marquee-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consult-marquee-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-self: auto;
    margin-left: 0;
    margin-bottom: 14px;
    padding: 8px 14px;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    background: #0077ff;
    border-radius: 0 0 10px 0;
    box-shadow: none;
}

.consult-marquee-card__date {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

.consult-marquee-card__title {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-height: 0;
    font-size: clamp(18px, 1.45vw, 20px);
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.42;
    margin: 0;
    padding-right: 0;
    padding-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: calc(1.42em * 2);
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.consult-marquee-card__cta {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: #2f3d57;
    margin-top: auto;
    flex-shrink: 0;
}

.consult-marquee-card__link:hover .consult-marquee-card__cta {
    color: #0077ff;
}

/* 右下角虚断圆环 + 字母水印（效果图 VM 风格，站点为 CF） */
.consult-marquee-card__mark {
    display: none !important;
}

.consult-marquee-card__mark-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.consult-marquee-card__mark-text {
    display: none !important;
}

.home-consult-marquee__controls {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.home-consult-marquee__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f1;
    background: #fff;
    color: #4f5f79;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-consult-marquee__nav::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: -2px;
}

.home-consult-marquee__nav--prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}

.home-consult-marquee__nav:hover {
    border-color: #c8d5e8;
    color: #1d3f77;
    box-shadow: 0 8px 18px rgba(28, 44, 75, 0.1);
}

.home-consult-marquee__nav.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
    .consult-marquee-card,
    .consult-marquee-card.is-active,
    .consult-marquee-card.swiper-slide-active,
    .home-consult-marquee__nav {
        transition-duration: 0.01ms;
        animation: none !important;
    }
}

@media (max-width: 992px) {
    .home-consult {
        padding: 72px 0;
    }

    .home-consult-layout { gap: 22px; }

    .home-consult-intro {
        max-width: none;
        text-align: center;
    }

    .home-consult-intro__btn {
        margin-left: auto;
        margin-right: auto;
    }

    .home-consult-marquee__viewport {
        max-width: 100%;
        padding: 0 10px;
    }

    .home-consult-marquee__controls {
        margin-top: 14px;
    }

}

@media (max-width: 1099px) and (min-width: 641px) {
    .home-consult-marquee .swiper-slide {
        flex-basis: calc((100% - 14px) / 2);
        width: calc((100% - 14px) / 2) !important;
    }
}

@media (max-width: 640px) {
    .home-consult {
        padding: 56px 0;
    }

    .home-consult-intro__title {
        font-size: 22px;
    }

    .home-consult-intro__desc {
        font-size: 13px;
    }

    .home-consult-intro__btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .consult-marquee-card__link {
        padding: 0 14px 14px 14px;
        min-height: 188px;
        height: auto;
        border-radius: 12px;
    }

    .consult-marquee-card__media {
        width: calc(100% + 28px);
        margin: 0 -14px 8px -14px;
        height: 74px;
        border-radius: 12px 12px 0 0;
    }

    .consult-marquee-card__badge {
        margin-left: 0;
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 0 0 11px 0;
    }

    .consult-marquee-card__date {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .consult-marquee-card__title {
        font-size: 14px;
        line-height: 1.35;
        flex: 0 0 auto;
        padding-right: 0;
        padding-bottom: 6px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        max-height: 1.35em;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        display: block;
    }

    .consult-marquee-card__cta {
        font-size: 12px;
        margin-top: 4px;
    }

    .consult-marquee-card__mark {
        display: none;
    }

    .consult-marquee-card__mark-text {
        display: none;
    }

    .home-consult-marquee__viewport {
        height: auto;
        min-height: 0;
        padding: 0 8px;
    }

    .home-consult-marquee .swiper-slide {
        flex: 0 0 100%;
        flex-basis: 100%;
        width: 100% !important;
        max-width: 100%;
    }

    .home-consult-marquee__track {
        flex-direction: row;
        padding-top: 0;
        padding-bottom: 0;
    }

    .consult-marquee-card { width: 100%; transform: none; }

    .consult-marquee-card.swiper-slide-active,
    .consult-marquee-card.is-active { width: 100%; transform: none; }

    .home-consult-marquee__controls {
        gap: 12px;
    }

    .home-consult-marquee__nav {
        width: 38px;
        height: 38px;
    }
}

/* Contact Section（全站浅色底） */
.contact {
    background: var(--white);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

.contact .section-header {
    margin-bottom: 24px;
}

.contact .section-title {
    color: var(--text-primary);
}

.contact .section-desc,
.contact .section-label {
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 48px;
    align-items: start;
    margin-top: 40px;
}

.contact-grid--light {
    margin-top: 0;
}

.contact-item {
    text-align: left;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.contact-item h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.contact-services {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-services li {
    padding: 0;
    margin: 0 0 10px;
    font-size: 15px;
}

.contact-services li:last-child {
    margin-bottom: 0;
}

.contact-services a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-services a:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(0, 119, 255, 0.35);
}

.contact-block {
    margin-bottom: 20px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-item .phone {
    font-size: 26px;
    font-weight: 800;
    margin: 8px 0 0;
    line-height: 1.2;
}

.contact-item .phone a {
    color: inherit;
    text-decoration: none;
}

.contact-item .phone a:hover {
    color: var(--primary-color);
}

.contact-item .address {
    font-size: 15px;
    margin: 8px 0 0;
    line-height: 1.55;
}

.contact-address-link {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(107, 114, 128, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-address-link:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(0, 119, 255, 0.45);
}

.contact-item--social .qrcodes {
    justify-content: flex-start;
}

.qrcodes {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.qrcode-item {
    text-align: center;
    max-width: 92px;
}

.qrcode-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.qrcode-item p {
    font-size: 12px;
    line-height: 1.35;
    opacity: 0.95;
}

.contact .qrcode-item p {
    color: var(--text-secondary);
    opacity: 1;
}

/* Footer */
footer {
    background: #0F172A;
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

footer p + p {
    margin-top: 8px;
}

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

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* 跨境电商合规新要求：双卡片 + 中央联结（解决方案页） */
.compliance-dual {
    background: var(--bg-primary);
    padding: clamp(72px, 10vw, 100px) 0 clamp(60px, 9vw, 88px);
    border-bottom: 1px solid var(--border-color);
}

.compliance-dual__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.compliance-dual__title {
    font-size: clamp(28px, 4.4vw, 40px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}

.compliance-dual__title-main {
    color: var(--text-primary);
}

.compliance-dual__title-accent {
    margin-left: 6px;
    color: var(--primary-color);
}

.compliance-dual__lead {
    margin: 0 auto;
    max-width: 38em;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    color: var(--text-muted);
}

.compliance-dual__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0 24px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}

.compliance-dual-card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px 24px 28px;
    border: 1px solid var(--border-color);
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 18px 42px -12px rgba(10, 60, 120, 0.12);
    min-width: 0;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.compliance-dual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.compliance-dual-card--finance::before {
    background: var(--gradient-primary);
}

.compliance-dual-card--business::before {
    background: linear-gradient(90deg, #0369a1, #0ea5e9);
}

@media (prefers-reduced-motion: no-preference) {
    .compliance-dual-card:hover {
        transform: translateY(-3px);
        box-shadow:
            0 8px 12px -2px rgba(15, 23, 42, 0.06),
            0 24px 48px -14px rgba(10, 60, 120, 0.16);
    }
}

.compliance-dual-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.compliance-dual-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-dual-card--finance .compliance-dual-card__icon {
    color: var(--primary-color);
    background: linear-gradient(145deg, rgba(0, 119, 255, 0.1), rgba(51, 153, 255, 0.07));
    border: 1px solid rgba(0, 119, 255, 0.14);
}

.compliance-dual-card--business .compliance-dual-card__icon {
    color: #0369a1;
    background: linear-gradient(145deg, rgba(3, 105, 161, 0.11), rgba(14, 165, 233, 0.07));
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.compliance-dual-card__eyebrow {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.compliance-dual-card__title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 26px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0f172a;
}

.compliance-dual-card--business .compliance-dual-card__title {
    color: #0f172a;
}

.compliance-dual-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compliance-dual-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.compliance-dual-card--business .compliance-dual-card__list li {
    background: rgba(241, 248, 255, 0.9);
    border-color: rgba(14, 165, 233, 0.1);
}

.compliance-dual-card__step {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 1px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--white);
    background: var(--gradient-primary);
}

.compliance-dual-card--business .compliance-dual-card__step {
    background: linear-gradient(135deg, #0369a1, #38bdf8);
}

.compliance-dual-card__item-body {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    color: #334155;
}

.compliance-dual__bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    flex-shrink: 0;
    padding: 4px 0;
}

.compliance-dual__bridge-line {
    width: 3px;
    flex: 1;
    min-height: 28px;
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(0, 119, 255, 0.08), rgba(0, 119, 255, 0.28), rgba(14, 165, 233, 0.3), rgba(14, 165, 233, 0.08));
}

.compliance-dual__bridge-node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 6px 0;
    border-radius: 50%;
    font-family: 'Cambria Math', 'Times New Roman', Georgia, serif;
    font-size: 28px;
    line-height: 1;
    color: var(--primary-color);
    background: #ffffff;
    border: 2px solid rgba(0, 119, 255, 0.28);
    box-shadow:
        0 6px 18px rgba(0, 87, 180, 0.12),
        0 0 0 4px rgba(0, 119, 255, 0.06);
}

.compliance-dual__bridge-cap {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #475569;
    white-space: nowrap;
    margin: 4px 0 2px;
}

/* Solutions Page Specific */
.services--solutions {
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 42%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services--solutions::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 140vw);
    height: min(560px, 70vh);
    background: radial-gradient(ellipse at center, rgba(0, 119, 255, 0.06) 0%, transparent 68%);
    pointer-events: none;
}

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

.section-header--solutions .section-desc {
    max-width: 560px;
    line-height: 1.65;
}

/* 解决方案：原则胶囊条 + 三列卡片（9810 居中为重点） */
.solutions-block {
    max-width: 1080px;
    margin: 0 auto;
}

.solutions-block__principle {
    margin: 0 auto 26px;
    max-width: min(100%, 560px);
    padding: 13px 22px;
    border-radius: 999px;
    text-align: center;
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.09) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(14, 165, 233, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.18);
    box-shadow: 0 8px 28px -12px rgba(59, 130, 246, 0.35);
}

.solutions-block__principle-text {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.solutions-block__principle-gap {
    color: #94a3b8;
    font-weight: 600;
}

.solutions-block__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Mosaic：统一白底、左色条，弱化「头/说明」分层 */
.solutions-block--mosaic .solution-mode-card--orbit {
    height: 100%;
    border-left: 3px solid var(--solution-accent);
    box-shadow: 0 6px 26px -8px rgba(15, 23, 42, 0.14);
}

.solutions-block--mosaic .solution-mode-card--orbit.solution-mode-card--featured {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.07);
    border-left-color: var(--solution-accent);
    box-shadow:
        0 10px 36px -10px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.14);
}

.solutions-block--mosaic .solution-mode-card__orbit-head {
    background: #ffffff;
    border-bottom: none;
    padding: 16px 16px 6px;
}

.solutions-block--mosaic .solution-mode-card__orbit-head--featured {
    padding-top: 30px;
}

.solutions-block--mosaic .solution-mode-card__orbit-desc {
    margin-top: 0;
    padding: 4px 16px 18px;
    background: #ffffff;
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

.solutions-block--mosaic .solution-mode-title--orbit {
    font-size: 14px;
    line-height: 1.45;
}

.solutions-block--mosaic .solution-mode-code--orbit {
    font-size: 13px;
}

.solutions-block--mosaic .solution-mode-card--orbit:hover {
    box-shadow: 0 14px 40px -10px rgba(15, 23, 42, 0.2);
    border-left-color: var(--solution-accent);
}

.solutions-block--mosaic .solution-mode-card--orbit.solution-mode-card--featured:hover {
    box-shadow:
        0 16px 44px -10px rgba(99, 102, 241, 0.32),
        0 0 0 1px rgba(99, 102, 241, 0.2);
}

/* 模式卡片：上区渐变条 + 标题/代码；下区浅灰说明 */
.solution-mode-card--orbit {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-left: none;
    overflow: hidden;
    box-shadow: 0 12px 40px -14px rgba(15, 23, 42, 0.18);
    background: var(--white);
}

.solution-mode-card--orbit.solution-mode-card--featured {
    padding-top: 0;
    background: var(--white);
    border-color: rgba(15, 23, 42, 0.07);
    box-shadow: 0 12px 44px -12px rgba(99, 102, 241, 0.2);
}

.solution-mode-card__orbit-head {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px 12px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.solution-mode-card__orbit-head--featured {
    padding-top: 30px;
}

.solution-mode-card--9710 .solution-mode-card__orbit-head {
    background: linear-gradient(105deg, rgba(59, 130, 246, 0.16) 0%, rgba(255, 255, 255, 0.97) 65%);
}

.solution-mode-card--9610 .solution-mode-card__orbit-head {
    background: linear-gradient(105deg, rgba(14, 165, 233, 0.14) 0%, rgba(255, 255, 255, 0.97) 65%);
}

.solution-mode-card--9810 .solution-mode-card__orbit-head {
    background: linear-gradient(105deg, rgba(129, 140, 248, 0.2) 0%, rgba(255, 255, 255, 0.97) 62%);
}

.solution-mode-icon--orbit {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--solution-accent);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.solution-mode-icon--orbit svg {
    width: 22px;
    height: 22px;
    display: block;
}

.solution-mode-title--orbit {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.solution-mode-code--orbit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    color: var(--solution-accent);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 9px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.solution-mode-card__orbit-desc {
    margin: 0;
    padding: 11px 14px 13px;
    font-size: 12.5px;
    line-height: 1.58;
    color: #64748b;
    background: #f1f5f9;
}

.solution-mode-ribbon--orbit {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 1;
}

.solutions-block__caption {
    max-width: 520px;
    margin: 22px auto 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    text-align: center;
}

.solutions-note--block {
    margin-top: 16px;
}

.solution-mode-card {
    --solution-accent: var(--primary-color);
    --solution-accent-soft: rgba(0, 119, 255, 0.09);
    position: relative;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    padding: 22px 22px 22px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    border-left: 4px solid var(--solution-accent);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.solution-mode-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 119, 255, 0.2);
}

.solution-mode-card--orbit:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.22);
    box-shadow: 0 20px 50px -14px rgba(15, 23, 42, 0.22);
}

.solution-mode-card--orbit.solution-mode-card--featured:hover {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 24px 56px -12px rgba(99, 102, 241, 0.22);
}

.solution-mode-card--9610 {
    --solution-accent: #0077ff;
    --solution-accent-soft: rgba(0, 119, 255, 0.1);
}

.solution-mode-card--9710 {
    --solution-accent: #1b8cff;
    --solution-accent-soft: rgba(27, 140, 255, 0.1);
}

.solution-mode-card--9810 {
    --solution-accent: #6f42e5;
    --solution-accent-soft: rgba(111, 66, 229, 0.11);
}

.solution-mode-card--featured {
    padding-top: 26px;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.07) 0%, #ffffff 48%);
    border-color: rgba(124, 77, 255, 0.28);
    box-shadow: 0 10px 36px rgba(124, 77, 255, 0.12);
}

.solution-mode-card--featured:hover {
    box-shadow: 0 18px 48px rgba(124, 77, 255, 0.18);
    border-color: rgba(124, 77, 255, 0.42);
}

.solution-mode-ribbon {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #5b2ec4;
    background: rgba(124, 77, 255, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1.2;
}

.solution-mode-card--featured .solution-mode-number {
    align-self: center;
}

.solution-mode-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--solution-accent-soft);
}

.solution-mode-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.solution-mode-text {
    flex: 1;
    min-width: 0;
}

.solution-mode-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.solution-mode-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.solution-mode-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.solution-mode-code {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--solution-accent);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--solution-accent-soft) 160%);
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.solutions-note {
    margin: 22px 0 0;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    text-align: left;
    background: rgba(15, 23, 42, 0.03);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(15, 23, 42, 0.1);
}

.solutions-note__icon {
    margin-right: 6px;
    color: var(--text-muted);
}

.solutions-note strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Solutions: 核心服务价值 */
.section-header--solutions-value {
    margin-bottom: 36px;
}

.solutions-value {
    padding: 88px 0 96px;
}

.solutions-value__hub {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    max-width: 520px;
    min-height: 120px;
}

.solutions-value__hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.14), rgba(0, 180, 220, 0.1));
    border: 1px solid rgba(0, 119, 255, 0.22);
    box-shadow: 0 16px 48px rgba(0, 87, 180, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.solutions-value__hub-text {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 20px 28px;
    font-size: clamp(17px, 2.4vw, 20px);
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.solutions-value__columns {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    align-items: start;
}

.solutions-value__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solutions-value-card {
    background: var(--white);
    border: 1px solid rgba(5, 94, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(15, 40, 80, 0.06);
}

.solutions-value-card__title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.solutions-value-card__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.solutions-value-card__desc strong {
    color: var(--text-primary);
    font-weight: 700;
}

.solutions-value-card--accent {
    border-left-color: #e85a00;
    border-color: rgba(232, 90, 0, 0.14);
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.65) 0%, var(--white) 48%);
}

.solutions-value-card--accent .solutions-value-card__title {
    color: #c24100;
}

/* Solutions: 服务流程 */
.solutions-process {
    background: var(--white);
    padding: 88px 0 100px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.section-header--solutions-process {
    margin-bottom: 28px;
}

.solutions-process__flow-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.solutions-process__anchor {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 119, 255, 0.28);
}

.solutions-process__anchor--end {
    margin-left: auto;
}

.solutions-process__flow-line {
    flex: 1;
    min-width: 48px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(0, 119, 255, 0.35), rgba(0, 119, 255, 0.12));
}

.solutions-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.solutions-process__steps li {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px 18px 18px 16px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.solutions-process__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* Locations Page Specific */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* 四地布局：桌面端 4 列并排 */
@media (min-width: 993px) {
    .services--about-locations .locations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.location-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 119, 255, 0.15);
}

.location-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .location-card-image img {
    transform: scale(1.03);
}

.location-card__body {
    padding: 20px;
    text-align: center;
}

.location-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 119, 255, 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.location-card:first-child .location-card__badge {
    background: rgba(0, 119, 255, 0.12);
    color: var(--primary-color);
}

.location-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.location-card .address {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.location-card .phone {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.location-card .phone a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.location-card .phone a::before {
    content: '📞';
    font-size: 12px;
}

/* News Articles Specific */
.news-articles-grid {
    display: grid;
    gap: 32px;
}

.news-article-card {
    display: flex;
    gap: 32px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.news-article-image {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-article-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-article-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.news-article-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.news-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-article-date {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 86vw);
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        margin: 0;
        padding: calc(80px + 24px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
        background: var(--white);
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
        gap: 0;
        transform: translateX(105%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav.nav-open {
        transform: translateX(0);
    }

    nav a {
        padding: 14px 4px;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    nav a:last-of-type {
        border-bottom: 1px solid var(--border-color);
    }

    nav a::after {
        display: none;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 1000;
        animation: navOverlayIn 0.25s ease forwards;
    }

    @keyframes navOverlayIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero--home .hero-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero--home .hero-buttons {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text--page h1 {
        font-size: 36px;
    }

    .hero-text--page .subtitle {
        font-size: 20px;
    }
    
    .services-grid,
    .news-grid,
    .cases-grid,
    .contact-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services--about-locations .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-card-image {
        height: 120px;
    }
    
    .location-card__body {
        padding: 16px;
    }
    
    .location-card h3 {
        font-size: 16px;
    }
    
    .location-card .address {
        font-size: 12px;
    }
    
    .location-card .phone {
        font-size: 14px;
    }

    .solutions-block__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solutions-block__principle {
        border-radius: 14px;
        padding: 12px 16px;
    }

    .solutions-block__principle-text {
        font-size: 13px;
    }

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

    .solutions-value__columns {
        grid-template-columns: 1fr;
    }

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

    .compliance-dual__grid {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }

    .compliance-dual-card--finance {
        order: 1;
    }

    .compliance-dual__bridge {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 8px 0 24px;
        order: 2;
    }

    .compliance-dual-card--business {
        order: 3;
    }

    .compliance-dual__bridge-line {
        flex: 1;
        width: auto;
        height: 2px;
        min-height: 0;
        background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.2), rgba(14, 165, 233, 0.2), transparent);
    }

    .compliance-dual__bridge-line--top {
        min-height: 0;
        order: 1;
    }

    .compliance-dual__bridge-node {
        margin: 0 12px;
        flex-shrink: 0;
        order: 2;
    }

    .compliance-dual__bridge-line--bottom {
        min-height: 0;
        order: 3;
    }

    .compliance-dual__bridge-cap {
        flex-basis: 100%;
        order: 4;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .contact-item {
        text-align: center;
    }

    .contact-item--social .qrcodes {
        justify-content: center;
    }

    .contact-services a {
        border-bottom: none;
    }

    .contact-services a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .news-article-card {
        flex-direction: column;
    }
    
    .news-article-image {
        width: 100%;
        height: 240px;
    }

    .news-article-content {
        padding: 24px 20px;
    }

    .solution-mode-card {
        flex-wrap: wrap;
    }

    .solution-mode-card .solution-mode-number {
        flex-basis: 100%;
        justify-content: flex-end;
        margin-top: 6px;
        padding-top: 8px;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

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

    .home-case-compare-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-case-compare-v2::before {
        display: none;
    }

    .home-case-compare-v3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .case-compare-head--mid,
    .case-compare-arrow {
        display: none;
    }

    .home-case-timeline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .case-timeline-axis {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: 0;
        padding: 14px 10px 8px;
        gap: 4px;
    }

    .case-timeline-axis__line {
        top: 50%;
        bottom: auto;
        left: 8%;
        right: 8%;
        width: auto;
        height: 3px;
        transform: translateY(-50%);
    }

    .case-timeline-axis__node {
        min-height: 0;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .home-cases .container {
        padding-left: max(18px, env(safe-area-inset-left, 0px));
        padding-right: max(18px, env(safe-area-inset-right, 0px));
    }

    .home-cases-stack {
        gap: 28px;
    }

    .home-case-heading {
        font-size: 17px;
    }

    .home-case-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .home-case-block {
        max-width: 100%;
    }

    .header-content {
        height: 64px;
        gap: 8px;
    }

    nav {
        padding: calc(64px + 24px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantage-card {
        min-height: auto;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .advantage-card__visual {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
    }

    .advantage-card__icon {
        width: 62px;
        height: 62px;
    }

    .advantage-card__title {
        margin-bottom: 6px;
    }

    .advantage-card__desc {
        font-size: 14px;
        line-height: 1.55;
    }
    
    .logo-mark {
        height: 40px;
        max-width: min(168px, 42vw);
    }

    .contact-btn {
        padding: 8px 11px;
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .hero {
        padding: 64px 0 72px;
    }

    .hero--home {
        min-height: auto;
        padding: 72px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text--page h1 {
        font-size: 28px;
    }

    .hero-text--page .subtitle {
        font-size: 17px;
        margin-bottom: 24px;
    }
    
    .hero-text .subtitle {
        font-size: 16px;
    }

    section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
    }

    .solutions-process__steps {
        grid-template-columns: 1fr;
    }

    .solutions-value__hub {
        min-height: 100px;
        margin-bottom: 32px;
    }

    .solutions-value__hub-text {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    .service-card,
    .case-card {
        padding: 24px 20px;
    }

    .contact-item {
        padding: 28px 18px;
    }

    .contact-item .phone {
        font-size: 22px;
        word-break: break-all;
    }

    .location-card {
        padding: 24px 20px;
    }

    .location-card-image {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 180 / 130;
    }

    footer {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 6px;
    }

    .logo-mark {
        height: 36px;
        max-width: min(128px, 34vw);
    }

    .contact-btn {
        padding: 7px 9px;
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text--page h1 {
        font-size: 24px;
    }

    .tagline {
        letter-spacing: 2px;
        font-size: 12px;
    }

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

    .news-content {
        padding: 18px;
    }

    .home-case-block {
        padding: 20px 16px;
    }

    .case-side__title {
        font-size: 13px;
    }

    .case-side__list li {
        font-size: 13px;
    }

    .case-compare-head {
        font-size: 12px;
        padding: 8px 10px;
    }

    .case-compare-cell {
        font-size: 13px;
        min-height: 40px;
        padding: 9px 10px;
    }

    .case-timeline-panel__title {
        font-size: 13px;
        min-height: 40px;
    }

    .case-timeline-list li {
        font-size: 13px;
        min-height: 40px;
        padding: 9px 10px;
    }

    .case-timeline-panel--after .case-timeline-list li {
        padding-left: 36px;
    }

    .case-bridge-banner__title {
        font-size: 14px;
        letter-spacing: 0.08em;
    }

    .case-bridge-list--before li,
    .case-bridge-list--after li {
        font-size: 13px;
        min-height: 44px;
    }

    .case-bridge-mid__text {
        font-size: 13px;
    }

    .case-bridge-mid__text::before,
    .case-bridge-mid__text::after {
        font-size: 11px;
    }
}

/* =====================================================
   ENHANCED VISUAL EFFECTS - Solutions / News / About / Cases
   ===================================================== */

/* ---- Hero eyebrow label ---- */
.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.85;
}

.hero-text--page .hero-eyebrow {
    color: rgba(0, 119, 255, 0.7);
}

/* ---- Solutions / News / About / Cases：内页 Banner（assets/images/banner 配图 + 压暗叠层 + 底部融白） ---- */
.hero--solutions,
.hero--news,
.hero--about,
.hero--cases {
    background: #071a2e;
    position: relative;
    overflow: hidden;
}

.hero.hero--solutions::before,
.hero.hero--news::before,
.hero.hero--about::before,
.hero.hero--cases::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #071a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero.hero--solutions::before {
    background-image: url("../assets/images/banner/解决方案.png");
}

.hero.hero--news::before {
    background-image: url("../assets/images/banner/合规资讯.png");
}

.hero.hero--about::before {
    background-image: url("../assets/images/banner/关于我们.png");
}

.hero.hero--cases::before {
    background-image: url("../assets/images/banner/客户案例.png");
}

.hero.hero--solutions::after,
.hero.hero--news::after,
.hero.hero--about::after,
.hero.hero--cases::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(135deg, rgba(4, 18, 38, 0.82) 0%, rgba(8, 35, 62, 0.55) 45%, rgba(12, 52, 82, 0.38) 100%),
        linear-gradient(to top, var(--white), rgba(255, 255, 255, 0));
    background-size: 100% 100%, 100% 120px;
    background-position: 0 0, center bottom;
    background-repeat: no-repeat;
}

.hero--solutions .hero-text--page h1,
.hero--news .hero-text--page h1,
.hero--about .hero-text--page h1,
.hero--cases .hero-text--page h1 {
    color: #fff;
}

.hero--solutions .hero-text--page .subtitle,
.hero--news .hero-text--page .subtitle,
.hero--about .hero-text--page .subtitle,
.hero--cases .hero-text--page .subtitle {
    color: rgba(200, 220, 255, 0.85);
}

.hero--solutions .hero-eyebrow,
.hero--news .hero-eyebrow,
.hero--about .hero-eyebrow,
.hero--cases .hero-eyebrow {
    color: rgba(120, 180, 255, 0.8);
}

/* Nav 下各页 Banner：小屏背景锚定右侧插画（与解决方案一致），叠层与字重增强可读 */
@media (max-width: 768px) {
    .hero.hero--home::before,
    .hero.hero--solutions::before,
    .hero.hero--news::before,
    .hero.hero--about::before,
    .hero.hero--cases::before {
        background-position: 86% center;
    }

    .hero.hero--solutions::after,
    .hero.hero--news::after,
    .hero.hero--about::after,
    .hero.hero--cases::after {
        background-image:
            linear-gradient(118deg, rgba(4, 18, 38, 0.9) 0%, rgba(8, 35, 62, 0.58) 40%, rgba(12, 52, 82, 0.22) 58%, rgba(12, 52, 82, 0.06) 100%),
            linear-gradient(to top, var(--white), rgba(255, 255, 255, 0));
        background-size: 100% 100%, 100% 120px;
        background-position: 0 0, center bottom;
        background-repeat: no-repeat;
    }

    /* 首页：居中文案区加深叠层，避免细字压在浅色 AI 图形上发虚；底层保留底部融白 */
    .hero.hero--home::after {
        background-image:
            linear-gradient(
                118deg,
                rgba(7, 22, 48, 0.94) 0%,
                rgba(8, 28, 56, 0.82) 28%,
                rgba(10, 36, 68, 0.52) 48%,
                rgba(12, 44, 78, 0.22) 66%,
                rgba(232, 236, 244, 0.06) 100%
            ),
            radial-gradient(ellipse 130% 95% at 50% 42%, rgba(0, 16, 40, 0.42) 0%, transparent 55%),
            linear-gradient(to top, var(--white), rgba(255, 255, 255, 0));
        background-size: 100% 100%, 100% 100%, 100% 100px;
        background-position: 0 0, 0 0, center bottom;
        background-repeat: no-repeat;
    }

    /* 内页深色 Banner：副标题 / 眉题 / 标题 */
    .hero--solutions .hero-text--page .subtitle,
    .hero--news .hero-text--page .subtitle,
    .hero--about .hero-text--page .subtitle,
    .hero--cases .hero-text--page .subtitle {
        color: rgba(255, 255, 255, 0.97);
        text-shadow:
            0 1px 2px rgba(0, 12, 28, 0.85),
            0 2px 12px rgba(4, 18, 38, 0.65),
            0 0 1px rgba(0, 0, 0, 0.5);
    }

    .hero--solutions .hero-eyebrow,
    .hero--news .hero-eyebrow,
    .hero--about .hero-eyebrow,
    .hero--cases .hero-eyebrow {
        color: #cfe6ff;
        text-shadow: 0 1px 2px rgba(0, 12, 28, 0.75), 0 0 10px rgba(4, 18, 38, 0.45);
    }

    .hero--solutions .hero-text--page h1,
    .hero--news .hero-text--page h1,
    .hero--about .hero-text--page h1,
    .hero--cases .hero-text--page h1 {
        text-shadow: 0 1px 3px rgba(0, 12, 28, 0.5), 0 2px 16px rgba(4, 18, 38, 0.35);
    }

    /* 首页：副标题、说明行（tagline 最细最易糊） */
    .hero--home .hero-text .subtitle {
        color: rgba(255, 255, 255, 0.97);
        text-shadow:
            0 1px 2px rgba(0, 12, 28, 0.88),
            0 2px 12px rgba(4, 18, 38, 0.62),
            0 0 1px rgba(0, 0, 0, 0.45);
    }

    .hero--home .hero-text .tagline {
        color: rgba(235, 244, 255, 0.94);
        text-shadow:
            0 1px 2px rgba(0, 12, 28, 0.9),
            0 2px 10px rgba(4, 18, 38, 0.65),
            0 0 1px rgba(0, 0, 0, 0.5);
    }

    /* 勿对整块 h1 加阴影/filter，会与渐变字叠出发黑晕边；阴影只给白字副行 */
    .hero--home .hero-text h1 {
        text-shadow: none;
        filter: none;
    }

    .hero--home .hero-text h1 .hero-brand {
        background-image: linear-gradient(135deg, #d2f0ff 0%, #7fd4ff 38%, #2aa8ff 72%, #0d7ae8 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        filter: none;
    }

    .hero--home .hero-text h1 .hero-title-line {
        text-shadow: 0 1px 14px rgba(4, 18, 38, 0.35);
    }
}

@media (max-width: 480px) {
    .hero.hero--home::before,
    .hero.hero--solutions::before,
    .hero.hero--news::before,
    .hero.hero--about::before,
    .hero.hero--cases::before {
        background-position: 100% center;
    }

    .hero--solutions .hero-text--page .subtitle,
    .hero--news .hero-text--page .subtitle,
    .hero--about .hero-text--page .subtitle,
    .hero--cases .hero-text--page .subtitle {
        text-shadow:
            0 1px 3px rgba(0, 12, 28, 0.92),
            0 3px 14px rgba(4, 18, 38, 0.72),
            0 0 1px rgba(0, 0, 0, 0.55);
    }

    .hero--home .hero-text .subtitle,
    .hero--home .hero-text .tagline {
        text-shadow:
            0 1px 3px rgba(0, 12, 28, 0.92),
            0 3px 14px rgba(4, 18, 38, 0.68),
            0 0 1px rgba(0, 0, 0, 0.52);
    }

    .hero--home .hero-text h1 {
        text-shadow: none;
        filter: none;
    }

    .hero--home .hero-text h1 .hero-brand {
        background-image: linear-gradient(135deg, #dff6ff 0%, #8fddff 36%, #3cb0ff 70%, #0a7adb 100%);
    }

    .hero--home .hero-text h1 .hero-title-line {
        text-shadow: 0 1px 16px rgba(4, 18, 38, 0.4);
    }
}

/* ---- Enhanced News Article Cards ---- */
.news--page {
    padding-top: 80px;
    padding-bottom: 80px;
}

.news-article-card--enhanced {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.news-article-card--enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 80, 200, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
}

.news-article-card--enhanced .news-article-image {
    position: relative;
    overflow: hidden;
}

.news-article-card--enhanced .news-article-image img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-article-card--enhanced:hover .news-article-image img {
    transform: scale(1.08);
}

.news-article-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(0, 119, 255, 0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    z-index: 1;
}

.news-article-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 119, 255, 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.news-article-card--enhanced .news-article-content h2 {
    transition: color 0.3s ease;
}

.news-article-card--enhanced:hover .news-article-content h2 {
    color: var(--primary-color);
}

/* ---- About Stats Section ---- */
.about-stats {
    background: linear-gradient(135deg, #0a1e3d 0%, #0d2a52 50%, #12366a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0, 119, 255, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 50%, rgba(51, 153, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.about-stats__item {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.about-stats__item + .about-stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.about-stats__number {
    display: inline;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #8ec8ff;
    background: linear-gradient(135deg, #7ecbff, #3da0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .about-stats__number {
        -webkit-text-fill-color: unset;
        background: none;
        color: #8ec8ff;
    }
}

.about-stats__plus {
    font-size: 32px;
    font-weight: 700;
    color: rgba(126, 203, 255, 0.8);
}

.about-stats__label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(200, 220, 255, 0.7);
    letter-spacing: 1px;
}

/* ---- Enhanced Location Cards ---- */
.location-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 80, 200, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
}

.location-card-image {
    overflow: hidden;
    height: 200px;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-card:hover .location-card-image img {
    transform: scale(1.06);
}

.location-card__body {
    padding: 24px;
    position: relative;
}

.location-card__badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, #0077ff, #3399ff);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 8px;
}

.location-card__body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.location-card__body .address {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.location-card__body .phone {
    font-size: 14px;
}

.location-card__body .phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* ---- Enhanced Home Cases ---- */
.home-case-block {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.home-case-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 80, 200, 0.08);
}

.case-side {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-side:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 40, 80, 0.08);
}

.case-side--after:hover {
    box-shadow: 0 10px 28px rgba(15, 40, 80, 0.09);
}

.case-timeline-panel {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.case-timeline-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 40, 80, 0.08);
}

.case-timeline-panel--after:hover {
    box-shadow: 0 12px 30px rgba(0, 80, 200, 0.1);
}

.case-bridge-stack:hover {
    transform: translateY(-2px);
    box-shadow:
        3px 3px 0 rgba(15, 23, 42, 0.03),
        6px 6px 0 rgba(15, 23, 42, 0.02),
        0 14px 32px rgba(15, 23, 42, 0.06);
}

/* ---- Compliance Dual Cards enhanced ---- */
.compliance-dual-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.compliance-dual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 80, 200, 0.1);
}

/* ---- Solution Mode Cards enhanced ---- */
.solution-mode-card--orbit {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.solution-mode-card--orbit:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 80, 200, 0.12);
}

/* ---- Solutions Process Steps stagger animation ---- */
.solutions-process__steps li {
    transition: transform 0.3s ease, background 0.3s ease;
}

.solutions-process__steps li:hover {
    transform: translateX(6px);
    background: rgba(0, 119, 255, 0.04);
    border-radius: 8px;
}

/* ---- Solutions Value Cards ---- */
.solutions-value-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.solutions-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 80, 200, 0.1);
}

/* ---- Floating decorative dots ---- */
.hero--solutions .container::after,
.hero--news .container::after,
.hero--about .container::after,
.hero--cases .container::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(0, 119, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.hero--solutions .container,
.hero--news .container,
.hero--about .container,
.hero--cases .container {
    position: relative;
    z-index: 2;
}

/* ---- Responsive: about stats ---- */
@media (max-width: 768px) {
    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-stats__number {
        font-size: 36px;
    }

    .about-stats__item + .about-stats__item::before {
        display: none;
    }

}

@media (max-width: 480px) {
    .about-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stats__number {
        font-size: 28px;
    }

    .about-stats {
        padding: 40px 0;
    }
}

/* ===== 微信咨询弹窗 ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    max-width: 360px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-body {
    text-align: center;
}

.modal-body h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 600;
}

.qrcode-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px dashed #cbd5e1;
}

.qrcode-box img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.phone-hint {
    color: #475569;
    font-size: 15px;
    margin: 0 0 4px;
}

.phone-hint a {
    color: #0077ff;
    font-weight: 600;
    text-decoration: none;
}

.wechat-hint {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 24px;
        margin: 16px;
    }
    .qrcode-box img {
        width: 160px;
        height: 160px;
    }
}
