/* ========== Reset & Base ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fff8f3;
    --bg-alt: #fff0e6;
    --surface: rgba(255, 255, 255, 0.78);
    --text: #5a4a42;
    --heading: #3d2f2a;
    --muted: #8b7a70;
    --accent: #e85a2b;
    --orange-light: #ff9f6b;
    --orange-deep: #ff6b35;
    --border: rgba(255, 140, 66, 0.18);
    --shadow: rgba(160, 80, 40, 0.08);
    --glow: rgba(255, 107, 53, 0.22);
    --glow-soft: rgba(255, 160, 100, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

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

ul { list-style: none; }

/* ========== Navigation ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: #ffffff;
    border-bottom-color: var(--border);
    box-shadow: 0 1px 0 rgba(255, 140, 66, 0.08), 0 4px 20px rgba(160, 80, 40, 0.06);
}

.nav.home-nav {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.nav.home-nav .nav-logo,
.nav.home-nav .nav-links a {
    color: var(--heading);
}

.nav.home-nav .nav-links a:hover {
    color: var(--accent);
}

.nav.home-nav.scrolled {
    background: #ffffff;
    border-bottom-color: var(--border);
    box-shadow: 0 1px 0 rgba(255, 140, 66, 0.08), 0 4px 20px rgba(160, 80, 40, 0.06);
}

.nav.home-nav.scrolled .nav-logo,
.nav.home-nav.scrolled .nav-links a {
    color: var(--heading);
}

.nav.home-nav.scrolled .nav-links a:hover {
    color: var(--accent);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--heading);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: var(--heading);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000000;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 240px 24px 180px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--heading);
    background: transparent;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-slogan {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    animation: sloganPulse 4s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 76px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--heading);
}

.type-text {
    display: inline;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--heading);
    margin-left: 6px;
    vertical-align: baseline;
    animation: blink 0.9s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .cursor {
        animation: none;
        opacity: 0;
    }
}

.hero-desc {
    font-size: 17px;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: inline-flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-dark,
.hero-actions .btn-outline {
    min-width: 140px;
    text-align: center;
}

/* ========== Hero Unit (Hero + Services) ========== */
.hero-unit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        #fff6ed 0%,
        #ffead8 18%,
        #ffdcc0 40%,
        #fff1e6 70%,
        #fff8f3 100%);
}

.hero-unit::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.20) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 140, 66, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 160, 100, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 85%, rgba(255, 180, 120, 0.12) 0%, transparent 35%);
    animation: heroGlow 18s ease-in-out infinite;
}

.hero-unit::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(200, 100, 50, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 100, 50, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 80%);
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1) translate(0, 0);
    }
    33% {
        opacity: 1;
        transform: scale(1.04) translate(-1.5%, 1%);
    }
    66% {
        opacity: 0.95;
        transform: scale(1.02) translate(1%, -0.5%);
    }
}

.hero-edge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.28) 25%,
        rgba(255, 160, 100, 0.28) 50%,
        rgba(255, 107, 53, 0.28) 75%,
        transparent 100%);
}

.hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.hero-unit .hero,
.hero-unit .section-transparent {
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-unit .section-transparent {
    padding-top: 40px;
    padding-bottom: 120px;
}

.hero-unit .section-title {
    color: var(--heading);
}

.hero-unit .card {
    background: #ffffff;
    border-color: rgba(255, 140, 66, 0.18);
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.10);
}

.hero-unit .card:hover {
    background: #ffffff;
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 16px 48px rgba(160, 80, 40, 0.14);
}

.hero-unit .card h3 {
    color: var(--heading);
}

.hero-unit .card p {
    color: var(--text);
}

/* ========== Buttons ========== */
.btn-dark {
    display: inline-block;
    background: var(--heading);
    color: var(--bg);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-dark:hover {
    background: #5a5a58;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--heading);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--heading);
}

/* ========== Sections ========== */
.section {
    padding: 100px 24px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 56px;
    color: var(--heading);
}

/* ========== Grid ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

/* ========== Cards ========== */
.card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
}

.card:hover {
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 16px 48px rgba(160, 80, 40, 0.12);
    background: #ffffff;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 243, 235, 0.8);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    color: var(--heading);
}

.card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(168, 68, 58, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ========== Stats ========== */
.stat-num {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--heading);
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
}

/* ========== Banner Ad ========== */
.banner-ad {
    max-width: 900px;
    margin: 56px auto;
    aspect-ratio: 900 / 120;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.ad-slot {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 24px;
}

.ad-slots-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ad-slots-row .ad-slot {
    margin-bottom: 0;
}

.ad-slot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.ad-link {
    padding: 0;
    overflow: hidden;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ad-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Hot project card link */
.card-link {
    display: block;
    text-decoration: none;
}

.card-link p {
    color: var(--text);
}

.hot-projects .card-link::after {
    content: '→';
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 20px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hot-projects .card-link {
    position: relative;
}

.hot-projects .card-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(180deg,
        rgba(255, 248, 243, 0.2) 0%,
        rgba(255, 234, 220, 0.55) 40%,
        rgba(255, 220, 195, 0.85) 100%);
    border-top: 1px solid var(--border);
    padding: 64px 24px 32px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading);
}

.footer-desc {
    font-size: 14px;
    color: var(--muted);
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--heading);
}

.footer-text {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-text a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.footer-text a:hover {
    border-bottom-color: var(--primary);
}

.contact-card a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.contact-card a:hover {
    border-bottom-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 140, 66, 0.14);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

.footer-qr {
    margin-bottom: 48px;
}

.qr-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.qr-img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    margin-bottom: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    border: 1px dashed var(--border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.qr-item p {
    font-size: 12px;
    color: var(--text);
}

/* ========== Page Sub Navigation ========== */
.page-subnav {
    position: sticky;
    top: 64px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.page-subnav::-webkit-scrollbar { display: none; }

.page-subnav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 6px;
    height: 48px;
    align-items: center;
}

.subnav-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    scroll-margin-top: 120px;
}

.subnav-item:hover {
    color: var(--accent);
    background: rgba(232, 90, 43, 0.06);
}

.subnav-item.active {
    color: #ffffff;
    background: var(--accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-subnav-inner {
        gap: 4px;
        padding: 0 16px;
    }
    .subnav-item {
        padding: 5px 14px;
        font-size: 12px;
    }
}
.page-header {
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg,
        #fff6ed 0%,
        #fff0e6 30%,
        #ffe8d9 55%,
        #fff4ef 78%,
        #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(255, 140, 66, 0.10) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 55%, rgba(255, 160, 100, 0.08) 0%, transparent 45%);
    opacity: 0.7;
}

.page-header .section-inner {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--heading);
}

.page-header p {
    font-size: 16px;
    color: var(--muted);
}

/* ========== Filter ========== */
.filter-bar {
    padding: 40px 24px 40px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.filter-btns {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--heading);
    color: var(--bg);
    border-color: var(--heading);
}

/* ========== Program Detail Card ========== */
.program-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
}

.program-card:hover {
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 16px 48px rgba(160, 80, 40, 0.12);
    background: #ffffff;
}

.program-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.program-top h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--heading);
}

.program-meta {
    margin-bottom: 16px;
}

.program-meta p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
}

.program-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ========== About ========== */
.about-section {
    padding: 100px 24px;
    background: #ffffff;
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-left h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--heading);
}

.about-left .lead {
    font-size: 18px;
    color: var(--heading);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-left p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-right {
    padding-top: 8px;
}

.about-right img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* 院校合作：减少因图片过高导致的左侧留白 */
.cooperation-section {
    padding: 60px 24px;
}

.cooperation-section .about-grid {
    gap: 48px;
    align-items: center;
}

.cooperation-section .about-right {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooperation-section .cooperation-img {
    max-height: 180px;
    width: auto;
    max-width: 100%;
    border-radius: 16px;
}

.mission-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading);
}

.mission-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

/* ========== Contact ========== */
.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading);
}

.contact-card p {
    font-size: 15px;
    color: var(--text);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 24px 80px; }
    .hero h1 { font-size: 36px; }
    .hero-slogan { font-size: 12px; }
    
    .grid-2 { grid-template-columns: 1fr; gap: 12px; }
    .grid-3 { grid-template-columns: 1fr; gap: 12px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    
    .section { padding: 48px 20px; }
    .section-title { font-size: 26px; margin-bottom: 28px; }
    
    .about-section { padding: 48px 20px; }
    
    .cooperation-section {
        padding: 40px 20px;
    }
    .cooperation-section .about-grid {
        gap: 24px;
    }
    .cooperation-section .cooperation-img {
        max-height: 160px;
    }
    
    /* 移动端禁用 reveal 动画，避免首屏和大段空白 */
    .reveal,
    .reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    /* 移动端压缩卡片留白 */
    .card { padding: 24px 20px; }
    .grid-3 .card { padding: 22px 18px; }
    .grid-3 .card h3 { font-size: 20px; margin-bottom: 6px; }
    .grid-3 .card p { font-size: 13px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stats-grid .card { padding: 18px 14px; }
    .stats-grid .card h3 { font-size: 20px; }
    .stats-grid .card p { font-size: 12px; }
    .program-card { padding: 22px 18px; }
    .program-card p { font-size: 13px; line-height: 1.7; }
    .case-card { padding: 18px 16px; }
    .course-track-header { padding: 20px 16px 14px; }
    .course-phases { padding: 14px 16px; }
    .course-track-icon { width: 40px; height: 40px; font-size: 20px; margin-bottom: 10px; }
    .course-track-title { font-size: 15px; }
    
    .cases-grid { gap: 12px; }
    .course-tracks { gap: 14px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-right { text-align: center; }
    .about-right img { max-width: 72%; margin: 0 auto; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .page-header { padding: 100px 20px 36px; }
    .page-header h1 { font-size: 32px; }
    
    .nav-links { 
        gap: 14px; 
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex: 1;
        justify-content: flex-end;
        padding: 0 4px;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links li { display: inline-block; }
    .nav-links a { 
        font-size: 12px; 
        white-space: nowrap;
    }
    .nav-inner { padding: 0 16px; }
    .nav-logo { font-size: 16px; }
    
    .hero { padding: 140px 20px 80px; }
    .hero h1 { font-size: 40px; letter-spacing: 2px; }

    .banner-ad { margin: 40px 0; }
    .ad-slots-row { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
    .ad-slot { padding: 0; }
}

/* ========== Animations ========== */

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-unit::before {
        animation: none;
    }
    
    .hero-slogan {
        animation: none;
    }
}

/* Card hover lift */
.card,
.program-card,
.contact-card,
.mission-card {
    transition: border-color 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.25s ease;
}

.card:hover,
.program-card:hover,
.contact-card:hover,
.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* Button hover */
.btn-dark,
.btn-outline {
    transition: transform 0.2s ease,
                background 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.btn-dark:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.btn-dark:hover {
    box-shadow: 0 6px 20px rgba(45, 45, 43, 0.18);
}

/* Nav link underline animation */
.nav-links a {
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero slogan subtle pulse */
.hero-slogan {
    animation: sloganPulse 4s ease-in-out infinite;
}

@keyframes sloganPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.grid-2 .reveal:nth-child(1) { transition-delay: 0ms; }
.grid-2 .reveal:nth-child(2) { transition-delay: 60ms; }
.grid-2 .reveal:nth-child(3) { transition-delay: 120ms; }
.grid-2 .reveal:nth-child(4) { transition-delay: 180ms; }

/* Stagger delays for grids (fallback when inline style not used) */
.grid-3 .reveal:nth-child(1) { transition-delay: 0ms; }
.grid-3 .reveal:nth-child(2) { transition-delay: 60ms; }
.grid-3 .reveal:nth-child(3) { transition-delay: 120ms; }
.grid-3 .reveal:nth-child(4) { transition-delay: 180ms; }
.grid-3 .reveal:nth-child(5) { transition-delay: 240ms; }
.grid-3 .reveal:nth-child(6) { transition-delay: 300ms; }
.grid-3 .reveal:nth-child(7) { transition-delay: 360ms; }
.grid-3 .reveal:nth-child(8) { transition-delay: 420ms; }
.grid-3 .reveal:nth-child(9) { transition-delay: 480ms; }

.grid-4 .reveal:nth-child(1) { transition-delay: 0ms; }
.grid-4 .reveal:nth-child(2) { transition-delay: 80ms; }
.grid-4 .reveal:nth-child(3) { transition-delay: 160ms; }
.grid-4 .reveal:nth-child(4) { transition-delay: 240ms; }

.about-right .reveal:nth-child(1) { transition-delay: 0ms; }
.about-right .reveal:nth-child(2) { transition-delay: 80ms; }
.about-right .reveal:nth-child(3) { transition-delay: 160ms; }

.contact-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.contact-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.contact-grid .reveal:nth-child(3) { transition-delay: 160ms; }

.program-card.reveal:nth-child(1) { transition-delay: 0ms; }
.program-card.reveal:nth-child(2) { transition-delay: 80ms; }
.program-card.reveal:nth-child(3) { transition-delay: 160ms; }
.program-card.reveal:nth-child(4) { transition-delay: 240ms; }
.program-card.reveal:nth-child(5) { transition-delay: 320ms; }

/* ========== School List Page (参考 liankao.org.cn/schools) ========== */
.section-list {
    padding-top: 0;
}

.school-filter-bar {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
}

.school-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.school-filter-wide {
    width: 100%;
}

.school-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
    align-items: flex-end;
}

.school-filter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.school-filter-hint {
    font-weight: 400;
    color: var(--muted);
    opacity: 0.7;
}

.school-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.filter-chip:hover {
    border-color: var(--heading);
    color: var(--heading);
}

.filter-chip.active {
    background: var(--heading);
    color: var(--bg);
    border-color: var(--heading);
}

.filter-chip.hidden {
    display: none;
}

.reset-btn {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}

.reset-btn:hover {
    background: var(--heading);
    color: var(--bg);
    border-color: var(--heading);
}

.school-filter-select,
.school-filter-search {
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 120px;
    transition: border-color 0.2s;
}

.school-filter-search {
    min-width: 200px;
}

.school-filter-select:focus,
.school-filter-search:focus {
    outline: none;
    border-color: var(--heading);
}

.school-filter-search::placeholder {
    color: var(--muted);
}

.school-filter-result {
    font-size: 14px;
    color: var(--muted);
    margin-left: auto;
    align-self: flex-end;
}

.school-filter-result span {
    font-weight: 700;
    color: var(--heading);
}

.school-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.school-empty {
    text-align: center;
    padding: 80px 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.school-empty-icon {
    color: var(--muted);
    opacity: 0.5;
    margin-bottom: 16px;
}

.school-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.school-empty-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.school-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
}

.school-card:hover {
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 8px 24px rgba(160, 80, 40, 0.10);
    transform: translateY(-2px);
}

.school-card-main {
    flex: 1;
    min-width: 0;
}

.school-card-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.school-card-major {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.school-card-major[data-major="MBA"] { background: #fff3e0; color: #e65100; }
.school-card-major[data-major="MEM"] { background: #e3f2fd; color: #1565c0; }
.school-card-major[data-major="MPA"] { background: #e8f5e9; color: #2e7d32; }
.school-card-major[data-major="EMBA"] { background: #fce4ec; color: #c62828; }
.school-card-major[data-major="金融"] { background: #fff8e1; color: #f9a825; }
.school-card-major[data-major="项目管理"] { background: #e0f2f1; color: #00695c; }
.school-card-major[data-major="数据科学"] { background: #e8eaf6; color: #3949ab; }
.school-card-major[data-major="国际贸易与金融"] { background: #e1f5fe; color: #0288d1; }
.school-card-major[data-major="金融科技"] { background: #f1f8e9; color: #689f38; }
.school-card-major[data-major="企业管理"] { background: #f3e5f5; color: #7b1fa2; }
.school-card-major[data-major="职业教育与人力资源开发"] { background: #efebe9; color: #5d4037; }
.school-card-major[data-major="商业分析"] { background: #e0f7fa; color: #00838f; }
.school-card-major[data-major="教育技术与人工智能"] { background: #ede7f6; color: #5e35b1; }
.school-card-major[data-major="其他"] { background: #f5f5f5; color: #616161; }

.school-card-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: #f3e5f5;
    color: #7b1fa2;
}

.school-card-study-mode,
.school-card-region {
    font-size: 12px;
    color: var(--muted);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 4px;
}

.school-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.school-card-summary {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.school-card-arrow {
    flex-shrink: 0;
    color: var(--heading);
    opacity: 0.4;
    transition: opacity 0.2s;
}

.school-card:hover .school-card-arrow {
    opacity: 1;
}

/* ========== 口碑见证 ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(160,80,40,0.1);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--border);
}

.testimonial-label {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    background: #ffffff;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonial-label {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* ========== 直播记录卡片网格 ========== */
.timeline {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    transition: opacity 0.2s;
}

.live-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.live-card:hover {
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 16px 48px rgba(160, 80, 40, 0.12);
    transform: translateY(-4px);
}

.live-card-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(232, 90, 43, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
}

.live-card-day {
    font-weight: 600;
}

.live-card-weekday {
    font-weight: 400;
    opacity: 0.85;
}

.live-card-topic {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.5;
}

/* ========== 直播月份切换 ========== */
.live-month-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    justify-content: center;
}

.live-month-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-month-btn i {
    font-style: normal;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

.live-month-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.live-month-btn.active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.live-month-btn.active i {
    color: rgba(255,255,255,0.8);
}

.timeline {
    transition: opacity 0.2s;
}

@media (max-width: 768px) {
    .live-month-tabs {
        gap: 6px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .live-month-btn {
        padding: 6px 14px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.timeline-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
    font-size: 14px;
}

/* ========== 录取案例卡片 ========== */
.cases-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.cases-tab {
    padding: 10px 28px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: #ffffff;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.cases-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cases-tab.active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.cases-tab.active[data-tab="管理类联考"] {
    background: #28b894;
    border-color: #28b894;
    color: #ffffff;
}

.cases-tab[data-tab="管理类联考"]:hover {
    border-color: #28b894;
    color: #28b894;
}

.cases-desc {
    transition: opacity 0.3s;
}

.cases-db-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    padding: 12px 28px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.cases-db-link:hover {
    background: var(--accent);
    color: #ffffff;
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.case-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 16px 48px rgba(160, 80, 40, 0.12);
    transform: translateY(-4px);
}

.case-program-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.5;
}

.case-school-pair {
    margin-bottom: 14px;
}

.case-school-line,
.case-partner-line {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.6;
}

.case-tag-row {
    margin-bottom: 12px;
}

.case-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.case-tag.tag-sino {
    color: #534ab7;
    background: rgba(83, 74, 183, 0.08);
}

.case-tag.tag-exam {
    color: #28b894;
    background: rgba(40, 184, 148, 0.08);
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.case-meta-label {
    font-size: 12px;
    color: #999;
}

.case-meta-label.exam {
    color: #28b894;
    font-weight: 500;
}

.case-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.cases-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
    font-size: 14px;
}

/* ========== 课程体系 ========== */
.course-tracks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-track {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(160, 80, 40, 0.08);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.course-track:hover {
    border-color: rgba(255, 140, 66, 0.35);
    box-shadow: 0 16px 48px rgba(160, 80, 40, 0.12);
    transform: translateY(-4px);
}

.course-track-header {
    padding: 32px 24px 24px;
    text-align: center;
    position: relative;
}

.course-track-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
}

.course-track-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.course-track-icon.exam {
    background: rgba(232, 90, 43, 0.1);
}

.course-track-icon.interview {
    background: rgba(40, 183, 148, 0.1);
}

.course-track-icon.sino {
    background: rgba(83, 74, 183, 0.1);
}

.course-track-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.course-track-subtitle {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.course-phases {
    padding: 24px;
}

.course-phase {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 140, 66, 0.08);
}

.course-phase:last-child {
    border-bottom: none;
}

.course-phase-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(232, 90, 43, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.course-phase-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 4px;
}

.course-phase-info p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

/* 课程体系响应式 */
@media (max-width: 900px) {
    .course-tracks {
        grid-template-columns: 1fr;
    }
}

/* 直播记录卡片响应式 */
@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .live-card {
        padding: 16px 18px;
        gap: 10px;
    }

    .live-card-topic {
        font-size: 15px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .school-filter-bar {
        padding: 18px;
        gap: 16px;
    }

    .school-filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .school-filter-group {
        width: 100%;
    }

    .school-filter-select,
    .school-filter-search {
        width: 100%;
        min-width: auto;
    }

    .school-filter-result {
        width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .school-card {
        padding: 16px;
    }

    .school-card-title {
        font-size: 16px;
    }

    .school-card-summary {
        font-size: 13px;
    }

    .school-card-arrow {
        display: none;
    }
}

/* ========== 招生动态文章页 ========== */
.article-detail {
    max-width: 780px;
    margin: 0 auto;
}

.article-back {
    display: inline-block;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.article-back:hover { color: var(--accent); }

.article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.article-cat {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 14px;
}
.article-cat.liankao { background: #e3f2fd; color: #1565c0; }
.article-cat.sino { background: #fff3e0; color: #e65100; }
.article-cat.urgent { background: #fce4ec; color: #c62828; }

.article-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.5;
    margin-bottom: 14px;
}
.article-meta {
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.article-meta time { font-weight: 500; }

.article-body {
    font-size: 16px;
    line-height: 2;
    color: var(--text);
}
.article-body p {
    margin-bottom: 20px;
}
.article-body h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--heading);
    margin-top: 36px;
    margin-bottom: 16px;
}
.article-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    margin-top: 28px;
    margin-bottom: 12px;
}
.article-body strong {
    color: var(--accent);
    font-weight: 600;
}
.article-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.article-body li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.9;
}
.article-body li::before {
    content: "·";
    position: absolute;
    left: 6px;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.info-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0;
}
.info-box-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}
.info-box ul { margin-bottom: 0; }
.info-box li { font-size: 14.5px; }

/* ========== SEO: 面包屑导航 ========== */
.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ========== SEO: 结构化表格 info-box ========== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14.5px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.info-table caption {
    background: var(--bg-alt);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-align: left;
}
.info-table th,
.info-table td {
    padding: 10px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    line-height: 1.7;
}
.info-table th {
    width: 130px;
    font-weight: 600;
    color: var(--heading);
    background: var(--bg-alt);
    white-space: nowrap;
}
.info-table td { color: var(--text); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(232, 90, 43, 0.02); }

/* ========== SEO: FAQ 段落 ========== */
.faq-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.faq-section h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}
.faq-item h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.faq-item p {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.9;
    padding-left: 22px;
    margin-bottom: 0;
}

/* ========== SEO: 相关文章 ========== */
.related-articles {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.related-articles h2 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
}
.related-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.related-card {
    display: block;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.related-card:hover {
    border-color: var(--accent);
    background: rgba(232, 90, 43, 0.02);
}
.related-card .rcat {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.related-card .rcat.liankao { background: #e3f2fd; color: #1565c0; }
.related-card .rcat.sino { background: #fff3e0; color: #e65100; }
.related-card .rcat.urgent { background: #fce4ec; color: #c62828; }
.related-card .rtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.5;
}
.related-card .rdate {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}
@media (max-width: 768px) {
    .related-list { grid-template-columns: 1fr; }
    .info-table th { width: 100px; }
}

/* ========== AI 整理声明 ========== */
.ai-notice {
    margin-top: 40px;
    padding: 14px 18px;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.ai-notice-icon {
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.7;
}
.ai-notice a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.ai-notice a:hover { text-decoration: underline; }