/* ============================================
   逐梦国际 - 逐梦无界，国际启航
   独特视觉设计系统 | 暖沙×翡翠×珊瑚
   Awwwards灵感 - 杂志风+暖调玻璃态
   ============================================ */

/* === 基础重置 === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FDF9F4;
    --warm-bg: #F6F1EA;
    --jade: #2D8B6E;
    --jade-dark: #1F6B53;
    --jade-light: #E8F3EE;
    --coral: #E8785A;
    --coral-dark: #D06244;
    --coral-light: #FDF0EC;
    --text: #3D3535;
    --text-soft: #8B7E74;
    --text-muted: #A89B91;
    --white: #FFFFFF;
    --border: #E8E0D5;
    --border-light: #F0EAE2;
    --shadow: rgba(61, 53, 53, 0.06);
    --shadow-hover: rgba(61, 53, 53, 0.12);
    --gold: #C9A87C;
    --gold-light: #F7F1E5;
    --footer-bg: #F0EBE3;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === 核心布局 === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F6F1EA;
}

/* === 导航 === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 249, 244, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text);
    letter-spacing: -0.3px;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--jade);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 2px 8px rgba(45, 139, 110, 0.25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--jade);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--jade);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 9px 22px;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    background: var(--coral);
    box-shadow: 0 2px 10px rgba(232, 120, 90, 0.25);
    transition: all 0.25s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--coral-dark);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(232, 120, 90, 0.35);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 139, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 120, 90, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    flex: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    background: var(--coral-light);
    color: var(--coral);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--text);
}

.hero h1 .highlight {
    color: var(--jade);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(45, 139, 110, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 560px;
    margin-bottom: 32px;
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    width: 380px;
    box-shadow: 0 20px 48px rgba(61, 53, 53, 0.1);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(232, 224, 213, 0.6);
    pointer-events: none;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* === 按钮 === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.btn-primary {
    color: #fff;
    background: var(--jade);
    box-shadow: 0 3px 14px rgba(45, 139, 110, 0.3);
}

.btn-primary:hover {
    background: var(--jade-dark);
    box-shadow: 0 6px 22px rgba(45, 139, 110, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.8px solid var(--jade);
    color: var(--jade);
}

.btn-outline:hover {
    background: var(--jade);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 139, 110, 0.25);
}

/* === 标签/标题 === */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: var(--coral);
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    line-height: 1.2;
}

.section-desc {
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 40px;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* === 卡片网格 === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    border-radius: 14px;
    padding: 30px 28px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(45, 139, 110, 0.04) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
    transition: height 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px var(--shadow-hover);
    border-color: transparent;
}

.category-card:hover::before {
    height: 80px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    background: var(--jade-light);
    color: var(--jade);
    transition: all 0.3s ease;
}

.category-card:hover .card-icon {
    background: var(--jade);
    color: #fff;
    box-shadow: 0 4px 12px rgba(45, 139, 110, 0.3);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--jade);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.card-link::after {
    content: '→';
    transition: transform 0.25s ease;
}

.card-link:hover {
    gap: 10px;
}

.card-link:hover::after {
    transform: translateX(3px);
}

/* === 特性块 === */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.feature-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px var(--shadow);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(232, 224, 213, 0.5);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.04);
}

.feature-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.feature-text p {
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    font-weight: 700;
    color: var(--jade);
    font-size: 1rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--jade-light);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* === 数据条 === */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--jade);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
    border-color: transparent;
}

.stat-item:hover::after {
    width: 40px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--jade);
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 8px;
    color: var(--text-soft);
    font-weight: 500;
}

/* === 内容墙 === */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.content-wall-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s ease;
}

.content-wall-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px var(--shadow-hover);
    border-color: transparent;
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-wall-item:hover img {
    transform: scale(1.06);
}

.content-wall-body {
    padding: 20px 22px;
}

.content-wall-body h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.content-wall-body p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 10px;
}

.content-wall-body .card-link {
    font-size: 0.82rem;
    color: var(--coral);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--jade);
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-item .faq-question {
    padding: 18px 22px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-size: 1rem;
    user-select: none;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--jade);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 22px 18px;
    display: none;
    opacity: 0.7;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open {
    border-color: var(--jade);
    background: var(--jade-light);
    box-shadow: 0 2px 12px rgba(45, 139, 110, 0.1);
}

/* === CTA横幅 === */
.cta-banner {
    padding: 60px 24px;
    text-align: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--jade) 0%, #3BA882 50%, #248A6B 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.4px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0 28px;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--jade);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.cta-banner .btn-primary:hover {
    background: #fff;
    color: var(--jade-dark);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* === 页脚 === */
.site-footer {
    padding: 56px 0 28px;
    background: var(--footer-bg);
    color: var(--text);
}

.site-footer .container {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: var(--text);
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--jade);
}

.footer-bottom {
    border-top: 1px solid rgba(139, 126, 116, 0.2);
    margin-top: 44px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === 工具类 === */
.text-accent {
    color: var(--coral);
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.7;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* === 装饰分隔线 === */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--jade), var(--coral));
    border-radius: 4px;
    margin: 0 auto 40px;
}

/* === 响应式 === */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero .container {
        gap: 36px;
    }

    .hero-image {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 40px;
    }

    .hero .container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .section-label {
        display: block;
        text-align: center;
        padding-left: 0;
    }

    .section-label::before {
        display: none;
    }

    .section-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .section-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-text {
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(253, 249, 244, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 20px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 8px 24px var(--shadow);
        z-index: 999;
    }

    .main-nav a {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 1rem;
        display: block;
    }

    .main-nav a:hover {
        background: var(--jade-light);
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 6px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
    }

    .content-wall-item img {
        height: 180px;
    }

    .cta-banner {
        padding: 44px 20px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -0.3px;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cards-grid,
    .content-wall {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-col ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-col ul li {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .category-card {
        padding: 22px 20px;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .faq-item .faq-question {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .faq-item .faq-answer {
        padding: 0 16px 14px;
        font-size: 0.85rem;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.85rem;
    }
}

/* === 动画关键帧 === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-content {
    animation: fadeInUp 0.7s ease forwards;
}

.category-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* === 滚动条美化 === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* === 选择文本 === */
::selection {
    background: rgba(45, 139, 110, 0.2);
    color: var(--text);
}

/* === 打印样式 === */
@media print {
    .site-header,
    .site-footer,
    .menu-toggle,
    .nav-cta {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

    .section {
        padding: 20px 0;
    }
}