
        /* Category Tabs */
        .category-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 28px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--line);
        }

        .tab {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--muted);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all .18s ease;
        }

            .tab:hover {
                border-color: var(--brand);
                color: var(--text);
            }

            .tab.active {
                background: var(--brand);
                border-color: var(--brand);
                color: #fff;
            }

            .tab svg {
                width: 16px;
                height: 16px;
            }

        /* FAQ Categories */
        .faq-section {
            margin-bottom: 36px;
        }

        .faq-section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .faq-section-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(39,85,75,.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .faq-section-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            color: var(--text);
        }

        .faq-section-count {
            font-size: 13px;
            color: var(--muted);
            background: rgba(11,18,32,.06);
            padding: 4px 10px;
            border-radius: 999px;
            margin-left: auto;
        }

        /* FAQ Accordion */
        .faq-list {
            display: grid;
            gap: 10px;
        }

        details {
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            transition: box-shadow .2s ease, border-color .2s ease;
        }

            details:hover {
                border-color: rgba(39,85,75,.4);
            }

            details[open] {
                box-shadow: 0 8px 24px rgba(39,85,75,.12);
                border-color: var(--brand);
            }

        summary {
            list-style: none;
            cursor: pointer;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
            transition: background .15s ease;
        }

            summary:hover {
                background: rgba(39,85,75,.04);
            }

            summary::-webkit-details-marker {
                display: none
            }

        .chev {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(39,85,75,.1);
            display: grid;
            place-items: center;
            transition: transform .2s ease, background .2s ease;
            flex: 0 0 auto;
            color: var(--brand);
        }

        details[open] .chev {
            transform: rotate(180deg);
            background: var(--brand);
            color: #fff;
        }

        .answer {
            padding: 0 20px 18px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
            border-top: 1px solid var(--line);
            margin-top: -1px;
            padding-top: 16px;
        }

            .answer a {
                color: var(--brand);
                font-weight: 600;
                text-decoration: underline;
                text-underline-offset: 2px;
            }

            .answer a:hover {
                color: #1e3f36;
            }

            .answer ul {
                margin: 12px 0;
                padding-left: 20px;
            }

            .answer li {
                margin-bottom: 6px;
            }

        /* Search Box */
        .search-box {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 16px 20px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,.04);
        }

        .search-box svg {
            color: var(--muted);
            flex-shrink: 0;
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            color: var(--text);
            background: transparent;
        }

            .search-box input::placeholder {
                color: var(--muted);
            }

        .search-box .clear-btn {
            padding: 6px 12px;
            border-radius: 8px;
            border: 1px solid var(--line);
            background: #f9fafb;
            color: var(--muted);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all .15s ease;
        }

            .search-box .clear-btn:hover {
                background: #fff;
                border-color: var(--text);
                color: var(--text);
            }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            gap: 24px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
        }

        .stat-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(39,85,75,.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .stat-content {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
        }

        .stat-label {
            font-size: 12px;
            color: var(--muted);
        }

        /* CTA Card */
        .cta-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
            margin-top: 40px;
            box-shadow: 0 8px 24px rgba(0,0,0,.06);
        }

        .cta-card h2 {
            margin: 0 0 8px;
            font-size: 22px;
            font-weight: 700;
        }

        .cta-card p {
            margin: 0 0 20px;
            color: var(--muted);
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 48px 20px;
            display: none;
        }

        .no-results svg {
            color: var(--muted);
            margin-bottom: 16px;
        }

        .no-results h3 {
            margin: 0 0 8px;
            font-size: 18px;
        }

        .no-results p {
            margin: 0;
            color: var(--muted);
        }

        /* Responsive */
        @media (max-width:640px) {
            .stats-bar {
                flex-direction: column;
                gap: 10px;
            }

            .stat-item {
                flex: 1;
            }

            .category-tabs {
                justify-content: center;
            }

            .faq-section-header {
                flex-wrap: wrap;
            }

            .faq-section-count {
                margin-left: 0;
                margin-top: 8px;
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width:520px) {
            .actions .btn:not(.primary):not(.burger) {
                display: none
            }
        }
    