        :root {
            --primary: #e03131;
            --primary-deep: #c62828;
            --blue-dark: #0b1e33;
            --text-primary: #1a1a2e;
            --text-secondary: #4a5568;
            --text-muted: #64748b;
            --bg-white: #ffffff;
            --bg-slate: #f8fafc;
            --border-light: #edf2f7;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.10);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            background-color: var(--bg-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }
        .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 88px;
            display: flex;
            align-items: center;
            z-index: 100;
            background: transparent;
            transition: background var(--transition), box-shadow var(--transition);
        }
        .header.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--shadow-sm);
            position: fixed;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 40px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
        }
        .logo-text {
            font-size: 21px;
            font-weight: 800;
            color: #0b2b4a;
            letter-spacing: -0.4px;
        }
        .logo-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            background: var(--primary);
            border-radius: 50%;
            margin-left: 1px;
            vertical-align: middle;
            position: relative;
            top: -6px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-item {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 22px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-item:hover {
            color: #005fa9;
            background: rgba(0, 95, 169, 0.05);
        }
        .nav-item.nav-cta {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: 24px;
        }
        .nav-item.nav-cta:hover {
            background: var(--primary-deep);
            box-shadow: 0 4px 14px rgba(224, 49, 49, 0.30);
        }
        .nav-item.active-guide {
            color: #005fa9;
            background: rgba(0, 95, 169, 0.08);
            font-weight: 700;
        }
        .guide-hero {
            padding: 160px 0 60px;
            background: linear-gradient(155deg, #f5f9fd 0%, #eaf2fa 30%, #f8fafc 60%, #f0f5fb 100%);
            text-align: center;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #005fa9;
            background: rgba(0, 95, 169, 0.07);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .guide-hero h1 {
            font-size: 42px;
            font-weight: 850;
            color: #0b1e33;
            margin-bottom: 18px;
        }
        .guide-hero .sub-desc {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--bg-slate);
        }
        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: #0b1e33;
            margin-bottom: 12px;
        }
        .section-header p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .guide-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            transition: all var(--transition);
        }
        .guide-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
            transform: translateY(-3px);
        }
        .guide-icon {
            font-size: 34px;
            margin-bottom: 14px;
        }
        .guide-card h3 {
            font-size: 18px;
            font-weight: 750;
            color: #0b1e33;
            margin-bottom: 10px;
        }
        .guide-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .guide-link {
            font-weight: 700;
            color: #005fa9;
            font-size: 13.5px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .guide-link:hover {
            gap: 8px;
            color: #00457c;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 24px;
            transition: box-shadow var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        .faq-item h4 {
            font-size: 16px;
            font-weight: 750;
            color: #0b1e33;
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer {
            padding: 44px 0;
            background: #080e16;
            border-top: 1px solid #1e293b;
            color: #64748b;
            font-size: 13.5px;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-links {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #94a3b8;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #cbd5e1;
        }
        @media (max-width: 960px) {
            .guide-grid {
                grid-template-columns: 1fr 1fr;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .header {
                position: relative;
                height: auto;
                padding: 16px 0;
                background: #fff;
                border-bottom: 1px solid var(--border-light);
            }
            .header-inner {
                flex-direction: column;
                gap: 14px;
            }
            .nav-list {
                gap: 4px;
            }
            .nav-item {
                font-size: 13px;
                padding: 6px 12px;
            }
        }
        @media (max-width: 640px) {
            .guide-grid {
                grid-template-columns: 1fr;
            }
            .guide-hero h1 {
                font-size: 28px;
            }
        }