        :root {
            --bg: #fafbf8;
            --surface: #ffffff;
            --text: #1a221e;
            --text-secondary: #445a4c;
            --text-muted: #6b7d6f;
            --accent: #1a6b4c;
            --accent-dark: #0f4d35;
            --accent-light: #edf7f2;
            --accent-glow: rgba(26, 107, 76, 0.10);
            --teal: #1a6b4c;
            --teal-light: #edf7f2;
            --border: #dce5de;
            --border-light: #eef3ef;
            --warm-highlight: #fdf6ed;
            --amber-accent: #c47a1a;
            --amber-light: #fef9f2;
            --shadow-sm: 0 1px 4px rgba(26, 34, 30, 0.04);
            --shadow-md: 0 6px 20px rgba(26, 34, 30, 0.05);
            --shadow-lg: 0 16px 36px rgba(26, 34, 30, 0.08);
            --shadow-xl: 0 24px 48px rgba(26, 34, 30, 0.10);
            --radius-sm: 14px;
            --radius-md: 22px;
            --radius-lg: 34px;
            --radius-xl: 46px;
            --radius-full: 999px;
            --transition: 0.20s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: 'Inter', system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 12% 8%, rgba(26, 107, 76, 0.025) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 55%, rgba(26, 107, 76, 0.018) 0%, transparent 48%),
                radial-gradient(ellipse at 35% 82%, rgba(196, 122, 26, 0.015) 0%, transparent 42%);
            background-attachment: fixed;
        }

        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 26px;
        }

        /* ── HEADER ────────────────────── */
        header {
            background: rgba(255, 255, 255, 0.84);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 120;
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 15px 0;
            gap: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
            box-shadow: 0 4px 14px rgba(26, 107, 76, 0.28);
        }
        .logo-text {
            font-weight: 780;
            font-size: 1.3rem;
            color: var(--text);
            letter-spacing: -0.35px;
        }
        .logo-text span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            font-size: 0.91rem;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 530;
            color: var(--text-secondary);
            transition: var(--transition);
            padding: 7px 15px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            background: var(--accent-light);
        }
        .btn-download-nav {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 9px 21px !important;
            border-radius: var(--radius-full) !important;
            font-weight: 600 !important;
            box-shadow: 0 3px 12px rgba(26, 107, 76, 0.24);
            transition: var(--transition) !important;
        }
        .btn-download-nav:hover {
            background: var(--accent-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(26, 107, 76, 0.32);
        }

        /* ── FAQ HERO ────────────────── */
        .faq-hero {
            text-align: center;
            padding: 50px 0 30px;
        }
        .faq-hero h1 {
            font-size: clamp(2rem, 4vw, 2.9rem);
            font-weight: 850;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }
        .faq-hero h1 .accent {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        .faq-hero h1 .accent::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 7px;
            background: rgba(26, 107, 76, 0.16);
            border-radius: 3px;
            z-index: -1;
        }
        .faq-hero .sub {
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto 20px;
            font-size: 1.02rem;
            line-height: 1.6;
        }

        /* ── 分类快速导航 ─────────── */
        .category-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 36px;
        }
        .category-bar a {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 40px;
            padding: 9px 24px;
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 520;
            font-size: 0.93rem;
            transition: var(--transition);
            white-space: nowrap;
        }
        .category-bar a:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-light);
        }

        /* ── FAQ 区块 ─────────────── */
        .faq-section {
            margin-bottom: 38px;
        }
        .faq-section h2 {
            font-size: 1.55rem;
            font-weight: 750;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.3px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-light);
        }
        .faq-section h2 .section-icon {
            font-size: 1.8rem;
        }
        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        details.faq-item {
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            padding: 6px 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        details.faq-item[open] {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            padding-bottom: 16px;
        }
        details.faq-item summary {
            font-weight: 650;
            font-size: 1rem;
            cursor: pointer;
            padding: 16px 0;
            color: var(--text);
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            letter-spacing: -0.12px;
            outline: none;
        }
        details.faq-item summary::-webkit-details-marker {
            display: none;
        }
        details.faq-item summary::after {
            content: '+';
            font-size: 1.4rem;
            font-weight: 300;
            color: var(--accent);
            transition: transform 0.25s ease;
            flex-shrink: 0;
            margin-left: 12px;
        }
        details.faq-item[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }
        .faq-answer {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.65;
            padding: 4px 0 8px;
        }
        .faq-answer p {
            margin-bottom: 10px;
        }
        .faq-answer ul {
            padding-left: 20px;
            margin: 8px 0;
        }
        .faq-answer li {
            margin-bottom: 6px;
        }
        .highlight-note {
            background: var(--teal-light);
            border-radius: 12px;
            padding: 12px 18px;
            margin: 12px 0;
            border-left: 4px solid var(--teal);
            font-size: 0.9rem;
            color: #1a3d2a;
            line-height: 1.5;
        }

        /* ── CTA 底部引导 ─────────── */
        .faq-bottom-cta {
            background: linear-gradient(115deg, #16261a 0%, #1f3d25 40%, #162e1c 100%);
            border-radius: var(--radius-xl);
            padding: 44px 28px;
            margin: 20px auto 36px;
            text-align: center;
            color: #fff;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
            max-width: 760px;
        }
        .faq-bottom-cta::before,
        .faq-bottom-cta::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .faq-bottom-cta::before {
            top: -50px;
            right: -50px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(60,184,120,0.25) 0%, transparent 70%);
        }
        .faq-bottom-cta::after {
            bottom: -30px;
            left: -30px;
            width: 130px;
            height: 130px;
            background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
        }
        .faq-bottom-cta h2 {
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .faq-bottom-cta p {
            font-size: 1rem;
            opacity: 0.88;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .btn-white {
            background: #fff;
            color: #16261a;
            padding: 12px 34px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.98rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        .btn-white:hover {
            background: #f2fdf5;
            transform: scale(1.03);
        }

        /* ── FOOTER ────────────────── */
        .footer {
            background: #172418;
            color: #b8c9bb;
            padding: 40px 0 22px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            margin-top: 20px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 11px;
            font-size: 0.93rem;
            letter-spacing: -0.12px;
        }
        .footer-col a {
            color: #b8c9bb;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 28px;
            font-size: 0.8rem;
            border-top: 1px solid #2d402f;
            margin-top: 22px;
            color: #8a9a8c;
        }
        .footer-disclaimer {
            text-align: center;
            font-size: 0.74rem;
            color: #6d7e6f;
            margin-top: 10px;
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .nav-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-links {
                gap: 5px;
                font-size: 0.82rem;
            }
            .faq-bottom-cta {
                margin-left: 16px;
                margin-right: 16px;
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .faq-hero h1 {
                font-size: 1.7rem;
            }
        }