:root {
    --site-ink: #0b1f3a;
    --site-ink-soft: #2f475d;
    --site-blue: #086b92;
    --site-blue-dark: #075577;
    --site-cyan: #18a7b8;
    --site-line: #bdcdd5;
    --site-line-strong: #aebfc8;
    --site-paper: #dbe4e8;
    --site-white: #ffffff;
    --site-warm: #e7a548;
    --site-shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
    --site-font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --site-font-display: "Noto Serif SC", "Songti SC", STSong, serif;
}

html { scroll-behavior: smooth; }
body.site-subpage {
    min-width: 0;
    margin: 0;
    padding-top: 76px;
    overflow-x: hidden;
    background: linear-gradient(180deg, #d2e0e5 0%, #e4ebee 420px, #d8e2e6 100%);
    color: var(--site-ink);
    font-family: var(--site-font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
.site-subpage *, .site-subpage *::before, .site-subpage *::after { box-sizing: border-box; }
.site-subpage a { text-decoration: none; }
.site-subpage img { max-width: 100%; }
.site-subpage :focus-visible { outline: 3px solid rgba(24, 167, 184, .55); outline-offset: 3px; }

/* Global header */
.site-subpage .header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    width: 100%;
    min-width: 0;
    height: 76px;
    padding: 0;
    background: rgba(255, 255, 255, .97);
    border: 0;
    border-bottom: 1px solid var(--site-line);
    box-shadow: none;
    backdrop-filter: none;
    transition: box-shadow .25s ease;
}
.site-subpage .header.scrolled { box-shadow: 0 10px 32px rgba(11, 31, 58, .08); }
.site-subpage .header-inner {
    width: 100%;
    max-width: 1320px;
    height: 76px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-subpage .logo-area,
.site-subpage .brand {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-ink);
}
.site-subpage .logo-area img,
.site-subpage .brand img {
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    object-fit: contain;
}
.site-subpage .logo-text,
.site-subpage .brand strong {
    display: block;
    color: var(--site-ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}
.site-subpage .logo-sub,
.site-subpage .brand > span > span {
    display: block;
    color: #6b8ba0;
    font-size: 9px;
    letter-spacing: 1.8px;
    line-height: 1.4;
}
.site-subpage .nav,
.site-subpage .header-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-subpage .nav > a,
.site-subpage .nav-item > a,
.site-subpage .header-nav > a {
    position: relative;
    padding: 28px 0 25px;
    color: #4a5d70;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}
.site-subpage .nav > a::after,
.site-subpage .nav-item > a::after,
.site-subpage .header-nav > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 2px;
    background: var(--site-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.site-subpage .nav a:hover,
.site-subpage .nav a.active,
.site-subpage .header-nav a:hover,
.site-subpage .header-nav a.active { color: var(--site-blue); }
.site-subpage .nav > a:hover::after,
.site-subpage .nav > a.active::after,
.site-subpage .nav-item > a:hover::after,
.site-subpage .nav-item > a.active::after,
.site-subpage .header-nav > a:hover::after,
.site-subpage .header-nav > a.active::after { transform: scaleX(1); }
.site-subpage .nav-item { position: relative; }
.site-subpage .nav-dropdown {
    top: 66px;
    min-width: 150px;
    padding: 8px;
    border: 1px solid var(--site-line);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(11, 31, 58, .12);
}
.site-subpage .nav-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 20px;
}
.site-subpage .nav-item:focus-within .nav-dropdown { display: block; }
.site-subpage .nav-dropdown a {
    padding: 10px 12px;
    border-radius: 3px;
    color: #566b7c;
    font-size: 13px;
}
.site-subpage .nav-dropdown a:hover { background: #eef4f6; color: var(--site-blue); transform: none; }
.site-subpage .header-btns { display: flex; align-items: center; gap: 10px; }
.site-subpage .btn-contact,
.site-subpage .btn-quote,
.site-subpage .nav-cta {
    min-height: 42px;
    margin: 0;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-ink);
    border-radius: 999px;
    font-family: var(--site-font-body);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}
.site-subpage .btn-contact { color: var(--site-blue); border-color: var(--site-blue); background: #fff; }
.site-subpage .btn-quote,
.site-subpage .nav-cta { color: #fff !important; background: var(--site-ink); box-shadow: 0 8px 20px rgba(11, 31, 58, .16); }
.site-subpage .btn-contact:hover { color: #fff; background: var(--site-blue); }
.site-subpage .btn-quote:hover,
.site-subpage .nav-cta:hover { color: #fff; background: var(--site-blue); border-color: var(--site-blue); transform: translateY(-1px); }
.site-subpage .floating-home-btn { display: none !important; }

.site-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    border: 1px solid #cbd7de;
    border-radius: 50%;
    background: #fff;
    color: var(--site-ink);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.site-mobile-toggle span,
.site-mobile-toggle::before,
.site-mobile-toggle::after {
    content: "";
    width: 17px;
    height: 2px;
    position: absolute;
    border-radius: 4px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.site-mobile-toggle::before { transform: translateY(-6px); }
.site-mobile-toggle::after { transform: translateY(6px); }
.site-mobile-toggle[aria-expanded="true"] span { opacity: 0; }
.site-mobile-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.site-mobile-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
.site-mobile-panel {
    display: none;
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 10px 22px 22px;
    background: #fff;
    border-bottom: 1px solid var(--site-line);
    box-shadow: 0 18px 30px rgba(11, 31, 58, .12);
}
.site-mobile-panel.open { display: grid; }
.site-mobile-panel a {
    padding: 14px 4px;
    color: var(--site-ink);
    border-bottom: 1px solid #e7edef;
    font-size: 15px;
    font-weight: 650;
}
.site-mobile-panel a:last-child {
    margin-top: 12px;
    border: 0;
    border-radius: 4px;
    background: var(--site-ink);
    color: #fff;
    text-align: center;
}

/* Editorial page hero */
.site-subpage .page-hero,
.site-subpage.page-honors > .hero,
.site-subpage .main > .page-header {
    min-height: 350px;
    margin: 0;
    padding: 96px 40px 72px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 12% 10%, rgba(24, 167, 184, .16), transparent 32%),
        linear-gradient(135deg, #c8dae1 0%, #e3eaed 56%, #cfdee3 100%);
    color: var(--site-ink);
}
.site-subpage .page-hero::before,
.site-subpage.page-honors > .hero::before,
.site-subpage .main > .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image: linear-gradient(rgba(11,31,58,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}
.site-subpage .page-hero::after,
.site-subpage.page-honors > .hero::after,
.site-subpage .main > .page-header::after {
    content: "";
    width: 52px;
    height: 3px;
    margin-top: 24px;
    position: relative;
    background: var(--site-cyan);
}
.site-subpage .page-hero h1,
.site-subpage.page-honors > .hero h1,
.site-subpage .page-title {
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
    color: var(--site-ink);
    font-family: var(--site-font-display);
    font-size: clamp(46px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.045em;
}
.site-subpage .page-hero p,
.site-subpage.page-honors > .hero p,
.site-subpage .page-subtitle {
    max-width: 700px;
    margin: 0;
    position: relative;
    z-index: 1;
    color: var(--site-ink-soft);
    font-size: 17px;
    line-height: 1.8;
}
.site-subpage .breadcrumb {
    margin-top: 22px;
    position: relative;
    z-index: 1;
    color: #50687a;
    font-size: 12px;
}
.site-subpage .breadcrumb a { display: inline-flex; align-items: center; min-height: 36px; color: var(--site-blue); }

/* Shared content rhythm */
.site-subpage .content,
.site-subpage .cases-section,
.site-subpage .partners-section,
.site-subpage .process-section,
.site-subpage .main > .process-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 88px 40px;
}
.site-subpage .content { display: block; }
.site-subpage h2,
.site-subpage .section-title,
.site-subpage .cta-title {
    color: var(--site-ink);
    font-family: var(--site-font-display);
    letter-spacing: -.025em;
}
.site-subpage .content > h2,
.site-subpage .section-title,
.site-subpage .partners-header h2,
.site-subpage .process-section > h2 {
    margin: 0 0 42px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.25;
    text-align: left;
}
.site-subpage p { color: var(--site-ink-soft); }

/* About */
.page-about .intro-card {
    margin-bottom: 20px;
    padding: 34px 36px;
    border: 1px solid var(--site-line);
    border-radius: 4px;
    background: #fbfcfd;
    box-shadow: none;
}
.page-about .intro-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,31,58,.09); }
.page-about .intro-card h3 { color: var(--site-ink); font-size: 22px; }
.page-about .intro-card h2::before { background: var(--site-cyan); }
.page-about .intro-card p { font-size: 15px; line-height: 1.95; }
.page-about .content > img {
    width: 100%;
    max-height: 560px;
    margin: 14px 0 28px;
    border-radius: 4px 42px 4px 4px !important;
    object-fit: cover;
    box-shadow: var(--site-shadow) !important;
    filter: saturate(.82);
}
.page-about .timeline { border-left-color: var(--site-cyan); }
.page-about .timeline::before { background: var(--site-cyan); }
.page-about .timeline-item::before { background: var(--site-blue); box-shadow: 0 0 0 2px var(--site-blue); }
.page-about .timeline-year { color: var(--site-blue); font-family: Georgia, serif; }
.page-about .timeline-text { border: 1px solid var(--site-line); border-radius: 4px; background: #fbfcfd; color: var(--site-ink-soft); }
.page-about .stats-grid {
    margin: 64px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--site-line-strong);
    border-left: 1px solid var(--site-line-strong);
}
.page-about .stat-item {
    min-height: 144px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--site-line-strong);
    border-bottom: 1px solid var(--site-line-strong);
    border-radius: 0;
    background: #fbfcfd;
    box-shadow: none;
}
.page-about .stat-num { color: var(--site-ink); line-height: 1.05; }
.page-about .stat-unit { margin-top: 8px; color: var(--site-blue); font-weight: 750; line-height: 1.3; }
.page-about .stat-label { margin-top: 6px; color: var(--site-ink-soft); font-weight: 650; line-height: 1.4; }
.page-about .honors { border: 1px solid var(--site-line); border-radius: 4px; background: #cad8de; }
.page-about .honor-tag { border-radius: 999px; background: #fff; color: var(--site-blue); }

/* Cases */
.page-cases .cases-section { max-width: 1320px; }
.page-cases .cases-section { min-height: 0; background: var(--site-paper); }
.page-cases .section-title { text-align: left; }
.page-cases .section-title h2 { margin-bottom: 12px; color: var(--site-ink); font-family: var(--site-font-display); font-size: clamp(32px, 4vw, 46px); }
.page-cases .section-title p { color: var(--site-ink-soft); }
.page-cases .case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.page-cases .case-study-card {
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 4px;
    background: #fbfcfd;
    box-shadow: none;
}
.page-cases .case-study-card:hover { transform: translateY(-5px); box-shadow: var(--site-shadow); }
.page-cases .case-study-top { padding: 28px; background: var(--site-ink); }
.page-cases .case-industry { color: #7de0e7; }
.page-cases .case-platform { color: rgba(255,255,255,.86); }
.page-cases .case-pain,
.page-cases .case-metrics,
.page-cases .case-action { padding-right: 28px; padding-left: 28px; }
.page-cases .case-metric strong,
.page-cases .case-metric .num { color: var(--site-blue); }
.page-cases .partners-section { max-width: none; padding-right: max(40px, calc((100vw - 1240px)/2)); padding-left: max(40px, calc((100vw - 1240px)/2)); background: #cad8de; }
.page-cases .partners-grid { grid-template-columns: repeat(7, 1fr); gap: 12px; }
.page-cases .partner-card { min-height: 112px; border: 1px solid var(--site-line); border-radius: 4px; background: #fbfcfd; box-shadow: none; }
.page-cases .brand-logo { filter: grayscale(1); opacity: .75; }
.page-cases .partner-card:hover .brand-logo { filter: grayscale(0); opacity: 1; }
.page-cases .stats-row {
    gap: 0;
    border: 0;
    border-top: 1px solid var(--site-line-strong);
    border-left: 1px solid var(--site-line-strong);
    border-radius: 0;
    background: transparent;
}
.page-cases .stat-box {
    min-height: 144px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid var(--site-line-strong);
    border-bottom: 1px solid var(--site-line-strong);
    border-radius: 0;
    background: #fbfcfd;
}
.page-cases .stat-num { margin-bottom: 10px; color: var(--site-cyan); line-height: 1.05; }
.page-cases .stat-label { color: var(--site-ink-soft); font-weight: 650; line-height: 1.4; }
.page-cases .process-section {
    max-width: none;
    padding-right: max(40px, calc((100vw - 1240px)/2));
    padding-left: max(40px, calc((100vw - 1240px)/2));
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(24,167,184,.16), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(8,107,146,.22), transparent 32%),
        var(--site-ink);
}
.page-cases .process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}
.page-cases .process-heading,
.page-cases .process-grid { position: relative; z-index: 1; }
.page-cases .process-heading {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 64px;
    align-items: end;
}
.page-cases .process-section .section-title { margin: 0; }
.page-cases .process-eyebrow,
.page-cases .cta-kicker {
    display: block;
    margin-bottom: 14px;
    color: #75dce4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}
.page-cases .process-section .section-title h2 { margin-bottom: 14px; color: #fff; }
.page-cases .process-section .section-title p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }
.page-cases .process-intro { margin: 0 0 3px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.85; }
.page-cases .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.page-cases .process-item {
    min-height: 390px;
    padding: 30px 26px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 5px 30px 5px 5px;
    background: linear-gradient(155deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
    box-shadow: 0 20px 46px rgba(0,0,0,.13);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.page-cases .process-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    left: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--site-cyan), transparent);
}
.page-cases .process-item:not(:last-child)::after {
    content: "→";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50px;
    right: -24px;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid rgba(117,220,228,.38);
    border-radius: 50%;
    color: #75dce4;
    background: var(--site-ink);
    font-size: 14px;
}
.page-cases .process-item:hover { transform: translateY(-7px); border-color: rgba(117,220,228,.55); background: linear-gradient(155deg, rgba(255,255,255,.15), rgba(255,255,255,.065)); }
.page-cases .process-topline { margin-bottom: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.page-cases .process-num {
    color: #75dce4;
    background: transparent;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}
.page-cases .process-label { color: rgba(255,255,255,.48); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.page-cases .process-title { margin: 0 0 12px; color: #fff; font-family: var(--site-font-display); font-size: 24px; }
.page-cases .process-desc { min-height: 66px; margin: 0 0 20px; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.75; }
.page-cases .process-points { margin: 0 0 26px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.11); list-style: none; }
.page-cases .process-points li { margin-top: 9px; padding-left: 17px; position: relative; color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.55; }
.page-cases .process-points li::before { content: ""; width: 5px; height: 5px; position: absolute; top: .55em; left: 0; border-radius: 50%; background: var(--site-cyan); }
.page-cases .process-output { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .08em; }
.page-cases .process-output strong { margin-top: 5px; display: block; color: #fff; font-size: 12px; letter-spacing: 0; }
.site-subpage.page-cases .cta-section { padding: 76px 40px; background: #cad8de; }
.site-subpage.page-cases .cta-section .cta-box {
    max-width: 1240px;
    padding: 54px 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 56px;
    align-items: center;
    border: 1px solid rgba(117,220,228,.28);
    border-radius: 5px 44px 5px 5px;
    background: linear-gradient(135deg, #0b1f3a 0%, #123b5d 100%);
    box-shadow: 0 24px 54px rgba(11,31,58,.18);
    text-align: left;
}
.page-cases .cta-section .cta-box h3 { margin: 0 0 12px; color: #fff; font-family: var(--site-font-display); font-size: clamp(30px, 4vw, 46px); line-height: 1.25; }
.page-cases .cta-section .cta-box p { max-width: 720px; margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; }
.page-cases .cta-action-group { min-width: 250px; display: grid; gap: 12px; justify-items: start; }
.page-cases .cta-section .cta-btn { min-height: 52px; padding: 0 25px; gap: 20px; border: 0; color: var(--site-ink); background: #fff; }
.page-cases .cta-section .cta-btn:hover { color: #fff; background: var(--site-blue); }
.page-cases .cta-action-group small { max-width: 250px; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.6; }

/* Pricing */
.page-pricing .features-grid { gap: 0; border-top: 1px solid var(--site-line-strong); border-left: 1px solid var(--site-line-strong); }
.page-pricing .feature-card { border: 0; border-right: 1px solid var(--site-line-strong); border-bottom: 1px solid var(--site-line-strong); border-radius: 0; background: #fbfcfd; box-shadow: none; }
.page-pricing .feature-icon { color: var(--site-blue); background: #e8f2f4; }
.page-pricing .pricing-table { overflow: hidden; border: 1px solid var(--site-line); border-radius: 4px; background: #fff; box-shadow: var(--site-shadow); }
.page-pricing .pricing-table .row-header { background: var(--site-ink); }
.page-pricing .pricing-table tr:hover,
.page-pricing .pricing-table .highlight { background: #eef6f7; }
.page-pricing .price { color: var(--site-blue); }
.page-pricing .service-note { border: 1px solid var(--site-line); border-radius: 4px; background: #cad8de; }
.page-pricing .service-note h4 { color: var(--site-ink); }
.page-pricing .special-grid { gap: 16px; }
.page-pricing .special-card,
.page-pricing .faq-item { border: 1px solid var(--site-line); border-radius: 4px; background: #fff; box-shadow: none; }
.page-pricing .special-card:hover { transform: translateY(-4px); box-shadow: var(--site-shadow); }
.page-pricing .advice-section { border: 0; border-left: 4px solid var(--site-cyan); border-radius: 0; background: #cad8de; }
.page-pricing .content { padding-bottom: 40px; }
.page-pricing .contact-bar {
    margin-bottom: 0;
    padding: 36px 40px;
    border-radius: 4px;
    background: var(--site-ink);
    box-shadow: none;
}
.page-pricing .contact-bar p:not(.phones) { color: #dceaf1; }
.page-pricing .contact-bar .phones {
    color: #45d9b0;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.35;
}

/* News */
.page-news .content { max-width: 1240px; }
.page-news .category-tabs { border-bottom: 1px solid var(--site-line); }
.page-news .category-tab { border: 0; border-radius: 0; color: #667b8b; background: transparent; font-family: var(--site-font-body); cursor: pointer; }
.page-news .category-tab.active,
.page-news .category-tab:hover { color: var(--site-blue); background: transparent; box-shadow: inset 0 -3px 0 var(--site-cyan); }
.page-news .hot-news { padding: 38px; border: 1px solid var(--site-line); border-radius: 4px; background: var(--site-ink); box-shadow: var(--site-shadow); }
.page-news .hot-tag { border-radius: 999px; color: var(--site-ink); background: #73dce3; }
.page-news .hot-title { color: #fff; font-family: var(--site-font-display); }
.page-news .hot-desc, .page-news .hot-meta { color: rgba(255,255,255,.86); }
.page-news .hot-news .source-link { color: #8be3e9; }
.page-news .hot-news .source-link:hover { color: #fff; }
.page-news .news-grid { gap: 18px; }
.page-news .news-card,
.page-news .news-row-card { overflow: hidden; border: 1px solid var(--site-line); border-radius: 4px; background: #fff; box-shadow: none; }
.page-news .news-card:hover,
.page-news .news-row-card:hover { transform: translateY(-4px); box-shadow: var(--site-shadow); }
.page-news .news-card-img,
.page-news .news-row-img { filter: saturate(.72); }
.page-news .news-card:hover .news-card-img,
.page-news .news-row-card:hover .news-row-img { filter: saturate(.95); }
.page-news .news-card-title,
.page-news .news-row-title { color: var(--site-ink); }
.page-news .news-card-date { color: var(--site-blue); }
.page-news .cta-box { margin-top: 64px; padding: 44px 28px; border-radius: 4px; background: var(--site-ink); }
.page-news .cta-box h3 { margin: 0 0 10px; color: #fff; font-family: var(--site-font-display); font-size: 30px; }
.page-news .cta-box p { margin-bottom: 20px; color: rgba(255,255,255,.86); }
.page-news .cta-box a { display: inline-flex; min-height: 46px; padding: 0 20px; align-items: center; border-radius: 4px; color: var(--site-ink); background: #fff; font-weight: 750; }
.page-news .cta-box a:hover { color: #fff; background: var(--site-blue); }
.page-news .news-contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    padding: 24px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background: rgba(4, 16, 31, .78);
}
.page-news .news-contact-modal.open { display: flex; }
.page-news .news-contact-dialog {
    width: min(600px, 100%);
    padding: 42px;
    position: relative;
    border: 1px solid rgba(24,167,184,.28);
    border-radius: 5px 34px 5px 5px;
    background: #f7f9fa;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
    text-align: center;
}
.page-news .news-contact-close {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    border: 1px solid var(--site-line);
    border-radius: 50%;
    color: var(--site-ink);
    background: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.page-news .news-contact-close:hover { color: #fff; border-color: var(--site-blue); background: var(--site-blue); }
.page-news .news-contact-kicker { display: block; margin-bottom: 10px; color: var(--site-blue); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.page-news .news-contact-dialog h2 { margin: 0 0 10px; color: var(--site-ink); font-family: var(--site-font-display); font-size: 32px; }
.page-news .news-contact-dialog > p { margin: 0 auto 24px; color: var(--site-ink-soft); font-size: 14px; line-height: 1.7; }
.page-news .news-contact-qr-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.page-news .news-contact-qr-list figure { margin: 0; padding: 14px; border: 1px solid var(--site-line); border-radius: 4px; background: #fff; }
.page-news .news-contact-qr-list img { width: 100%; height: 238px; display: block; object-fit: contain; }
.page-news .news-contact-qr-list figcaption { margin-top: 9px; color: var(--site-ink-soft); font-size: 12px; font-weight: 700; }
.page-news .news-contact-phone { margin-top: 20px; padding-top: 18px; display: flex; align-items: center; justify-content: center; gap: 14px; border-top: 1px solid var(--site-line); }
.page-news .news-contact-phone span { color: #6a7d8c; font-size: 12px; }
.page-news .news-contact-phone a { color: var(--site-blue); font-size: 18px; font-weight: 800; }

/* Honors */
.page-honors .content { max-width: 1240px; }
.page-honors .intro-text { max-width: 820px; margin: 0 auto 42px; color: var(--site-ink-soft); font-size: 17px; line-height: 1.9; }
.page-honors .honors-image { width: 100%; border: 0; border-radius: 4px 44px 4px 4px; box-shadow: var(--site-shadow); filter: saturate(.8); }
.page-honors .cert-grid { gap: 0; border-top: 1px solid var(--site-line-strong); border-left: 1px solid var(--site-line-strong); }
.page-honors .cert-item { border: 0; border-right: 1px solid var(--site-line-strong); border-bottom: 1px solid var(--site-line-strong); border-radius: 0; background: #fff; box-shadow: none; }
.page-honors .cert-item .icon { background: #e8f2f4; color: var(--site-blue); }
.page-honors .values-section { border-radius: 4px; background: var(--site-ink); }
.page-honors .values-section h2,
.page-honors .value-item h3 { color: #fff; }
.page-honors .value-item p { color: rgba(255,255,255,.86); }
.page-honors .value-icon { color: #73dce3; background: rgba(255,255,255,.08); }

/* Cooperation */
.page-cooperate .main { max-width: none; margin: 0; padding: 0; }
.page-cooperate .main > .process-section { max-width: 1120px; }
.page-cooperate .process-timeline::before { display: none; }
.page-cooperate .step-card,
.page-cooperate .step-card:nth-child(odd),
.page-cooperate .step-card:nth-child(even) {
    margin-bottom: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    border: 1px solid var(--site-line);
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
}
.page-cooperate .step-card:hover { transform: translateX(4px); box-shadow: var(--site-shadow); }
.page-cooperate .step-number {
    width: 56px;
    height: 56px;
    position: static;
    order: 0 !important;
    border-radius: 50%;
    color: #fff;
    background: var(--site-ink);
    box-shadow: none;
    font-size: 24px;
}
.page-cooperate .step-content { width: auto; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.page-cooperate .step-title { margin-bottom: 8px; font-family: var(--site-font-display); color: var(--site-ink); font-size: 28px; }
.page-cooperate .step-desc { margin-bottom: 18px; color: var(--site-ink-soft); font-size: 15px; }
.page-cooperate .step-details { gap: 8px; }
.page-cooperate .step-detail { border-left: 3px solid var(--site-cyan); border-radius: 3px; background: #eef4f6; }
.page-cooperate .step-detail-icon { color: var(--site-blue); }
.page-cooperate .step-detail-text { color: var(--site-ink-soft); font-size: 14px; }
.page-cooperate .step-detail-text strong { color: var(--site-blue); }

/* Privacy + sitemap */
.page-privacy .content,
.page-sitemap .content { max-width: 980px; }
.page-privacy .policy-card { padding: 52px; border: 1px solid var(--site-line); border-radius: 4px; background: #fff; box-shadow: var(--site-shadow); }
.page-privacy .policy-card h2 { margin-top: 42px; padding-bottom: 12px; border-bottom: 1px solid var(--site-line); font-size: 24px; }
.page-privacy .policy-card h2:first-of-type { margin-top: 0; }
.page-privacy .policy-card p,
.page-privacy .policy-card li { color: var(--site-ink-soft); line-height: 1.95; }
.page-privacy .update-time { color: #718696; background: #eef4f6; }
.page-sitemap .sitemap-grid { gap: 14px; }
.page-sitemap .sitemap-section { padding: 28px; border: 1px solid var(--site-line); border-radius: 4px; background: #fff; box-shadow: none; }
.page-sitemap .sitemap-section:hover { transform: translateY(-3px); box-shadow: var(--site-shadow); }
.page-sitemap .sitemap-section h2 { color: var(--site-ink); font-size: 22px; }
.page-sitemap .sitemap-section a { color: var(--site-ink-soft); }
.page-sitemap .sitemap-section a:hover { color: var(--site-blue); transform: translateX(3px); }

/* Service flow */
.page-flow { background: var(--site-paper); }
.page-flow > .hero {
    min-height: 630px;
    padding: 86px 40px 72px;
    position: relative;
    overflow: hidden;
    color: var(--site-ink);
    background: linear-gradient(135deg, #c8dae1 0%, #e3eaed 56%, #cfdee3 100%);
}
.page-flow > .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image: linear-gradient(rgba(11,31,58,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}
.page-flow .hero-inner { max-width: 1240px; position: relative; z-index: 1; gap: 70px; }
.page-flow .eyebrow { padding: 0; color: var(--site-blue); background: transparent; letter-spacing: .13em; }
.page-flow .hero h1 { color: var(--site-ink); font-family: var(--site-font-display); font-size: clamp(46px, 5vw, 68px); letter-spacing: -.045em; }
.page-flow .hero p { color: var(--site-ink-soft); font-size: 17px; line-height: 1.9; }
.page-flow .btn { min-height: 50px; padding: 0 24px; border-radius: 4px; font-weight: 750; }
.page-flow .btn-primary { background: var(--site-ink); box-shadow: none; }
.page-flow .btn-primary:hover { background: var(--site-blue); }
.page-flow .btn-secondary { border-color: #b9c8d1; color: var(--site-ink); background: rgba(255,255,255,.72); }
.page-flow .hero-card { padding: 32px; border: 1px solid var(--site-line); border-radius: 4px 36px 4px 4px; background: #fff; box-shadow: var(--site-shadow); }
.page-flow .hero-card h2 { font-size: 28px; }
.page-flow .metric { border-radius: 3px; background: #eef4f6; }
.page-flow .metric strong { color: var(--site-blue); }
.page-flow .metric span { color: #687d8d; }
.site-subpage .header-nav > a.nav-cta,
.site-subpage.page-flow .nav > a.nav-cta {
    min-width: 92px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 6px;
    line-height: 1;
}
.site-subpage .header-nav > a.nav-cta::after,
.site-subpage.page-flow .nav > a.nav-cta::after { display: none; }
.page-flow .section { padding: 88px 40px; }
.page-flow .section:nth-of-type(3) { background: #cad8de; }
.page-flow .section-head h2 { font-family: var(--site-font-display); color: var(--site-ink); font-size: clamp(32px, 4vw, 48px); }
.page-flow .section-label { color: var(--site-blue); }
.page-flow .summary-grid { gap: 0; border-top: 1px solid var(--site-line-strong); border-left: 1px solid var(--site-line-strong); }
.page-flow .summary-card { border: 0; border-right: 1px solid var(--site-line-strong); border-bottom: 1px solid var(--site-line-strong); border-radius: 0; background: #fff; }
.page-flow .process-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 620px);
    margin: 0 auto 40px;
    padding: 7px;
    border: 1px solid #aebfc9;
    border-radius: 8px;
    background: rgba(255,255,255,.62);
    box-shadow: 0 12px 32px rgba(11,31,58,.09);
}
.page-flow .process-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    min-height: 58px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #526979;
    background: transparent;
    box-shadow: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.page-flow .process-tab:hover {
    border-color: #91a9b7;
    color: var(--site-ink);
    background: rgba(255,255,255,.78);
}
.page-flow .process-tab.active-pre,
.page-flow .process-tab.active-post {
    color: #fff;
    border-color: var(--site-ink);
    background: var(--site-ink);
    box-shadow: 0 8px 20px rgba(11,31,58,.22);
    transform: translateY(-1px);
}
.page-flow .process-tab.active-pre::after,
.page-flow .process-tab.active-post::after {
    content: "当前";
    padding: 3px 7px;
    border-radius: 999px;
    color: var(--site-ink);
    background: var(--site-cyan);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
.page-flow .process-tab:focus-visible {
    outline: 3px solid rgba(24,167,184,.38);
    outline-offset: 3px;
}
.page-flow .panel { border: 1px solid var(--site-line); border-radius: 4px; background: #fff; box-shadow: var(--site-shadow); }
.page-flow .phase { border-color: var(--site-line); }
.page-flow .num { color: #fff; background: var(--site-ink); }
.page-flow .step { border-radius: 3px; background: #f5f8f9; }
.page-flow .step-icon { color: var(--site-blue); background: #e5f1f3; }
.page-flow .cta {
    border-radius: 4px;
    background: var(--site-ink);
    box-shadow: none;
}
.page-flow .cta > div { max-width: 920px; }
.page-flow .cta h2 {
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--site-font-display);
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -.02em;
}
.page-flow .cta p {
    margin: 0;
    color: #dceaf1;
    font-size: 16px;
    font-weight: 550;
    line-height: 1.8;
}
.page-flow .cta .btn {
    min-height: 54px;
    padding: 0 26px;
    color: var(--site-ink);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
}
.page-flow .cta .btn:hover {
    color: #fff;
    background: var(--site-blue);
}

/* Douyin campaign */
.page-douyin {
    min-height: 100vh;
    padding-top: 0 !important;
    background:
        radial-gradient(circle at 10% 10%, rgba(24,167,184,.13), transparent 28%),
        linear-gradient(135deg, #c8dae1 0%, #e3eaed 56%, #cad8de 100%) !important;
}
.page-douyin .close-link { top: 22px; right: 24px; z-index: 10; border: 1px solid var(--site-line); color: var(--site-ink); background: #fff; box-shadow: 0 12px 30px rgba(11,31,58,.1); }
.page-douyin .page { min-height: calc(100vh - 86px); padding: 72px 40px 38px; }
.page-douyin .card { max-width: 1120px; padding: 56px; gap: 64px; border: 1px solid var(--site-line); border-radius: 4px 48px 4px 4px; background: rgba(255,255,255,.96); box-shadow: var(--site-shadow); }
.page-douyin .brand { margin-bottom: 48px; }
.page-douyin .eyebrow { color: var(--site-blue); background: transparent; letter-spacing: .12em; }
.page-douyin h1 { max-width: 580px; color: var(--site-ink); font-family: var(--site-font-display); font-size: clamp(46px, 6vw, 70px); letter-spacing: -.045em; }
.page-douyin .lead { color: var(--site-ink-soft); font-size: 17px; line-height: 1.9; }
.page-douyin .stats { gap: 0; border-top: 1px solid var(--site-line-strong); border-left: 1px solid var(--site-line-strong); }
.page-douyin .stat { border: 0; border-right: 1px solid var(--site-line-strong); border-bottom: 1px solid var(--site-line-strong); border-radius: 0; background: #f7f9fa; }
.page-douyin .stat strong { color: var(--site-ink); }
.page-douyin .btn { min-height: 50px; padding: 0 22px; border-radius: 4px; font-weight: 750; }
.page-douyin .btn-primary { background: var(--site-ink); }
.page-douyin .btn-primary:hover { background: var(--site-blue); }
.page-douyin .btn-secondary { border-color: #b9c8d1; color: var(--site-ink); background: #fff; }
.page-douyin .qr-panel { border: 1px solid var(--site-line); border-radius: 4px 36px 4px 4px; background: #eef4f6; }
.page-douyin .qr-image-crop { border-radius: 4px; background: #fff; }
.page-douyin .qr-image-crop img { object-fit: contain; }
.page-douyin .qr-caption strong { color: var(--site-ink); }
.page-douyin .qr-caption span { color: #6d8292; }
.page-douyin .page-footer { color: #6d8292; }
.page-douyin .page-footer a { color: #6d8292; }

/* CTA + footer */
.site-subpage .cta-section { width: 100%; max-width: none; margin: 0; padding: 82px 40px; background: var(--site-ink); }
.site-subpage .cta-section .cta-box { max-width: 900px; margin: 0 auto; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; text-align: center; }
.site-subpage .content > .cta-box {
    max-width: 900px;
    margin: 56px auto 0;
    padding: 48px 32px;
    border: 1px solid rgba(104, 211, 222, .34);
    border-radius: 6px;
    background: var(--site-ink);
    box-shadow: 0 22px 48px rgba(7, 24, 43, .18);
    text-align: center;
}
.site-subpage .cta-box h2,
.site-subpage .cta-box h3,
.site-subpage .cta-title { color: #fff; font-size: clamp(32px, 4vw, 46px); }
.site-subpage .cta-box p,
.site-subpage .cta-desc { color: rgba(255,255,255,.86); }
.site-subpage .content > .cta-box a {
    display: inline-flex;
    min-height: 48px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--site-ink);
    background: #fff;
    font-weight: 750;
}
.site-subpage .content > .cta-box a:hover { color: #fff; background: var(--site-blue); }
.site-subpage .cta-btn,
.site-subpage .cta-btn-primary { border-radius: 4px; color: var(--site-ink); background: #fff; box-shadow: none; }
.site-subpage .cta-btn:hover,
.site-subpage .cta-btn-primary:hover { color: #fff; background: var(--site-blue); transform: translateY(-2px); }

.site-subpage .footer,
.site-subpage .page-footer {
    min-width: 0;
    margin: 0;
    padding: 28px 40px !important;
    border: 0;
    background: #07182b;
    color: rgba(255,255,255,.76);
    text-align: center;
}
.site-subpage .footer + .footer { display: none; }
.site-subpage .footer-content { display: none; }
.site-subpage .footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 !important;
    border: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    line-height: 1.7;
}
.site-subpage .footer a,
.site-subpage .page-footer a { display: inline; margin: 0; color: rgba(255,255,255,.76); font-size: 12px; }
.site-subpage .footer a:hover,
.site-subpage .page-footer a:hover { color: #9de7ec; transform: none; }

/* Shared business contact modal */
.site-subpage #contactModal.site-contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    padding: 16px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(3, 12, 22, .78);
    backdrop-filter: blur(6px);
}
.site-subpage #contactModal.site-contact-modal.is-open { display: flex !important; }
.site-subpage #contactModal .site-contact-dialog {
    width: min(560px, calc(100vw - 32px));
    max-width: none;
    max-height: calc(100dvh - 32px);
    padding: 32px;
    position: relative;
    overflow-y: auto;
    border: 1px solid rgba(11, 31, 58, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
    color: var(--site-ink);
    scrollbar-width: thin;
}
.site-subpage #contactModal .site-contact-close {
    width: 38px;
    height: 38px;
    padding: 0;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--site-ink);
    background: #eef1f2;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}
.site-subpage #contactModal .site-contact-close:hover { color: #fff; background: var(--site-blue); }
.site-subpage #contactModal .site-contact-heading { padding: 2px 36px 0; text-align: center; }
.site-subpage #contactModal .site-contact-heading h2 {
    margin: 0 0 7px;
    color: var(--site-ink);
    font-family: var(--site-font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}
.site-subpage #contactModal .site-contact-heading p {
    margin: 0;
    color: #6b7d8c;
    font-size: 14px;
    line-height: 1.7;
}
.site-subpage #contactModal .site-contact-qr-list {
    margin: 20px 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}
.site-subpage #contactModal .site-contact-qr-person { min-width: 0; margin: 0; text-align: center; }
.site-subpage #contactModal .site-contact-qr {
    width: 220px;
    max-width: 100%;
    height: 298px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    background: #f5f7f8;
    box-shadow: 0 8px 24px rgba(11, 31, 58, .14);
}
.site-subpage #contactModal .site-contact-qr-person figcaption {
    margin-top: 9px;
    color: var(--site-ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}
.site-subpage #contactModal .site-contact-phone {
    width: fit-content;
    min-height: 50px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: var(--site-ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}
.site-subpage #contactModal .site-contact-phone:hover { color: #fff; background: var(--site-blue); }

/* Progressive reveal */
.site-enhanced .site-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.site-enhanced .site-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .site-subpage .nav, .site-subpage .header-nav, .site-subpage .header-btns .btn-contact { display: none; }
    .site-mobile-toggle { display: inline-flex; position: relative; margin-left: auto; }
    .site-subpage .header-btns { margin-left: auto; }
    .site-subpage .header-btns + .site-mobile-toggle { margin-left: 0; }
    .page-cases .case-study-grid { grid-template-columns: 1fr 1fr; }
    .page-cases .partners-grid { grid-template-columns: repeat(4, 1fr); }
    .page-cases .process-heading { grid-template-columns: 1fr; gap: 18px; }
    .page-cases .process-intro { max-width: 700px; }
    .page-cases .process-grid { grid-template-columns: repeat(2, 1fr); }
    .page-cases .process-item:not(:last-child)::after { display: none; }
    .site-subpage.page-cases .cta-section .cta-box { grid-template-columns: 1fr; gap: 28px; }
    .page-flow .hero-inner { grid-template-columns: 1fr; }
    .page-flow .hero-card { max-width: 700px; }
}

@media (max-width: 760px) {
    body.site-subpage { padding-top: 64px; }
    .site-subpage .header, .site-subpage .header-inner { height: 64px; }
    .site-subpage .header-inner { padding: 0 14px; gap: 8px; }
    .site-subpage .logo-area img, .site-subpage .brand img { width: 34px !important; height: 34px !important; }
    .site-subpage .logo-text, .site-subpage .brand strong { font-size: 13px; }
    .site-subpage .logo-sub, .site-subpage .brand > span > span { font-size: 8px; letter-spacing: 1px; }
    .site-subpage .header-btns .btn-quote { min-height: 38px; padding: 8px 13px; font-size: 12px; }
    .site-mobile-toggle { width: 38px; height: 38px; flex-basis: 38px; }
    .site-mobile-panel { top: 64px; padding-right: 18px; padding-left: 18px; }

    .site-subpage .page-hero,
    .site-subpage.page-honors > .hero,
    .site-subpage .main > .page-header { min-height: 300px; padding: 72px 18px 58px; }
    .site-subpage .page-hero h1,
    .site-subpage.page-honors > .hero h1,
    .site-subpage .page-title { font-size: 42px; }
    .site-subpage .page-hero p,
    .site-subpage.page-honors > .hero p,
    .site-subpage .page-subtitle { font-size: 15px; }
    .site-subpage .content,
    .site-subpage .cases-section,
    .site-subpage .partners-section,
    .site-subpage .process-section,
    .site-subpage .main > .process-section { padding: 64px 18px; }
    .site-subpage .content > h2,
    .site-subpage .section-title,
    .site-subpage .partners-header h2,
    .site-subpage .process-section > h2 { margin-bottom: 28px; font-size: 34px; }

    .page-about .intro-card { padding: 26px 22px; }
    .page-about .content > img { max-height: 320px; border-radius: 4px 28px 4px 4px !important; }
    .page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .page-about .honors { padding: 28px 22px; }

    .page-cases .case-study-grid { grid-template-columns: 1fr; }
    .page-cases .partners-section { padding-right: 18px; padding-left: 18px; }
    .page-cases .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .page-cases .process-section { padding-right: 18px; padding-left: 18px; }
    .page-cases .process-heading { margin-bottom: 34px; }
    .page-cases .process-grid { grid-template-columns: 1fr; }
    .page-cases .process-item { min-height: 0; padding: 26px 22px 22px; border-radius: 5px 24px 5px 5px; }
    .page-cases .process-desc { min-height: 0; }
    .site-subpage.page-cases .cta-section { padding: 54px 18px; }
    .site-subpage.page-cases .cta-section .cta-box { padding: 38px 24px; border-radius: 5px 30px 5px 5px; }
    .page-cases .cta-action-group { min-width: 0; }

    .page-pricing .features-grid { grid-template-columns: 1fr 1fr; }
    .page-pricing .pricing-table { overflow-x: auto; }
    .page-pricing .pricing-table table { min-width: 720px; }
    .page-pricing .special-grid { grid-template-columns: 1fr; }
    .page-pricing .content { padding-bottom: 28px; }
    .page-pricing .contact-bar { padding: 30px 22px; }

    .page-news .hot-news { padding: 28px 22px; }
    .page-news .hot-title { font-size: 28px; }
    .page-news .news-grid { grid-template-columns: 1fr; }
    .page-news .news-row-card { grid-template-columns: 1fr; }
    .page-news .news-row-img { width: 100%; min-height: 190px; }
    .page-news .news-contact-modal { padding: 12px; align-items: flex-start; }
    .page-news .news-contact-dialog { margin: 10px 0; padding: 34px 16px 24px; border-radius: 5px 26px 5px 5px; }
    .page-news .news-contact-dialog h2 { font-size: 26px; }
    .page-news .news-contact-qr-list { gap: 8px; }
    .page-news .news-contact-qr-list figure { padding: 8px; }
    .page-news .news-contact-qr-list img { height: 190px; }
    .page-news .news-contact-phone { align-items: center; flex-direction: column; gap: 4px; }

    .page-honors .cert-grid { grid-template-columns: 1fr 1fr; }
    .page-honors .values-grid { grid-template-columns: 1fr; }
    .page-privacy .policy-card { padding: 32px 22px; }
    .page-sitemap .sitemap-grid { grid-template-columns: 1fr; }

    .page-cooperate .step-card,
    .page-cooperate .step-card:nth-child(odd),
    .page-cooperate .step-card:nth-child(even) { grid-template-columns: 1fr; padding: 24px 20px; gap: 16px; }
    .page-cooperate .step-number { width: 48px; height: 48px; margin: 0; font-size: 21px; }
    .page-cooperate .process-timeline::before { display: none; }
    .page-cooperate .step-details { grid-template-columns: 1fr; }

    .page-flow > .hero { min-height: auto; padding: 72px 18px 60px; }
    .page-flow .hero h1 { font-size: 42px; }
    .page-flow .hero-card { padding: 25px 20px; }
    .page-flow .hero-metrics, .page-flow .summary-grid { grid-template-columns: 1fr 1fr; }
    .page-flow .section { padding: 64px 18px; }
    .page-flow .panel { padding: 24px 18px; }
    .page-flow .phase { padding-left: 0; }
    .page-flow .flow { grid-template-columns: 1fr; }

    .page-douyin .page { padding: 64px 18px 30px; }
    .page-douyin .card { grid-template-columns: 1fr; padding: 34px 22px; gap: 34px; border-radius: 4px 30px 4px 4px; }
    .page-douyin .brand { margin-bottom: 34px; }
    .page-douyin h1 { font-size: 42px; }
    .page-douyin .stats { grid-template-columns: repeat(3, 1fr); }
    .page-douyin .stat { padding: 16px 7px; }
    .page-douyin .stat strong { font-size: 18px; }
    .page-douyin .stat span { font-size: 10px; }
    .page-douyin .actions { display: grid; }
    .page-douyin .btn { width: 100%; }

    .site-subpage .cta-section { padding: 64px 18px; }
    .site-subpage .content > .cta-box { margin-top: 42px; padding: 38px 20px; }
    .site-subpage .footer, .site-subpage .page-footer { padding: 24px 18px !important; }

    .site-subpage #contactModal.site-contact-modal { padding: 12px; align-items: center; }
    .site-subpage #contactModal .site-contact-dialog {
        width: min(340px, calc(100vw - 24px));
        max-height: calc(100dvh - 24px);
        padding: 24px 18px;
    }
    .site-subpage #contactModal .site-contact-close { top: 10px; right: 10px; width: 34px; height: 34px; font-size: 21px; }
    .site-subpage #contactModal .site-contact-heading { padding: 0 26px; }
    .site-subpage #contactModal .site-contact-heading h2 { font-size: 24px; }
    .site-subpage #contactModal .site-contact-heading p { font-size: 12px; }
    .site-subpage #contactModal .site-contact-qr-list { margin: 16px 0 14px; gap: 10px; }
    .site-subpage #contactModal .site-contact-qr { width: 116px; height: 171px; border-radius: 8px; }
    .site-subpage #contactModal .site-contact-qr-person figcaption { margin-top: 7px; font-size: 11px; }
    .site-subpage #contactModal .site-contact-phone { width: 100%; min-height: 48px; padding: 0 16px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .site-subpage *, .site-subpage *::before, .site-subpage *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .site-enhanced .site-reveal { opacity: 1; transform: none; }
}
