
        /* 全局样式 (完全使用系统字体栈) */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', sans-serif;
            background: #f6f9fc;
            color: #0b1a33;
            line-height: 1.5;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .breadcrumb {
            padding: 20px 0 10px;
            font-size: 0.9rem;
            color: #4a5a72;
        }
        .breadcrumb a { color: #1e4f8a; text-decoration: none; }
        .breadcrumb i { margin: 0 8px; font-size: 0.7rem; color: #7c8ba0; }

        /* 头部大卡片 */
        .header-billboard {
            background: linear-gradient(145deg, #0a2647 0%, #153e6f 100%);
            border-radius: 32px;
            padding: 40px 40px 36px;
            color: white;
            margin: 20px 0 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(0,30,60,0.3);
        }
        .header-billboard:after {
            content: "RATES 2026";
            position: absolute;
            right: 25px;
            bottom: -20px;
            font-size: 6.2rem;
            font-weight: 800;
            opacity: 0.08;
            color: white;
            letter-spacing: 8px;
            pointer-events: none;
        }
        .header-billboard h1 {
            font-size: 2.7rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .header-billboard h1 i { margin-right: 12px; color: #ffd966; }
        .header-billboard p {
            font-size: 1.2rem;
            max-width: 680px;
            opacity: 0.9;
            margin-bottom: 24px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .state-flags {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 15px;
        }
        .state-flags span {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(2px);
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* ===== 执业领域栏目 (位于header-billboard下方) ===== */
        .practice-pillars {
            margin: -20px 0 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: space-between;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(8px);
            padding: 18px 24px;
            border-radius: 60px;
            border: 1px solid #cdddec;
            box-shadow: 0 10px 20px -8px rgba(0,35,70,0.15);
        }

        .pillar-item {
            flex: 1 0 auto;
            text-align: center;
            border-radius: 40px;
            background: white;
            border: 1px solid #b7cde0;
            font-weight: 600;
            color: #102b47;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            transition: 0.15s;
            font-size: 0.95rem;
            padding: 0; /* padding moved to link for full click area */
        }

        /* 超链接样式 — 保持卡片外观，同时使整个区域可点击 */
        .pillar-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            height: 100%;
            border-radius: 40px;
            transition: all 0.18s ease;
            padding: 8px 12px; /* 原 .pillar-item 的内边距移到这里 */
        }

        .pillar-item i {
            color: #1e4f8a;
            font-size: 1.2rem;
            transition: transform 0.15s, color 0.15s;
        }

        .pillar-item span {
            white-space: nowrap;
        }

        .pillar-item .badge {
            background: #1e4f8a;
            color: white;
            border-radius: 30px;
            padding: 2px 10px;
            font-size: 0.75rem;
            margin-left: 6px;
            transition: background 0.15s, transform 0.1s;
        }

        /* 悬停效果 */
        .pillar-item:has(.pillar-link:hover) {
            background-color: #ffffff;
            border-color: #8fb2d1;
            box-shadow: 0 12px 22px -10px #1e4f8a55;
            transform: translateY(-2px);
        }

        .pillar-link:hover i {
            color: #0d3b6f;
            transform: scale(1.08);
        }

        .pillar-link:hover .badge {
            background: #0d3b6f;
        }

        /* 焦点状态 (键盘可访问性) */
        .pillar-link:focus-visible {
            outline: 3px solid #1e4f8a;
            outline-offset: 2px;
            border-radius: 40px;
        }

        /* 点击反馈 */
        .pillar-link:active {
            transform: scale(0.98);
            background: rgba(30, 79, 138, 0.02);
        }

        /* 移动端响应式 */
        @media (max-width: 800px) {
            .practice-pillars {
                flex-wrap: wrap;
                border-radius: 40px;
                justify-content: center;
            }
            .pillar-item { flex: 0 1 auto; }
            .pillar-link { padding: 8px 10px; }
        }

        /* 章节标题 */
        .sec-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 20px;
            border-left: 8px solid #1e4f8a;
            padding-left: 20px;
        }
        .sec-sub { 
            color: #2d425b; 
            margin-bottom: 24px; 
            font-size: 1.1rem; 
        }

        /* 三卡片 */
        .model-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 32px 0;
        }
        .model-card {
            background: white;
            border-radius: 28px;
            padding: 28px;
            border: 1px solid #dde3eb;
            box-shadow: 0 6px 16px rgba(0,0,0,0.02);
            transition: all 0.2s;
        }
        .model-card:hover { border-color: #1e4f8a; box-shadow: 0 18px 28px -10px rgba(0,45,85,0.15); }
        .model-icon {
            background: #e6effa;
            width: 56px; height: 56px;
            border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }
        .model-icon i { font-size: 2rem; color: #1e4f8a; }
        .model-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
        .model-desc { color: #365073; margin-bottom: 20px; }
        .model-stats {
            background: #f0f5fb;
            padding: 16px;
            border-radius: 18px;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
        }

        /* 情景对比双栏 */
        .scenario-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        .scenario-card {
            background: white;
            border-radius: 26px;
            padding: 28px;
            border: 1px solid #d9e1ec;
        }
        .scenario-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .scenario-title i { color: #1e4f8a; font-size: 2rem; }
        .scenario-sub {
            color: #2a4b77;
            font-weight: 500;
            margin-bottom: 24px;
            border-bottom: 1px dashed #bacddc;
            padding-bottom: 16px;
        }
        .line-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 14px;
            font-size: 1.05rem;
        }
        .line-item span:first-child i { color: #1e4f8a; width: 24px; }
        .total-badge {
            background: #0a2647;
            color: white;
            border-radius: 30px;
            padding: 15px 20px;
            margin-top: 20px;
            font-weight: 700;
            font-size: 1.3rem;
            display: flex;
            justify-content: space-between;
        }

        /* 商业合同对比条 */
        .business-comparison {
            background: white;
            border-radius: 26px;
            padding: 28px;
            margin: 20px 0;
            border: 1px solid #d0deef;
        }

        /* 州表格 */
        .state-compact {
            background: white;
            border-radius: 28px;
            border: 1px solid #cfddee;
            overflow: hidden;
            margin: 30px 0;
        }
        .state-header {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1.5fr;
            background: #e3edf6;
            padding: 16px 24px;
            font-weight: 700;
            color: #102b47;
        }
        .state-row {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1.5fr;
            padding: 16px 24px;
            border-bottom: 1px solid #e2ebf3;
            align-items: center;
        }
        .state-row:last-child { border-bottom: none; }
        .rate-highlight { font-weight: 700; color: #102b47; }
        .trend-up { color: #1d7a4b; font-weight: 600; }

        /* 州标签链接 */
        .state-links {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .state-tag {
            background: white;
            border: 1px solid #b9cee8;
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 0.9rem;
            color: #1e4f8a;
            text-decoration: none;
            transition: 0.2s;
        }
        .state-tag:hover { background: #1e4f8a; color: white; }

        /* 三州实践领域 */
        .practice-split {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        .practice-block {
            background: white;
            border-radius: 24px;
            padding: 24px;
            border: 1px solid #d9e1ec;
        }
        .practice-block h3 { margin-bottom: 15px; border-left: 5px solid #1e4f8a; padding-left: 15px; }

        /* 影响费用因素 */
        .factors-flex {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin: 40px 0;
        }
        .factor-item {
            background: white;
            border-radius: 24px;
            padding: 26px;
            border: 1px solid #dde3eb;
        }
        .factor-item i { font-size: 2.2rem; color: #1e4f8a; margin-bottom: 15px; }

        /* 额外卡片 (retainer etc) */
        .extra-fee-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        .extra-card {
            background: white;
            flex: 1 1 220px;
            border-radius: 24px;
            padding: 22px;
            border: 1px solid #d0deef;
        }

        /* FAQ区域 */
        .faq-wrap {
            background: white;
            border-radius: 28px;
            padding: 32px;
            border: 1px solid #d0deef;
            margin: 50px 0;
        }
        .faq-two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 24px;
        }
        .faq-q { font-weight: 700; margin-bottom: 6px; } .faq-q i { color: #1e4f8a; margin-right: 6px; }

        /* people also ask / related */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 20px;
        }
        .related-grid a {
	text-decoration: none;
	color: #1e4f8a;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 40px;
	text-align: center;
	transition: 0.2s;
	background-color: #FFFFFF;
        }
        .related-grid a:hover {
            background: #1e4f8a;
            color: white;
        }

        /* 城市对比表格 */
        .city-table {
            background: white;
            border-radius: 24px;
            padding: 20px;
            border: 1px solid #cfddee;
            overflow-x: auto;
            margin: 30px 0;
        }
        .city-table table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .city-table th {
            background: #e3edf6;
            padding: 12px;
            text-align: left;
        }
        .city-table td {
            padding: 12px;
            border-bottom: 1px solid #e2ebf3;
        }
        .city-table td:first-child { font-weight: 600; }

        /* 法律文件费用表格 */
        .doc-fees {
            background: white;
            border-radius: 24px;
            padding: 20px;
            border: 1px solid #cfddee;
            overflow-x: auto;
            margin: 30px 0;
        }
        .doc-fees table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        .doc-fees th {
            background: #e3edf6;
            padding: 10px;
            text-align: left;
        }
        .doc-fees td {
            padding: 10px;
            border-bottom: 1px solid #e2ebf3;
        }

        /* 五领域TOP5 (美化数字) */
        .top5-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin: 30px 0;
        }
        .top5-card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            border: 1px solid #d0deef;
        }
        .top5-card h4 {
            margin-bottom: 12px;
            border-left: 4px solid #1e4f8a;
            padding-left: 10px;
        }
        .top5-card ol {
            padding-left: 20px;
            color: #1e3a5f;
        }
        .top5-card li {
            margin-bottom: 6px;
            font-weight: 500;
        }
        .top5-card li::marker {
            color: #1e4f8a;
            font-weight: bold;
        }

        /* 响应式 */
        @media (max-width: 1100px) {
            .model-grid, .top5-grid { grid-template-columns: repeat(2, 1fr); }
            .factors-flex { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 900px) {
            .scenario-row, .practice-split, .faq-two {
                grid-template-columns: 1fr;
            }
            .state-header { display: none; }
            .state-row {
                display: block;
                padding: 20px;
                border-bottom: 1px solid #e2ebf3;
            }
            .state-row div {
                padding: 5px 0;
                border-bottom: 1px dashed #eef2f6;
            }
            .state-row div:last-child { border-bottom: none; }
        }
        @media (max-width: 700px) {
            .model-grid, .top5-grid, .factors-flex { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            .header-billboard h1 { font-size: 2rem; }
        }

        /* 数据来源链接样式 */
        .source-links {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #c8d9ea;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .source-links a {
            color: #1e4f8a;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .source-links a:hover {
            text-decoration: underline;
        }

        /* CTA 按钮样式 */
        .cta-box {
            background: linear-gradient(145deg, #e6effa, #d4e3f5);
            border-radius: 28px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #b7cde0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .cta-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0a2647;
        }
        .cta-button {
            background: #1e4f8a;
            color: white;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: 0.2s;
            border: 1px solid #0d3b6f;
        }
        .cta-button:hover {
            background: #0d3b6f;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px #1e4f8a;
        }
