:root {
    /* 品牌色系 */
    --brand: #1B7A45;
    --brand-deep: #0F5A33;
    --brand-darkest: #062818;
    --moss: #1F4D33;
    --moss-deep: #143524;
    --moss-light: #2D6B47;
    /* 强调色 */
    --accent: #E67E22;
    --accent-light: #F5A55A;
    --gold: #C9A85C;
    --gold-light: #E8D5A3;
    --gold-soft: #F4EBD3;
    /* 中性 */
    --ink: #1A1F1C;
    --ink-soft: #3A4540;
    --gray: #6B7570;
    --gray-soft: #A8B0AB;
    --line: #E8EDE9;
    --line-soft: #F0F3F1;
    /* 背景 - 白色为主,淡淡的绿色/灰色层次,告别"惨白" */
    --bg: #FFFFFF;              /* 主背景:纯白 */
    --bg-warm: #F8FAF8;         /* 微微带绿调的白,板块对比 */
    --bg-cream: #F4F8F5;        /* 淡淡的浅绿背景 */
    --bg-cool: #EEF4F0;         /* 稍深一点的浅绿背景,做对比层 */
    --bg-mint: #E5EFE8;         /* 浅薄荷,小元素icon背景 */
    --bg-card: #FFFFFF;         /* 卡片底:纯白 */
    --bg-paper: #FAFBFA;        /* 微浅白,内嵌区 */
    --white: #FFFFFF;
    /* 字体 */
    --yahei: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    /* 圆角 */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 36px;
    --r-full: 999px;
    /* 阴影 */
    --shadow-sm: 0 1px 2px rgba(15, 90, 51, 0.04), 0 2px 6px rgba(15, 90, 51, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 90, 51, 0.06), 0 12px 32px rgba(15, 90, 51, 0.08);
    --shadow-lg: 0 8px 24px rgba(15, 90, 51, 0.08), 0 20px 48px rgba(15, 90, 51, 0.10);
    --shadow-xl: 0 12px 36px rgba(15, 90, 51, 0.10), 0 32px 72px rgba(15, 90, 51, 0.14);
    --shadow-brand: 0 16px 40px rgba(27, 122, 69, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--yahei);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== 通用按钮 ===== */
.btn-primary, .btn-ghost, .btn-light, .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--r-full);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary { background: var(--moss); color: var(--white); }
.btn-primary:hover { background: var(--moss-deep); transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.btn-ghost { background: var(--bg-card); color: var(--moss-deep); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--moss); color: var(--moss); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-light:hover { background: var(--white); color: var(--moss); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--moss-deep); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201, 168, 92, 0.45); }

/* ===== 通用 section 标题 ===== */
.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.sec-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}
.sec-eyebrow .num {
    font-size: 12px;
    color: var(--brand);
    letter-spacing: 0.16em;
    font-weight: 700;
}
.sec-eyebrow .text {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}
.sec-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.sec-title .hl {
    color: var(--brand);
    position: relative;
}
.sec-title .hl::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.3em;
    background: rgba(201, 168, 92, 0.28);
    z-index: -1;
    border-radius: var(--r-sm);
}
.sec-sub {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ============ 顶部公告条 ============ */
.topbar {
    background: var(--moss-deep);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 9px 0;
    text-align: center;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}
.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 50%, var(--brand) 100%);
}
.topbar strong { color: var(--gold); font-weight: 600; margin: 0 4px; }
.topbar .sep { margin: 0 12px; opacity: 0.3; }
.topbar .live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    background: rgba(201,168,92,0.18);
    border-radius: var(--r-full);
    margin-right: 8px;
}
.topbar .live-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ============ 导航 ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(27, 122, 69, 0.08);
    transition: all 0.3s ease;
}
.nav-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 36px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--brand);
    letter-spacing: 0.06em;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    padding: 25px 0;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.nav-menu a:hover { color: var(--brand); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s;
    border-radius: var(--r-full);
}
.nav-menu a:hover::after { width: 22px; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
    font-size: 13px;
    color: var(--brand-deep);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.nav-phone .label { font-size: 10px; color: var(--gray); display: block; letter-spacing: 0.1em; font-weight: 400; margin-bottom: 3px; }

/* ============================================================ */
/* ============ HERO - 全新设计:左信息右数据看板 ============ */
/* ============================================================ */
.hero {
    position: relative;
    padding: 60px 36px 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 85% 15%, rgba(201, 168, 92, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 15% 85%, rgba(27, 122, 69, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(27, 122, 69, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}
/* 装饰性背景元素 */
.hero-deco-circle {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(27, 122, 69, 0.20);
    border-radius: 50%;
    pointer-events: none;
}
.hero-deco-circle::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px dashed rgba(201, 168, 92, 0.30);
    border-radius: 50%;
}
.hero-deco-line {
    position: absolute;
    bottom: 80px;
    left: 36px;
    right: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 122, 69, 0.18) 50%, transparent 100%);
}
.hero-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-sm);
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
}
.hero-badge .check {
    width: 14px;
    height: 14px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}
.hero h1 {
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
}
.hero h1 .accent {
    color: var(--brand);
    position: relative;
    display: inline-block;
}
.hero h1 .accent svg {
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: -8px;
    width: calc(100% + 16px);
    pointer-events: none;
}
.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-actions .btn-primary { padding: 14px 26px; font-size: 14px; }
.hero-actions .btn-ghost { padding: 14px 26px; font-size: 14px; }
/* 头像评价 */
.hero-social {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--line-soft);
}
.avatar-stack { display: flex; }
.avatar-stack .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    background: linear-gradient(135deg, var(--moss), var(--brand));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}
.avatar-stack .av:first-child { margin-left: 0; }
.avatar-stack .av:nth-child(2) { background: linear-gradient(135deg, var(--brand-deep), var(--moss-light)); }
.avatar-stack .av:nth-child(3) { background: linear-gradient(135deg, var(--moss-deep), var(--brand)); }
.avatar-stack .av:nth-child(4) { background: linear-gradient(135deg, var(--accent), var(--gold)); color: var(--moss-deep); }
.hero-social-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}
.hero-social-text strong { color: var(--ink); font-weight: 600; }
.hero-social-stars { color: var(--gold); margin-left: 4px; letter-spacing: 1px; }

/* Hero 右侧 - 数据看板风格 */
.hero-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hero-tile {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    border-radius: var(--r-lg);
    padding: 22px 22px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.hero-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
}
.hero-tile.lg {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: var(--white);
    padding: 28px;
}
.hero-tile.lg::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-tile-label {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}
.hero-tile.lg .hero-tile-label { color: rgba(255,255,255,0.55); }
.hero-tile-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.hero-tile.lg .hero-tile-value { color: var(--white); font-size: 42px; }
.hero-tile-value .unit {
    font-size: 0.5em;
    color: var(--brand);
    margin-left: 4px;
    font-weight: 700;
}
.hero-tile.lg .hero-tile-value .unit { color: var(--gold); }
.hero-tile-desc {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.5;
}
.hero-tile.lg .hero-tile-desc { color: rgba(255,255,255,0.7); }
.hero-tile-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white);
    margin-top: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--gold);
    font-weight: 500;
    position: relative;
}
.hero-tile-attr {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    position: relative;
}
.hero-tile-attr strong { color: var(--gold); font-weight: 600; }
/* 上升趋势小图 */
.hero-trend {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}
.hero-trend .bar {
    width: 4px;
    background: var(--brand);
    border-radius: 1px;
    opacity: 0.6;
}
.hero-trend .bar:nth-child(1) { height: 30%; }
.hero-trend .bar:nth-child(2) { height: 50%; }
.hero-trend .bar:nth-child(3) { height: 40%; }
.hero-trend .bar:nth-child(4) { height: 70%; }
.hero-trend .bar:nth-child(5) { height: 100%; opacity: 1; }

/* ============ Logo Wall - 院校墙 ============ */
.logo-wall {
    padding: 40px 36px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.logo-wall-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo-wall-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    border-right: 1px solid var(--line-soft);
    padding-right: 32px;
    line-height: 1.5;
}
.logo-wall-label strong {
    color: var(--moss-deep);
    font-size: 13px;
    font-weight: 700;
    display: block;
}
.logo-wall-items {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.logo-wall-item {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-soft);
    letter-spacing: 0.04em;
    transition: color 0.3s;
    cursor: default;
}
.logo-wall-item:hover { color: var(--moss-deep); }

/* ============================================================ */
/* ============ 数据 - 大字号 + 渐变绿色块组合 ============ */
/* ============================================================ */
.stats {
    padding: 100px 36px;
    background: var(--bg-warm);
    position: relative;
}
.stats-inner { max-width: 1380px; margin: 0 auto; }
.stats-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: end;
}
.stats-intro p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--ink-soft);
}
.stats-intro p strong { color: var(--brand-deep); font-weight: 600; }
/* 网格布局 - 2行不规则 */
.stats-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.stat-card {
    background: var(--bg-card);
    padding: 28px 26px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.stat-card.hero-stat {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--moss) 0%, var(--brand-deep) 60%, var(--moss-deep) 100%);
    color: var(--white);
    padding: 36px 32px;
    border: none;
}
.stat-card.hero-stat::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.stat-card.hero-stat::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45, 107, 71, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}
.stat-card.accent {
    background: var(--bg-cream);
    border-color: transparent;
}
.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--bg-mint);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}
.stat-card:hover .stat-icon { transform: rotate(-6deg) scale(1.08); }
.stat-card.hero-stat .stat-icon {
    background: rgba(201, 168, 92, 0.18);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 24px;
}
.stat-card.accent .stat-icon { background: rgba(230,126,34,0.12); color: var(--accent); }
.stat-num {
    font-size: clamp(36px, 3.8vw, 52px);
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    position: relative;
}
.stat-card.hero-stat .stat-num {
    color: var(--white);
    font-size: clamp(56px, 5.5vw, 84px);
}
.stat-num .plus { color: var(--brand); font-size: 0.7em; font-weight: 700; }
.stat-num .pct { font-size: 0.7em; color: var(--accent); }
.stat-card.hero-stat .stat-num .plus { color: var(--gold); }
.stat-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.stat-card.hero-stat .stat-name { color: var(--gold); font-size: 16px; }
.stat-desc {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.65;
}
.stat-card.hero-stat .stat-desc { color: rgba(255,255,255,0.75); font-size: 13.5px; line-height: 1.75; max-width: 280px; }
.stat-card.hero-stat .stat-extra {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    gap: 24px;
}
.stat-extra-item .v {
    font-size: 22px;
    color: var(--gold);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-extra-item .l {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
}

/* ============================================================ */
/* ============ 业务板块 - 4列卡片 + 顶部装饰 ============ */
/* ============================================================ */
.business {
    padding: 100px 36px;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}
.business::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 122, 69, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}
.business::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.business-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.business-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: end;
}
.business-head .right p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--ink-soft);
}
.business-head .right strong { color: var(--brand-deep); font-weight: 600; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.product-card {
    background: var(--bg-card);
    padding: 28px 26px 26px;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    width: 40px;
    height: 4px;
    background: var(--brand);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    transition: width 0.4s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card:hover::before { width: calc(100% - 52px); }
.product-card:nth-child(2)::before { background: var(--accent); }
.product-card:nth-child(3)::before { background: var(--moss-light); }
.product-card:nth-child(4)::before { background: var(--gold); }

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}
.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--moss) 0%, var(--brand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}
.product-card:nth-child(2) .product-icon { background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%); color: var(--white); }
.product-card:nth-child(3) .product-icon { background: linear-gradient(135deg, var(--moss-light) 0%, var(--brand-deep) 100%); }
.product-card:nth-child(4) .product-icon { background: linear-gradient(135deg, var(--gold) 0%, var(--moss) 100%); color: var(--white); }
.product-card:hover .product-icon {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(15, 90, 51, 0.18);
}
.product-num {
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 0.15em;
    font-weight: 700;
    padding: 4px 9px;
    background: var(--bg-mint);
    border-radius: var(--r-sm);
}
.product-card:nth-child(2) .product-num { background: rgba(230,126,34,0.12); color: var(--accent); }
.product-card:nth-child(4) .product-num { background: rgba(201,168,92,0.18); color: var(--moss-deep); }

.product-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.35;
}
.product-tagline {
    font-size: 13px;
    color: var(--brand-deep);
    margin-bottom: 18px;
    line-height: 1.6;
    min-height: 42px;
    font-weight: 500;
}
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background: var(--bg-cream);
    border-radius: var(--r-md);
    margin-bottom: 16px;
}
.product-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.product-meta-item .key { color: var(--gray); }
.product-meta-item .val { color: var(--ink); font-weight: 600; }
.product-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 20px;
    flex: 1;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: gap 0.3s;
}
.product-link:hover { gap: 12px; }
.product-link svg { transition: transform 0.3s; }
.product-link:hover svg { transform: translateX(4px); }

/* ============================================================ */
/* ============ 五层师资 - 墨绿背景,横向流程图 ============ */
/* ============================================================ */
.faculty {
    padding: 100px 36px;
    background: var(--moss-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.faculty::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27,122,69,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.faculty::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.faculty-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.faculty .sec-eyebrow .dot { background: var(--gold); }
.faculty .sec-eyebrow .num { color: var(--gold); }
.faculty .sec-eyebrow .text { color: rgba(255,255,255,0.55); }
.faculty .sec-title { color: var(--white); }
.faculty .sec-title .hl { color: var(--gold); }
.faculty .sec-title .hl::after { background: rgba(201, 168, 92, 0.18); }
.faculty .sec-sub { color: rgba(255,255,255,0.55); }
.faculty-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: end;
}
.faculty-quote {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    padding: 18px 22px;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--r-md) var(--r-md) 0;
}
.faculty-quote strong { color: var(--gold); font-weight: 600; }
/* 五层卡片 */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.faculty-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.faculty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    opacity: 0.5;
    transition: all 0.3s;
}
.faculty-card:hover {
    background: rgba(27, 122, 69, 0.18);
    border-color: var(--gold);
    transform: translateY(-6px);
}
.faculty-card:hover::before { width: calc(100% - 44px); opacity: 1; }
.faculty-num {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.faculty-count {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.faculty-count .plus { color: var(--gold); font-size: 0.65em; }
.faculty-role {
    font-size: 13.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}
.faculty-desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

/* ============================================================ */
/* ============ 导师团队 - 4列精致卡片 ============ */
/* ============================================================ */
.mentors {
    padding: 100px 36px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.mentors::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 122, 69, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.mentors::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.mentors-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.mentors-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 28px;
    gap: 30px;
    flex-wrap: wrap;
}
.mentor-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.mentor-filter {
    padding: 7px 16px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    font-size: 12.5px;
    color: var(--ink-soft);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.mentor-filter:hover { border-color: var(--moss); color: var(--moss); }
.mentor-filter.active {
    background: var(--moss);
    color: var(--white);
    border-color: var(--moss);
}
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.mentor-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}
.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.mentor-portrait {
    aspect-ratio: 4 / 3.4;
    background: linear-gradient(135deg, var(--moss) 0%, var(--brand-deep) 100%);
    position: relative;
    overflow: hidden;
}
.mentor-card:nth-child(4n+2) .mentor-portrait { background: linear-gradient(135deg, #2D6B47 0%, var(--brand) 100%); }
.mentor-card:nth-child(4n+3) .mentor-portrait { background: linear-gradient(135deg, var(--moss-deep) 0%, #2D4F3A 100%); }
.mentor-card:nth-child(4n+4) .mentor-portrait { background: linear-gradient(135deg, #1F4D33 0%, var(--moss-light) 100%); }
.mentor-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(201, 168, 92, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}
.mentor-avatar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.mentor-avatar svg { width: 60%; height: 100%; }
.mentor-school {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.95);
    color: var(--moss-deep);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--r-full);
}
.mentor-role-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: var(--gold);
    color: var(--moss-deep);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--r-full);
}
.mentor-stats {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
}
.mentor-stat {
    flex: 1;
    padding: 6px 8px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border-radius: var(--r-sm);
    text-align: center;
}
.mentor-stat .v {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 2px;
}
.mentor-stat .l {
    font-size: 9.5px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}
.mentor-info { padding: 20px 22px 22px; }
.mentor-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 3px;
}
.mentor-en {
    font-size: 11.5px;
    color: var(--gray);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.mentor-title {
    font-size: 12.5px;
    color: var(--brand-deep);
    line-height: 1.55;
    margin-bottom: 14px;
    font-weight: 500;
    min-height: 39px;
}
.mentor-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.mentor-tag {
    padding: 3px 9px;
    background: var(--bg-mint);
    color: var(--brand-deep);
    font-size: 10.5px;
    border-radius: var(--r-full);
    font-weight: 500;
}

/* ============================================================ */
/* ============ 资质认证 - 现代化 4 列徽章卡 ============ */
/* ============================================================ */
.certs {
    padding: 100px 36px;
    background: var(--bg-warm);
}
.certs-inner { max-width: 1380px; margin: 0 auto; }
.certs-head { text-align: center; margin-bottom: 48px; }
.certs-head .sec-eyebrow { justify-content: center; }
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.cert-item {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-xl);
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cert-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.cert-item > * { position: relative; }
.cert-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.cert-item:hover::before { opacity: 1; }
.cert-item:hover .cert-name,
.cert-item:hover .cert-title,
.cert-item:hover .cert-desc { color: var(--white); }
.cert-item:hover .cert-name { color: var(--gold); }
.cert-item:hover .cert-shield { background: rgba(201,168,92,0.18); color: var(--gold); }
.cert-shield {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bg-mint);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s;
}
.cert-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    line-height: 1;
    transition: color 0.3s;
}
.cert-title {
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
    transition: color 0.3s;
}
.cert-desc {
    font-size: 11.5px;
    color: var(--gray);
    line-height: 1.55;
    transition: color 0.3s;
}
.certs-footer {
    padding: 28px 36px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.cert-entity-label {
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 700;
}
.cert-entity-name {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.5;
}
.cert-entity-name .code {
    font-size: 11.5px;
    color: var(--gray);
    display: block;
    margin-top: 3px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ============================================================ */
/* ============ 案例 - 大图卡 + 数据弹窗 ============ */
/* ============================================================ */
.cases {
    padding: 100px 36px;
    background: var(--bg-cream);
}
.cases-inner { max-width: 1380px; margin: 0 auto; }
.cases-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 48px;
    gap: 30px;
    flex-wrap: wrap;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.case-card {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.case-head {
    padding: 28px 28px 22px;
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.case-card:nth-child(2) .case-head { background: linear-gradient(135deg, var(--moss-light) 0%, var(--brand-deep) 100%); }
.case-card:nth-child(3) .case-head { background: linear-gradient(135deg, var(--brand-deep) 0%, var(--moss) 100%); }
.case-head::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(201,168,92,0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.case-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(201,168,92,0.22);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--r-full);
    margin-bottom: 16px;
    position: relative;
}
.case-school {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.3;
    position: relative;
}
.case-meta-row {
    display: flex;
    gap: 14px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.7);
    position: relative;
}
.case-meta-row span { display: inline-flex; align-items: center; gap: 4px; }
.case-body { padding: 24px 28px 28px; }
.case-progress {
    margin-bottom: 22px;
    padding: 16px;
    background: var(--bg-mint);
    border-radius: var(--r-md);
}
.case-progress-title {
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 10px;
}
.case-progress-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}
.case-progress-from, .case-progress-to {
    flex: 1;
    text-align: center;
    padding: 6px 10px;
    background: var(--bg-card);
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
}
.case-progress-to {
    background: var(--moss);
    color: var(--white);
}
.case-progress-arrow {
    color: var(--brand);
    font-weight: 700;
}
.case-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.case-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
}
.case-row .key { color: var(--gray); }
.case-row .val { color: var(--ink); font-weight: 600; }
.case-quote {
    padding: 14px 16px;
    background: var(--bg-cream);
    border-radius: var(--r-md);
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    border-left: 2px solid var(--brand);
    font-style: italic;
}

/* ============================================================ */
/* ============ 双总部 - 地图风格大卡 ============ */
/* ============================================================ */
.hq {
    padding: 100px 36px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hq::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 122, 69, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hq-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.hq-head { text-align: center; margin-bottom: 48px; }
.hq-head .sec-eyebrow { justify-content: center; }
.hq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.hq-card {
    padding: 44px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border-radius: var(--r-2xl);
}
.hq-card.china {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, var(--moss) 100%);
}
.hq-card.usa {
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 50%, var(--brand-darkest) 100%);
}
.hq-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.hq-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(45, 107, 71, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}
.hq-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
}
.hq-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}
.hq-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.hq-en {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
}
.hq-pin {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(201,168,92,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.hq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    margin-bottom: 28px;
}
.hq-list li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
    color: rgba(255,255,255,0.9);
}
.hq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 12px;
    height: 1px;
    background: var(--gold);
}
.hq-stats {
    display: flex;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
}
.hq-stat-item .v {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.hq-stat-item .l {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
}
/* 7大城市卡 */
.hq-bottom {
    background: var(--bg-cool);
    padding: 36px 40px;
    border-radius: var(--r-2xl);
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hq-bottom-left {
    position: relative;
}
.hq-bottom-label {
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 10px;
}
.hq-bottom-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--moss-deep);
    margin-bottom: 6px;
    line-height: 1.3;
}
.hq-bottom-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}
.cities-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.city-chip {
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
}
.city-chip .en {
    display: block;
    font-size: 9.5px;
    color: var(--gray);
    letter-spacing: 0.06em;
    margin-top: 2px;
    font-weight: 500;
}
.city-chip:hover {
    background: var(--moss);
    color: var(--white);
    border-color: var(--moss);
    transform: translateY(-2px);
}
.city-chip:hover .en { color: var(--gold); }

/* ============================================================ */
/* ============ 资讯 - 大头条 + 4分类 + 列表 ============ */
/* ============================================================ */
.news {
    padding: 100px 36px;
    background: var(--bg-cream);
}
.news-inner { max-width: 1380px; margin: 0 auto; }
.news-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
    gap: 30px;
    flex-wrap: wrap;
}
.news-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}
.news-cat-card {
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.news-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
}
.news-cat-info { flex: 1; }
.news-cat-label {
    font-size: 10.5px;
    color: var(--brand);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 4px;
}
.news-cat-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}
.news-cat-count {
    font-size: 11.5px;
    color: var(--gray);
}
.news-cat-count strong { color: var(--brand); font-weight: 700; }
.news-cat-arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-mint);
    color: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.news-cat-card:hover .news-cat-arrow {
    background: var(--moss);
    color: var(--white);
    transform: rotate(-45deg);
}
/* 主头条 + 侧边列表 */
.news-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 18px;
}
.news-featured {
    background: var(--bg-card);
    color: var(--ink);
    padding: 40px 42px;
    border-radius: var(--r-xl);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 42px;
    width: 56px;
    height: 4px;
    background: var(--moss);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.news-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.news-cat-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--moss);
    color: var(--white);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    font-weight: 600;
    border-radius: var(--r-full);
    align-self: flex-start;
}
.news-featured h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 16px;
}
.news-excerpt {
    font-size: 14px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin-bottom: 28px;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--gray);
}
.news-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-deep);
    font-weight: 600;
}
.news-meta .author-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--moss), var(--brand));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-item {
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
}
.news-item:hover {
    border-color: var(--moss);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}
.news-item-no {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--bg-mint);
    color: var(--brand);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.3s;
}
.news-item:hover .news-item-no {
    background: var(--moss);
    color: var(--white);
}
.news-item-content { flex: 1; min-width: 0; }
.news-item-cat {
    font-size: 10.5px;
    color: var(--brand);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    font-weight: 600;
}
.news-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-item-meta {
    font-size: 11px;
    color: var(--gray);
}

/* ============================================================ */
/* ============ FAQ - 新增板块 ============ */
/* ============================================================ */
.faq {
    padding: 100px 36px;
    background: var(--bg-warm);
}
.faq-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .sec-eyebrow { justify-content: center; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-cream);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: var(--moss);
    box-shadow: var(--shadow-sm);
}
.faq-item.open {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.faq-q {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.3s;
}
.faq-q-num {
    color: var(--brand);
    font-weight: 700;
    margin-right: 12px;
    font-size: 14px;
}
.faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--bg-mint);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    font-weight: 300;
}
.faq-item.open .faq-toggle {
    background: var(--moss);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 26px 24px;
}
.faq-a-content {
    padding-top: 4px;
    padding-left: 32px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--ink-soft);
}

/* ============================================================ */
/* ============ CTA 预约 - 大圆角内嵌墨绿卡 ============ */
/* ============================================================ */
.cta-section {
    padding: 100px 36px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(27, 122, 69, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.cta-wrap {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: var(--white);
    border-radius: var(--r-2xl);
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-wrap::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(27, 122, 69, 0.3) 0%, transparent 60%);
}
.cta-wrap::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.16) 0%, transparent 60%);
}
.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(201, 168, 92, 0.18);
    border-radius: var(--r-full);
    font-size: 11.5px;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    font-weight: 600;
}
.cta-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.cta-section h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}
.cta-promise {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
}
.cta-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-list li {
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
    display: flex;
    gap: 14px;
    transition: all 0.3s;
}
.cta-list li:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--gold);
}
.cta-list li .n {
    display: flex;
    width: 26px;
    height: 26px;
    background: rgba(201, 168, 92, 0.2);
    color: var(--gold);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
}
.cta-footnote {
    font-size: 14px;
    color: var(--white);
    border-left: 2px solid var(--gold);
    padding-left: 18px;
    line-height: 1.65;
    font-style: italic;
}
.form-card {
    background: var(--bg-card);
    color: var(--ink);
    padding: 36px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold), var(--accent));
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.form-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--moss-deep);
}
.form-sub {
    font-size: 12.5px;
    color: var(--gray);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 11.5px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 13.5px;
    color: var(--ink);
    background: var(--bg-cream);
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--moss);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(31,77,51,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--moss);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: var(--r-full);
    transition: all 0.3s;
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--moss-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}
.form-note {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

/* ============ Footer ============ */
footer {
    background: var(--brand-darkest);
    color: rgba(255,255,255,0.7);
    padding: 64px 36px 28px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 50%, var(--brand) 100%);
}
.footer-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand .logo span { color: var(--white); }
.footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}
.footer-col h5 {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: 12.5px; }
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact { font-size: 12.5px; line-height: 1.8; }
.footer-contact strong { color: var(--white); font-weight: 600; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* 浮动 CTA */
.float-cta {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    width: 52px;
    height: 52px;
    background: var(--moss);
    color: var(--white);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s;
}
.float-btn:hover {
    background: var(--gold);
    color: var(--moss-deep);
    transform: translateY(-4px);
}

/* 响应式 */
@media (max-width: 1200px) {
    .product-grid, .mentor-grid, .news-cats, .faculty-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .hero-inner, .stats-head, .business-head, .faculty-head, .cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card.hero-stat { grid-column: span 2; grid-row: auto; }
    .product-grid, .case-grid, .certs-grid, .mentor-grid { grid-template-columns: 1fr 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .hq-grid, .hq-bottom { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .faculty-grid { grid-template-columns: repeat(2, 1fr); }
    .news-main { grid-template-columns: 1fr; }
    .news-cats { grid-template-columns: 1fr 1fr; }
    .logo-wall-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .logo-wall-label { border-right: none; padding-right: 0; }
    .cases-head, .news-head, .mentors-head { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 640px) {
    .hero, .stats, .business, .faculty, .certs, .cases, .news, .cta-section, .hq, .mentors, .faq { padding: 64px 22px; }
    .stats-grid, .product-grid, .certs-grid, .mentor-grid, .news-cats, .faculty-grid, .cities-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card.hero-stat { grid-column: span 2; }
    .hero { padding: 40px 22px 60px; }
    .hero-inner { gap: 32px; }
    .hero h1 { font-size: clamp(32px, 8vw, 48px); }
    .hero-board { grid-template-columns: 1fr 1fr; }
    .hero-tile.lg { grid-column: span 2; }
    .nav-inner { padding: 0 18px; }
    .nav-cta .nav-phone { display: none; }
    .topbar { padding: 8px 16px; font-size: 11px; }
    .topbar .sep { margin: 0 6px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .form-row { grid-template-columns: 1fr; }
    .certs-footer { grid-template-columns: 1fr; gap: 18px; padding: 22px 22px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .product-card { padding: 22px 20px; }
    .news-featured { padding: 28px 22px; }
    .news-featured h3 { font-size: 19px; }
    .cta-section h2 { font-size: 26px; }
    .form-card { padding: 24px 20px; }
    .cta-wrap { padding: 32px 22px; border-radius: var(--r-lg); }
    .hq-card { padding: 28px 24px; min-height: auto; }
    .hq-title { font-size: 32px; }
    .hq-bottom { padding: 24px 22px; }
    .hq-bottom-title { font-size: 18px; }
    .news-cats { grid-template-columns: 1fr; }
    .mentor-grid { grid-template-columns: 1fr 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .mentor-info { padding: 16px; }
    .mentor-name { font-size: 15px; }
    .mentor-title { font-size: 11.5px; min-height: auto; }
    .product-card { padding: 22px 20px; }
    .product-title { font-size: 16px; }
    .product-tagline { min-height: auto; }
    .stat-card { padding: 22px 20px; }
    .stat-num { font-size: 32px; }
    .stat-card.hero-stat .stat-num { font-size: 48px; }
    .faculty-grid { grid-template-columns: 1fr; }
    .news-main { grid-template-columns: 1fr; }
    .faq-q { font-size: 14px; padding: 18px 22px; gap: 16px; }
    .faq-item.open .faq-a { padding: 0 22px 20px; }
}

/* ============ 关于页专属样式 ============ */

/* 关于页 Hero - 居中大标题 */
.about-hero {
    position: relative;
    padding: 50px 36px 46px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 60% at 85% 15%, rgba(201, 168, 92, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 15% 85%, rgba(27, 122, 69, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}
.about-hero-inner { max-width: 820px; margin: 0 auto; position: relative; }
.about-hero .pagetag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    font-size: 11.5px;
    color: var(--brand-deep);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}
.about-hero .pagetag .dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.about-hero h1 {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 16px;
}
.about-hero h1 .accent { color: var(--brand); position: relative; display: inline-block; }
.about-hero h1 .accent svg { position: absolute; left: -6px; right: -6px; bottom: -6px; width: calc(100% + 12px); }
.about-hero-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 14px;
}
.about-hero-sign {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 0.04em;
}

/* 通用区块容器 */
.ab-sec { padding: 70px 36px; position: relative; overflow: hidden; }
.ab-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.ab-inner-narrow { max-width: 920px; margin: 0 auto; position: relative; }

/* 创始人故事 - 信件风格 */
.founder {
    background: var(--bg-warm);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.founder::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(27,122,69,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.founder::after {
    content: '';
    position: absolute;
    bottom: -180px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.founder .sec-eyebrow .dot { background: var(--brand); }
.founder .sec-eyebrow .num { color: var(--brand); }
.founder .sec-eyebrow .text { color: var(--gray); }
.founder-head {
    margin-bottom: 28px;
}
.founder-head h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.35;
}
.founder-letter {
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-left: 4px solid var(--brand);
    border-radius: var(--r-xl);
    padding: 36px 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.founder-letter .quote-mark {
    font-size: 56px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.5;
    font-family: Georgia, serif;
    height: 28px;
}
.founder-letter p {
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--ink-soft);
    margin-bottom: 14px;
}
.founder-letter p strong { color: var(--brand-deep) !important; }
.founder-letter p.em {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-deep);
    line-height: 1.65;
    margin: 22px 0;
    padding: 16px 20px;
    background: var(--bg-cream);
    border-radius: var(--r-md);
}
.founder-letter .pullquote {
    font-size: 15.5px;
    font-style: italic;
    color: var(--ink);
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 18px;
    margin: 20px 0;
    line-height: 1.6;
}
.founder-letter .pullquote .who {
    display: block;
    font-size: 12.5px;
    font-style: normal;
    color: var(--gray);
    margin-top: 8px;
    letter-spacing: 0.04em;
}
.founder-sign {
    text-align: right;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.founder-sign .name {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-deep);
}
.founder-sign .role {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

/* 发展历程 - 横向时间线 */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 8px;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
    opacity: 0.25;
    z-index: 0;
}
.tl-item {
    position: relative;
    z-index: 1;
    text-align: center;
}
.tl-dot {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-weight: 800;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
}
.tl-item:hover .tl-dot {
    background: linear-gradient(135deg, var(--moss), var(--brand));
    color: var(--gold);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
}
.tl-year {
    font-size: 22px;
    font-weight: 900;
    color: var(--brand-deep);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.tl-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.tl-desc {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.65;
    max-width: 220px;
    margin: 0 auto;
}

/* 使命 · 愿景 · 价值观 - 三栏卡 */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}
.mvv-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 30px;
    width: 40px; height: 4px;
    background: var(--brand);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    transition: width 0.4s;
}
.mvv-card:hover::before { width: calc(100% - 60px); }
.mvv-card:nth-child(2)::before { background: var(--gold); }
.mvv-card:nth-child(3)::before { background: var(--accent); }
.mvv-ic {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--moss), var(--brand));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.mvv-card:nth-child(2) .mvv-ic { background: linear-gradient(135deg, var(--gold), var(--moss)); color: var(--white); }
.mvv-card:nth-child(3) .mvv-ic { background: linear-gradient(135deg, var(--accent), var(--gold)); color: var(--white); }
.mvv-label {
    font-size: 11px; font-weight: 700; color: var(--brand);
    letter-spacing: 0.12em; margin-bottom: 8px;
}
.mvv-title { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 12px; line-height: 1.4; }
.mvv-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; }

/* 真实成果 - 案例数字条 */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.result-head {
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, var(--moss), var(--moss-deep));
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.result-card:nth-child(2) .result-head { background: linear-gradient(135deg, var(--moss-light), var(--brand-deep)); }
.result-card:nth-child(3) .result-head { background: linear-gradient(135deg, var(--brand-deep), var(--moss)); }
.result-head::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 130px; height: 130px;
    background: radial-gradient(circle, rgba(201,168,92,0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.result-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    color: var(--gold); letter-spacing: 0.08em; margin-bottom: 10px; position: relative;
}
.result-school { font-size: 19px; font-weight: 800; line-height: 1.3; position: relative; }
.result-rank { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; position: relative; }
.result-body { padding: 22px 28px 26px; }
.result-change {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.result-from, .result-to {
    flex: 1; text-align: center; padding: 8px 6px;
    border-radius: var(--r-sm); font-size: 12.5px; font-weight: 700;
}
.result-from { background: var(--bg-cool); color: var(--gray); }
.result-to { background: var(--bg-mint); color: var(--brand-deep); }
.result-arrow { color: var(--brand); font-weight: 800; flex-shrink: 0; }
.result-note { font-size: 12.5px; color: var(--gray); line-height: 1.7; }

/* 区块小标尾注 */
.sec-foot {
    margin-top: 28px; text-align: center;
    font-size: 14px; color: var(--brand-deep); font-weight: 600;
}

/* 基本情况 / 资质 - 信息表卡 */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: 30px 32px;
    box-shadow: var(--shadow-sm);
}
.info-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.info-card-title .ic {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--bg-mint);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-row {
    display: flex;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 13.5px;
}
.info-row:last-child { border-bottom: none; }
.info-row .k {
    flex-shrink: 0;
    width: 96px;
    color: var(--gray);
    font-weight: 500;
}
.info-row .v { color: var(--ink); font-weight: 500; line-height: 1.6; }
.info-row .v .code { color: var(--gray); font-size: 12px; }

/* 资质徽章行 */
.cert-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.cert-badge {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.cert-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.cert-badge .nm { font-size: 20px; font-weight: 900; color: var(--brand); letter-spacing: 0.04em; margin-bottom: 8px; }
.cert-badge .dc { font-size: 11.5px; color: var(--gray); line-height: 1.5; }
.verify-note {
    margin-top: 20px;
    padding: 16px 22px;
    background: var(--bg-cream);
    border-radius: var(--r-md);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.7;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.verify-note .vic { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

/* 数据条 */
.ab-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ab-stat {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.ab-stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ab-stat:nth-child(1), .ab-stat:nth-child(6) {
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: var(--white);
    border: none;
}
.ab-stat:nth-child(1)::after, .ab-stat:nth-child(6)::after {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(201,168,92,0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.ab-stat .v {
    font-size: 44px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.ab-stat:nth-child(1) .v, .ab-stat:nth-child(6) .v { color: var(--gold); }
.ab-stat .v .plus { color: var(--accent); font-size: 0.65em; }
.ab-stat:nth-child(1) .v .plus, .ab-stat:nth-child(6) .v .plus { color: var(--gold); }
.ab-stat .nm { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ab-stat:nth-child(1) .nm, .ab-stat:nth-child(6) .nm { color: var(--white); }
.ab-stat .dc { font-size: 12.5px; color: var(--gray); line-height: 1.65; }
.ab-stat:nth-child(1) .dc, .ab-stat:nth-child(6) .dc { color: rgba(255,255,255,0.7); }

/* 五层师资 - 纵向时间线 */
.layers { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.layer-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: start;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.layer-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--brand);
    transform: scaleY(0); transform-origin: top; transition: transform 0.4s;
}
.layer-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: transparent; }
.layer-card:hover::before { transform: scaleY(1); }
.layer-num {
    font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 8px;
}
.layer-count {
    font-size: 30px; font-weight: 900; color: var(--brand); line-height: 1; letter-spacing: -0.02em;
}
.layer-count .plus { color: var(--accent); font-size: 0.6em; }
.layer-role {
    font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px;
}
.layer-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
.layer-desc strong { color: var(--brand-deep); font-weight: 600; }

/* 双总部 */
.twin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.twin-card {
    padding: 40px 38px;
    color: var(--white);
    border-radius: var(--r-2xl);
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
.twin-card.cn { background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, var(--moss) 100%); }
.twin-card.us { background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 55%, var(--brand-darkest) 100%); }
.twin-card::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(201,168,92,0.16) 0%, transparent 70%);
    border-radius: 50%;
}
.twin-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; position: relative; }
.twin-label { font-size: 11px; letter-spacing: 0.15em; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.twin-title { font-size: 30px; font-weight: 900; line-height: 1; }
.twin-pin {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(201,168,92,0.3);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.twin-list { list-style: none; position: relative; }
.twin-list li {
    font-size: 14px; line-height: 1.65; padding: 8px 0 8px 22px; position: relative;
    color: rgba(255,255,255,0.9);
}
.twin-list li::before {
    content: ''; position: absolute; left: 0; top: 1.1em;
    width: 12px; height: 1px; background: var(--gold);
}

/* 四类家庭表格卡 */
.fam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.fam-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: 28px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.fam-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.fam-card .tp {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; color: var(--brand);
    background: var(--bg-mint); padding: 5px 12px; border-radius: var(--r-full);
    margin-bottom: 16px; letter-spacing: 0.04em;
}
.fam-card h4 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.fam-card .ch {
    font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px;
    padding-bottom: 14px; border-bottom: 1px dashed var(--line);
}
.fam-card .ch b { color: var(--ink-soft); font-weight: 600; }
.fam-card .sol { font-size: 13px; color: var(--ink-soft); line-height: 1.75; }
.fam-card .sol .lbl { color: var(--brand-deep); font-weight: 600; }

/* 三段全周期 */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.phase-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.phase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.phase-card::before {
    content: ''; position: absolute; top: 0; left: 30px; width: 44px; height: 4px;
    background: var(--brand); border-radius: 0 0 var(--r-sm) var(--r-sm); transition: width 0.4s;
}
.phase-card:hover::before { width: calc(100% - 60px); }
.phase-card:nth-child(2)::before { background: var(--gold); }
.phase-card:nth-child(3)::before { background: var(--accent); }
.phase-no {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--moss), var(--brand));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900;
    margin-bottom: 20px;
}
.phase-card:nth-child(2) .phase-no { background: linear-gradient(135deg, var(--gold), var(--moss)); color: var(--white); }
.phase-card:nth-child(3) .phase-no { background: linear-gradient(135deg, var(--accent), var(--gold)); color: var(--white); }
.phase-card h4 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.phase-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; }

/* 五项承诺 */
.promises { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 8px; }
.promise-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    text-align: center;
}
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.promise-ic {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: var(--bg-mint);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.promise-card h5 { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: 0.04em; }
.promise-card p { font-size: 12px; color: var(--gray); line-height: 1.65; }

/* 引言金句条 */
.pullbar {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.pullbar .big {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.5;
    letter-spacing: -0.01em;
}
.pullbar .big .hl { color: var(--brand); }

/* 理念 - 大色块引言 */
.creed {
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.creed::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(27,122,69,0.3) 0%, transparent 70%);
    pointer-events: none;
}
.creed::after {
    content: ''; position: absolute; bottom: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,92,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.creed-inner { max-width: 820px; margin: 0 auto; position: relative; }
.creed .ico {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(201,168,92,0.18);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
}
.creed h2 {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.creed h2 .hl { color: var(--gold); }
.creed p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    margin: 0 auto;
}

/* CTA 复用首页风格 */
.cta-section { padding: 90px 36px; background: var(--bg); position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 60%;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(27, 122, 69, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .info-grid, .twin-grid, .fam-grid { grid-template-columns: 1fr; }
    .cert-badges { grid-template-columns: repeat(2, 1fr); }
    .ab-stats { grid-template-columns: repeat(2, 1fr); }
    .phases { grid-template-columns: 1fr; }
    .promises { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
    .timeline::before { display: none; }
    .mvv-grid { grid-template-columns: 1fr; }
    .results { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .about-hero { padding: 40px 22px 38px; }
    .ab-sec { padding: 60px 22px; }
    .founder-letter { padding: 26px 22px; }
    .cert-badges, .ab-stats, .promises { grid-template-columns: 1fr 1fr; }
    .layer-card { grid-template-columns: 1fr; gap: 12px; }
    .creed { padding: 60px 22px; }
    .timeline { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
    .tl-desc { max-width: 100%; }
    .mvv-grid, .results { grid-template-columns: 1fr; }
}

/* ============ 产品页专属样式 ============ */

/* 面包屑 */
.breadcrumb {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 36px 0;
    font-size: 12.5px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a { color: var(--gray); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--brand-deep); font-weight: 600; }

/* 产品 Hero - 左文右卡 */
.prod-hero {
    position: relative;
    min-height: 500px;
    padding: 76px 36px 86px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(248,250,248,0.78) 0%, rgba(248,250,248,0.70) 54%, var(--bg-cream) 100%),
        linear-gradient(90deg, rgba(248,250,248,0.96) 0%, rgba(248,250,248,0.72) 48%, rgba(248,250,248,0.42) 100%),
        url('/static/home/img/top_school_apply/prod-hero-bg.jpg') center 48% / cover no-repeat;
}
.prod-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 56% at 50% 44%, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    pointer-events: none;
}
.prod-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27,122,69,0.24), transparent);
}
.prod-hero-inner {
    width: 100%; max-width: 1180px; margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.prod-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--r-full); font-size: 11.5px; color: var(--brand-deep);
    font-weight: 600; letter-spacing: 0.06em; margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.prod-tag .pn {
    background: var(--brand); color: #fff; padding: 2px 9px; border-radius: var(--r-full);
    font-size: 10.5px; letter-spacing: 0.08em;
}
.prod-hero h1 {
    font-size: clamp(34px, 4.4vw, 56px); font-weight: 900; line-height: 1.14;
    letter-spacing: 0; color: var(--ink); margin-bottom: 20px;
    text-shadow: 0 2px 18px rgba(255,255,255,0.82);
}
.prod-hero h1 .hl { color: var(--brand); position: relative; }
.prod-hero h1 .hl::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.28em;
    background: rgba(201,168,92,0.28); z-index: -1; border-radius: var(--r-sm);
}
.prod-hero-desc {
    font-size: 16px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 28px;
    text-shadow: 0 1px 16px rgba(255,255,255,0.88);
}
.prod-hero-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.phm-item {
    display: flex; flex-direction: column; gap: 3px;
    padding: 12px 18px; background: var(--bg-card); border: 1px solid var(--line-soft);
    border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.phm-item .k { font-size: 11px; color: var(--gray); letter-spacing: 0.04em; }
.phm-item .v { font-size: 14.5px; font-weight: 800; color: var(--brand-deep); }
.prod-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero 居中极简版 */
.prod-hero-center { display: block; text-align: center; max-width: 980px; }
.prod-hero-center .prod-hero-desc { max-width: 680px; margin-left: auto; margin-right: auto; }
.prod-hero-center .prod-hero-actions { justify-content: center; }

/* 概览模块:横向三指标 */
.ov-section { background: var(--bg); padding-top: 48px; padding-bottom: 48px; }
.ov-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ov-stat {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); padding: 22px 26px; display: flex; align-items: center; gap: 18px;
    transition: all 0.3s;
}
.ov-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.ov-ic {
    width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
    background: var(--bg-mint); color: var(--brand);
    display: flex; align-items: center; justify-content: center;
}
.ov-stat:hover .ov-ic { background: linear-gradient(135deg, var(--moss), var(--brand)); color: var(--gold); }
.ov-k { font-size: 12px; color: var(--gray); letter-spacing: 0.04em; margin-bottom: 3px; }
.ov-v { font-size: 16px; font-weight: 800; color: var(--brand-deep); line-height: 1.2; }
.twoline-photo img,
.service-photo img,
.topic-visual img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.twoline-card:hover .twoline-photo img,
.service-photo:hover img,
.topic-visual:hover img { transform: scale(1.045); }
.service-photo::after,
.topic-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,40,24,0.02) 35%, rgba(6,40,24,0.62) 100%);
    pointer-events: none;
}
.service-photo-label,
.topic-visual-label {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.92);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
}

/* 适合谁卡片网格 */
.whofor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.whofor-card {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm); padding: 28px 26px; transition: all 0.4s; position: relative; overflow: hidden;
}
.whofor-card::before {
    content: ''; position: absolute; top: 0; left: 26px; width: 40px; height: 4px;
    background: var(--brand); border-radius: 0 0 var(--r-sm) var(--r-sm); transition: width 0.4s;
}
.whofor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.whofor-card:hover::before { width: calc(100% - 52px); }
.whofor-ic {
    width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--moss), var(--brand)); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.whofor-card h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.whofor-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 1024px) {
    .ov-stats-row { grid-template-columns: 1fr; }
    .whofor-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .whofor-grid { grid-template-columns: 1fr; }
}

/* Hero 右侧卡片 - 适合人群 */
.fit-card {
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: #fff; border-radius: var(--r-2xl); padding: 32px 30px;
    position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.fit-card::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,168,92,0.18) 0%, transparent 70%); border-radius: 50%;
}
.fit-card-label { font-size: 11px; letter-spacing: 0.14em; color: var(--gold); font-weight: 700; margin-bottom: 16px; position: relative; }
.fit-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 18px; line-height: 1.4; position: relative; }
.fit-list { list-style: none; position: relative; }
.fit-list li {
    font-size: 13.5px; line-height: 1.6; padding: 9px 0 9px 24px; position: relative;
    color: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before {
    content: ''; position: absolute; left: 0; top: 1.05em; width: 13px; height: 13px;
    border: 2px solid var(--gold); border-radius: 50%;
}
.fit-list li::after {
    content: ''; position: absolute; left: 4px; top: calc(1.05em + 4px); width: 5px; height: 5px;
    background: var(--gold); border-radius: 50%;
}

/* 通用产品区块 */
.pd-sec { padding: 72px 36px; position: relative; overflow: hidden; }
.pd-inner { max-width: 1180px; margin: 0 auto; position: relative; }

/* 痛点 - 两条线 */
.twoline-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.twoline-card {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-xl);
    padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
    transition: all 0.4s;
}
.twoline-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.twoline-card::before {
    content: ''; position: absolute; top: 0; left: 30px; width: 44px; height: 4px;
    background: var(--brand); border-radius: 0 0 var(--r-sm) var(--r-sm); transition: width 0.4s;
}
.twoline-card:nth-child(2)::before { background: var(--accent); }
.twoline-card:hover::before { width: calc(100% - 60px); }
.twoline-photo {
    position: relative;
    height: 160px;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg-cream);
    box-shadow: 0 12px 28px rgba(15, 78, 43, 0.10);
}
.twoline-ic {
    width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--moss), var(--brand)); color: var(--gold);
}
.twoline-card:nth-child(2) .twoline-ic { background: linear-gradient(135deg, var(--accent), var(--gold)); color: #fff; }
.twoline-card h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.twoline-card .sub { font-size: 13px; color: var(--brand-deep); font-weight: 600; margin-bottom: 14px; }
.twoline-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; }
.twoline-target {
    margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line);
    font-size: 13px; color: var(--gray);
}
.twoline-target b { color: var(--brand-deep); font-weight: 700; font-size: 15px; }

/* 服务内容清单 */
.service-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
}
.service-layout .service-list { margin-top: 0; }
.service-item {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
    padding: 22px 26px; box-shadow: var(--shadow-sm); display: grid;
    grid-template-columns: 52px 1fr; gap: 20px; align-items: center; transition: all 0.3s;
}
.service-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.service-no {
    width: 52px; height: 52px; border-radius: 15px;
    background: var(--bg-mint); color: var(--brand);
    display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900;
}
.service-item:hover .service-no { background: linear-gradient(135deg, var(--moss), var(--brand)); color: var(--gold); }
.service-text h4 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.service-text p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.service-gallery {
    display: grid;
    grid-template-rows: 1.15fr 0.85fr;
    gap: 14px;
}
.service-photo {
    position: relative;
    min-height: 260px;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}
.service-photo.compact { min-height: 210px; }

/* 八大主题 */
.topics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 8px; }
.topic-card {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
    padding: 22px 20px; box-shadow: var(--shadow-sm); transition: all 0.4s;
}
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.topic-no { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 10px; }
.topic-card h4 { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.topic-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }
.topic-hours { display: inline-block; margin-top: 12px; padding: 3px 10px; background: var(--bg-mint); color: var(--brand-deep); font-size: 11px; font-weight: 600; border-radius: var(--r-full); }
.topic-visual {
    position: relative;
    min-height: 260px;
    border-radius: var(--r-2xl);
    overflow: hidden;
    margin: 0 0 22px;
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}
.topic-visual-label {
    left: 22px;
    bottom: 20px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
}

/* 不预设档位 - 五维度 */
.nopreset {
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    color: #fff; position: relative; overflow: hidden;
}
.nopreset::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(27,122,69,0.3) 0%, transparent 70%);
    pointer-events: none;
}
.nopreset::after {
    content: ''; position: absolute; bottom: -180px; right: -100px; width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(201,168,92,0.14) 0%, transparent 70%); pointer-events: none;
}
.nopreset .sec-eyebrow .dot { background: var(--gold); }
.nopreset .sec-eyebrow .num { color: var(--gold); }
.nopreset .sec-eyebrow .text { color: rgba(255,255,255,0.55); }
.nopreset .sec-title { color: #fff; }
.nopreset .sec-title .hl { color: var(--gold); }
.nopreset .sec-title .hl::after { background: rgba(201,168,92,0.2); }
.nopreset .sec-sub { color: rgba(255,255,255,0.6); }
.nopreset-quotes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    max-width: 720px; margin: 0 auto 44px;
}
.npq {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 20px 24px; font-size: 15px; line-height: 1.6; color: #fff; font-weight: 600;
}
.dims { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.dim-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg); padding: 22px 16px; text-align: center; transition: all 0.4s;
}
.dim-card:hover { background: rgba(27,122,69,0.18); border-color: var(--gold); transform: translateY(-4px); }
.dim-ic {
    width: 42px; height: 42px; border-radius: 12px; margin: 0 auto 14px;
    background: rgba(201,168,92,0.16); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.dim-card h5 { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dim-card p { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* 流程时间线 */
.flow { display: flex; flex-direction: column; gap: 0; margin-top: 8px; position: relative; }
.flow-item {
    display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding: 0 0 32px 0; position: relative;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-left { text-align: right; padding-top: 4px; position: relative; }
.flow-phase { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 4px; }
.flow-time { font-size: 18px; font-weight: 900; color: var(--brand-deep); }
.flow-right { position: relative; padding-left: 32px; border-left: 2px solid var(--line); padding-bottom: 4px; }
.flow-item:last-child .flow-right { border-left-color: transparent; }
.flow-dot {
    position: absolute; left: -9px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
    background: var(--bg-card); border: 3px solid var(--brand); box-shadow: var(--shadow-sm);
}
.flow-card {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
    padding: 20px 24px; box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.flow-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.flow-card h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.flow-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.75; }

/* 案例卡(单个,横向) */
.casebox {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-2xl);
    overflow: hidden; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 0.85fr 1.15fr;
}
.casebox-left {
    background:
        linear-gradient(135deg, rgba(15,78,43,0.92), rgba(6,40,24,0.92)),
        url('/static/home/img/top_school_apply/casebox-left-bg.jpg') center / cover no-repeat;
    color: #fff;
    padding: 40px 38px; position: relative; overflow: hidden;
}
.casebox-left::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(201,168,92,0.18) 0%, transparent 70%); border-radius: 50%;
}
.casebox-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; position: relative; }
.casebox-school { font-size: 24px; font-weight: 900; line-height: 1.3; margin-bottom: 6px; position: relative; }
.casebox-rank { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 24px; position: relative; }
.casebox-changes { display: flex; flex-direction: column; gap: 12px; position: relative; }
.cb-change { display: flex; align-items: center; gap: 10px; }
.cb-from, .cb-to { flex: 1; text-align: center; padding: 8px 10px; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; }
.cb-from { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.cb-to { background: var(--gold); color: var(--moss-deep); }
.cb-arrow { color: var(--gold); font-weight: 800; }
.casebox-right { padding: 40px 40px; }
.casebox-right .step { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px dashed var(--line); }
.casebox-right .step:last-of-type { border-bottom: none; }
.casebox-right .step .lbl { font-size: 12px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.casebox-right .step p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.casebox-quote {
    margin-top: 8px; padding: 18px 20px; background: var(--bg-cream); border-radius: var(--r-md);
    border-left: 3px solid var(--gold); font-size: 13.5px; line-height: 1.7; color: var(--ink); font-style: italic;
}

/* 费用说明 */
.fee-box {
    background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-2xl);
    padding: 44px 48px; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.fee-left h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.4; }
.fee-left p { font-size: 14px; color: var(--ink-soft); line-height: 1.85; }
.fee-right { display: flex; flex-direction: column; gap: 12px; }
.fee-point { display: flex; gap: 14px; align-items: flex-start; }
.fee-point .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--bg-mint); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fee-point .tx { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.fee-point .tx b { color: var(--brand-deep); }

@media (max-width: 1024px) {
    .prod-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .twoline-wrap { grid-template-columns: 1fr; }
    .service-layout { grid-template-columns: 1fr; }
    .service-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .service-photo, .service-photo.compact { min-height: 230px; }
    .topics { grid-template-columns: repeat(2, 1fr); }
    .dims { grid-template-columns: repeat(5, 1fr); gap: 8px; }
    .nopreset-quotes { grid-template-columns: 1fr; }
    .casebox { grid-template-columns: 1fr; }
    .fee-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 30px; }
}
@media (max-width: 640px) {
    .prod-hero { min-height: 420px; padding: 52px 22px 62px; background-position: center top; }
    .pd-sec { padding: 56px 22px; }
    .prod-hero-meta { gap: 8px; }
    .topics { grid-template-columns: 1fr 1fr; }
    .topic-visual { min-height: 220px; }
    .twoline-photo { height: 180px; }
    .service-gallery { grid-template-columns: 1fr; }
    .service-photo, .service-photo.compact { min-height: 220px; }
    .dims { grid-template-columns: 1fr 1fr; gap: 10px; }
    .flow-item { grid-template-columns: 80px 1fr; gap: 16px; }
    .flow-time { font-size: 15px; }
    .service-item { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 20px; }
    .breadcrumb { padding: 14px 22px 0; flex-wrap: wrap; }
}

/* Mobile fixes */
@media (max-width: 768px) {
    .btn-primary, .btn-ghost, .btn-light, .btn-gold {
        white-space: normal;
        justify-content: center;
        text-align: center;
        line-height: 1.5;
    }

    .topbar {
        padding: 10px 14px;
        line-height: 1.6;
    }

    .topbar .live {
        margin-right: 4px;
    }

    .nav-inner {
        min-width: 0;
        gap: 12px;
        padding: 0 16px;
    }

    .brand-logo-img {
        width: 144px;
    }

    .hero-board,
    .stats-grid,
    .product-grid,
    .certs-grid,
    .mentor-grid,
    .news-cats,
    .faculty-grid,
    .cities-row,
    .footer-grid,
    .timeline,
    .promises,
    .ab-stats,
    .cert-badges,
    .dims,
    .topics,
    .results,
    .whofor-grid,
    .ov-stats-row,
    .key-grid,
    .logic-wrap {
        grid-template-columns: 1fr !important;
    }

    .hero-tile.lg,
    .stat-card.hero-stat,
    .faculty-photo.featured {
        grid-column: auto !important;
    }

    .case-grid {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: 1fr !important;
        overflow-x: visible;
        margin: 0;
        padding: 0;
    }

    .form-row,
    .twin-grid,
    .fam-grid,
    .twoline-wrap,
    .info-grid,
    .mvv-grid,
    .hq-grid,
    .hq-bottom,
    .service-layout,
    .casebox,
    .fee-box,
    .prod-hero-inner,
    .news-main,
    .cta-inner,
    .stats-head,
    .business-head,
    .faculty-head,
    .hero-inner {
        grid-template-columns: 1fr !important;
    }

    .footer-brand {
        grid-column: auto;
    }

    .float-cta {
        right: 14px;
        bottom: 18px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .hero,
    .stats,
    .business,
    .faculty,
    .certs,
    .cases,
    .news,
    .cta-section,
    .hq,
    .mentors,
    .faq,
    .ab-sec {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .cta-wrap,
    .form-card,
    .news-featured,
    .hq-card,
    .hq-bottom,
    .founder-letter,
    .fee-box,
    .case-card,
    .product-card,
    .service-item {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-inner {
        padding: 0 12px;
    }

    .brand-logo-img {
        width: 128px;
    }

    .hero h1,
    .sec-title,
    .cta-section h2,
    .hq-title {
        word-break: break-word;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
