/* ============================================================
   集和品牌官网 · 全局样式 main.css
   高端咨询级视觉 · 主色 #C8102E / 深灰 #0A0A0A
   ============================================================ */

:root {
    /* 主色 */
    --red-primary: #C8102E;
    --red-dark: #8E0B1F;
    --red-50: #FBECEF;
    --red-100: #F4D3D8;

    /* 中性色 */
    --black: #0A0A0A;
    --ink-900: #141414;
    --ink-800: #1C1C1E;
    --ink-700: #2C2C2E;
    --ink-500: #6B6B70;
    --ink-400: #8E8E93;
    --ink-200: #D1D1D6;
    --ink-100: #E5E5EA;
    --ink-50:  #F2F2F7;
    --white: #FFFFFF;

    /* 背景层 */
    --bg-canvas: #FAFAFA;
    --bg-slab: #0A0A0A;

    /* 尺寸 */
    --max-width: 1320px;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* 多层阴影 */
    --shadow-1: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-2: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-3: 0 16px 40px -12px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-dark: 0 30px 80px -20px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.1);

    /* 字体系统 */
    --font-serif: "Source Han Serif SC", "Noto Serif SC", "Songti SC", Georgia, serif;
    --font-mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC",
                 "HarmonyOS Sans SC", "Hiragino Sans GB", "Microsoft YaHei",
                 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--black);
    background: var(--bg-canvas);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "ss02";
}

html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { letter-spacing: -0.015em; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 900px) { .container { padding: 0 20px; } }

/* ============ Navbar ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--black);
    line-height: 1;
}

.brand-cn {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
    font-family: 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif;
}

.brand-bico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: var(--red-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 4px;
    font-family: 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif;
}

.brand-slogan {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-700);
    letter-spacing: 0.08em;
    margin-left: 4px;
    font-family: 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif;
}

/* 保留旧结构兼容（若其他页面复用） */
.brand-mark {
    width: 36px;
    height: 36px;
    background: var(--black);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-mono);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0;
    position: relative;
}
.brand-mark::after {
    content: "";
    position: absolute;
    right: 4px; bottom: 4px;
    width: 6px; height: 6px;
    background: var(--red-primary);
    border-radius: 2px;
}

.brand-text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 14px; letter-spacing: 0.18em; color: var(--black); font-weight: 700; }
.brand-text small { font-size: 10px; letter-spacing: 0.35em; color: var(--ink-400); margin-top: 3px; }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-links .nav-link {
    font-size: 15px;
    color: var(--ink-700);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-links .nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 2px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--red-primary); }
.nav-links .nav-link.active::after,
.nav-links .nav-link:hover::after { transform: scaleX(1); }

.nav-caret {
    font-size: 10px;
    transition: transform 0.2s ease;
}

/* 下拉菜单 */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-3);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 70;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--ink-700);
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: var(--red-50);
    color: var(--red-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    padding: 10px 28px !important;
    font-size: 14px;
    border-radius: 50px !important;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.nav-cta--red {
    background: var(--red-primary) !important;
    border-color: var(--red-primary) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 8px 20px -6px rgba(200,16,46,0.55);
    transition: all 0.25s ease;
}
.nav-cta--red:hover {
    background: #b10b26 !important;
    border-color: #b10b26 !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -8px rgba(200,16,46,0.65);
}

.nav-login-btn {
    padding: 10px 22px !important;
    font-size: 13px;
    background: transparent;
    color: var(--black);
    border-color: var(--black);
    gap: 6px;
}
.nav-login-btn:hover {
    background: var(--red-primary);
    color: #fff;
    border-color: var(--red-primary);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -8px rgba(200,16,46,0.55);
}

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 6px;
}
.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--black);
    margin: 0 auto;
    width: 20px;
    transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 1080px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 13px; }
}
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 6px 0 12px;
        border-bottom: 1px solid var(--ink-100);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        box-shadow: var(--shadow-2);
    }
    .nav-links.open { max-height: 720px; }
    .nav-links a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--ink-50);
        font-size: 14px;
    }
    .nav-links a::after { display: none; }
    .hamburger { display: flex; }
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}
.btn-primary:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -8px rgba(200,16,46,0.55);
}

.btn-outline {
    border-color: var(--ink-200);
    color: var(--black);
    background: #fff;
}
.btn-outline:hover {
    border-color: var(--black);
    background: var(--black);
    color: #fff;
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    background: transparent;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--black);
}

.btn-ghost {
    color: var(--black);
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.btn-ghost::after { content: " →"; display: inline-block; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--red-primary); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============ Section 通用 ============ */
.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-sm { padding: 48px 0; }
}

/* 针对指定区块的微调 */
section#business { padding-top: 50px; padding-bottom: 50px; }
section#business > div.container { padding-top: 0; padding-bottom: 0; }
section#cases { padding-top: 50px; padding-bottom: 50px; }

.section-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 56px;
    max-width: 860px;
    padding-left: 22px;
    border-left: 2px solid var(--red-primary);
}
.section-head small {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--red-primary);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
}
.section-head small::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--red-primary);
    display: inline-block;
}

.section-head h2 {
    font-size: 38px;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.25;
}
.section-head p {
    color: var(--ink-500);
    font-size: 15px;
    margin: 0;
    line-height: 1.85;
    max-width: 720px;
}

@media (max-width: 768px) {
    .section-head {
        padding-left: 16px;
        margin-bottom: 40px;
        gap: 14px;
    }
    .section-head h2 { font-size: 26px; }
}

/* ============ Hero 首屏 ============ */
.hero {
    position: relative;
    padding: 72px 0 140px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(250,250,250,1) 100%),
        radial-gradient(1200px 500px at 85% -10%, rgba(200,16,46,0.08), transparent 60%),
        radial-gradient(900px 500px at 5% 20%, rgba(10,10,10,0.06), transparent 70%),
        #fff;
    overflow: hidden;
}

/* 极细的网格背景 */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    pointer-events: none;
}

/* 主视觉行 */
.hero-row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: stretch;
    position: relative;
    z-index: 2;
    padding-top: 56px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--ink-500);
    letter-spacing: 0.3em;
    margin-bottom: 28px;
    font-weight: 500;
}
.hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--red-primary);
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 0 4px rgba(200,16,46,0.12);
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--black);
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}
.hero h1 em {
    color: var(--red-primary);
    font-style: normal;
    position: relative;
    display: block;
    margin-top: 15px;
}

.hero-desc {
    color: var(--ink-500);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 36px;
    white-space: nowrap;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 48px;
}
.hero-ctas .btn-primary { padding: 15px 32px; font-size: 14px; }
.hero-ctas .btn-outline { padding: 15px 26px; font-size: 14px; }

/* 指标行 */
.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 28px;
    margin-top: 40px;
    border-top: 1px solid var(--ink-100);
    flex-wrap: wrap;
}
.hero-meta-item {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 18px 20px 18px 28px;
    box-shadow: 0 6px 18px rgba(10,10,10,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10,10,10,0.1);
}
.hero-meta-item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 2px;
    background: var(--red-primary);
}
.hero-meta-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    font-family: var(--font-mono);
    line-height: 1;
}
.hero-meta-item strong::after {
    content: "+";
    color: var(--red-primary);
    margin-left: 2px;
    font-weight: 500;
    font-size: 0.75em;
}
.hero-meta-item span {
    display: block;
    font-size: 12px;
    color: var(--ink-400);
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* Hero 右侧媒体卡 */
.hero-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    aspect-ratio: 4 / 4.5;
    background: var(--black);
    box-shadow: var(--shadow-dark);
    perspective: 1200px;
}
.hero-media-inner {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(200,16,46,0.35), transparent 55%),
        linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 50%, #2a0a12 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.hero-media-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 75%);
}

.hero-media {
    --tilt-x: 0;
    --tilt-y: 0;
    --tilt-rot: 0deg;
    --float-mx: 0px;
    --float-my: 0px;
    --float-scale: 1;
}

.hero-media-inner {
    transform: translate3d(var(--tilt-x), var(--tilt-y), 0) rotate(var(--tilt-rot));
}

/* 浮动的红色焦点圆 - 跟随鼠标晃动 */
.hero-media-float {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--red-primary) 0%, var(--red-dark) 70%);
    border-radius: 50%;
    top: 14%;
    left: 16%;
    filter: blur(2px);
    box-shadow: 0 0 80px rgba(200,16,46,0.55);
    transform: translate3d(var(--float-mx), var(--float-my), 0) scale(var(--float-scale));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s ease;
    will-change: transform;
}
.hero-media-float::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    transform: rotate(25deg) scale(1);
    opacity: 0.5;
    pointer-events: none;
}

/* 角标信息 */
.hero-media-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.75);
    font-size: 11px;
    letter-spacing: 0.22em;
    font-family: var(--font-mono);
    z-index: 3;
}
.hero-media-badge .dot {
    display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
    margin-right: 6px;
    vertical-align: middle;
}

/* Hero 中心文字 */
.hero-media-text {
    position: absolute;
    bottom: 40px;
    left: 36px;
    right: 36px;
    color: #fff;
    z-index: 3;
}
.hero-media-text .theme-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-media-text .theme-scroll-year {
    height: 18px;
    margin-bottom: 8px;
}
.hero-media-text .theme-scroll-headline {
    height: 35px;
    margin-bottom: 14px;
}
.hero-media-text .theme-scroll-track {
    list-style: none;
    margin: 0;
    padding: 0;
    will-change: transform;
}
.hero-media-text .theme-scroll-year .theme-scroll-track {
    transform: translateY(0);
}
.hero-media-text .theme-scroll-headline .theme-scroll-track {
    transform: translateY(0);
}
.hero-media-text .theme-scroll-year li {
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 500;
}
.hero-media-text .theme-scroll-headline li {
    height: 35px;
    line-height: 35px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.hero-media-text .theme-scroll-headline li em {
    color: var(--red-primary);
    font-style: normal;
    font-weight: 700;
}
@keyframes theme-hero-year {
    0%          { transform: translateY(0); }
    2.17%       { transform: translateY(-18px); }
    4.35%       { transform: translateY(-36px); }
    6.52%       { transform: translateY(-54px); }
    8.70%       { transform: translateY(-72px); }
    10.87%      { transform: translateY(-90px); }
    13.04%      { transform: translateY(-108px); }
    15.22%      { transform: translateY(-126px); }
    17.39%      { transform: translateY(-144px); }
    19.57%      { transform: translateY(-162px); }
    21.74%      { transform: translateY(-180px); }
    23.91%      { transform: translateY(-198px); }
    26.09%      { transform: translateY(-216px); }
    28.26%      { transform: translateY(-234px); }
    30.43%      { transform: translateY(-252px); }
    32.61%      { transform: translateY(-270px); }
    34.78%      { transform: translateY(-288px); }
    36.96%      { transform: translateY(-306px); }
    39.13%      { transform: translateY(-324px); }
    41.30%      { transform: translateY(-342px); }
    43.48%      { transform: translateY(-360px); }
    45.65%      { transform: translateY(-378px); }
    47.83%      { transform: translateY(-396px); }
    50.00%      { transform: translateY(-414px); }
    52.17%      { transform: translateY(-432px); }
    54.35%      { transform: translateY(-450px); }
    56.52%      { transform: translateY(-468px); }
    58.70%      { transform: translateY(-486px); }
    60.87%      { transform: translateY(-504px); }
    63.04%      { transform: translateY(-522px); }
    65.22%      { transform: translateY(-540px); }
    67.39%      { transform: translateY(-558px); }
    69.57%      { transform: translateY(-576px); }
    71.74%      { transform: translateY(-594px); }
    73.91%      { transform: translateY(-612px); }
    76.09%      { transform: translateY(-630px); }
    78.26%      { transform: translateY(-648px); }
    80.43%      { transform: translateY(-666px); }
    82.61%      { transform: translateY(-684px); }
    84.78%      { transform: translateY(-702px); }
    86.96%      { transform: translateY(-720px); }
    89.13%      { transform: translateY(-738px); }
    91.30%      { transform: translateY(-756px); }
    93.48%      { transform: translateY(-774px); }
    95.65%      { transform: translateY(-792px); }
    97.83%      { transform: translateY(-810px); }
    100%        { transform: translateY(-828px); }
}
@keyframes theme-hero-headline {
    0%          { transform: translateY(0); }
    2.17%       { transform: translateY(-35px); }
    4.35%       { transform: translateY(-70px); }
    6.52%       { transform: translateY(-105px); }
    8.70%       { transform: translateY(-140px); }
    10.87%      { transform: translateY(-175px); }
    13.04%      { transform: translateY(-210px); }
    15.22%      { transform: translateY(-245px); }
    17.39%      { transform: translateY(-280px); }
    19.57%      { transform: translateY(-315px); }
    21.74%      { transform: translateY(-350px); }
    23.91%      { transform: translateY(-385px); }
    26.09%      { transform: translateY(-420px); }
    28.26%      { transform: translateY(-455px); }
    30.43%      { transform: translateY(-490px); }
    32.61%      { transform: translateY(-525px); }
    34.78%      { transform: translateY(-560px); }
    36.96%      { transform: translateY(-595px); }
    39.13%      { transform: translateY(-630px); }
    41.30%      { transform: translateY(-665px); }
    43.48%      { transform: translateY(-700px); }
    45.65%      { transform: translateY(-735px); }
    47.83%      { transform: translateY(-770px); }
    50.00%      { transform: translateY(-805px); }
    52.17%      { transform: translateY(-840px); }
    54.35%      { transform: translateY(-875px); }
    56.52%      { transform: translateY(-910px); }
    58.70%      { transform: translateY(-945px); }
    60.87%      { transform: translateY(-980px); }
    63.04%      { transform: translateY(-1015px); }
    65.22%      { transform: translateY(-1050px); }
    67.39%      { transform: translateY(-1085px); }
    69.57%      { transform: translateY(-1120px); }
    71.74%      { transform: translateY(-1155px); }
    73.91%      { transform: translateY(-1190px); }
    76.09%      { transform: translateY(-1225px); }
    78.26%      { transform: translateY(-1260px); }
    80.43%      { transform: translateY(-1295px); }
    82.61%      { transform: translateY(-1330px); }
    84.78%      { transform: translateY(-1365px); }
    86.96%      { transform: translateY(-1400px); }
    89.13%      { transform: translateY(-1435px); }
    91.30%      { transform: translateY(-1470px); }
    93.48%      { transform: translateY(-1505px); }
    95.65%      { transform: translateY(-1540px); }
    97.83%      { transform: translateY(-1575px); }
    100%        { transform: translateY(-1610px); }
}
.hero-media-text .meta-row {
    display: flex;
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.hero-media-text .meta-row span strong {
    color: #fff;
    font-weight: 600;
    margin-right: 4px;
}

/* Hero 下方的浮动卡 */
.hero-floater {
    position: absolute;
    right: -24px;
    bottom: 8%;
    background: #fff;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-3);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
    min-width: 240px;
}
.hero-floater .ico {
    width: 36px;
    height: 36px;
    background: var(--red-50);
    color: var(--red-primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 14px;
}
.hero-floater .txt strong {
    display: block;
    font-size: 13px;
    color: var(--black);
    font-weight: 600;
}
.hero-floater .txt span {
    font-size: 12px;
    color: var(--ink-400);
}

@media (max-width: 900px) {
    .hero-row { grid-template-columns: 1fr; gap: 40px; padding-top: 24px; }
    .hero { padding: 36px 0 88px; }
    .hero-meta { grid-template-columns: 1fr; gap: 12px; }
    .hero-meta-item { padding: 14px 18px 14px 24px; }
    .hero-meta-item strong { font-size: 24px; }
    .hero-floater { display: none; }
}

/* ============ 信任区块 ============ */
.hero-trust {
    position: relative;
    margin-top: 72px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    padding: 56px 56px 52px;
    box-shadow: 0 24px 60px -30px rgba(10,10,10,0.18), 0 2px 4px rgba(10,10,10,0.04);
    z-index: 2;
    overflow: hidden;
}
.hero-trust::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 4px; height: 56px;
    background: var(--red-primary);
    border-radius: 0 2px 2px 0;
}

.trust-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ink-100);
    flex-wrap: wrap;
}

/* 年度主题垂直滚动（两行 23 组） */
.theme-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.theme-scroll-small {
    height: 22px;
    margin-bottom: 14px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.theme-scroll-title {
    height: 34px;
    margin-bottom: 10px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.theme-scroll-track {
    list-style: none;
    margin: 0;
    padding: 0;
    will-change: transform;
}
.theme-scroll-small .theme-scroll-track {
    animation: theme-scroll-small 69s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.theme-scroll-title .theme-scroll-track {
    animation: theme-scroll-title 69s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.theme-scroll-small li {
    height: 22px;
    line-height: 22px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--red-primary);
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
}
.theme-scroll-title li {
    height: 34px;
    line-height: 34px;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
}
.theme-scroll-title li em {
    color: var(--red-primary);
    font-style: normal;
    font-weight: 700;
}
@keyframes theme-scroll-small {
    0%   { transform: translateY(0); }
    100% { transform: translateY(calc(-22px * 46)); }
}
@keyframes theme-scroll-title {
    0%   { transform: translateY(0); }
    100% { transform: translateY(calc(-34px * 46)); }
}

.trust-head-text {
    transform: translateY(-20px);
}
.trust-head-text p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-400);
    letter-spacing: 0.04em;
}
.trust-head-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-400);
    letter-spacing: 0.2em;
    padding: 8px 14px;
    border: 1px solid var(--ink-100);
    border-radius: 999px;
    white-space: nowrap;
}
.trust-head-tag .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red-primary);
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(200,16,46,0.12);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.trust-stats-item {
    padding: 32px 26px 28px;
    border: 1px solid #ececee;
    border-radius: 6px;
    background: linear-gradient(160deg, #fff8f5 0%, #fff 55%, #fff6f3 100%);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.trust-stats-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c8102e 0%, #e85262 50%, #c8102e 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}
.trust-stats-item:hover {
    background: linear-gradient(160deg, #fff0e8 0%, #fff8f5 55%, #ffe9df 100%);
    border-color: #e85262;
    box-shadow: 0 18px 40px rgba(200,16,46,0.08);
    transform: translateY(-4px);
}
.trust-stats-item:hover::before {
    transform: scaleX(1);
}
.trust-stats-item strong {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.trust-stats-item sup {
    color: #c8102e;
    font-size: 16px;
    vertical-align: top;
    margin-left: 2px;
    font-weight: 500;
}
.trust-stats-item span {
    font-size: 13.5px;
    color: #5a4d43;
    letter-spacing: 0.06em;
    display: block;
}

.trust-logos {
    position: relative;
    overflow: hidden;
    padding: 24px 0 30px;
    margin-top: 6px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.trust-logos-row {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.trust-logos-row + .trust-logos-row {
    margin-top: 14px;
}
.trust-logos-track {
    display: flex;
    flex-shrink: 0;
    gap: 14px;
    padding-left: 14px;
    width: max-content;
}
.trust-logos-row-ltr .trust-logos-track {
    animation: marquee-ltr 80s linear infinite;
}
.trust-logos-row-rtl .trust-logos-track {
    animation: marquee-rtl 100s linear infinite;
}
.trust-logos-item {
    flex: 0 0 auto;
    min-width: 160px;
    padding: 18px 28px;
    text-align: center;
    font-size: 14px;
    color: #111;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(10, 10, 10, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.trust-logos-item::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.trust-logos-item:nth-child(6n+1) {
    border-color: #e9a28e;
}
.trust-logos-item:nth-child(6n+1)::before {
    background: #e9a28e;
}
.trust-logos-item:nth-child(6n+2) {
    border-color: #e5b982;
}
.trust-logos-item:nth-child(6n+2)::before {
    background: #e5b982;
}
.trust-logos-item:nth-child(6n+3) {
    border-color: #a6c59a;
}
.trust-logos-item:nth-child(6n+3)::before {
    background: #a6c59a;
}
.trust-logos-item:nth-child(6n+4) {
    border-color: #96b8cf;
}
.trust-logos-item:nth-child(6n+4)::before {
    background: #96b8cf;
}
.trust-logos-item:nth-child(6n+5) {
    border-color: #b59ac0;
}
.trust-logos-item:nth-child(6n+5)::before {
    background: #b59ac0;
}
.trust-logos-item:nth-child(6n+6) {
    border-color: #c8102e;
}
.trust-logos-item:nth-child(6n+6)::before {
    background: #c8102e;
}
.trust-logos-item:hover {
    background: linear-gradient(135deg, #c8102e 0%, #e85262 100%);
    color: #fff;
    border-color: #c8102e;
    box-shadow: 0 8px 18px rgba(200, 16, 46, 0.2);
    transform: translateY(-2px);
}
@keyframes marquee-ltr {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 900px) {
    .hero-trust { padding: 32px 22px 36px; margin-top: 48px; }
    .trust-head { margin-bottom: 28px; padding-bottom: 20px; }
    .trust-head-text h3 { font-size: 20px; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
    .trust-stats-item { padding: 18px 18px 20px; }
    .trust-stats-item strong { font-size: 28px; }
    .trust-logos { padding: 10px 0 16px; }
    .trust-logos-row + .trust-logos-row { margin-top: 10px; }
    .trust-logos-track { gap: 10px; padding-left: 10px; }
    .trust-logos-item { min-width: 126px; padding: 13px 18px; font-size: 12px; box-shadow: 0 2px 4px rgba(10,10,10,0.04); }

    .theme-scroll-small { height: 20px; margin-bottom: 10px; }
    .theme-scroll-title { height: 28px; margin-bottom: 8px; }
    .theme-scroll-small li { height: 20px; line-height: 20px; font-size: 10px; letter-spacing: 0.2em; }
    .theme-scroll-title li { height: 28px; line-height: 28px; font-size: 18px; }
    @keyframes theme-scroll-small {
        0%   { transform: translateY(0); }
        100% { transform: translateY(calc(-20px * 46)); }
    }
    @keyframes theme-scroll-title {
        0%   { transform: translateY(0); }
        100% { transform: translateY(calc(-28px * 46)); }
    }
}

/* ============ About intro / 品牌主张 ============ */
.about-intro.section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-intro-title {
    font-size: 48px;
    color: var(--black);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
    font-weight: 800;
    line-height: 1.25;
}
.about-intro-subtitle {
    font-size: 22px;
    color: var(--red-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
    line-height: 1.5;
}
.about-intro-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--ink-500);
    margin: 0 0 36px;
}
.about-intro-right {
    position: relative;
}
.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.25);
}
.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.about-intro-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.about-intro-ctas .btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 50px;
}
.about-intro-ctas .btn-primary {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: #fff;
}
.about-intro-ctas .btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
}
.about-intro-ctas .btn-outline {
    background: transparent;
    border-color: var(--ink-200);
    color: var(--ink-700);
}
.about-intro-ctas .btn-outline:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: var(--red-50);
}

@media (max-width: 900px) {
    .about-intro.section { padding: 60px 0; }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-intro-title { font-size: 32px; }
    .about-intro-subtitle { font-size: 18px; }
    .about-intro-desc { font-size: 14px; line-height: 1.8; }
    .about-intro-ctas .btn { padding: 12px 24px; font-size: 14px; }
}

/* ============ 代表案例 ============ */
.rep-cases.section {
    padding: 80px 0;
    background: #fafafa;
}
.rep-cases-head {
    text-align: center;
    margin-bottom: 48px;
}
.rep-cases-head small {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 12px;
}
.rep-cases-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.rep-cases-subtitle {
    font-size: 18px;
    color: var(--red-primary);
    font-weight: 600;
    margin: 0;
}
.rep-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.rep-case-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}
.rep-case-card-link:hover {
    transform: translateY(0);
    filter: drop-shadow(0 10px 20px rgba(200, 16, 46, 0.08));
}
.rep-case-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ink-100);
    transition: all 0.3s ease;
}
.rep-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--red-100);
}
.rep-case-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink-50);
}
.rep-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.rep-case-card:hover .rep-case-img img {
    transform: scale(1.05);
}
.rep-case-body {
    padding: 24px;
}
.rep-case-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px;
}
.rep-case-tag {
    font-size: 13px;
    color: var(--red-primary);
    font-weight: 600;
    margin: 0 0 16px;
}
.rep-case-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(200, 16, 46, 0.06), rgba(59, 130, 246, 0.06));
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-700);
}
.rep-case-stat .arrow {
    color: var(--red-primary);
    font-weight: 700;
}
.rep-case-stat .to {
    color: var(--red-primary);
    text-align: right;
}
.rep-case-desc-small {
    font-size: 12px;
    color: var(--ink-400);
    text-align: center;
    margin: 0 0 16px;
}
.rep-case-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink-500);
    margin: 0;
}
.rep-cases-banner {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border-radius: 16px;
    padding: 36px 48px;
    text-align: center;
    color: #fff;
}
.rep-banner-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}
.rep-banner-sub {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 900px) {
    .rep-cases.section { padding: 50px 0; }
    .rep-cases-head h2 { font-size: 28px; }
    .rep-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rep-cases-banner { padding: 28px 24px; }
    .rep-banner-title { font-size: 16px; }
}

/* ============ 品牌合作伙伴 ============ */
.brand-partners.section {
    padding: 80px 0;
    background: #fff;
}
.brand-partners-head {
    text-align: center;
    margin-bottom: 40px;
}
.brand-partners-head small {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--ink-400);
    font-weight: 600;
    margin-bottom: 8px;
}
.brand-partners-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.brand-partners-sub {
    font-size: 16px;
    color: var(--ink-500);
    margin: 0;
}
.brand-partners-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 720px;
    margin: 0 auto 40px;
    border: 1px solid var(--ink-100);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.bp-stat {
    padding: 28px 24px;
    text-align: center;
    position: relative;
}
.bp-stat + .bp-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--ink-100);
}
.bp-stat strong {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--red-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}
.bp-stat strong em {
    font-style: normal;
    font-size: 28px;
}
.bp-stat span {
    font-size: 13px;
    color: var(--ink-500);
}
.brand-partners-logos {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 32px 40px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
}
.bp-logos-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}
.bp-logos-row:last-child {
    margin-bottom: 0;
}
.bp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.bp-logo img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    display: block;
}
.bp-logo .bp-logo-fallback {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-500);
    line-height: 1.3;
    text-align: center;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.bp-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.12);
}
.bp-logo:hover .bp-logo-fallback {
    color: var(--ink-500);
}
.bp-marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 32px;
    padding: 8px 0;
}
.bp-marquee-row {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}
.bp-marquee-row:last-child {
    margin-bottom: 0;
}
.bp-marquee-track {
    display: inline-flex;
    gap: 14px;
    white-space: nowrap;
    will-change: transform;
}
.bp-marquee-ltr .bp-marquee-track {
    animation: bpMarqueeLtr 50s linear infinite;
}
.bp-marquee-rtl .bp-marquee-track {
    animation: bpMarqueeRtl 60s linear infinite;
}
.bp-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: #fff;
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink-600);
    font-weight: 500;
    line-height: 1.6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}
.bp-pill:hover {
    color: var(--red-primary);
    background: var(--red-50);
}
@keyframes bpMarqueeLtr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes bpMarqueeRtl {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.bp-more {
    text-align: center;
}
.bp-more a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red-primary);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--red-primary);
    transition: all 0.2s ease;
}
.bp-more a:hover {
    gap: 8px;
    color: var(--red-dark);
    border-color: var(--red-dark);
}

@media (max-width: 900px) {
    .brand-partners.section { padding: 50px 0; }
    .brand-partners-head h2 { font-size: 26px; }
    .bp-stat strong { font-size: 28px; }
    .bp-stat strong em { font-size: 20px; }
    .bp-logos-row {
        grid-template-columns: repeat(4, 1fr);
    }
    .brand-partners-logos { padding: 20px 16px; }
}

/* ============ About BICO (关于集和) ============ */
.about-bico.section { background: #fafafa; }
.about-bico-head {
    text-align: center;
    margin-bottom: 32px;
}
.about-bico-head small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 10px;
}
.about-bico-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.about-bico-sub {
    font-size: 14px;
    color: var(--ink-500);
    margin: 0;
}
.about-bico-intro {
    max-width: none;
    width: 100%;
    border-radius: 16px;
    margin: 0 0 40px 0;
    padding: 36px 56px;
    background: linear-gradient(100deg, #fde5e8 0%, #fff0e8 50%, #e7edff 100%);
    text-align: center;
}
.about-bico-intro p {
    margin: 0 auto 20px auto;
    max-width: 860px;
    font-size: 13px;
    line-height: 2.2;
    color: var(--ink-700);
}
.about-bico-intro p:last-child {
    margin-bottom: 0;
}
.about-bico-intro-highlight {
    color: var(--ink-800) !important;
    font-weight: 600;
}
.about-bico-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.about-bico-col {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 30px 28px;
    transition: all 0.3s ease;
}
.about-bico-col:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}
.about-bico-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ink-500);
    margin: 0 0 12px 0;
}
.about-bico-col h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--red-primary);
    margin: 0 0 18px 0;
    line-height: 1.5;
}
.about-bico-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-bico-col ul li {
    font-size: 13px;
    color: var(--ink-600);
    line-height: 1.7;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-bico-col ul li i {
    font-size: 9px;
    color: var(--red-primary);
    opacity: 0.85;
}
.about-bico-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.abs-item {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
}
.abs-item strong {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--red-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}
.abs-item strong em {
    font-style: normal;
    font-size: 22px;
    color: var(--red-primary);
    font-weight: 700;
}
.abs-item span {
    font-size: 12px;
    color: var(--ink-500);
    font-weight: 500;
}
.about-bico-more {
    text-align: center;
}
.about-bico-more a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}
.about-bico-more a:hover {
    gap: 8px;
    color: var(--red-dark);
}
@media (max-width: 900px) {
    .about-bico-head h2 { font-size: 26px; }
    .about-bico-intro { padding: 24px 20px; }
    .about-bico-cols { grid-template-columns: 1fr; }
    .about-bico-stats { grid-template-columns: repeat(2, 1fr); }
    .abs-item strong { font-size: 28px; }
    .abs-item strong em { font-size: 18px; }
}

/* ============ Difference (服务商对比表) ============ */
.diff-bico.section { background: #fff; }
.diff-bico-head {
    text-align: center;
    margin-bottom: 36px;
}
.diff-bico-head small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 10px;
}
.diff-bico-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.diff-bico-sub {
    font-size: 14px;
    color: var(--ink-500);
    margin: 0;
}
.diff-bico-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--ink-100);
    background: #fff;
}
.diff-bico-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}
.diff-bico-table thead th {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    background: #333;
    color: #fff;
    vertical-align: middle;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.diff-bico-table thead th:last-child {
    border-right: none;
}
.diff-bico-table thead th.diff-col-label {
    background: #2a2a2a;
    width: 16%;
}
.diff-bico-table thead th.diff-col-gray {
    background: #333;
    width: 21%;
}
.diff-bico-table thead th.diff-col-red {
    background: var(--red-primary);
    width: 28%;
    white-space: nowrap;
    padding-left: 28px;
    padding-right: 28px;
}
.diff-bico-table tbody td {
    padding: 22px 22px;
    line-height: 1.75;
    color: var(--ink-600);
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid var(--ink-100);
    border-right: 1px solid var(--ink-100);
    background: #fff;
}
.diff-bico-table tbody td:last-child {
    border-right: none;
}
.diff-bico-table tbody td.diff-row-label {
    background: #f7f8fa;
    color: var(--ink-800);
    font-weight: 700;
    width: 16%;
    text-align: center;
}
.diff-bico-table tbody td.diff-cell-red {
    background: #fff5f6;
    color: var(--red-primary);
    font-weight: 600;
    width: 28%;
    white-space: nowrap;
    padding-left: 28px;
    padding-right: 28px;
}
@media (max-width: 900px) {
    .diff-bico-head h2 { font-size: 24px; }
    .diff-bico-table thead th,
    .diff-bico-table tbody td { padding: 14px 12px; font-size: 12px; }
    .diff-bico-table { min-width: 720px; }
}

/* ============ When to call (企业什么时候需要找集和) ============ */
.when-call.section { background: #fafafa; }
.when-call-head {
    text-align: center;
    margin-bottom: 40px;
}
.when-call-head small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 10px;
}
.when-call-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.when-call-sub {
    font-size: 14px;
    color: var(--ink-500);
    margin: 0;
}
.when-call-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.wc-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 28px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.wc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}
.wc-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--red-primary);
    margin-bottom: 14px;
    line-height: 1;
}
.wc-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.45;
}
.wc-card p {
    font-size: 12px;
    line-height: 1.85;
    color: var(--ink-500);
    margin: 0 0 18px 0;
    flex: 1;
}
.wc-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red-primary);
    background: #fff0f2;
    border: 1px solid #ffd9df;
    border-radius: 4px;
}
.when-call-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
@media (max-width: 1100px) {
    .when-call-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 760px) {
    .when-call-head h2 { font-size: 26px; }
    .when-call-cards { grid-template-columns: 1fr 1fr; }
    .wc-num { font-size: 26px; }
    .wc-card h3 { font-size: 15px; }
}

/* ============ Ahead of the era (领先一个时代) ============ */
.ahead-era.section { background: #fff; }
.ahead-era-head {
    text-align: center;
    margin-bottom: 44px;
}
.ahead-era-head small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 10px;
}
.ahead-era-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.ahead-era-sub {
    font-size: 14px;
    color: var(--ink-500);
    margin: 0;
}
.ahead-era-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ae-stage {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    padding: 30px 28px 26px 28px;
    transition: all 0.3s ease;
}
.ae-stage:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}
.ae-stage-active {
    border: 2px solid var(--red-primary);
    border-radius: 10px;
    box-shadow: 0 18px 40px -20px rgba(200, 16, 46, 0.25);
}
.ae-stage-active:hover {
    box-shadow: 0 22px 50px -20px rgba(200, 16, 46, 0.32);
    border-color: var(--red-primary);
}
.ae-stage-now {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--red-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
}
.ae-stage-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 14px;
}
.ae-version {
    font-size: 34px;
    font-weight: 800;
    color: var(--ink-400);
    line-height: 1;
}
.ae-stage-active .ae-version {
    color: var(--red-primary);
}
.ae-stage-head h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    color: var(--ink-900);
}
.ae-stage-active .ae-stage-head h3 {
    color: var(--ink-900);
}
.ae-stage-desc {
    font-size: 12px;
    line-height: 1.9;
    color: var(--ink-500);
    margin: 0 0 20px 0;
    min-height: 56px;
}
.ae-stage-tag-group {
    border-top: 1px solid var(--ink-100);
    padding-top: 16px;
}
.ae-stage-active .ae-stage-tag-group {
    border-top: 1px solid var(--red-100);
}
.ae-stage-label {
    display: block;
    font-size: 11px;
    color: var(--ink-400);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.ae-stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ae-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-600);
    background: #f5f6f8;
    border-radius: 4px;
}
.ae-tag-red {
    background: var(--red-50);
    color: var(--red-primary);
    font-weight: 600;
}
@media (max-width: 900px) {
    .ahead-era-head h2 { font-size: 26px; }
    .ahead-era-stages { grid-template-columns: 1fr; }
}

/* ============ Investment & Return (品牌资产投资与回报) ============ */
.ir-bico.section { background: #fafafa; }
.ir-bico-head {
    text-align: center;
    margin-bottom: 36px;
}
.ir-bico-head small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 10px;
}
.ir-bico-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.ir-bico-sub {
    font-size: 14px;
    color: var(--ink-500);
    margin: 0;
}
.ir-bico-table-wrap {
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 28px;
}
.ir-bico-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.ir-bico-table thead th {
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink-900);
    text-align: left;
    background: #fff;
    border-bottom: 2px solid var(--red-primary);
    vertical-align: middle;
}
.ir-bico-table thead th.ir-col-return {
    color: var(--red-primary);
    background: #fff7f8;
    border-left: 1px solid var(--ink-100);
}
.ir-bico-table thead th.ir-col-stage {
    width: 20%;
}
.ir-bico-table thead th.ir-col-invest {
    width: 40%;
}
.ir-bico-table thead th.ir-col-return {
    width: 40%;
}
.ir-bico-table tbody td {
    padding: 26px 32px;
    vertical-align: top;
    border-top: 1px solid var(--ink-100);
}
.ir-bico-table tbody td.ir-col-stage {
    background: #fff;
    width: 20%;
    padding: 26px 20px;
}
.ir-stage-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}
.ir-stage-box .ir-stage-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--red-primary);
    line-height: 1.3;
}
.ir-stage-box .ir-stage-sub {
    font-size: 12px;
    color: var(--ink-400);
    letter-spacing: 0.4px;
}
.ir-bico-table tbody td.ir-col-invest {
    background: #fff;
    border-left: 1px solid var(--ink-100);
    width: 40%;
}
.ir-bico-table tbody td.ir-col-return {
    background: #fff7f8;
    border-left: 1px solid var(--ink-100);
    width: 40%;
}
.ir-bico-table tbody td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ir-bico-table tbody td ul li {
    font-size: 13px;
    line-height: 1.85;
    color: var(--ink-600);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ir-dot {
    flex-shrink: 0;
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red-primary);
    margin-top: 11px;
    opacity: 0.9;
}
.ir-bico-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.ir-value-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    padding: 22px 24px;
}
.ir-value-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 8px 0;
}
.ir-value-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink-500);
    margin: 0;
}
.ir-bico-banner {
    padding: 22px 40px;
    border-radius: 12px;
    background: linear-gradient(100deg, #ffe5e9 0%, #fff0e8 45%, #e7edff 100%);
    text-align: center;
}
.ir-bico-banner p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-800);
    letter-spacing: 0.2px;
}
@media (max-width: 900px) {
    .ir-bico-head h2 { font-size: 26px; }
    .ir-bico-table { table-layout: auto; min-width: 720px; }
    .ir-bico-table-wrap { overflow-x: auto; }
    .ir-bico-values { grid-template-columns: 1fr; }
    .ir-bico-banner { padding: 18px 20px; }
    .ir-bico-banner p { font-size: 13px; }
    .ir-bico-table thead th,
    .ir-bico-table tbody td { padding-left: 18px; padding-right: 18px; }
}

/* ============ 投资透明量化可见 ============ */
.tran-inv {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #fff;
}
.tran-inv-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
}
.tran-inv-head small {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--red-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.tran-inv-head h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--ink-900);
    margin: 0 0 16px 0;
    letter-spacing: -0.4px;
}
.tran-inv-head .tran-inv-sub {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.85;
    margin: 0;
}
.tran-inv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.ti-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 30px 28px;
}
.ti-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--red-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}
.ti-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
}
.ti-card .ti-card-desc {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.75;
    margin: 0 0 16px 0;
}
.ti-card .ti-card-meta {
    font-size: 11.5px;
    color: var(--ink-400);
    margin: 0;
    letter-spacing: 0.2px;
}
.tran-inv-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.tran-inv-ctas .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}
.tran-inv-ctas .btn-primary {
    background: var(--red-primary);
    color: #fff;
    border-color: var(--red-primary);
    box-shadow: 0 4px 14px rgba(209, 37, 53, 0.18);
}
.tran-inv-ctas .btn-primary:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(209, 37, 53, 0.26);
}
.tran-inv-ctas .btn-outline {
    background: transparent;
    color: var(--ink-800);
    border: 1px solid var(--ink-100);
}
.tran-inv-ctas .btn-outline:hover {
    background: var(--ink-50);
    border-color: var(--ink-200);
}
@media (max-width: 900px) {
    .tran-inv { padding-top: 56px; padding-bottom: 72px; }
    .tran-inv-head h2 { font-size: 26px; }
    .tran-inv-cards { grid-template-columns: 1fr; }
}

/* ============ 走进中国品牌智库 ============ */
.tank {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #fafafa;
}
.tank-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px auto;
}
.tank-head small {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--red-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.tank-head h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--ink-900);
    margin: 0 0 14px 0;
    letter-spacing: -0.4px;
}
.tank-head-sub {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.85;
    margin: 0;
}
.tank-group {
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 24px 26px 26px 26px;
}
.tank-group-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tank-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
    background: #fff0f2;
    color: var(--red-primary);
}
.tank-icon i {
    font-size: 14px;
    color: var(--red-primary);
}
.tank-group-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: 0.2px;
}
.tank-group-tag {
    font-size: 12px;
    color: var(--ink-400);
    letter-spacing: 0.2px;
}
.tank-group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tank-card {
    background: #fafafa;
    border: 0;
    border-radius: 10px;
    padding: 20px 22px;
}
.tank-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.tank-card p {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.75;
    margin: 0;
}
.tank-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}
.tank-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 32px;
    border-radius: 999px;
    background: var(--red-primary);
    color: #fff;
    border: 1px solid var(--red-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(209, 37, 53, 0.18);
}
.tank-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(209, 37, 53, 0.26);
}
@media (max-width: 900px) {
    .tank { padding-top: 56px; padding-bottom: 72px; }
    .tank-head h2 { font-size: 26px; }
    .tank-group-grid { grid-template-columns: 1fr; }
    .tank-group-head { flex-wrap: wrap; }
}

/* ============ 品牌资产 CTA 横幅 ============ */
.cta-brand {
    position: relative;
    background: var(--red-primary);
    padding: 72px 24px;
    overflow: hidden;
}
.cta-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.06) 0px,
        rgba(255,255,255,0.06) 1px,
        transparent 1px,
        transparent 48px
    );
    pointer-events: none;
}
.cta-brand-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.cta-brand h2 {
    font-size: 30px;
    font-weight: 900;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
    color: #fff;
}
.cta-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    margin: 0 0 32px 0;
    letter-spacing: 0.2px;
}
.cta-brand-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}
.cta-btn i {
    font-size: 14px;
}
.cta-btn-white {
    background: #fff;
    color: var(--red-primary);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.cta-btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
@media (max-width: 900px) {
    .cta-brand { padding: 56px 20px; }
    .cta-brand h2 { font-size: 24px; }
    .cta-btn { height: 44px; padding: 0 22px; font-size: 14px; }
}

/* ============ Business grid (六大业务板块) ============ */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.biz-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}
.biz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10, 10, 10, 0.08);
    border-color: var(--ink-200);
}

/* 上半：深蓝渐变 + 数字 + 图标 + 标题 + 网络光点 */
.biz-top {
    position: relative;
    padding: 30px 28px 36px;
    color: #fff;
    background: linear-gradient(150deg, #243B7A 0%, #1A2856 55%, #0E1737 100%);
    overflow: hidden;
}
.biz-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(200, 16, 46, 0.18), transparent 55%);
    pointer-events: none;
}

.biz-top .num {
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.02em;
    user-select: none;
}

.biz-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 54px;
    z-index: 2;
}
.biz-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #fff;
}
.biz-title small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.biz-title h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* 网络光点装饰 */
.biz-net {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    pointer-events: none;
    z-index: 1;
}
.biz-net .dot {
    position: absolute;
    left: var(--left);
    top: var(--top);
    width: var(--s);
    height: var(--s);
    background: #fff;
    border-radius: 50%;
    opacity: var(--o);
}
.biz-net .line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    transform-origin: left center;
}
.biz-net .l1 { left: 10%; top: 20%; width: 45%; transform: rotate(15deg); }
.biz-net .l2 { left: 40%; top: 55%; width: 55%; transform: rotate(-8deg); background: rgba(200, 16, 46, 0.22); }
.biz-net .l3 { left: 25%; top: 75%; width: 40%; transform: rotate(22deg); }

/* 下半：白色描述区 + 标签 + 红色链接 */
.biz-body {
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}
.biz-body p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink-500);
    margin: 0;
}
.biz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.biz-tags span {
    font-size: 12px;
    color: var(--ink-400);
    background: var(--bg-canvas);
    border: 1px solid var(--ink-100);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.biz-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--red-primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s ease;
}
.biz-more:hover {
    gap: 10px;
}

/* 每张卡片独立的渐变色调 */
.biz-card.b1 .biz-top { background: linear-gradient(150deg, #25388A 0%, #16204A 60%, #0B1230 100%); }
.biz-card.b2 .biz-top { background: linear-gradient(150deg, #4A1F2E 0%, #2B0F1C 60%, #180611 100%); }
.biz-card.b3 .biz-top { background: linear-gradient(150deg, #1F5244 0%, #103A31 60%, #071F1A 100%); }
.biz-card.b4 .biz-top { background: linear-gradient(150deg, #2A1F5E 0%, #1C1444 60%, #0E0827 100%); }
.biz-card.b5 .biz-top { background: linear-gradient(150deg, #6A3D14 0%, #3D210A 60%, #1E0F04 100%); }
.biz-card.b6 .biz-top { background: linear-gradient(150deg, #4D1A33 0%, #2F0E21 60%, #15050E 100%); }

@media (max-width: 1100px) {
    .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .biz-grid { grid-template-columns: 1fr; }
    .biz-top { padding: 26px 22px 30px; }
    .biz-top .num { font-size: 52px; }
    .biz-body { padding: 20px 22px 22px; }
    .biz-title h3 { font-size: 18px; }
}

/* ============ Cases (大案例展示卡) ============ */
.cases-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}
.cases-head .title h2 {
    font-size: 36px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.cases-head .title small {
    display: block;
    color: var(--red-primary);
    letter-spacing: 0.32em;
    font-size: 11.5px;
    margin-bottom: 12px;
    font-weight: 600;
}
.cases-head .title p {
    color: var(--ink-400);
    font-size: 14px;
    margin: 12px 0 0;
    max-width: 560px;
    line-height: 1.8;
}

.case-list { display: flex; flex-direction: column; gap: 20px; }

.case-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #141414;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.case-item:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.4); transform: translateY(-2px); }

.case-media {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

/* 顶部图片区 */
.case-img {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background-color: #1e2a40;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}
.case-item:hover .case-img { transform: scale(1.03); }
.case-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,10,20,0.55) 0%, rgba(10,10,20,0.15) 45%, rgba(10,10,20,0.0) 100%);
    pointer-events: none;
    z-index: 1;
}
.case-img::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, rgba(8,8,12,0.82) 78%, rgba(8,8,12,0.92) 100%);
    z-index: 2;
    pointer-events: none;
}
.case-img img {
    width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0;
}

/* 红色 Badge */
.case-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 5;
    background: var(--red-primary);
    color: #fff;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 14px rgba(224,32,32,0.3);
}

/* 左下角标题 */
.case-img-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 5;
    color: #fff;
    max-width: 760px;
}
.case-img-title h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -0.015em;
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.case-img-title p {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* 底部内容区 — 高端分层版 */
.case-text {
    position: relative;
    padding: 28px 0 8px;
    color: #1a1a1a;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.case-desc {
    color: #2a2a2a;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.02em;
    font-weight: 500;
    padding: 0 36px;
    position: relative;
}

/* 统计区 */
.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 36px;
    padding: 22px 0 6px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.case-stats .stat-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 28px 14px;
    gap: 10px;
}
.case-stats .stat-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--red-primary) 0%, rgba(224,32,32,0.15) 100%);
    border-radius: 2px;
}
.case-stats .stat-col:first-child { padding-left: 28px; }
.case-stats .stat-col:first-child::before { display: none; }
.case-stats .stat-col:last-child { border-right: 0; }

/* 顶部小标签（品牌价值） */
.case-stats .stat-label {
    color: rgba(0,0,0,0.55);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    font-weight: 500;
}

/* 数字行：小数字 → 大数字 */
.case-stats .stat-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.case-stats .stat-row span {
    color: rgba(0,0,0,0.4);
    font-size: 13px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}
.case-stats .stat-row .arrow {
    color: rgba(224,32,32,0.55);
    font-size: 12px;
    font-weight: 400;
    position: relative;
    top: -1px;
}
.case-stats .stat-row strong {
    color: var(--red-primary);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

/* 案例特点和参数标签 */
.case-params {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 28px;
    margin-top: 2px;
}
.case-params .param-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 20px;
    padding: 4px 14px 4px 8px;
    font-size: 12.5px;
    line-height: 1.5;
}
.case-params .param-tag em {
    font-style: normal;
    color: #6b7280;
    font-size: 11px;
}
.case-params .param-tag b {
    font-weight: 700;
    color: #C8102E;
    font-size: 13px;
}

@media (max-width: 900px) {
    .case-img { min-height: 220px; }
    .case-img-title h3 { font-size: 22px; }
    .case-text { padding: 24px 0 4px; gap: 16px; }
    .case-desc { padding: 0 22px; font-size: 13.5px; }
    .case-stats { margin: 0 22px; padding: 18px 0 4px; gap: 10px; }
    .case-stats .stat-col { padding: 6px 18px 12px; gap: 8px; }
    .case-stats .stat-col:first-child { padding-left: 18px; }
    .case-stats .stat-row strong { font-size: 18px; }
}
@media (max-width: 520px) {
    .case-stats {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 18px 0 4px;
    }
    .case-stats .stat-col {
        border-right: 0;
        padding: 10px 0 12px 18px !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .case-stats .stat-col:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ============ Advantages / 为什么首选集和（高端杂志版）—— 四卡片同类元素垂直对齐 ============ */
.advantages {
    background: #f4f3ef;
    padding-top: 80px;
    padding-bottom: 80px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch; /* 让四个卡片撑满整行高度 */
}
.advantages-item {
    position: relative;
    padding: 28px 24px 72px; /* 底部留 72px 给箭头按钮，保证箭头对齐 */
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.advantages-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--red-primary) 0%, rgba(224,32,32,0) 100%);
    opacity: 0.9;
}
.advantages-item:hover {
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -16px rgba(0,0,0,0.15);
}

/* 顶部：编号/英文 + 签名线 —— 固定高度，所有卡片在同一行显示 */
.advantages-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 22px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.advantages-item .num {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--red-primary);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}
.advantages-item .num em {
    color: rgba(0,0,0,0.35);
    font-style: normal;
    margin: 0 6px;
}
.advantages-item .icon-sig {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.advantages-item .sig-bar {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: rgba(0,0,0,0.25);
}
.advantages-item .sig-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-primary);
}

/* 大图标：统一 32px 高度 + 固定间距 —— 保证四个图标垂直对齐 */
.advantages-item .big-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding-bottom: 10px;
    flex-shrink: 0;
}
.advantages-item .big-icon::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 2px;
    background: var(--red-primary);
    opacity: 0.95;
}
.advantages-item .big-icon::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 2px;
    height: 2px;
    background: #0c0c0c;
}
.advantages-item .big-icon svg {
    width: 32px;
    height: 32px;
    display: block;
    color: #0c0c0c;
}

/* 标题：固定行高 + 2 行最大高度，让四个卡片的标题对齐 */
.advantages-item h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #0c0c0c;
    font-weight: 600;
    letter-spacing: 0.02em;
    height: calc(17px * 1.4 * 2); /* 最多 2 行 —— 四个卡片的标题区高度一致 */
    flex-shrink: 0;
}

/* 描述文字：弹性填充剩余空间，让底部箭头对齐 */
.advantages-item p {
    font-size: 13.5px;
    color: rgba(0,0,0,0.55);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
    flex: 1; /* 撑开内容空间 —— 使箭头在四卡片上位于同一绝对高度 */
}

/* 右下箭头：绝对定位，四卡片位置完全一致 */
.advantages-item .arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.55);
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: #fff;
}
.advantages-item:hover .arrow {
    background: var(--red-primary);
    color: #fff;
    border-color: var(--red-primary);
    transform: translateX(3px);
}

@media (max-width: 1000px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .advantages-grid { grid-template-columns: 1fr; gap: 14px; }
    .advantages-item { padding: 24px 20px 64px; min-height: auto; }
    .advantages-item h3 { height: auto; }
}

/* ============ Hub / 企业动态 · 知识库 · 社区内容（高端杂志版 · 三栏对齐） ============ */
.hub-section {
    background: #ffffff;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}
.hub-section::before {
    /* 左侧极细红色装饰线 — 竖向章节标记 */
    content: "";
    position: absolute;
    top: 120px;
    left: 5%;
    width: 1px;
    height: 24px;
    background: var(--red-primary);
    opacity: 0.9;
}
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(0,0,0,0.12);
    align-items: stretch;
}
.hub-column {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 36px 36px;
    border-right: 1px solid rgba(0,0,0,0.08);
    transition: background 0.4s ease;
}
.hub-column:last-child {
    border-right: 0;
}
.hub-column::before {
    /* 每个栏的右上角「§」风格装饰红点 */
    content: "";
    position: absolute;
    top: 18px;
    right: 20px;
    width: 3px;
    height: 3px;
    background: var(--red-primary);
    opacity: 0.8;
}
.hub-column::after {
    /* 左下角细横装饰线 — 呼应整体书背风格 */
    content: "";
    position: absolute;
    left: 36px;
    bottom: 18px;
    width: 28px;
    height: 1px;
    background: rgba(0,0,0,0.12);
}
.hub-column:hover {
    background: #fcfbf9;
}

/* 栏头：固定高度 — 保证三栏的标题与 CTA 对齐 */
.hub-head {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto; /* 不压缩也不拉伸，占据必要空间 */
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hub-head-top {
    display: grid;
    grid-template-columns: auto 1fr; /* 左侧文字容器 + 右侧装饰线 */
    align-items: center;
    column-gap: 12px;
    margin-bottom: 18px;
    height: 16px; /* 固定高度 — 三栏对齐 */
}
.hub-head-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.hub-head-line {
    height: 1px;
    background: rgba(0,0,0,0.12);
    min-width: 1px;
}
.hub-head-top small {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--red-primary);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.hub-head-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    min-height: 110px; /* 保证三栏的标题块高度一致 */
}
.hub-head-main h3 {
    font-size: 26px;
    line-height: 1.25;
    margin: 0;
    color: #0c0c0c;
    font-weight: 300;
    letter-spacing: -0.01em;
}
.hub-head-main p {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(0,0,0,0.55);
    margin: 0;
    letter-spacing: 0.02em;
}
.hub-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #0c0c0c;
    padding: 14px 18px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.15em;
    font-weight: 500;
    width: 100%;
}
.hub-cta .cta-arrow {
    display: inline-block;
    font-size: 14px;
    color: var(--red-primary);
    transition: transform 0.3s ease;
    margin-left: 6px;
}
.hub-cta:hover {
    background: #0c0c0c;
    color: #fff;
    border-color: #0c0c0c;
}
.hub-cta:hover .cta-arrow {
    color: #fff;
    transform: translateX(4px);
}

/* 列表 — flex:1 撑满剩余高度，三栏列表起点一致 */
.hub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
}
.hub-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    height: 62px; /* 固定高度 — 三栏每条目等高 */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s ease, padding 0.3s ease;
    box-sizing: border-box;
}
.hub-item:last-child {
    border-bottom: 0;
}
.hub-item:hover {
    padding-left: 6px;
}

/* 编号 — 浅灰小数字，等宽对齐 */
.hub-item-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    font-size: 12px;
    color: rgba(0,0,0,0.35);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.hub-item:hover .hub-item-num {
    color: var(--red-primary);
}

/* 中间信息区 */
.hub-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hub-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 16px; /* 固定高度 — 三栏的元信息对齐 */
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
}
.hub-date {
    color: rgba(0,0,0,0.5);
    font-variant-numeric: tabular-nums;
}
.hub-tag {
    color: var(--red-primary);
    font-weight: 500;
    font-style: normal;
}

/* 标题 — 高端字体排印，单行省略 */
.hub-title {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    height: 21px; /* 固定高度 — 三栏标题基线对齐 */
    color: #0c0c0c;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hub-item:hover .hub-title {
    color: var(--red-primary);
}

/* 右侧箭头 */
.hub-item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    color: rgba(0,0,0,0.3);
    font-size: 14px;
    font-weight: 300;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}
.hub-item:hover .hub-item-arrow {
    color: var(--red-primary);
    transform: translateX(4px);
}

@media (max-width: 1000px) {
    .hub-section { padding-top: 80px; padding-bottom: 80px; }
    .hub-grid { grid-template-columns: 1fr; gap: 0; }
    .hub-column { border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 32px 24px 28px; }
    .hub-head-main { min-height: auto; }
    .hub-head-main h3 { font-size: 22px; }
    .hub-item { height: auto; }
}
@media (max-width: 560px) {
    .hub-section { padding-top: 60px; padding-bottom: 60px; }
    .hub-column { padding: 28px 20px 24px; }
    .hub-head-main h3 { font-size: 20px; }
    .hub-title { font-size: 14px; white-space: normal; line-height: 1.6; height: auto; }
    .hub-item { padding: 14px 0; height: auto; }
    .hub-item:hover { padding-left: 4px; }
}

/* ============ Knowledge 知识中心 ============ */
.knowledge {
    background:
        linear-gradient(120deg, #111 0%, #1c1c1e 55%, #2c0a12 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}
.knowledge::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200,16,46,0.22), transparent 60%);
    pointer-events: none;
}

.knowledge-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 24px;
}
.knowledge-main small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.32em;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    font-family: var(--font-mono);
    margin-bottom: 28px;
}
.knowledge-main small::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--red-primary);
}
.knowledge-main h3 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.knowledge-main p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.95;
    margin: 0 0 36px;
}
.knowledge-main .btn {
    background: #fff;
    color: var(--black);
    align-self: flex-start;
    padding: 14px 28px;
}
.knowledge-main .btn:hover {
    background: var(--red-primary);
    color: #fff;
    transform: translateY(-1px);
}

.knowledge-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
}
.knowledge-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px 22px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.knowledge-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,16,46,0.5);
}
.knowledge-card .tag {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    background: var(--red-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-weight: 500;
}
.knowledge-card h4 {
    font-size: 16px;
    color: #fff;
    line-height: 1.45;
    margin: 0 0 8px;
    font-weight: 600;
}
.knowledge-card p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 16px;
    line-height: 1.75;
}
.knowledge-card a.btn-ghost {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
}
.knowledge-card a.btn-ghost:hover { color: var(--red-primary); }

@media (max-width: 900px) {
    .knowledge { grid-template-columns: 1fr; padding: 40px 28px; }
    .knowledge-main { padding-right: 0; }
    .knowledge-main h3 { font-size: 28px; }
    .knowledge-list { grid-template-columns: 1fr; }
}

/* ============ Community 国牌社区 CTA ============ */
.community-cta {
    margin-top: 56px;
    padding: 56px 64px;
    background: #fff;
    border: 1px solid var(--ink-100);
    color: var(--black);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-1);
}
.community-cta::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--red-primary);
}
.community-cta h3 {
    font-size: 28px;
    margin: 6px 0 8px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.community-cta p {
    color: var(--ink-500);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}
.community-cta small {
    font-size: 11.5px;
    letter-spacing: 0.32em;
    color: var(--red-primary);
    font-weight: 600;
}
.community-cta .btn {
    background: var(--red-primary);
    color: #fff;
    padding: 15px 30px;
    flex-shrink: 0;
}
.community-cta .btn:hover {
    background: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
    .community-cta { flex-direction: column; text-align: left; padding: 40px 28px; align-items: flex-start; }
    .community-cta h3 { font-size: 22px; }
}

/* ============ Footer（高端风格） ============ */
.footer {
    background: #1a1414; /* 极深暖棕黑 */
    color: #9a9a9a;
    margin-top: 0;
    padding: 0;
    position: relative;
}

/* 顶部红色 banner */
.footer-cta {
    background: #c8102e;
    color: #fff;
    padding: 48px 0 56px;
    text-align: center;
    position: relative;
}
.footer-cta h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 14px;
    letter-spacing: 0.18em;
}
.footer-cta .cta-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 4px 0;
    letter-spacing: 0.1em;
}
.footer-cta .cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 4px 0 4px;
}
.footer-cta .cta-address {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin: 8px 0 22px;
    letter-spacing: 0.08em;
}
.footer-cta .cta-btn {
    display: inline-block;
    background: #fff;
    color: #c8102e;
    padding: 10px 30px;
    font-size: 13px;
    letter-spacing: 0.2em;
    font-weight: 500;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-cta .cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35);
}

/* 主体 */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding: 56px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* 品牌信息（使用 .brand 统一风格，深色底适配） */
.footer .brand {
    margin-bottom: 18px;
}
.footer .brand .brand-en,
.footer .brand .brand-cn {
    color: #fff;
}
.footer .brand .brand-sep .sep {
    background: #fff;
}
.footer-brand-desc {
    color: #888;
    font-size: 13px;
    line-height: 1.9;
    margin: 0 0 24px;
    max-width: 380px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12.5px;
    color: #777;
    letter-spacing: 0.05em;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact li svg {
    color: #c8102e;
    flex-shrink: 0;
}

/* 分类标题 */
.footer h4 {
    color: #fff;
    font-size: 13px;
    margin: 0 0 20px;
    letter-spacing: 0.25em;
    font-weight: 500;
    text-transform: none;
    position: relative;
    padding-bottom: 14px;
}
.footer h4::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 32px;
    height: 1px;
    background: #c8102e;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer a { color: #9a9a9a; font-size: 13px; transition: color 0.2s; letter-spacing: 0.04em; }
.footer a:hover { color: #fff; }

/* 品牌升级侧 */
.upgrade-desc {
    color: #888;
    font-size: 12.5px;
    line-height: 1.9;
    margin: 0 0 16px;
    max-width: 260px;
}
.upgrade-btn {
    display: inline-block;
    background: #c8102e;
    color: #fff;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-bottom: 20px;
}
.upgrade-btn:hover {
    background: #b00e2a;
    transform: translateY(-1px);
}
.qrcode-label {
    color: #777;
    font-size: 11px;
    letter-spacing: 0.15em;
    margin: 0 0 8px;
}
.qrcode {
    width: 72px;
    height: 72px;
    background:
        linear-gradient(135deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(225deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(315deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(45deg, #2a2a2a 25%, transparent 25%),
        #333;
    background-size: 8px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    position: relative;
}
.qrcode::before, .qrcode::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #000;
    border: 2px solid #fff;
}
.qrcode::before { top: 4px; left: 4px; }
.qrcode::after { top: 4px; right: 4px; }

/* 底部版权 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 11.5px;
    color: #666;
    flex-wrap: wrap;
    gap: 10px;
    letter-spacing: 0.05em;
}
.footer-bottom .fb-credit {
    display: inline-flex;
    gap: 18px;
}
.footer-bottom .fb-credit a {
    color: #777;
    font-size: 11.5px;
}
.footer-bottom .fb-credit a:hover {
    color: #fff;
}

@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-cta h3 { font-size: 20px; }
}
@media (max-width: 560px) {
    .footer-cta { padding: 36px 0 44px; }
    .footer-cta h3 { font-size: 18px; letter-spacing: 0.14em; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom .fb-credit { gap: 12px; flex-wrap: wrap; justify-content: center; }
}

/* ============ Page hero (内页通用) ============ */
.page-hero {
    padding: 80px 0 56px;
    background:
        linear-gradient(120deg, #fff, #f5f5f7 60%);
    border-bottom: 1px solid var(--ink-100);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.page-hero-text {
    position: relative;
    z-index: 1;
}
.page-hero-text small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.32em;
    color: var(--red-primary);
    font-weight: 600;
}
.page-hero-text small::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--red-primary);
}
.page-hero-text h1 {
    font-size: clamp(30px, 4vw, 52px);
    margin: 20px 0 16px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.page-hero-text p {
    color: var(--ink-500);
    font-size: 15px;
    max-width: 720px;
    line-height: 1.9;
    margin: 0;
}

/* 案例页 hero：蓝粉渐变 + 居中 */
.page-hero-cases {
    padding: 100px 0 80px;
    background: linear-gradient(100deg, #e8f0ff 0%, #f3e8ff 50%, #fff0e8 100%);
    border-bottom: none;
}
.page-hero-cases::before {
    display: none;
}
.page-hero-cases .page-hero-text {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.page-hero-cases .page-hero-text small {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: var(--ink-600);
    font-weight: 600;
    margin-bottom: 16px;
}
.page-hero-cases .page-hero-text small::before {
    display: none;
}
.page-hero-cases .page-hero-text h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    margin: 0 0 18px 0;
    color: var(--black);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.page-hero-cases .page-hero-text p {
    color: var(--ink-500);
    font-size: 14px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.9;
}

/* 内页：业务版块条目 */
.biz-section-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: stretch;
    padding: 72px 0;
    border-bottom: 1px solid var(--ink-100);
}
.biz-section-row:last-child { border-bottom: 0; }

.biz-section-text small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.32em;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 20px;
}
.biz-section-text small::before {
    content: "";
    width: 24px; height: 1px;
    background: var(--red-primary);
}
.biz-section-text h2 {
    font-size: 34px;
    margin: 0 0 16px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.biz-section-text p {
    color: var(--ink-500);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 24px;
}
.biz-section-text > div.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.biz-section-text > div.tags span {
    background: var(--red-50);
    color: var(--red-primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
}

.biz-section-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow-2);
    position: relative;
}
.biz-section-media > div {
    padding: 40px;
    color: #fff;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.biz-section-media > div::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 60% 40%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 60% 40%, #000, transparent 80%);
}
.biz-section-media h3 {
    font-size: 28px;
    margin: 10px 0 12px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .biz-section-row { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
    .biz-section-text h2 { font-size: 24px; }
}

/* ============ 四步构建企业品牌银行 ============ */
.brand-bank-section {
    padding: 80px 0;
    background: #fff;
}
.brand-bank-head {
    text-align: center;
    margin-bottom: 48px;
}
.brand-bank-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--red-primary);
    margin-bottom: 14px;
}
.brand-bank-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}
.brand-bank-subtitle {
    font-size: 16px;
    color: var(--ink-500);
    margin: 0;
    line-height: 1.6;
}
.brand-bank-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bb-step-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 28px 24px 24px;
    transition: all 0.3s ease;
    position: relative;
}
.bb-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.12);
}
.bb-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.bb-step-icon {
    width: 28px;
    height: 28px;
    background: var(--red-50);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bb-step-icon svg {
    width: 18px;
    height: 18px;
}
.bb-step-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red-primary);
}
.bb-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px;
    line-height: 1.4;
}
.bb-step-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--red-primary);
    margin-bottom: 12px;
}
.bb-step-desc {
    font-size: 13px;
    line-height: 1.85;
    color: var(--ink-500);
    margin: 0 0 18px;
}
.bb-step-deliver {
    font-size: 12px;
    line-height: 1.75;
    color: var(--ink-400);
    padding-top: 14px;
    border-top: 1px solid var(--ink-50);
}

@media (max-width: 1100px) {
    .brand-bank-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .brand-bank-title { font-size: 32px; }
}
@media (max-width: 600px) {
    .brand-bank-section { padding: 56px 0; }
    .brand-bank-title { font-size: 26px; }
    .brand-bank-subtitle { font-size: 14px; }
    .brand-bank-grid { grid-template-columns: 1fr; }
    .bb-step-card { padding: 24px 20px 20px; }
    .bb-step-title { font-size: 16px; }
}

/* ============ 对比：为什么不是设计/广告/咨询公司 ============ */
.compare-section {
    padding: 0 0 80px;
    background: #fff;
}
.compare-head {
    text-align: center;
    margin-bottom: 40px;
}
.compare-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--red-primary);
    margin-bottom: 14px;
}
.compare-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.compare-table-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ink-100);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.1);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.compare-table thead th {
    padding: 20px 28px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    border-bottom: 2px solid var(--red-primary);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.compare-table thead th.compare-col-label {
    width: 14%;
    background: #fff;
    border-bottom: 2px solid var(--ink-200);
}
.compare-table thead th.compare-col-gray {
    width: 43%;
    background: #fafafa;
    color: var(--ink-700);
    border-bottom: 2px solid var(--ink-200);
}
.compare-table thead th.compare-col-red {
    width: 43%;
    background: #fff7f8;
    color: var(--red-primary);
    border-left: 1px solid var(--red-100);
    border-bottom: 2px solid var(--red-primary);
}
.compare-table tbody td {
    padding: 22px 28px;
    line-height: 1.75;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid var(--ink-100);
}
.compare-table tbody td.compare-row-label {
    background: #f7f8fa;
    color: var(--ink-800);
    font-weight: 700;
    width: 14%;
    text-align: center;
    font-size: 13px;
}
.compare-table tbody td.compare-cell-gray {
    background: #fff;
    color: var(--ink-500);
    width: 43%;
    font-size: 13px;
}
.compare-table tbody td.compare-cell-red {
    background: #fff7f8;
    color: var(--red-primary);
    width: 43%;
    font-weight: 600;
    font-size: 13px;
    border-left: 1px solid var(--red-100);
}

@media (max-width: 900px) {
    .compare-section { padding-bottom: 56px; }
    .compare-title { font-size: 24px; }
    .compare-table-wrap { overflow-x: auto; }
    .compare-table { min-width: 680px; }
    .compare-table thead th,
    .compare-table tbody td { padding: 16px 18px; font-size: 13px; }
}
@media (max-width: 560px) {
    .compare-title { font-size: 20px; }
    .compare-table thead th,
    .compare-table tbody td { padding: 14px 14px; font-size: 12.5px; }
}

/* ============ 如何做品牌升级与品牌资产管理 ============ */
.upgrade-section {
    padding: 0 0 80px;
    background: #fff;
}
.upgrade-head {
    text-align: center;
    margin-bottom: 40px;
}
.upgrade-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 10px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.upgrade-subtitle {
    font-size: 14px;
    color: var(--ink-400);
    margin: 0;
    line-height: 1.6;
}

/* 顶部5张卡片 */
.upgrade-top-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}
.upg-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 18px 16px 20px;
    transition: all 0.3s ease;
}
.upg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -14px rgba(0,0,0,0.1);
    border-color: var(--ink-200);
}
.upg-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.upg-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--red-primary);
    border: 1px solid var(--red-200);
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}
.upg-badge {
    display: inline-block;
    background: var(--red-primary);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.02em;
    font-weight: 600;
}
.upg-card-sub {
    font-size: 12px;
    color: var(--ink-400);
    margin-bottom: 6px;
    line-height: 1.4;
}
.upg-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.4;
}
.upg-card-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-400);
    margin: 0;
}

/* 双锥价值链运行闭环 */
.upgrade-loop {
    background: #f6f7f8;
    border-radius: 16px;
    padding: 36px 44px 40px;
    margin-bottom: 32px;
}
.upg-loop-head {
    text-align: center;
    margin-bottom: 36px;
}
.upg-loop-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px;
}
.upg-loop-desc {
    font-size: 12px;
    color: var(--ink-400);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 680px;
}
.upg-loop-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

/* 梯形（双锥） */
.upg-trapezoid {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
}
.upg-trap-left {
    background: linear-gradient(90deg, #ecece9 0%, #e6e6e2 60%, #e0e0db 100%);
    clip-path: polygon(0 0, 100% 18%, 100% 82%, 0 100%);
    justify-content: center;
    padding-left: 20px;
}
.upg-trap-right {
    background: linear-gradient(90deg, #e0e0db 0%, #e6e6e2 40%, #ecece9 100%);
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 82%);
    justify-content: center;
    padding-right: 20px;
}
.upg-trap-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.upg-trap-left .upg-trap-content {
    padding-right: 40px;
}
.upg-trap-right .upg-trap-content {
    padding-left: 40px;
}
.upg-trap-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: 0.02em;
}
.upg-red-arrow {
    color: var(--red-primary);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* 品牌DNA圆 */
.upg-dna-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--red-primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 22px 50px -18px rgba(200,16,46,0.55);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.upg-dna-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.upg-dna-sub {
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.upg-dna-list {
    text-align: center;
}
.upg-dna-list div {
    font-size: 12px;
    opacity: 0.95;
    line-height: 1.7;
}

/* 底部4步卡片 */
.upgrade-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.upg-step {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 24px 20px 22px;
    text-align: center;
    transition: all 0.3s ease;
}
.upg-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -14px rgba(0,0,0,0.1);
    border-color: var(--red-100);
}
.upg-step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fde7eb;
    color: var(--red-primary);
    border: none;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}
.upg-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.upg-step-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-400);
    margin: 0;
}

/* 底部横幅 */
.upgrade-banner {
    background: var(--red-primary);
    color: #fff;
    text-align: center;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
}

/* 响应式 */
@media (max-width: 1100px) {
    .upgrade-top-grid { grid-template-columns: repeat(3, 1fr); }
    .upgrade-bottom-grid { grid-template-columns: repeat(2, 1fr); }
    .upg-loop-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .upg-trapezoid {
        height: 120px;
    }
    .upg-trap-left {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding-left: 0;
        border-radius: 10px;
    }
    .upg-trap-right {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding-right: 0;
        border-radius: 10px;
    }
    .upg-trap-left .upg-trap-content { padding-right: 0; }
    .upg-trap-right .upg-trap-content { padding-left: 0; }
    .upg-dna-circle { margin: 0 auto; }
}
@media (max-width: 680px) {
    .upgrade-section { padding-bottom: 56px; }
    .upgrade-title { font-size: 24px; }
    .upgrade-subtitle { font-size: 13px; }
    .upgrade-top-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .upgrade-bottom-grid { grid-template-columns: 1fr; }
    .upgrade-loop { padding: 28px 20px; }
    .upg-loop-title { font-size: 16px; }
    .upg-loop-desc { font-size: 12px; }
    .upg-trapezoid { height: 100px; }
    .upg-trap-text { font-size: 14px; }
    .upg-red-arrow { font-size: 18px; }
    .upg-dna-circle { width: 170px; height: 170px; }
    .upg-dna-title { font-size: 20px; }
    .upgrade-banner { font-size: 13px; padding: 14px 16px; }
}

/* ============ 三步交付路径 ============ */
.delivery-section {
    padding: 80px 0;
    background: #fff;
}
.delivery-head {
    text-align: center;
    margin-bottom: 44px;
}
.delivery-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--red-primary);
    margin-bottom: 14px;
}
.delivery-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 10px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}
.delivery-subtitle {
    font-size: 15px;
    color: var(--ink-400);
    margin: 0;
    line-height: 1.6;
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dlv-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.dlv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px -20px rgba(0,0,0,0.12);
}
.dlv-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ink-50);
}
.dlv-card-no {
    background: var(--red-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.03em;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dlv-card-title-wrap {
    padding: 0;
    flex: 1;
    background: transparent;
    border-bottom: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dlv-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 6px;
    line-height: 1.3;
}
.dlv-card-sub {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.5;
    margin: 0;
}
.dlv-list {
    list-style: none;
    padding: 22px 24px 18px;
    margin: 0;
    flex: 1;
}
.dlv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--ink-700);
    line-height: 1.6;
}
.dlv-list li i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--red-200);
    position: relative;
    flex-shrink: 0;
}
.dlv-list li i::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid var(--red-primary);
    border-width: 0 1.8px 1.8px 0;
    transform: rotate(45deg);
}
.dlv-footer {
    padding: 16px 24px 22px;
    border-top: 1px solid var(--ink-50);
}
.dlv-footer-label {
    font-size: 10.5px;
    color: var(--ink-400);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-weight: 600;
}
.dlv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dlv-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11.5px;
    color: #fff;
    background: var(--red-primary);
    border: 1px solid var(--red-primary);
    border-radius: 999px;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .delivery-section { padding: 60px 0; }
    .delivery-grid { grid-template-columns: 1fr; gap: 16px; }
    .delivery-title { font-size: 30px; }
}
@media (max-width: 600px) {
    .delivery-section { padding: 48px 0; }
    .delivery-title { font-size: 26px; }
    .delivery-subtitle { font-size: 13px; }
    .dlv-list { padding: 18px 20px 14px; }
    .dlv-footer { padding: 14px 20px 18px; }
}

/* ============ 企业最终得到什么 ============ */
.result-section {
    padding: 0 0 80px;
    background: #fff;
}
.result-head {
    text-align: center;
    margin-bottom: 40px;
}
.result-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 10px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.result-subtitle {
    font-size: 14px;
    color: var(--ink-400);
    margin: 0;
    line-height: 1.6;
}
.result-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.rst-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 6px;
    padding: 28px 18px 26px;
    text-align: center;
    transition: all 0.3s ease;
}
.rst-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -18px rgba(0,0,0,0.12);
}
.rst-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 10px;
    line-height: 1.3;
}
.rst-card-desc {
    font-size: 12px;
    color: var(--ink-500);
    line-height: 1.7;
    margin: 0;
}
.rst-card-accent {
    background: var(--red-primary);
    border-color: var(--red-primary);
    border-radius: 4px;
}
.rst-card-accent .rst-card-title {
    color: #fff;
}
.rst-card-accent .rst-card-desc {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 1100px) {
    .result-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
    .result-section { padding-bottom: 56px; }
    .result-title { font-size: 24px; }
    .result-subtitle { font-size: 13px; }
    .result-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .rst-card { padding: 22px 16px 20px; }
    .rst-card-accent { grid-column: span 2; }
}

/* ============ business.php 品牌标杆page-hero ============ */
.page-hero-biz {
    padding: 60px 0 56px;
    background: linear-gradient(160deg, #fff5f6 0%, #fff 40%, #f3f8ff 100%);
    position: relative;
    overflow: hidden;
}
.page-hero-biz::before,
.page-hero-biz::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
}
.page-hero-biz::before {
    width: 320px; height: 320px;
    background: #fde7eb;
    top: -120px; left: -80px;
}
.page-hero-biz::after {
    width: 360px; height: 360px;
    background: #e6f0ff;
    bottom: -140px; right: -100px;
}
.page-hero-biz > .container {
    position: relative;
    z-index: 1;
}
.bh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 999px;
    margin-bottom: 26px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.bh-eyebrow-icon {
    width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff0f2;
    border-radius: 50%;
}
.bh-eyebrow-text {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #6b7280;
    font-weight: 600;
}
.bh-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.22;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.bh-title-highlight {
    color: var(--red-primary);
}
.bh-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0 0 26px;
    max-width: 720px;
}
.bh-statement-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-left: 4px solid var(--red-primary);
    border-radius: 6px;
    padding: 16px 22px;
    max-width: 560px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
}
.bh-st-tag {
    font-size: 14px;
    font-weight: 800;
    color: var(--red-primary);
    margin-bottom: 6px;
}
.bh-st-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.bh-stats-row {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    padding: 10px 0;
    max-width: 560px;
    margin-bottom: 30px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.03);
}
.bh-stat {
    flex: 1;
    text-align: center;
    padding: 6px 8px;
}
.bh-stat-divider {
    width: 1px;
    background: #e5e7eb;
    align-self: center;
    height: 36px;
}
.bh-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--red-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}
.bh-stat-label {
    font-size: 10px;
    color: #9ca3af;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.bh-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.bh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}
.bh-btn-primary {
    background: var(--red-primary);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(200,16,46,0.45);
}
.bh-btn-primary:hover {
    background: #aa0e27;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -8px rgba(200,16,46,0.55);
    color: #fff;
}
.bh-btn-icon {
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #8a0a21;
    border-radius: 999px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.bh-btn-secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.bh-btn-secondary:hover {
    border-color: #9ca3af;
    transform: translateY(-2px);
    color: #111827;
}
.bh-btn-icon-alt {
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #111827;
    border-radius: 999px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
@media (max-width: 860px) {
    .page-hero-biz { padding: 40px 0 36px; }
    .bh-title { font-size: 32px; }
    .bh-desc { font-size: 13px; }
    .bh-stats-row { flex-wrap: wrap; padding: 14px; gap: 10px; }
    .bh-stat { flex: 1 1 40%; padding: 8px 4px; }
    .bh-stat-divider { display: none; }
}
@media (max-width: 520px) {
    .bh-title { font-size: 26px; }
    .bh-statement-card { padding: 12px 16px; }
    .bh-st-tag { font-size: 13px; }
    .bh-btn { padding: 12px 20px; font-size: 13px; }
    .bh-actions { flex-direction: column; align-items: stretch; }
    .bh-btn { justify-content: center; }
}

/* ===== 透明投资体系对比表 (business.php 模块) ===== */
.ti-section { background: #fff; }
.ti-head { text-align: center; margin-bottom: 36px; }
.ti-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
    color: #C8102E; margin-bottom: 14px;
}
.ti-title {
    font-size: 28px; line-height: 1.4; font-weight: 700; color: #111827;
    margin: 0 0 12px;
}
.ti-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0;
}

.ti-table-wrap {
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.05);
    overflow: hidden;
}
.ti-table {
    width: 100%; border-collapse: collapse;
    table-layout: fixed;
}
.ti-table col.col-role { width: 16%; }
.ti-table col.col-concern { width: 28%; }
.ti-table col.col-pain { width: 32%; }
.ti-table col.col-solve { width: 24%; }
.ti-table thead th {
    background: #fff;
    color: #C8102E; font-size: 13px; font-weight: 600;
    padding: 32px 20px;
    text-align: left;
    border-bottom: 2px solid #C8102E;
    border-right: 1px solid var(--ink-100, #f3f4f6);
    white-space: nowrap;
}
.ti-table thead th:last-child { border-right: none; }
.ti-table tbody td {
    padding: 32px 20px;
    font-size: 13.5px; line-height: 1.6; color: #374151;
    vertical-align: middle;
    border-top: 1px solid var(--ink-100, #e5e7eb);
    border-right: 1px solid var(--ink-100, #e5e7eb);
    white-space: nowrap;
}
.ti-table tbody td:last-child { border-right: none; }
.ti-table tbody tr:first-child td { border-top: none; }
.ti-table .ti-role { font-weight: 600; color: #111827; }
.ti-table .ti-pain {
    background: #fff1f2;
}
/* 典型痛点整列（第三列）全部文字红色 */
.ti-table thead th:nth-child(3),
.ti-table tbody td:nth-child(3) {
    color: #C8102E;
}

.ti-note {
    display: flex; align-items: flex-start;
    margin: 28px auto 0;
    max-width: 100%;
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
    gap: 20px;
}
.ti-note-left {
    display: inline-flex; align-items: center; gap: 10px;
    flex-shrink: 0;
    padding-top: 2px;
}
.ti-note-badge {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fef2f4;
    border-radius: 999px;
    color: #C8102E;
    flex-shrink: 0;
}
.ti-note-label {
    font-size: 14px; font-weight: 600; color: #C8102E; letter-spacing: 0.02em;
}
.ti-note-desc {
    font-size: 13px; color: #4b5563; line-height: 1.75;
    flex: 1;
}
.ti-note-emph {
    color: #C8102E;
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 900px) {
    .ti-title { font-size: 22px; }
    .ti-head { margin-bottom: 26px; }
    .ti-table thead th { padding: 24px 14px; font-size: 12px; }
    .ti-table tbody td { padding: 24px 14px; font-size: 13px; }
    .ti-note { padding: 14px 16px; gap: 14px; }
}
@media (max-width: 640px) {
    .ti-table-wrap { overflow-x: auto; }
    .ti-table { min-width: 720px; }
    .ti-note { flex-direction: column; gap: 10px; }
    .ti-note-left { padding-top: 0; }
}

/* ===== 代表案例 - 品牌资产管理的投资回报 (business.php) ===== */
.biz-rc-section { background: #fff; }
.biz-rc-head { text-align: center; margin-bottom: 40px; }
.biz-rc-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    color: #C8102E; margin-bottom: 12px;
}
.biz-rc-title {
    font-size: 28px; font-weight: 700; color: #111827; line-height: 1.35;
    margin: 0 0 10px;
}
.biz-rc-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0;
}

.biz-rc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.biz-rc-card {
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 14px;
    padding: 24px 26px 26px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.biz-rc-card:hover {
    border-color: #C8102E;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 16, 46, 0.08), 0 4px 10px rgba(17, 24, 39, 0.04);
}
.biz-rc-card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
}
.biz-rc-name {
    font-size: 17px; font-weight: 600; color: #111827;
    margin: 0;
    letter-spacing: 0.01em;
}
.biz-rc-arrow {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.biz-rc-card:hover .biz-rc-arrow {
    background: #C8102E;
    color: #fff;
    border-color: #C8102E;
    transform: translateX(2px);
}
.biz-rc-tags {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    margin-bottom: 14px;
}
.biz-rc-tag {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    font-size: 12px; line-height: 1.4;
    border-radius: 6px;
    letter-spacing: 0.01em;
}
.biz-rc-tag-main {
    background: #fff;
    color: #C8102E;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.35);
}
.biz-rc-tag-sub {
    background: #fff1f2;
    color: #9f1239;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.12);
}
.biz-rc-desc {
    font-size: 13px; line-height: 1.85; color: #4b5563;
    margin: 0;
}

.biz-rc-more {
    margin-top: 34px;
    text-align: center;
}
.biz-rc-more-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: #C8102E; font-weight: 600;
    text-decoration: none;
    padding: 8px 4px;
}
.biz-rc-more-link:hover { color: #9f0e26; }
.biz-rc-more-link span { transition: transform 0.2s ease; }
.biz-rc-more-link:hover span { transform: translateX(3px); }

@media (max-width: 1024px) {
    .biz-rc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .biz-rc-title { font-size: 22px; }
    .biz-rc-head { margin-bottom: 28px; }
    .biz-rc-grid { grid-template-columns: 1fr; gap: 16px; }
    .biz-rc-card { padding: 20px 20px 22px; }
}

/* ===== 投资三原则 (business.php) ===== */
.biz-ip-section { background: #fff; }
.biz-ip-head { text-align: center; margin-bottom: 36px; }
.biz-ip-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    color: #C8102E; margin-bottom: 12px;
}
.biz-ip-title {
    font-size: 28px; font-weight: 700; color: #111827; line-height: 1.3;
    margin: 0 0 10px;
}
.biz-ip-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0;
}
.biz-ip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.biz-ip-card {
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 10px;
    padding: 24px 26px 26px;
    transition: all 0.25s ease;
    position: relative;
}
.biz-ip-card:hover {
    border-color: #C8102E;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(200, 16, 46, 0.08), 0 3px 8px rgba(17, 24, 39, 0.04);
}
.biz-ip-num {
    font-size: 15px; font-weight: 700; color: #C8102E;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.biz-ip-card-title {
    font-size: 17px; font-weight: 600; color: #111827;
    margin: 0 0 10px;
    line-height: 1.4;
}
.biz-ip-card-desc {
    font-size: 13px; color: #4b5563; line-height: 1.85;
    margin: 0;
}
@media (max-width: 1024px) {
    .biz-ip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .biz-ip-title { font-size: 22px; }
    .biz-ip-head { margin-bottom: 28px; }
    .biz-ip-grid { grid-template-columns: 1fr; gap: 16px; }
    .biz-ip-card { padding: 20px 20px 22px; }
}

/* ===== 品牌资产管理三步法 (business.php) ===== */
.biz-tp-section { background: #fff; }
.biz-tp-head { text-align: center; margin-bottom: 44px; }
.biz-tp-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    color: #C8102E; margin-bottom: 12px;
}
.biz-tp-title {
    font-size: 28px; font-weight: 700; color: #111827; line-height: 1.3;
    margin: 0 0 10px;
}
.biz-tp-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0;
}
.biz-tp-steps {
    display: flex; align-items: stretch;
    gap: 0;
}
.biz-tp-step {
    flex: 1;
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 8px;
    padding: 20px 24px 22px;
    margin: 0 20px;
    transition: all 0.25s ease;
}
.biz-tp-step:first-child { margin-left: 0; }
.biz-tp-step:last-child { margin-right: 0; }
.biz-tp-step:hover {
    border-color: #C8102E;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(200, 16, 46, 0.08), 0 3px 8px rgba(17, 24, 39, 0.04);
}
.biz-tp-step-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
}
.biz-tp-step-no {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #C8102E;
    color: #fff;
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}
.biz-tp-step-title {
    font-size: 16px; font-weight: 600; color: #111827;
    margin: 0;
    line-height: 1.35;
}
.biz-tp-step-desc {
    font-size: 12.5px; color: #4b5563; line-height: 1.8;
}
.biz-tp-step-arrow {
    position: absolute;
    top: 50%;
    right: -26px;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 999px;
    color: #C8102E;
    font-size: 11px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}
.biz-tp-step:last-child .biz-tp-step-arrow { display: none; }

@media (max-width: 1024px) {
    .biz-tp-steps { flex-direction: column; gap: 28px; }
    .biz-tp-step { margin: 0; }
    .biz-tp-step-arrow {
        top: auto; bottom: -26px; left: 50%; right: auto;
        transform: translateX(-50%) rotate(90deg);
    }
}
@media (max-width: 640px) {
    .biz-tp-title { font-size: 22px; }
    .biz-tp-head { margin-bottom: 32px; }
    .biz-tp-step { padding: 18px 18px 20px; }
    .biz-tp-steps { gap: 24px; }
    .biz-tp-step-arrow { bottom: -22px; }
}

/* ===== 三级投资阶梯 (business.php) ===== */
.biz-tl-section { background: #fff; }
.biz-tl-head { text-align: center; margin-bottom: 40px; }
.biz-tl-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    color: #C8102E; margin-bottom: 12px;
}
.biz-tl-title {
    font-size: 28px; font-weight: 700; color: #111827; line-height: 1.3;
    margin: 0 0 10px;
}
.biz-tl-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0;
}

.biz-tl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.biz-tl-card {
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 14px;
    padding: 26px 26px 28px;
    transition: all 0.25s ease;
    display: flex; flex-direction: column;
}
.biz-tl-card:hover {
    border-color: #C8102E;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 16, 46, 0.08), 0 4px 10px rgba(17, 24, 39, 0.04);
}
.biz-tl-card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px;
}
.biz-tl-level {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 30px; padding: 0 10px;
    background: #C8102E;
    color: #fff;
    border-radius: 6px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.05em;
}
.biz-tl-level--highest {
    background: #111827;
}
.biz-tl-price {
    font-size: 13px; color: #C8102E;
}
.biz-tl-price strong {
    font-size: 18px; font-weight: 700;
}
.biz-tl-card-title {
    font-size: 19px; font-weight: 600; color: #111827;
    line-height: 1.35;
    margin-bottom: 10px;
}
.biz-tl-card-desc {
    font-size: 13px; color: #4b5563; line-height: 1.8;
    margin: 0 0 14px;
    flex: 1;
}
.biz-tl-card-meta {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #6b7280;
    padding-top: 14px;
    border-top: 1px dashed var(--ink-100, #e5e7eb);
}

@media (max-width: 1024px) {
    .biz-tl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .biz-tl-title { font-size: 22px; }
    .biz-tl-head { margin-bottom: 28px; }
    .biz-tl-grid { grid-template-columns: 1fr; gap: 16px; }
    .biz-tl-card { padding: 22px 20px 24px; }
    .biz-tl-card-title { font-size: 17px; }
}

/* ===== 从轻盈启动开始 - Start Light (business.php) ===== */
.biz-sl-section { background: #fff; }
.biz-sl-head { text-align: center; margin-bottom: 40px; }
.biz-sl-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    color: #C8102E; margin-bottom: 12px;
}
.biz-sl-title {
    font-size: 28px; font-weight: 700; color: #111827; line-height: 1.3;
    margin: 0 0 10px;
}
.biz-sl-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0;
}

.biz-sl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.biz-sl-card {
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 14px;
    padding: 26px 26px 24px;
    transition: all 0.25s ease;
    display: flex; flex-direction: column;
}
.biz-sl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}
.biz-sl-card--star {
    border: 2px solid #C8102E;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.08);
}
.biz-sl-card--star:hover {
    box-shadow: 0 14px 30px rgba(200, 16, 46, 0.14);
}
.biz-sl-card-head { margin-bottom: 10px; }
.biz-sl-name {
    font-size: 15px; font-weight: 600; color: #111827;
    margin: 0;
}
.biz-sl-card-price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 14px;
}
.biz-sl-num {
    font-size: 32px; font-weight: 700; color: #C8102E;
    line-height: 1;
}
.biz-sl-unit {
    font-size: 15px; font-weight: 600; color: #C8102E;
    margin-right: 4px;
}
.biz-sl-time {
    font-size: 12px; color: #6b7280;
}
.biz-sl-card-desc {
    font-size: 12.5px; line-height: 1.85; color: #4b5563;
    margin: 0 0 16px;
    flex: 1;
}
.biz-sl-card-foot { padding-top: 2px; }
.biz-sl-cta-tag {
    display: inline-block;
    background: #C8102E;
    color: #fff;
    font-size: 12px; font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.biz-sl-card:not(.biz-sl-card--star) .biz-sl-cta-tag {
    background: #fff;
    color: #C8102E;
    box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.35);
}

@media (max-width: 1024px) {
    .biz-sl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .biz-sl-title { font-size: 22px; }
    .biz-sl-head { margin-bottom: 28px; }
    .biz-sl-grid { grid-template-columns: 1fr; gap: 16px; }
    .biz-sl-card { padding: 22px 20px 22px; }
    .biz-sl-num { font-size: 28px; }
}

/* ===== 持续服务 年度运营 (business.php) ===== */
.biz-as-section { background: #fff; }
.biz-as-head { text-align: center; margin-bottom: 40px; }
.biz-as-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    color: #C8102E; margin-bottom: 12px;
}
.biz-as-title {
    font-size: 28px; font-weight: 700; color: #111827; line-height: 1.3;
    margin: 0 0 10px;
}
.biz-as-sub {
    font-size: 14px; color: #6b7280; line-height: 1.7;
    margin: 0 auto; max-width: 780px;
}

.biz-as-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.biz-as-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100, #e5e7eb);
    border-radius: 14px;
    padding: 26px 26px 26px;
    transition: all 0.25s ease;
    display: flex; flex-direction: column;
}
.biz-as-card:hover {
    border-color: #C8102E;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 16, 46, 0.08), 0 4px 10px rgba(17, 24, 39, 0.04);
}
.biz-as-tag {
    display: inline-flex; align-items: center; justify-content: center;
    align-self: flex-start;
    min-width: 46px; height: 26px; padding: 0 10px;
    background: #C8102E;
    color: #fff;
    border-radius: 6px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.biz-as-card-title {
    font-size: 17px; font-weight: 600; color: #111827;
    line-height: 1.4; margin: 0 0 8px;
}
.biz-as-card-desc {
    font-size: 12.5px; color: #4b5563; line-height: 1.85;
    margin: 0;
    flex: 1;
}

/* 第二行仅两张时，让其靠左对齐（不拉伸占满第3格） */
@media (min-width: 1025px) {
    .biz-as-grid > .biz-as-card:nth-child(4),
    .biz-as-grid > .biz-as-card:nth-child(5) {
        /* 保持原尺寸不拉伸 */
    }
    /* 5 张卡片在3列网格中：第二行让后两张居中显示，去掉第3个空位 */
    .biz-as-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .biz-as-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .biz-as-title { font-size: 22px; }
    .biz-as-head { margin-bottom: 28px; }
    .biz-as-grid { grid-template-columns: 1fr; gap: 16px; }
    .biz-as-card { padding: 22px 20px 24px; }
    .biz-as-card-title { font-size: 16px; }
}

/* ============ 国牌一号页 page-hero 的覆盖样式统一在 assets/css/guochao.css 中定义 ============ */
