/* roulang page: index */
/* ===== 设计变量 / Reset ===== */
        :root {
            --kiwi: #3E8E5A;
            --kiwi-deep: #2F7048;
            --kiwi-soft: rgba(62, 142, 90, .12);
            --kiwi-pale: #EAF2EA;
            --acid: #DFA429;
            --deep: #1F2B24;
            --ink: #16211A;
            --text: #3E4A42;
            --muted: #6D7A70;
            --paper: #F7F7F4;
            --paper-strong: #F0F2ED;
            --white: #FFFFFF;
            --line: rgba(31, 43, 36, .08);
            --line-strong: rgba(31, 43, 36, .14);
            --radius-sm: 8px;
            --radius-card: 14px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 10px rgba(31, 43, 36, .05);
            --shadow-hover: 0 14px 38px rgba(31, 43, 36, .10);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-num: "Inter", "Barlow Condensed", "Arial Narrow", sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 130px;
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--text);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--ink);
            text-decoration: none;
            transition: color .25s ease, background .25s ease, border-color .25s ease;
        }

        a:hover {
            color: var(--kiwi);
        }

        button, input {
            font-family: inherit;
        }

        button:focus-visible, a:focus-visible {
            outline: 3px solid rgba(62, 142, 90, .55);
            outline-offset: 3px;
            border-radius: 6px;
        }

        ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--ink);
            line-height: 1.3;
            font-weight: 700;
            margin-top: 0;
        }

        p {
            margin-top: 0;
        }

        .container {
            max-width: 1320px;
        }

        .section {
            padding: 88px 0;
        }

        .section-alt {
            background: var(--white);
        }

        .section-paper {
            background: var(--paper-strong);
        }

        .section-bg {
            background: rgba(255, 255, 255, .5);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--kiwi);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--acid);
        }

        .section-title {
            font-size: clamp(1.65rem, 3vw, 2.35rem);
            letter-spacing: -.02em;
            margin: 8px 0 12px;
        }

        .section-sub {
            color: var(--muted);
            max-width: 700px;
            font-size: 16px;
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .btn {
            border-radius: var(--radius-sm);
            font-weight: 600;
            padding: 12px 22px;
            border: 1px solid transparent;
            transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
        }

        .btn-lg {
            padding: 14px 28px;
            font-size: 16px;
        }

        .btn-kiwi {
            background: var(--kiwi);
            color: #fff;
        }

        .btn-kiwi:hover, .btn-kiwi:focus {
            background: var(--kiwi-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(62, 142, 90, .22);
        }

        .btn-dark {
            background: var(--deep);
            color: #fff;
        }

        .btn-dark:hover {
            background: var(--ink);
            color: #fff;
        }

        .btn-ghost {
            background: transparent;
            border-color: var(--line-strong);
            color: var(--deep);
        }

        .btn-ghost:hover {
            background: var(--kiwi-pale);
            border-color: var(--kiwi);
            color: var(--kiwi-deep);
        }

        .btn-ghost-light {
            background: transparent;
            border-color: rgba(255, 255, 255, .6);
            color: #fff;
        }

        .btn-ghost-light:hover {
            background: #fff;
            color: var(--deep);
        }

        .btn-dark-mode {
            background: var(--deep);
            color: #fff;
            border-color: var(--deep);
        }

        .btn-dark-mode:hover {
            background: #fff;
            color: var(--deep);
            border-color: rgba(255,255,255,.85);
            transform: translateY(-2px);
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 500;
            color: var(--kiwi-deep);
            background: var(--kiwi-soft);
            white-space: nowrap;
        }

        .chip-soft {
            background: var(--paper-strong);
            color: var(--muted);
        }

        .section-more {
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            gap: 8px;
            align-items: center;
            padding-bottom: 4px;
            border-bottom: 1px solid var(--line-strong);
        }

        .section-more i {
            transition: transform .25s ease;
        }

        .section-more:hover i {
            transform: translateX(4px);
        }

        /* ===== Header 双行频道导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1080;
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(14px);
            box-shadow: 0 1px 0 var(--line), 0 8px 28px rgba(31, 43, 36, .03);
        }

        .topbar {
            min-height: 68px;
            border-bottom: 1px solid var(--line);
            background: rgba(255, 255, 255, .96);
        }

        .topbar__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 13px;
            background: var(--kiwi);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            position: relative;
            box-shadow: 0 10px 18px rgba(62, 142, 90, .20);
        }

        .brand-mark::after {
            content: "";
            position: absolute;
            width: 7px;
            height: 7px;
            background: var(--acid);
            border-radius: 50%;
            right: 6px;
            top: 6px;
            border: 2px solid #fff;
        }

        .brand-copy {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .brand-name {
            font-size: 21px;
            font-weight: 800;
            color: var(--deep);
            letter-spacing: .01em;
        }

        .brand-note {
            font-size: 11px;
            color: var(--muted);
            letter-spacing: .08em;
        }

        .header-tools {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .search-box {
            position: relative;
            width: min(320px, 24vw);
        }

        .search-box input {
            width: 100%;
            height: 40px;
            border: 1px solid transparent;
            border-radius: var(--radius-full);
            background: var(--paper-strong);
            padding: 0 44px 0 40px;
            font-size: 14px;
            transition: border-color .25s ease, background .25s ease;
        }

        .search-box input:focus {
            outline: none;
            background: #fff;
            border-color: var(--kiwi);
            box-shadow: 0 0 0 3px rgba(62, 142, 90, .10);
        }

        .search-box i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted);
            font-size: 14px;
            pointer-events: none;
        }

        .search-box button {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 0;
            background: var(--kiwi);
            color: #fff;
            font-size: 13px;
        }

        .header-btn {
            border-radius: var(--radius-sm);
            border: 1px solid var(--line-strong);
            background: #fff;
            color: var(--deep);
            font-size: 14px;
            font-weight: 600;
            padding: 9px 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .header-btn i {
            color: var(--kiwi);
            font-size: 15px;
        }

        .header-btn:hover {
            border-color: var(--kiwi);
            background: var(--kiwi-pale);
            color: var(--kiwi-deep);
        }

        .header-btn.active {
            border-color: var(--kiwi);
            background: var(--kiwi);
            color: #fff;
        }

        .header-btn.active i {
            color: var(--acid);
        }

        .channel-bar {
            background: #EDF1EB;
            min-height: 50px;
            position: relative;
        }

        .channel-bar__inner {
            display: flex;
            align-items: center;
            gap: 28px;
            min-height: 50px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .channel-bar__inner::-webkit-scrollbar {
            display: none;
        }

        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 50px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            position: relative;
        }

        .channel-link i {
            font-size: 13px;
            opacity: .8;
        }

        .channel-link:hover {
            color: var(--kiwi);
        }

        .channel-link.active {
            color: var(--kiwi-deep);
            border-bottom-color: var(--kiwi);
        }

        .channel-link.active i {
            color: var(--kiwi);
            opacity: 1;
        }

        .channel-pill {
            margin-left: auto;
            color: var(--muted);
            font-size: 13px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .channel-pill i {
            color: var(--acid);
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            overflow: hidden;
            color: #fff;
            background-color: var(--deep);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: top right;
            padding: 104px 0 72px;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(22, 33, 26, .96) 0%, rgba(22, 33, 26, .78) 52%, rgba(22, 33, 26, .38) 100%);
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            left: -70px;
            bottom: -180px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(62, 142, 90, .28);
            filter: blur(90px);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .22);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            margin-bottom: 24px;
        }

        .hero-kicker .hero-dot {
            width: 8px;
            height: 8px;
            background: var(--acid);
            border-radius: 50%;
        }

        .hero h1 {
            color: #fff;
            font-size: clamp(2.1rem, 4.6vw, 3.7rem);
            font-weight: 800;
            letter-spacing: -.03em;
            line-height: 1.15;
            max-width: 780px;
            margin-bottom: 18px;
            text-wrap: balance;
        }

        .hero-lead {
            color: rgba(255, 255, 255, .82);
            font-size: 17px;
            line-height: 1.8;
            max-width: 640px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-stat-wrap {
            margin-top: 54px;
            border-top: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .04);
            border-radius: var(--radius-card);
            padding: 18px 20px 12px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .hero-stat {
            color: #fff;
            padding: 8px 4px;
        }

        .hero-stat strong {
            display: block;
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 4px;
        }

        .hero-stat strong span {
            color: var(--acid);
            font-size: 18px;
            margin-right: 2px;
        }

        .hero-stat small {
            color: rgba(255, 255, 255, .62);
            font-size: 12px;
            letter-spacing: .03em;
        }

        .hero-art {
            display: flex;
            justify-content: flex-end;
        }

        .hero-art-panel {
            width: 100%;
            max-width: 420px;
            background: linear-gradient(145deg, rgba(62, 142, 90, .25), rgba(31, 43, 36, .20));
            border: 1px solid rgba(255, 255, 255, .24);
            border-radius: 22px;
            padding: 24px 24px 28px;
            backdrop-filter: blur(8px);
        }

        .hero-art-index {
            font-family: var(--font-num);
            font-size: 64px;
            line-height: 1;
            color: rgba(255, 255, 255, .9);
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .hero-art-index span {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,.65);
            background: rgba(255,255,255,.12);
            padding: 6px 10px;
            border-radius: var(--radius-full);
        }

        .hero-art-panel h3 {
            color: #fff;
            font-size: 26px;
            font-weight: 800;
            margin: 16px 0 6px;
        }

        .hero-art-panel p {
            color: rgba(255,255,255,.72);
            font-size: 14px;
            line-height: 1.7;
        }

        .hero-art-list {
            margin-top: 22px;
            display: grid;
            gap: 10px;
        }

        .hero-art-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .9);
            font-size: 14px;
        }

        .hero-art-list i {
            color: var(--acid);
            font-size: 13px;
        }

        /* ===== 频道目录 ===== */
        .catalog {
            background: #fff;
        }

        .catalog-wrapper {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .catalog-row {
            display: grid;
            grid-template-columns: 100px 1fr 120px;
            align-items: center;
            gap: 28px;
            padding: 27px 12px;
            border-bottom: 1px solid var(--line);
            transition: background .25s ease, padding-left .25s ease;
            position: relative;
        }

        .catalog-row:last-child {
            border-bottom: 0;
        }

        .catalog-row:hover {
            background: #F5F8F4;
            padding-left: 24px;
        }

        .catalog-num {
            font-family: var(--font-num);
            font-size: 42px;
            font-weight: 600;
            color: var(--line-strong);
            line-height: 1;
            transition: color .25s ease;
        }

        .catalog-row:hover .catalog-num {
            color: var(--kiwi);
        }

        .catalog-copy h3 {
            font-size: 21px;
            margin: 0 0 6px;
        }

        .catalog-copy h3 a {
            color: var(--ink);
        }

        .catalog-copy h3 a:hover {
            color: var(--kiwi);
        }

        .catalog-copy p {
            color: var(--muted);
            font-size: 14px;
            margin: 0;
            max-width: 720px;
        }

        .catalog-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            color: var(--muted);
            font-size: 13px;
        }

        .catalog-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--deep);
        }

        .catalog-arrow i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid var(--line-strong);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: background .25s ease, color .25s ease, border-color .25s ease;
        }

        .catalog-row:hover .catalog-arrow i {
            background: var(--kiwi);
            border-color: var(--kiwi);
            color: #fff;
        }

        /* ===== 最新发布 CMS ===== */
        .latest-section {
            background: var(--paper);
            position: relative;
        }

        .latest-section::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 220px;
            background: linear-gradient(180deg, #fff, rgba(255,255,255,.0));
            pointer-events: none;
        }

        .latest-section > .container {
            position: relative;
        }

        .news-col {
            margin-bottom: 28px;
        }

        .news-card {
            height: 100%;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 24px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        }

        .news-card:hover {
            border-color: rgba(62, 142, 90, .42);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .news-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .news-time {
            color: var(--muted);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .news-time i {
            color: var(--kiwi);
        }

        .news-title {
            display: block;
            font-size: 19px;
            line-height: 1.45;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 10px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .news-title:hover {
            color: var(--kiwi-deep);
        }

        .news-abs {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 18px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .news-card .mt-auto {
            margin-top: auto;
        }

        .news-link {
            font-size: 14px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-top: 1px solid var(--line);
            padding-top: 16px;
            width: 100%;
            color: var(--kiwi-deep);
        }

        .news-link i {
            font-size: 13px;
            transition: transform .25s ease;
        }

        .news-link:hover i {
            transform: translateX(5px);
        }

        .empty-state {
            border: 1px dashed var(--line-strong);
            border-radius: var(--radius-card);
            background: rgba(255, 255, 255, .62);
            padding: 52px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--muted);
        }

        .empty-state .empty-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--paper-strong);
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--kiwi);
            font-size: 24px;
            margin-bottom: 16px;
        }

        .empty-state p {
            margin: 0;
            font-size: 15px;
        }

        /* ===== 编辑推荐 ===== */
        .featured-section {
            background: var(--paper-strong);
        }

        .feature-main {
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 360px;
            margin-bottom: 26px;
            transition: box-shadow .28s ease;
        }

        .feature-main:hover {
            box-shadow: var(--shadow-hover);
        }

        .feature-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-photo {
            height: 100%;
            min-height: 300px;
            background: var(--kiwi-pale);
        }

        .feature-copy {
            padding: 44px 42px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-copy .chip {
            margin-bottom: 18px;
            align-self: flex-start;
        }

        .feature-copy h3 {
            font-size: clamp(1.3rem, 2vw, 2rem);
            line-height: 1.35;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .feature-copy h3 a {
            color: var(--deep);
        }

        .feature-copy h3 a:hover {
            color: var(--kiwi-deep);
        }

        .feature-copy p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--kiwi-deep);
            align-self: flex-start;
        }

        .feature-link span {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid var(--kiwi);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .25s ease;
        }

        .feature-link:hover span {
            background: var(--kiwi);
            color: #fff;
        }

        .feature-side-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            border: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            transition: box-shadow .28s ease, transform .28s ease;
        }

        .feature-side-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .feature-side-card .side-title {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .feature-side-card .side-title a {
            color: var(--ink);
        }

        .feature-side-card .side-title a:hover {
            color: var(--kiwi);
        }

        .feature-side-card .side-summary {
            color: var(--muted);
            font-size: 14px;
        }

        .feature-side-card .side-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 22px;
            border-top: 1px solid var(--line);
        }

        .feature-side-card .photo-cover {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .feature-side-card .photo-cover img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .side-tag {
            color: var(--muted);
            font-size: 13px;
        }

        /* ===== 收藏 / 分享 CTA ===== */
        .collect-cta {
            position: relative;
            overflow: hidden;
            background: var(--deep);
            border-radius: 24px;
            padding: 66px 56px;
            color: rgba(255,255,255,.8);
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
        }

        .collect-cta::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(103deg, rgba(24,34,28,.97), rgba(24,34,28,.72));
            border-radius: 24px;
        }

        .collect-cta .cta-inner {
            position: relative;
            z-index: 2;
        }

        .collect-cta h2 {
            color: #fff;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 800;
            letter-spacing: -.02em;
            max-width: 760px;
            margin-bottom: 16px;
        }

        .collect-cta .cta-desc {
            color: rgba(255,255,255,.78);
            max-width: 660px;
            font-size: 16px;
            margin-bottom: 34px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .cta-note {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 28px;
            color: rgba(255,255,255,.6);
            font-size: 13px;
        }

        .cta-note i {
            color: var(--acid);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: #fff;
        }

        .faq-ax {
            max-width: 880px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid var(--line) !important;
            border-radius: var(--radius-card) !important;
            margin-bottom: 14px;
            background: #fff;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .accordion-button {
            padding: 22px 26px;
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            background: #fff;
            border-radius: var(--radius-card) !important;
            box-shadow: none !important;
        }

        .accordion-button strong {
            color: var(--kiwi);
            margin-right: 10px;
            font-family: var(--font-num);
        }

        .accordion-button:not(.collapsed) {
            color: var(--ink);
            background: var(--kiwi-pale);
        }

        .accordion-button:not(.collapsed)::after {
            filter: none;
            transform: rotate(-180deg);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(62, 142, 90, .18) !important;
            border-radius: var(--radius-card) !important;
        }

        .accordion-body {
            padding: 6px 26px 24px;
            color: var(--text);
            font-size: 15px;
            line-height: 1.8;
            background: var(--kiwi-pale);
            border-radius: 0 0 var(--radius-card) var(--radius-card);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--deep);
            color: rgba(255,255,255,.78);
            padding-top: 64px;
        }

        .footer-top {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,.12);
        }

        .footer-brand .brand {
            display: flex;
            margin-bottom: 14px;
        }

        .footer-brand .brand-name {
            color: #fff;
        }

        .footer-brand .brand-note {
            color: rgba(255,255,255,.6);
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255,255,255,.68);
            max-width: 360px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 22px;
        }

        .footer-links a {
            color: rgba(255,255,255,.85);
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: var(--radius-full);
            padding: 7px 16px;
            font-size: 14px;
        }

        .footer-links a:hover {
            background: var(--kiwi);
            color: #fff;
            border-color: var(--kiwi);
        }

        .footer-title {
            color: #fff;
            font-size: 16px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer-nav {
            display: grid;
            gap: 10px;
        }

        .footer-nav a {
            color: rgba(255,255,255,.68);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-nav a i {
            color: var(--kiwi);
            font-size: 12px;
            transition: transform .2s ease;
        }

        .footer-nav a:hover {
            color: #fff;
        }

        .footer-nav a:hover i {
            transform: translateX(4px);
        }

        .footer-bottom {
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255,255,255,.1);
        }

        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: rgba(255,255,255,.55);
        }

        .footer-bottom a {
            color: rgba(255,255,255,.7);
        }

        .footer-bottom a:hover {
            color: var(--acid);
        }

        .powered {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,.55);
        }

        .powered i {
            color: var(--kiwi);
        }

        /* ===== 返回顶部 / Tooltip / Toast ===== */
        .back-top-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,.85);
            font-size: 14px;
        }

        .back-top-link i {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,.12);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
        }

        .back-top-link:hover {
            color: #fff;
        }

        .back-top-link:hover i {
            background: var(--kiwi);
        }

        .mini-toast {
            position: fixed;
            right: 20px;
            bottom: 24px;
            z-index: 1500;
            background: var(--deep);
            color: #fff;
            border-radius: 30px;
            padding: 13px 22px;
            box-shadow: 0 18px 36px rgba(31, 43, 36, .28);
            font-size: 14px;
            transform: translateY(80px);
            opacity: 0;
            pointer-events: none;
            transition: all .4s ease;
        }

        .mini-toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .mini-toast i {
            color: var(--acid);
            margin-right: 8px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1199.98px) {
            .search-box {
                width: min(260px, 22vw);
            }

            .feature-copy {
                padding: 34px 30px;
            }
        }

        @media (max-width: 991.98px) {
            body {
                scroll-padding-top: 110px;
            }

            .topbar__inner {
                padding: 8px 0;
                min-height: 62px;
            }

            .topbar {
                min-height: 62px;
            }

            .search-box {
                display: none;
            }

            .header-btn span.hide-mobile {
                display: none;
            }

            .header-btn {
                padding: 9px 12px;
            }

            .hero {
                padding: 64px 0 48px;
            }

            .hero-art {
                margin-top: 36px;
                justify-content: flex-start;
            }

            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }

            .feature-main {
                grid-template-columns: 1fr;
            }

            .feature-photo {
                min-height: 280px;
                max-height: 360px;
            }

            .collect-cta {
                padding: 48px 28px;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 60px 0;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .channel-bar__inner {
                gap: 18px;
            }

            .channel-pill {
                display: none;
            }

            .channel-link {
                height: 46px;
                font-size: 14px;
            }

            .catalog-row {
                grid-template-columns: 58px 1fr;
                gap: 12px;
                padding: 22px 8px;
            }

            .catalog-num {
                font-size: 34px;
            }

            .catalog-meta {
                grid-column: 2;
                align-items: flex-start;
                flex-direction: row;
                justify-content: flex-start;
                padding-top: 4px;
            }

            .catalog-arrow {
                font-size: 13px;
            }

            .catalog-row:hover {
                padding-left: 8px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px 10px;
            }

            .news-card {
                padding: 22px;
            }

            .feature-side-card {
                margin-top: 18px;
            }

            .collect-cta {
                border-radius: 18px;
                padding: 40px 24px;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .brand-name {
                font-size: 18px;
            }

            .brand-note {
                display: none;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .hero {
                background-position: 60% 20%;
                padding: 52px 0 40px;
            }

            .hero h1 {
                font-size: 1.95rem;
            }

            .hero-lead {
                font-size: 15px;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .catalog-copy h3 {
                font-size: 18px;
            }

            .catalog-copy p {
                font-size: 13px;
            }

            .feature-copy h3 {
                font-size: 1.35rem;
            }

            .feature-copy p {
                font-size: 14px;
            }

            .feature-photo {
                min-height: 220px;
            }

            .news-top {
                align-items: flex-start;
            }

            .collect-cta h2 {
                font-size: 1.55rem;
            }

            .cta-actions .btn {
                flex: 1;
            }

            .footer-top .footer-links a {
                font-size: 13px;
            }
        }

        @media (max-width: 375px) {
            .brand-name {
                font-size: 16px;
                letter-spacing: -.01em;
            }

            .header-btn {
                font-size: 13px;
            }

            .channel-link {
                font-size: 13px;
            }

            .hero-art-panel {
                padding: 18px;
            }

            .hero-art-index {
                font-size: 50px;
            }

            .collect-cta {
                padding: 34px 18px;
            }
        }

        @media (max-width: 320px) {
            .brand-name {
                font-size: 15px;
            }

            .brand-mark {
                display: none;
            }

            .channel-link i {
                display: none;
            }
        }

/* roulang page: article */
:root {
            --kiwi: #3E8E5A;
            --kiwi-dark: #2F7048;
            --kiwi-soft: #E6F0E8;
            --kiwi-pale: #F2F7F2;
            --forest: #1F2B24;
            --seed: #3A2F2A;
            --gold: #DFA429;
            --leaf: #F0F2ED;
            --paper: #F7F7F4;
            --white: #FFFFFF;
            --ink-strong: #16211A;
            --ink-body: #3E4A42;
            --ink-muted: #6D7A70;
            --line: #DCE4DC;
            --line-deep: #C3D2C4;
            --radius: 14px;
            --radius-btn: 8px;
            --shadow-card: 0 4px 18px rgba(31, 43, 36, 0.04);
            --shadow-hover: 0 8px 24px rgba(31, 43, 36, 0.08);
            --space: 16px;
            --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            --font-num: "Inter", "Barlow Condensed", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            background: var(--paper);
            color: var(--ink-body);
            line-height: 1.75;
            font-size: 16px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--ink-strong);
            font-weight: 800;
            line-height: 1.3;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a:hover {
            color: var(--kiwi-dark);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1320px;
        }

        .article-page {
            background: var(--paper);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1080;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(31, 43, 36, 0.06);
        }

        .header-top {
            background: var(--white);
        }

        .header-top__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 20px;
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 0 0 auto;
        }

        .brand-mark {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: var(--kiwi);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 6px 14px rgba(62, 142, 90, 0.18);
        }

        .brand-copy {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-weight: 900;
            color: var(--ink-strong);
            font-size: 20px;
            letter-spacing: 0.02em;
        }

        .brand-note {
            color: var(--ink-muted);
            font-size: 12px;
            letter-spacing: 0.08em;
        }

        .header-tools {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-search {
            display: flex;
            align-items: center;
            background: var(--leaf);
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 4px 4px 4px 16px;
            transition: all 0.25s ease;
            width: 260px;
        }

        .header-search:focus-within {
            border-color: var(--kiwi);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(62, 142, 90, 0.1);
        }

        .header-search i {
            color: var(--ink-muted);
            font-size: 14px;
            margin-right: 8px;
        }

        .header-search input {
            border: 0;
            background: transparent;
            outline: none;
            font-size: 14px;
            color: var(--ink-strong);
            flex: 1;
            min-width: 0;
        }

        .header-search button {
            border: 0;
            background: var(--kiwi);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 999px;
            transition: background 0.2s;
        }

        .header-search button:hover {
            background: var(--kiwi-dark);
        }

        .header-btn {
            border: 1px solid var(--line-deep);
            background: var(--white);
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-strong);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
        }

        .header-btn i {
            color: var(--kiwi);
        }

        .header-btn:hover {
            border-color: var(--kiwi);
            background: var(--kiwi-soft);
        }

        .channel-bar {
            background: var(--kiwi-pale);
            border-top: 1px solid rgba(62, 142, 90, 0.06);
        }

        .channel-bar__inner {
            display: flex;
            align-items: center;
            gap: 8px;
            min-height: 52px;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: thin;
        }

        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-body);
            padding: 8px 14px;
            border-radius: 999px;
            white-space: nowrap;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .channel-link i {
            color: var(--kiwi);
            font-size: 13px;
        }

        .channel-link:hover {
            background: var(--white);
            color: var(--kiwi-dark);
            border-color: var(--line);
        }

        .channel-link.active {
            background: var(--white);
            color: var(--kiwi-dark);
            font-weight: 700;
            border-color: rgba(62, 142, 90, 0.16);
            box-shadow: 0 2px 10px rgba(62, 142, 90, 0.07);
        }

        .channel-pill {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--forest);
            background: rgba(62, 142, 90, 0.08);
            border-radius: 999px;
            padding: 7px 12px;
            white-space: nowrap;
        }

        .channel-pill i {
            color: var(--kiwi);
            font-size: 7px;
        }

        /* Main */
        .post-hero {
            background: var(--white);
            border-bottom: 1px solid rgba(31, 43, 36, 0.06);
            padding: 40px 0 34px;
        }

        .breadcrumb-wrap {
            margin-bottom: 14px;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 13px;
            color: var(--ink-muted);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: "·";
            color: var(--ink-muted);
        }

        .breadcrumb-item a {
            color: var(--ink-muted);
            transition: color 0.2s;
        }

        .breadcrumb-item a:hover {
            color: var(--kiwi-dark);
        }

        .breadcrumb-item.active {
            color: var(--ink-strong);
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 420px;
        }

        .post-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--kiwi-soft);
            color: var(--kiwi-dark);
            font-size: 13px;
            font-weight: 600;
            border-radius: 999px;
            padding: 6px 12px;
            margin-bottom: 16px;
        }

        .post-kicker i {
            color: var(--kiwi);
        }

        .post-hero h1 {
            font-size: clamp(1.8rem, 3.6vw, 2.9rem);
            max-width: 960px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 12px;
            color: var(--ink-strong);
        }

        .post-lead {
            font-size: 16px;
            color: var(--ink-body);
            max-width: 860px;
            margin-bottom: 18px;
        }

        .post-meta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 18px;
            font-size: 14px;
            color: var(--ink-muted);
        }

        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .meta-item i {
            color: var(--kiwi);
        }

        .meta-cat {
            background: var(--leaf);
            border-radius: 999px;
            padding: 5px 12px;
            font-weight: 600;
            color: var(--kiwi-dark);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .post-body-section {
            padding: 56px 0 80px;
        }

        .article-grid {
            align-items: flex-start;
        }

        .article-panel {
            background: var(--white);
            border-radius: var(--radius);
            padding: 34px 38px;
            border: 1px solid rgba(31, 43, 36, 0.06);
            box-shadow: var(--shadow-card);
        }

        .article-body {
            color: #2f3a33;
            font-size: 16.5px;
            line-height: 1.9;
        }

        .article-body > *:last-child {
            margin-bottom: 0;
        }

        .article-body p {
            margin-bottom: 22px;
        }

        .article-body h2 {
            font-size: 1.55rem;
            font-weight: 800;
            margin: 2rem 0 1rem;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--leaf);
        }

        .article-body h3 {
            font-size: 1.18rem;
            font-weight: 700;
            margin: 1.6rem 0 0.8rem;
        }

        .article-body blockquote {
            border-left: 4px solid var(--kiwi);
            background: var(--leaf);
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 26px 0;
            color: var(--ink-body);
            font-style: normal;
        }

        .article-body img {
            border-radius: 14px;
            margin: 24px 0;
            box-shadow: var(--shadow-card);
        }

        .article-body a {
            color: var(--kiwi-dark);
            text-decoration: underline;
            text-decoration-color: rgba(62, 142, 90, 0.35);
            text-underline-offset: 3px;
        }

        .article-body a:hover {
            color: var(--seed);
        }

        .article-body ul,
        .article-body ol {
            padding-left: 1.25rem;
            margin-bottom: 22px;
        }

        .article-body li {
            margin-bottom: 8px;
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 26px 0;
        }

        .article-body th,
        .article-body td {
            border-bottom: 1px solid var(--line);
            padding: 12px 14px;
            text-align: left;
        }

        .article-body th {
            background: var(--leaf);
            font-weight: 700;
            color: var(--ink-strong);
        }

        .article-body pre {
            background: var(--forest);
            color: #dce9df;
            border-radius: 12px;
            padding: 20px;
            overflow-x: auto;
        }

        .article-body code {
            font-family: "Menlo", "Consolas", monospace;
            font-size: 14px;
        }

        .not-found-box {
            border: 1px dashed var(--line-deep);
            border-radius: var(--radius);
            background: var(--kiwi-pale);
            padding: 80px 30px;
            text-align: center;
        }

        .not-found-box i {
            font-size: 54px;
            color: var(--kiwi);
            opacity: 0.35;
            display: block;
            margin-bottom: 18px;
        }

        .not-found-box h2 {
            font-weight: 800;
        }

        .not-found-box p {
            color: var(--ink-muted);
            max-width: 420px;
            margin: 6px auto 24px;
        }

        .not-found-box .btn {
            min-width: 160px;
        }

        /* Aside */
        .side-panel {
            position: sticky;
            top: 130px;
        }

        .aside-card {
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid rgba(31, 43, 36, 0.06);
            box-shadow: var(--shadow-card);
            padding: 22px;
            margin-bottom: 20px;
        }

        .aside-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 800;
            color: var(--ink-strong);
            margin-bottom: 14px;
        }

        .aside-title i {
            color: var(--kiwi);
        }

        .aside-meta-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .aside-meta-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--ink-body);
            padding: 10px 0;
            border-bottom: 1px dashed var(--line);
        }

        .aside-meta-list li:last-child {
            border-bottom: 0;
        }

        .aside-meta-list li i {
            color: var(--kiwi);
            width: 18px;
            font-size: 13px;
        }

        .aside-note {
            font-size: 13px;
            color: var(--ink-muted);
            background: var(--kiwi-pale);
            border-radius: 10px;
            padding: 12px 14px;
            margin-top: 14px;
            line-height: 1.7;
        }

        .channel-side-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .channel-side-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--kiwi-pale);
            border-radius: 10px;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .channel-side-item:hover {
            border-color: rgba(62, 142, 90, 0.2);
            background: var(--kiwi-soft);
        }

        .channel-side-item i {
            color: var(--kiwi);
            font-size: 15px;
        }

        .channel-side-item span {
            font-size: 14px;
            font-weight: 600;
            color: var(--forest);
        }

        .side-fav-btn {
            width: 100%;
            border: 1px solid rgba(62, 142, 90, 0.2);
            background: var(--white);
            color: var(--kiwi-dark);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-weight: 600;
        }

        .side-fav-btn i {
            color: var(--gold);
        }

        .side-fav-btn:hover {
            background: var(--kiwi-soft);
            border-color: var(--kiwi);
        }

        /* Related section */
        .related-section {
            background: var(--white);
            border-top: 1px solid rgba(31, 43, 36, 0.05);
            padding: 64px 0;
        }

        .section-title-wrap {
            margin-bottom: 34px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
        }

        .section-label {
            color: var(--kiwi);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .section-title {
            font-size: clamp(1.4rem, 2.6vw, 2rem);
            font-weight: 900;
            color: var(--ink-strong);
            margin: 0;
        }

        .section-more {
            color: var(--ink-muted);
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }

        .section-more i {
            margin-left: 6px;
            transition: transform 0.2s;
            color: var(--kiwi);
        }

        .section-more:hover i {
            transform: translateX(4px);
        }

        .related-card {
            border: 0;
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
            border: 1px solid rgba(31, 43, 36, 0.05);
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .related-media {
            display: block;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: var(--leaf);
        }

        .related-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-card:hover .related-media img {
            transform: scale(1.04);
        }

        .related-body {
            padding: 22px;
        }

        .related-tag {
            display: inline-block;
            background: var(--kiwi-soft);
            color: var(--kiwi-dark);
            font-size: 12px;
            font-weight: 600;
            border-radius: 999px;
            padding: 4px 10px;
            margin-bottom: 10px;
        }

        .related-body h3 {
            font-size: 18px;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .related-body h3 a:hover {
            color: var(--kiwi-dark);
        }

        .related-body p {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .related-meta {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--ink-muted);
        }

        .related-meta i {
            color: var(--kiwi);
        }

        /* FAQ */
        .faq-section {
            background: var(--paper);
            padding: 64px 0;
        }

        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid rgba(31, 43, 36, 0.08) !important;
            border-radius: var(--radius) !important;
            background: var(--white);
            overflow: hidden;
            margin-bottom: 14px;
            box-shadow: none;
        }

        .accordion-button {
            background: var(--white);
            color: var(--ink-strong);
            font-weight: 700;
            font-size: 16px;
            padding: 20px 24px;
            box-shadow: none !important;
            border: 0 !important;
            align-items: center;
            gap: 10px;
        }

        .accordion-button:focus {
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--kiwi-pale);
            color: var(--kiwi-dark);
        }

        .accordion-button::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f059";
            color: var(--kiwi);
            margin-right: 8px;
        }

        .accordion-button::after {
            background: none;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f078";
            color: var(--kiwi-dark);
            transition: transform 0.2s;
            width: auto;
            height: auto;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            background: none;
        }

        .accordion-body {
            background: var(--white);
            color: var(--ink-body);
            padding: 0 54px 20px 48px;
            border-top: 0;
            font-size: 15px;
        }

        .accordion-button:not(.collapsed) + .accordion-body {
            background: var(--kiwi-pale);
        }

        .accordion-item:first-of-type .accordion-button {
            border-radius: var(--radius) !important;
        }

        .accordion-item:last-of-type .accordion-button.collapsed {
            border-radius: var(--radius) !important;
        }

        /* CTA */
        .cta-block {
            position: relative;
            background: linear-gradient(105deg, rgba(31, 43, 36, 0.94), rgba(31, 43, 36, 0.7)), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            color: #edf2ec;
            padding: 74px 0 78px;
        }

        .cta-inner {
            max-width: 820px;
        }

        .cta-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #b8dcbf;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 14px;
        }

        .cta-block h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.5rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .cta-block p {
            color: rgba(237, 242, 236, 0.82);
            font-size: 16px;
            margin-bottom: 28px;
        }

        .btn-cta-light {
            background: #fff;
            color: var(--forest);
            border: 0;
            border-radius: var(--radius-btn);
            font-weight: 700;
            padding: 11px 24px;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta-light:hover {
            background: var(--kiwi);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-light-custom {
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #edf2ec;
            border-radius: var(--radius-btn);
            padding: 10px 22px;
            font-weight: 600;
            background: transparent;
            transition: all 0.25s;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--forest);
        }

        /* Buttons */
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all 0.25s ease;
        }

        .btn-primary {
            background: var(--kiwi);
            border-color: var(--kiwi);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--kiwi-dark);
            border-color: var(--kiwi-dark);
            transform: translateY(-1px);
        }

        .btn-outline-dark {
            border: 1px solid var(--forest);
            color: var(--forest);
            background: transparent;
        }

        .btn-outline-dark:hover {
            background: var(--forest);
            color: #fff;
        }

        /* Footer */
        .site-footer {
            background: var(--forest);
            color: rgba(237, 242, 236, 0.78);
            padding-top: 60px;
        }

        .footer-top {
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(237, 242, 236, 0.08);
        }

        .footer-brand .brand {
            margin-bottom: 16px;
        }

        .footer-brand .brand-mark {
            background: var(--kiwi-dark);
        }

        .footer-brand .brand-name {
            color: #fff;
        }

        .footer-brand .brand-note {
            color: rgba(237, 242, 236, 0.52);
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(237, 242, 236, 0.64);
            max-width: 420px;
            line-height: 1.8;
            margin-top: 14px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin-top: 16px;
            font-size: 14px;
            color: rgba(237, 242, 236, 0.62);
        }

        .footer-links a {
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 14px;
        }

        .footer-nav a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: rgba(237, 242, 236, 0.62);
            transition: all 0.2s;
        }

        .footer-nav a:hover {
            color: #fff;
            padding-left: 3px;
        }

        .footer-nav a i {
            font-size: 12px;
            color: var(--kiwi);
        }

        .footer-bottom {
            padding: 22px 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            color: rgba(237, 242, 236, 0.5);
            font-size: 13px;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom .powered i {
            color: var(--kiwi);
            margin-right: 4px;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .header-search {
                width: 190px;
            }

            .article-panel {
                padding: 24px 20px;
            }

            .breadcrumb-item.active {
                max-width: 240px;
            }

            .side-panel {
                position: static;
            }

            .channel-pill {
                margin-left: 0;
                display: none;
            }

            .post-body-section {
                padding: 44px 0 60px;
            }
        }

        @media (max-width: 767.98px) {
            .header-top__inner {
                flex-wrap: wrap;
                min-height: auto;
                row-gap: 8px;
            }

            .header-tools {
                width: 100%;
                justify-content: space-between;
            }

            .header-search {
                flex: 1;
                width: auto;
            }

            .brand-name {
                font-size: 18px;
            }

            .post-hero h1 {
                font-size: 1.7rem;
            }

            .post-hero {
                padding: 28px 0 24px;
            }

            .related-section {
                padding: 50px 0;
            }

            .faq-section,
            .cta-block {
                padding: 50px 0;
            }

            .breadcrumb-item.active {
                max-width: 130px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .accordion-body {
                padding: 0 16px 18px 18px;
            }
        }

        @media (max-width: 575.98px) {
            .header-btn {
                white-space: nowrap;
                font-size: 13px;
                padding: 6px 10px;
            }

            .header-btn i {
                font-size: 13px;
            }

            .header-search button {
                font-size: 13px;
                padding: 5px 12px;
            }

            .article-panel {
                padding: 18px 14px;
            }

            .article-body {
                font-size: 16px;
                line-height: 1.85;
            }

            .channel-bar__inner::-webkit-scrollbar {
                display: none;
            }

            .channel-bar__inner {
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .post-meta-row {
                gap: 8px 10px;
            }

            .section-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 375px) {
            .header-tools {
                align-items: stretch;
                flex-wrap: wrap;
            }

            .header-search {
                min-width: 100%;
                order: 2;
            }
        }

/* roulang page: category1 */
:root {
            --kiwi: #3E8E5A;
            --kiwi-deep: #2F7048;
            --kiwi-soft: #E4EFE7;
            --kiwi-mist: #EEF3EE;
            --melon: #DFA429;
            --ink: #1F2B24;
            --seed: #3A2F2A;
            --paper: #F7F7F4;
            --paper-deep: #F0F2ED;
            --card-bg: #FFFFFF;
            --heading: #16211A;
            --text: #3E4A42;
            --text-soft: #6D7A70;
            --line: rgba(31, 43, 36, 0.1);
            --radius: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 8px 24px rgba(31, 43, 36, 0.06);
            --shadow-hover: 0 14px 36px rgba(31, 43, 36, 0.12);
            --font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: var(--font-family);
            background: var(--paper);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        body,
        .container,
        .btn,
        .form-control,
        .accordion-button {
            font-family: var(--font-family);
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        img {
            max-width: 100%;
        }
        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }
        section[id],
        div[id] {
            scroll-margin-top: 140px;
        }

        /* Header theme */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: #fff;
            border-bottom: 1px solid var(--line);
        }
        .topbar-wrap {
            background: #fff;
        }
        .topbar-inner {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }
        .brand-mark {
            width: 44px;
            height: 44px;
            border-radius: 13px;
            background: var(--kiwi);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            box-shadow: 0 6px 14px rgba(62, 142, 90, 0.24);
        }
        .brand-copy {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.18;
        }
        .brand-name {
            color: var(--heading);
            font-size: 21px;
            font-weight: 800;
            letter-spacing: 0.01em;
        }
        .brand-note {
            color: var(--text-soft);
            font-size: 12px;
            letter-spacing: 0.1em;
            margin-top: 3px;
        }
        .header-tools {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: var(--paper-deep);
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 0 6px 0 16px;
            height: 42px;
            transition: border-color 0.25s ease, background 0.25s ease;
            max-width: 260px;
        }
        .header-search:focus-within {
            background: #fff;
            border-color: var(--kiwi);
            box-shadow: 0 0 0 3px rgba(62, 142, 90, 0.14);
        }
        .header-search input {
            border: 0;
            outline: 0;
            background: transparent;
            width: 150px;
            font-size: 14px;
            color: var(--heading);
        }
        .header-search button {
            border: 0;
            background: transparent;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            color: var(--kiwi);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s ease;
        }
        .header-search button:hover {
            background: var(--kiwi-soft);
        }
        .btn-tool-icon {
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: #fff;
            color: var(--seed);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            transition: all 0.25s ease;
        }
        .btn-tool-icon:hover {
            color: var(--kiwi);
            border-color: var(--kiwi);
            background: var(--kiwi-soft);
        }
        .btn-brand {
            background: var(--kiwi);
            border: 1px solid var(--kiwi);
            color: #fff;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 20px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            white-space: nowrap;
            transition: all 0.25s ease;
        }
        .btn-brand:hover {
            background: var(--kiwi-deep);
            border-color: var(--kiwi-deep);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(62, 142, 90, 0.18);
        }
        .btn-brand:active {
            transform: translateY(0);
        }
        .btn-outline-ink {
            background: transparent;
            border: 1px solid var(--ink);
            color: var(--ink);
            height: 44px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.25s ease;
        }
        .btn-outline-ink:hover {
            background: var(--ink);
            color: #fff;
        }
        .btn-paper-outline {
            border: 1px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 22px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.25s ease;
        }
        .btn-paper-outline:hover {
            background: #fff;
            color: var(--ink);
            border-color: #fff;
        }
        .btn-ghost-white {
            background: transparent;
            color: #fff;
            border: 1px solid transparent;
            border-radius: 8px;
            height: 44px;
            padding: 0 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.25s ease;
        }
        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* Channel nav */
        .channel-bar {
            background: #f3f6f2;
            border-top: 1px solid rgba(31, 43, 36, 0.06);
            box-shadow: 0 2px 8px rgba(31, 43, 36, 0.03);
        }
        .channel-bar__inner {
            display: flex;
            align-items: center;
            gap: 4px;
            overflow-x: auto;
            scrollbar-width: none;
            min-height: 52px;
            padding-top: 4px;
            padding-bottom: 4px;
        }
        .channel-bar__inner::-webkit-scrollbar {
            display: none;
        }
        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 16px;
            color: var(--text);
            font-size: 14px;
            font-weight: 600;
            border-radius: 999px;
            white-space: nowrap;
            transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
        }
        .channel-link i {
            color: var(--kiwi);
            font-size: 13px;
        }
        .channel-link:hover {
            color: var(--kiwi-deep);
            background: #fff;
        }
        .channel-link.active {
            background: #fff;
            color: var(--kiwi-deep);
            box-shadow: inset 0 -2px 0 var(--kiwi), 0 4px 12px rgba(31, 43, 36, 0.04);
        }
        .channel-pill {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            background: var(--kiwi-soft);
            color: var(--kiwi-deep);
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        .channel-pill i {
            color: var(--kiwi);
            font-size: 8px;
        }

        /* Hero */
        .page-hero {
            position: relative;
            color: #fff;
            padding: 92px 0 84px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 20%;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(18, 28, 22, 0.86), rgba(23, 38, 30, 0.62) 70%, rgba(36, 56, 44, 0.42));
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .hero-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-size: 13px;
            color: rgba(237, 242, 236, 0.7);
            margin-bottom: 22px;
        }
        .hero-breadcrumb a {
            color: rgba(237, 242, 236, 0.82);
            border-bottom: 1px solid rgba(237, 242, 236, 0.24);
        }
        .hero-breadcrumb a:hover {
            border-color: #fff;
            color: #fff;
        }
        .hero-breadcrumb .sep {
            color: rgba(237, 242, 236, 0.36);
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #eaf2ec;
            height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            backdrop-filter: blur(6px);
        }
        .hero-kicker i {
            color: var(--melon);
            font-size: 9px;
        }
        .page-hero h1 {
            font-size: clamp(2.25rem, 4.6vw, 3.8rem);
            line-height: 1.14;
            font-weight: 800;
            color: #fff;
            margin: 0 0 18px;
            letter-spacing: -0.02em;
        }
        .page-hero h1 .text-brand {
            color: #9ad3ae;
        }
        .hero-lead {
            color: rgba(237, 242, 236, 0.82);
            max-width: 560px;
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 32px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .hero-focus-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 24px;
            backdrop-filter: blur(10px);
            color: #fff;
        }
        .hero-focus-card .card-head {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            color: #b7e0c5;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .hero-focus-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .hero-focus-list li {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 14px;
            color: rgba(237, 242, 236, 0.88);
        }
        .hero-focus-list li i {
            color: var(--melon);
            margin-top: 4px;
            font-size: 12px;
        }
        .hero-mini-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            font-size: 12px;
            color: rgba(237, 242, 236, 0.62);
        }

        /* Sections base */
        .category-section {
            padding: clamp(64px, 6vw, 96px) 0;
        }
        .category-section.bg-soft {
            background: var(--paper-deep);
        }
        .section-head {
            margin-bottom: 36px;
        }
        .section-head .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--kiwi);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .section-head .section-label i {
            font-size: 10px;
        }
        .section-head h2 {
            color: var(--heading);
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 800;
            line-height: 1.25;
            margin: 0;
        }
        .section-head p.lead {
            margin-top: 12px;
            max-width: 680px;
            color: var(--text);
            font-size: 16px;
        }

        /* Value strip */
        .value-card {
            background: #fff;
            border: 1px solid rgba(31, 43, 36, 0.07);
            border-radius: var(--radius);
            padding: 26px 22px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .value-card:hover {
            border-color: rgba(62, 142, 90, 0.35);
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
        .value-card-icon {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            background: var(--kiwi-soft);
            color: var(--kiwi);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            margin-bottom: 18px;
        }
        .value-card h3 {
            color: var(--heading);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .value-card p {
            color: var(--text);
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
        }

        /* Catalog cards */
        .focus-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px;
            height: 100%;
            position: relative;
            border: 1px solid var(--line);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .focus-card::after {
            content: '';
            position: absolute;
            right: -24px;
            bottom: -28px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--kiwi-soft);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .focus-card:hover {
            border-color: rgba(62, 142, 90, 0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .focus-card:hover::after {
            opacity: 1;
        }
        .focus-num {
            font-size: 15px;
            font-weight: 800;
            color: var(--kiwi);
            letter-spacing: 0.02em;
            margin-bottom: 14px;
        }
        .focus-card h3 {
            color: var(--heading);
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .focus-card p {
            color: var(--text);
            padding-right: 16px;
        }
        .focus-card .meta-tag {
            display: inline-flex;
            gap: 6px;
            color: var(--text-soft);
            font-size: 13px;
            margin-top: 14px;
        }
        .focus-card .meta-tag i {
            color: var(--kiwi);
        }
        .focus-card-action {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--kiwi-deep);
            font-weight: 600;
            font-size: 14px;
            margin-top: 16px;
            position: relative;
            z-index: 1;
        }
        .focus-card-action i {
            transition: transform 0.25s ease;
        }
        .focus-card:hover .focus-card-action i {
            transform: translateX(4px);
        }

        /* Showcase dark block */
        .showcase-dark {
            background: var(--ink);
            border-radius: 28px;
            color: #fff;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(31, 43, 36, 0.2);
        }
        .showcase-media {
            min-height: 380px;
            background-size: cover;
            background-position: center;
        }
        .showcase-body {
            padding: clamp(28px, 4vw, 60px);
        }
        .showcase-body .tag-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 999px;
            color: #d7eadd;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .showcase-body h2 {
            color: #fff;
            font-size: clamp(1.55rem, 3vw, 2.15rem);
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 16px;
        }
        .showcase-body > p {
            color: rgba(237, 242, 236, 0.75);
            margin-bottom: 22px;
        }
        .showcase-check {
            list-style: none;
            margin: 18px 0 28px;
            padding: 0;
        }
        .showcase-check li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 7px 0;
            color: rgba(237, 242, 236, 0.86);
            font-size: 15px;
        }
        .showcase-check li i {
            color: #7bc79a;
            font-size: 13px;
            margin-top: 6px;
        }
        .showcase-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .stat-box {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 16px;
            padding: 16px 12px;
            text-align: center;
        }
        .stat-box .stat-num {
            color: #9ad3ae;
            font-size: 26px;
            font-weight: 800;
            line-height: 1.1;
        }
        .stat-box .stat-num small {
            font-size: 14px;
            font-weight: 700;
        }
        .stat-box .stat-note {
            color: rgba(237, 242, 236, 0.58);
            font-size: 12px;
            margin-top: 6px;
        }

        /* Flow steps */
        .step-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 26px 24px 26px 78px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .step-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(62, 142, 90, 0.34);
        }
        .step-index {
            position: absolute;
            left: 22px;
            top: 24px;
            width: 40px;
            height: 40px;
            background: var(--kiwi-soft);
            color: var(--kiwi);
            font-size: 16px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }
        .step-card h3 {
            color: var(--heading);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .step-card p {
            font-size: 14px;
            color: var(--text-soft);
            margin: 0;
            line-height: 1.75;
        }

        /* Media feature */
        .feature-split {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
        }
        .feature-split:hover {
            box-shadow: var(--shadow-hover);
        }
        .feature-split img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
        }
        .feature-split-body {
            padding: 24px;
        }
        .feature-split-body .cat-label {
            font-size: 12px;
            color: var(--kiwi);
            font-weight: 700;
            background: var(--kiwi-soft);
            padding: 4px 10px;
            border-radius: 999px;
            display: inline-block;
        }
        .feature-split-body h3 {
            font-size: 19px;
            font-weight: 800;
            color: var(--heading);
            margin: 14px 0 10px;
        }
        .feature-split-body p {
            color: var(--text);
            font-size: 14px;
        }

        /* FAQ */
        .faq-wrap {
            max-width: 820px;
            margin: 0 auto;
        }
        .accordion {
            --bs-accordion-bg: #fff;
            --bs-accordion-border-color: var(--line);
            --bs-accordion-border-width: 1px;
            --bs-accordion-border-radius: 16px;
            --bs-accordion-inner-border-radius: 15px;
            --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(62, 142, 90, 0.14);
            --bs-accordion-active-bg: var(--kiwi-soft);
            --bs-accordion-active-color: var(--heading);
            --bs-accordion-btn-padding-y: 20px;
            --bs-accordion-btn-padding-x: 24px;
            --bs-accordion-body-padding-y: 16px;
            --bs-accordion-body-padding-x: 24px;
        }
        .accordion-item {
            margin-bottom: 12px;
            border-radius: 16px !important;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--line);
        }
        .accordion-button {
            font-weight: 800;
            color: var(--heading);
            font-size: 16px;
            background: #fff;
        }
        .accordion-button:not(.collapsed) {
            background: var(--kiwi-soft);
        }
        .accordion-button::before {
            content: 'Q';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: var(--kiwi-soft);
            color: var(--kiwi-deep);
            margin-right: 12px;
            border-radius: 10px;
            font-size: 13px;
            flex: 0 0 auto;
        }
        .accordion-button::after {
            background-size: 0 !important;
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            content: '\f107';
            font-size: 15px;
            color: var(--kiwi-deep);
        }
        .accordion-button:not(.collapsed)::after {
            background-image: none;
            transform: rotate(180deg);
        }
        .accordion-body {
            color: var(--text);
            font-size: 15px;
        }

        /* CTA */
        .cta-follow {
            background: linear-gradient(120deg, #3E8E5A 0%, #2F7048 60%, #254c38 100%);
            border-radius: 28px;
            color: #fff;
            padding: 58px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-follow::before {
            content: '';
            position: absolute;
            right: -70px;
            top: -70px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
        }
        .cta-follow::after {
            content: '';
            position: absolute;
            left: -50px;
            bottom: -90px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        .cta-follow h2 {
            color: #fff;
            font-weight: 800;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
        }
        .cta-follow p {
            color: rgba(255, 255, 255, 0.82);
            max-width: 620px;
            margin: 12px auto 30px;
            font-size: 16px;
        }
        .cta-btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        .btn-white-green {
            background: #fff;
            color: var(--kiwi-deep);
            border-radius: 8px;
            border: 1px solid #fff;
            padding: 0 27px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.25s ease;
        }
        .btn-white-green:hover {
            background: var(--melon);
            color: var(--ink);
            border-color: var(--melon);
            transform: translateY(-2px);
        }
        .btn-transparent-light {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.42);
            color: #fff;
            border-radius: 8px;
            height: 48px;
            padding: 0 27px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s ease;
        }
        .btn-transparent-light:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
        }

        /* Footer */
        .site-footer {
            background: var(--ink);
            color: rgba(237, 242, 236, 0.8);
            padding-top: 64px;
            font-size: 14px;
        }
        .site-footer .footer-brand .brand {
            margin-bottom: 16px;
        }
        .site-footer .brand-name {
            color: #fff;
        }
        .site-footer .brand-note {
            color: rgba(237, 242, 236, 0.55);
        }
        .footer-desc {
            color: rgba(237, 242, 236, 0.64);
            max-width: 440px;
            line-height: 1.85;
            margin: 18px 0 22px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.78);
            background: rgba(255, 255, 255, 0.07);
            border-radius: 7px;
            padding: 4px 13px;
            font-size: 13px;
            transition: all 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--ink);
            background: #b7e0c5;
        }
        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 18px;
        }
        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-nav a {
            color: rgba(237, 242, 236, 0.68);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }
        .footer-nav a i {
            font-size: 10px;
            color: #7bc79a;
        }
        .footer-nav a:hover {
            color: #b7e0c5;
            padding-left: 3px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 48px;
            padding: 22px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 8px 22px;
            font-size: 13px;
            color: rgba(237, 242, 236, 0.5);
        }
        .footer-bottom .powered i {
            color: var(--melon);
            margin-right: 5px;
        }

        /* Buttons focus */
        .btn:focus-visible,
        .form-control:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(62, 142, 90, 0.45);
            outline-offset: 2px;
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .page-hero {
                padding-top: 74px;
                padding-bottom: 66px;
            }
        }
        @media (max-width: 991.98px) {
            .topbar-inner {
                min-height: 64px;
            }
            .header-search {
                max-width: 200px;
            }
            .header-search input {
                width: 110px;
            }
            .showcase-media {
                min-height: 240px;
            }
            .page-hero h1 {
                font-size: clamp(2rem, 4vw, 3rem);
            }
            .hero-focus-card {
                margin-top: 38px;
            }
            .category-section {
                padding: 56px 0;
            }
        }
        @media (max-width: 767.98px) {
            .topbar-inner {
                gap: 10px;
            }
            .brand-name {
                font-size: 18px;
            }
            .brand-mark {
                width: 39px;
                height: 39px;
                font-size: 18px;
            }
            .header-search {
                max-width: 38px;
                padding-left: 10px;
                background: transparent;
            }
            .header-search input {
                width: 0;
                padding: 0;
            }
            .header-search:focus-within {
                background: #fff;
                border-color: var(--kiwi);
                max-width: 240px;
                position: absolute;
                right: 68px;
                top: 18px;
                z-index: 10;
                box-shadow: 0 8px 22px rgba(31, 43, 36, 0.12);
                padding-left: 16px;
            }
            .header-search:focus-within input {
                width: 150px;
                padding-right: 4px;
            }
            .topbar-cta {
                display: none;
            }
            .showcase-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .stat-box {
                padding: 14px 8px;
            }
            .stat-box .stat-num {
                font-size: 22px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }
            .channel-pill {
                display: none;
            }
            .channel-link {
                padding: 0 13px;
                font-size: 13px;
            }
            .page-hero {
                padding: 48px 0 54px;
            }
            .page-hero h1 {
                font-size: 2.05rem;
                margin-bottom: 14px;
            }
            .hero-lead {
                font-size: 15px;
                margin-bottom: 24px;
            }
            .hero-actions .btn-brand,
            .hero-actions .btn-paper-outline {
                height: 42px;
                font-size: 13px;
                padding: 0 18px;
            }
            .section-head {
                margin-bottom: 26px;
            }
            .focus-card,
            .step-card {
                padding: 24px 20px 24px 64px;
            }
            .step-index {
                left: 18px;
                top: 22px;
                width: 36px;
                height: 36px;
            }
            .cta-follow {
                padding: 42px 20px;
            }
            .footer-bottom {
                font-size: 12px;
            }
        }

/* roulang page: category2 */
:root {
            --kiwi: #3E8E5A;
            --kiwi-deep: #2F7048;
            --charcoal: #1F2B24;
            --ink: #16211A;
            --text: #3E4A42;
            --muted: #6D7A70;
            --paper: #F7F7F4;
            --soft: #F0F2ED;
            --card: #FFFFFF;
            --line: rgba(31, 43, 36, 0.12);
            --line-strong: rgba(31, 43, 36, 0.2);
            --point: #DFA429;
            --radius-lg: 14px;
            --radius-md: 8px;
            --shadow: 0 18px 44px rgba(31, 43, 36, 0.08);
            --shadow-hover: 0 22px 50px rgba(31, 43, 36, 0.12);
            --space: 96px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", "Noto Sans SC", sans-serif;
            background: var(--paper);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        a:not([class]) {
            color: var(--kiwi-deep);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        a:not([class]):hover {
            color: var(--kiwi);
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        button {
            border: 0;
            background: none;
            font: inherit;
        }
        :focus-visible {
            outline: 3px solid rgba(62, 142, 90, 0.45);
            outline-offset: 3px;
            border-radius: 4px;
        }
        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (max-width: 575px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1080;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(8px);
        }
        .site-header .container {
            max-width: 1320px;
        }
        .topbar {
            background: #fff;
            border-bottom: 1px solid rgba(31, 43, 36, 0.07);
        }
        .topbar__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 20px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 6px 0;
            min-width: max-content;
        }
        .brand__mark {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--kiwi);
            color: #fff;
            border-radius: 12px;
            font-size: 18px;
            box-shadow: 0 6px 14px rgba(62, 142, 90, 0.25);
        }
        .brand__text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .brand__text strong {
            font-size: 20px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: 0.01em;
        }
        .brand__text small {
            margin-top: 4px;
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 0.04em;
        }
        .topbar__tools {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-search {
            display: flex;
            align-items: center;
            width: 260px;
            background: var(--soft);
            border: 1px solid transparent;
            border-radius: 40px;
            padding: 2px 4px 2px 16px;
            transition: .25s ease;
        }
        .header-search:focus-within {
            background: #fff;
            border-color: var(--kiwi);
            box-shadow: 0 0 0 4px rgba(62, 142, 90, 0.12);
        }
        .header-search input {
            width: 100%;
            border: 0;
            background: transparent;
            font-size: 14px;
            color: var(--ink);
            padding: 8px 10px 8px 0;
            outline: none;
            line-height: 1.4;
        }
        .header-search input::placeholder {
            color: var(--muted);
        }
        .header-search button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--charcoal);
            color: #fff;
            transition: .25s ease;
        }
        .header-search button:hover {
            background: var(--kiwi-deep);
        }
        .btn,
        .btn:focus {
            border-radius: var(--radius-md);
        }
        .btn-soft {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--soft);
            border: 1px solid var(--line);
            color: var(--ink);
            font-size: 14px;
            font-weight: 600;
            padding: 9px 16px;
            border-radius: 40px;
            transition: .25s ease;
        }
        .btn-soft:hover {
            background: #fff;
            border-color: var(--kiwi);
            color: var(--kiwi-deep);
            transform: translateY(-1px);
        }
        .btn-soft.active,
        .btn-soft.saved {
            background: rgba(62, 142, 90, 0.12);
            border-color: var(--kiwi);
            color: var(--kiwi-deep);
        }
        .channel-bar {
            background: #FDFDFB;
        }
        .channel-bar__inner {
            display: flex;
            align-items: center;
            gap: 4px;
            min-height: 52px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--line) transparent;
        }
        .channel-bar__inner::-webkit-scrollbar {
            height: 4px;
        }
        .channel-bar__inner::-webkit-scrollbar-thumb {
            background: var(--line);
            border-radius: 4px;
        }
        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            color: var(--text);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
            border-radius: 30px;
            white-space: nowrap;
            transition: background .2s ease, color .2s ease;
        }
        .channel-link i {
            font-size: 14px;
            opacity: .75;
        }
        .channel-link:hover {
            color: var(--kiwi-deep);
            background: rgba(62, 142, 90, 0.08);
        }
        .channel-link.active {
            color: var(--kiwi-deep);
            background: rgba(62, 142, 90, 0.12);
        }
        .channel-link.active i {
            color: var(--kiwi);
        }
        .channel-pill {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 14px;
            font-size: 13px;
            color: var(--kiwi-deep);
            background: rgba(62, 142, 90, 0.08);
            border-radius: 30px;
            white-space: nowrap;
        }
        .channel-pill i {
            color: var(--kiwi);
            font-size: 8px;
        }
        @media (max-width: 991px) {
            .header-search {
                width: 200px;
            }
            .channel-link {
                padding: 8px 13px;
                font-size: 14px;
            }
        }
        @media (max-width: 767px) {
            .topbar__inner {
                min-height: 60px;
            }
            .header-search {
                width: 44px;
                background: transparent;
                border-radius: 50%;
                padding: 0;
                border: 0;
            }
            .header-search input {
                display: none;
            }
            .header-search button {
                background: var(--soft);
                color: var(--ink);
                width: 38px;
                height: 38px;
            }
            .topbar__tools .btn-soft span {
                display: none;
            }
            .btn-soft {
                padding: 8px 10px;
                border-radius: 50%;
                background: var(--soft);
                border-color: transparent;
            }
            .channel-link {
                padding: 8px 11px;
                font-size: 13px;
            }
            .channel-link i {
                display: none;
            }
            .channel-pill {
                display: none;
            }
        }
        @media (max-width: 390px) {
            .brand__text small {
                display: none;
            }
            .brand__text strong {
                font-size: 18px;
            }
            .brand__mark {
                width: 36px;
                height: 36px;
                border-radius: 10px;
            }
        }
        .guide-hero {
            position: relative;
            color: #fff;
            background-color: var(--charcoal);
            background-image: linear-gradient(110deg, rgba(22, 33, 26, 0.92) 0%, rgba(31, 43, 36, 0.75) 50%, rgba(31, 43, 36, 0.45) 100%), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            padding: 90px 0 76px;
            overflow: hidden;
        }
        .guide-hero::after {
            content: "";
            position: absolute;
            left: -80px;
            bottom: -120px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(62, 142, 90, 0.35) 0%, rgba(62, 142, 90, 0) 68%);
            pointer-events: none;
        }
        .guide-hero .container {
            position: relative;
            z-index: 2;
        }
        .crumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(237, 242, 236, 0.75);
            margin-bottom: 34px;
        }
        .crumb a:hover {
            color: #fff;
        }
        .crumb .sep {
            color: rgba(237, 242, 236, 0.4);
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .06em;
            color: #cbe8d3;
            background: rgba(62, 142, 90, 0.24);
            padding: 7px 16px;
            border-radius: 40px;
            margin-bottom: 18px;
        }
        .hero-eyebrow i {
            font-size: 10px;
            color: var(--point);
        }
        .guide-hero h1 {
            font-size: clamp(2rem, 4.6vw, 3.7rem);
            font-weight: 800;
            line-height: 1.18;
            color: #fff;
            max-width: 760px;
            margin-bottom: 20px;
            letter-spacing: -.01em;
        }
        .guide-hero h1 span {
            color: #8ACD9D;
        }
        .guide-hero__lead {
            max-width: 680px;
            font-size: 16px;
            line-height: 1.9;
            color: rgba(237, 242, 236, 0.88);
            margin-bottom: 30px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }
        .btn-kiwi {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--kiwi);
            color: #fff;
            border: 1px solid var(--kiwi);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 22px;
            border-radius: 9px;
            box-shadow: 0 10px 24px rgba(62, 142, 90, 0.28);
            transition: .25s ease;
        }
        .btn-kiwi:hover,
        .btn-kiwi:focus {
            background: var(--kiwi-deep);
            border-color: var(--kiwi-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(31, 43, 36, 0.2);
        }
        .btn-muted {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid rgba(237, 242, 236, 0.6);
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 22px;
            border-radius: 9px;
            transition: .25s ease;
        }
        .btn-muted:hover,
        .btn-muted:focus {
            background: #fff;
            border-color: #fff;
            color: var(--charcoal);
            transform: translateY(-2px);
        }
        .hero-facts {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 14px;
        }
        .hero-facts span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            color: rgba(237, 242, 236, 0.82);
            background: rgba(0, 0, 0, 0.18);
            padding: 7px 14px;
            border-radius: 30px;
            backdrop-filter: blur(4px);
        }
        .hero-facts i {
            color: var(--point);
        }
        @media (max-width: 767px) {
            .guide-hero {
                padding: 64px 0 58px;
            }
            .guide-hero__lead {
                font-size: 15px;
            }
            .hero-facts span {
                font-size: 12px;
                padding: 6px 12px;
            }
        }
        .section {
            padding-top: var(--space);
            padding-bottom: var(--space);
        }
        .section.bg-soft {
            background: var(--soft);
        }
        .section-head {
            display: flex;
            flex-direction: column;
            margin-bottom: 42px;
        }
        .section-head--split {
            flex-direction: row;
            align-items: end;
            justify-content: space-between;
            gap: 24px;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            color: var(--kiwi-deep);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .eyebrow i {
            font-size: 8px;
            color: var(--kiwi);
            width: 8px;
        }
        .section-head h2 {
            font-size: clamp(1.5rem, 2.8vw, 2.3rem);
            color: var(--ink);
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: -.01em;
        }
        .section-head p {
            max-width: 720px;
            color: var(--muted);
            margin-bottom: 0;
            font-size: 16px;
        }
        @media (max-width: 767px) {
            .section-head--split {
                flex-direction: column;
                align-items: stretch;
            }
        }
        .channel-intro {
            padding-bottom: 80px;
        }
        .intro-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .intro-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 28px 24px 24px;
            position: relative;
            transition: .3s ease;
        }
        .intro-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-6px);
            border-color: rgba(62, 142, 90, 0.38);
        }
        .intro-item__num {
            font-size: 13px;
            font-weight: 800;
            color: var(--kiwi);
            background: rgba(62, 142, 90, 0.1);
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 11px;
            margin-bottom: 22px;
            font-style: normal;
        }
        .intro-item i {
            font-size: 20px;
            color: var(--kiwi);
        }
        .intro-item h3 {
            font-size: 18px;
            color: var(--ink);
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .intro-item p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.85;
            margin-bottom: 0;
        }
        @media (max-width: 1199px) {
            .intro-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 575px) {
            .intro-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .intro-item {
                padding: 22px 18px 19px;
            }
            .intro-item__num {
                margin-bottom: 14px;
            }
        }
        .phase-band {
            background: var(--charcoal);
            color: rgba(237, 242, 236, 0.88);
            position: relative;
            overflow: hidden;
        }
        .phase-band::before {
            content: "";
            position: absolute;
            right: -70px;
            top: -120px;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            border: 55px solid rgba(62, 142, 90, 0.18);
            pointer-events: none;
        }
        .phase-band .section-head h2 {
            color: #fff;
        }
        .phase-band__intro {
            max-width: 540px;
        }
        .phase-band__intro p {
            color: rgba(237, 242, 236, 0.8);
        }
        .phase-steps {
            display: grid;
            gap: 16px;
        }
        .phase-step {
            display: flex;
            gap: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 20px 20px;
            transition: .3s ease;
        }
        .phase-step:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-3px);
        }
        .phase-step__num {
            color: #8ACD9D;
            font-weight: 800;
            font-size: 18px;
            background: rgba(62, 142, 90, 0.22);
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .phase-step h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .phase-step p {
            font-size: 14px;
            color: rgba(237, 242, 236, 0.7);
            margin-bottom: 0;
        }
        @media (max-width: 991px) {
            .phase-band__intro {
                margin-bottom: 34px;
            }
        }
        @media (max-width: 575px) {
            .phase-step {
                flex-direction: column;
                gap: 10px;
                padding: 18px;
            }
            .phase-step__num {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        .directory-wrap {
            padding-bottom: 82px;
        }
        .directory-grid {
            display: grid;
            grid-template-columns: 320px minmax(0, 1fr);
            gap: 30px;
            align-items: start;
        }
        .guide-aside {
            position: sticky;
            top: 150px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            box-shadow: 0 6px 18px rgba(31, 43, 36, 0.03);
        }
        .guide-aside__label {
            font-size: 13px;
            color: var(--muted);
            letter-spacing: .08em;
            font-weight: 700;
            padding: 0 14px;
            margin-bottom: 16px;
        }
        .guide-menu {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .guide-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 12px;
            border-radius: 9px;
            color: var(--text);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            transition: .22s ease;
        }
        .guide-menu a i {
            color: var(--muted);
            font-size: 14px;
        }
        .guide-menu a:hover {
            background: var(--soft);
            color: var(--ink);
        }
        .guide-menu a.active {
            background: rgba(62, 142, 90, 0.12);
            color: var(--kiwi-deep);
        }
        .guide-menu a.active i {
            color: var(--kiwi);
        }
        .guide-menu__num {
            display: inline-flex;
            margin-left: auto;
            font-size: 12px;
            color: var(--muted);
            font-weight: 700;
        }
        .guide-aside__note {
            margin-top: 22px;
            border-top: 1px dashed var(--line);
            padding-top: 17px;
            font-size: 13px;
            line-height: 1.8;
            color: var(--muted);
            padding-left: 14px;
            padding-right: 14px;
        }
        .guide-aside__note i {
            color: var(--point);
            margin-right: 4px;
        }
        @media (max-width: 991px) {
            .directory-grid {
                grid-template-columns: 1fr;
            }
            .guide-aside {
                position: static;
            }
            .guide-menu {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .guide-menu a {
                width: calc(50% - 4px);
                margin-bottom: 0;
            }
            .guide-aside__label {
                padding: 0 4px;
            }
            .guide-aside__note {
                padding-left: 4px;
                padding-right: 4px;
            }
        }
        @media (max-width: 575px) {
            .guide-menu a {
                width: 100%;
            }
        }
        .guide-article {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .topic-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 220px;
            align-items: stretch;
            transition: .3s ease;
        }
        .topic-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(62, 142, 90, 0.25);
        }
        .topic-card__body {
            padding: 26px 26px 22px;
        }
        .topic-card__meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 13px;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(62, 142, 90, 0.1);
            color: var(--kiwi-deep);
            font-size: 13px;
            font-weight: 700;
            padding: 4px 11px;
            border-radius: 30px;
            line-height: 1.5;
        }
        .tag.tag--gold {
            background: rgba(223, 164, 41, 0.14);
            color: #8F6B17;
        }
        .topic-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.5;
            margin-bottom: 9px;
        }
        .topic-card h3 a:hover {
            color: var(--kiwi-deep);
        }
        .topic-card__body>p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.85;
            margin-bottom: 14px;
        }
        .topic-card__points {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            margin-bottom: 12px;
        }
        .topic-card__points li {
            position: relative;
            padding-left: 18px;
            font-size: 14px;
            color: var(--text);
        }
        .topic-card__points li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--kiwi);
        }
        .topic-card__foot {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid rgba(31, 43, 36, 0.06);
            padding-top: 14px;
        }
        .topic-card__foot span {
            color: var(--muted);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .topic-card__cta {
            margin-left: auto;
            color: var(--kiwi-deep);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: .22s;
        }
        .topic-card__cta:hover {
            color: var(--kiwi);
            gap: 10px;
        }
        .topic-card__visual {
            background: var(--soft);
            padding: 16px;
            min-height: 150px;
        }
        .topic-card__visual img {
            width: 100%;
            height: 100%;
            min-height: 180px;
            object-fit: cover;
            border-radius: 10px;
            transition: .45s ease;
        }
        .topic-card:hover .topic-card__visual img {
            transform: scale(1.02);
        }
        @media (max-width: 1199px) {
            .topic-card {
                grid-template-columns: minmax(0, 1fr) 160px;
            }
            .topic-card__body {
                padding: 22px;
            }
        }
        @media (max-width: 767px) {
            .topic-card {
                grid-template-columns: 1fr;
            }
            .topic-card__visual {
                order: -1;
                width: 100%;
                padding: 0;
            }
            .topic-card__visual img {
                min-height: 0;
                aspect-ratio: 16 / 9;
            }
            .topic-card__points {
                display: grid;
                gap: 4px;
            }
        }
        .featured-wrap {
            background: var(--soft);
            border-radius: 22px;
            overflow: hidden;
        }
        .featured-card {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 44%;
            background: #fff;
        }
        .featured-card__media {
            background: #DDE3DC;
            position: relative;
            overflow: hidden;
            min-height: 280px;
        }
        .featured-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-card__media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(31, 43, 36, 0.06) 100%);
        }
        .featured-card__body {
            padding: 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
        .featured-card__title {
            display: inline-flex;
            gap: 8px;
            color: #8F6B17;
            background: rgba(223, 164, 41, 0.16);
            font-size: 13px;
            font-weight: 700;
            padding: 5px 13px;
            border-radius: 30px;
            margin-bottom: 18px;
        }
        .featured-card h3 {
            font-size: 24px;
            font-weight: 800;
            line-height: 1.35;
            color: var(--ink);
            margin-bottom: 12px;
        }
        .featured-card p {
            color: var(--muted);
            line-height: 1.85;
            margin-bottom: 22px;
        }
        .topic-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: auto;
        }
        @media (max-width: 991px) {
            .featured-card {
                grid-template-columns: 1fr;
            }
            .featured-card__media {
                min-height: 0;
                aspect-ratio: 16/8;
            }
            .featured-card__body {
                padding: 28px;
            }
        }
        @media (max-width: 575px) {
            .featured-card__body {
                padding: 22px;
            }
        }
        .bookmark-band {
            background: var(--kiwi);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .bookmark-band::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -100px;
            border-radius: 50%;
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, 0.1);
        }
        .bookmark-band__inner {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        .bookmark-band h2 {
            font-size: clamp(1.6rem, 2.6vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 8px;
        }
        .bookmark-band p {
            max-width: 620px;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 24px;
        }
        .bookmark-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--kiwi-deep);
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 9px;
            transition: .25s;
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(22, 33, 26, 0.25);
            color: var(--charcoal);
        }
        .btn-line-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 12px 20px;
            border-radius: 9px;
            font-weight: 600;
            transition: .25s;
        }
        .btn-line-light:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            transform: translateY(-2px);
        }
        .bookmark-band .bookmark-illustration {
            min-width: 180px;
            height: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            font-size: 52px;
        }
        @media (max-width: 767px) {
            .bookmark-band__inner {
                flex-direction: column;
                gap: 22px;
            }
            .bookmark-illustration {
                display: none !important;
            }
        }
        .faq-zone {
            padding-bottom: 90px;
        }
        .accordion {
            max-width: 860px;
            margin: 0 auto;
            --bs-accordion-bg: #fff;
            --bs-accordion-btn-bg: #fff;
            --bs-accordion-active-bg: var(--soft);
            --bs-accordion-active-color: var(--ink);
            --bs-accordion-btn-padding-x: 24px;
            --bs-accordion-btn-padding-y: 20px;
            --bs-accordion-body-padding-x: 24px;
            --bs-accordion-body-padding-y: 4px 24px 20px;
            --bs-accordion-border-width: 0;
            --bs-accordion-radius: 0;
        }
        .accordion-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-lg) !important;
            overflow: hidden;
            margin-bottom: 14px;
            background: #fff;
            transition: box-shadow .3s ease;
        }
        .accordion-item:has(.accordion-button:not(.collapsed)) {
            box-shadow: 0 10px 28px rgba(31, 43, 36, 0.06);
            border-color: rgba(62, 142, 90, 0.26);
        }
        .accordion-button {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            background: transparent;
            line-height: 1.5;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .accordion-button::before {
            content: "Q.";
            font-size: 15px;
            font-weight: 800;
            color: var(--kiwi);
            font-style: normal;
            margin-right: 2px;
        }
        .accordion-button:not(.collapsed) {
            color: var(--kiwi-deep);
            background: var(--soft);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 4px rgba(62, 142, 90, 0.12);
        }
        .accordion-button::after {
            background-size: 1rem;
            opacity: .6;
            filter: none;
        }
        .accordion-button:not(.collapsed)::after {
            filter: invert(34%) sepia(65%) saturate(520%) hue-rotate(105deg);
        }
        .accordion-body {
            color: var(--text);
            font-size: 15px;
            background: var(--soft);
        }
        .faq-note {
            max-width: 860px;
            margin: 26px auto 0;
            text-align: center;
            color: var(--muted);
            font-size: 14px;
            background: #fff;
            border-radius: 12px;
            padding: 16px;
            border: 1px dashed var(--line-strong);
        }
        .faq-note i {
            color: var(--kiwi);
            margin-right: 7px;
        }
        .site-footer {
            background: var(--charcoal);
            color: rgba(237, 242, 236, 0.8);
            padding-top: 72px;
            border-top: 4px solid var(--kiwi);
        }
        .site-footer .row {
            --bs-gutter-y: 30px;
        }
        .footer-brand .brand {
            margin-bottom: 18px;
        }
        .footer-brand .brand__mark {
            background: rgba(62, 142, 90, 0.95);
        }
        .footer-brand .brand-name {
            color: #fff;
        }
        .brand__text small {
            color: rgba(237, 242, 236, 0.6);
        }
        .footer-desc {
            color: rgba(237, 242, 236, 0.66);
            font-size: 14px;
            max-width: 380px;
            margin-bottom: 22px;
            line-height: 1.9;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 30px;
            color: rgba(237, 242, 236, 0.85);
            font-size: 13px;
            transition: .22s ease;
        }
        .footer-links a:hover {
            background: var(--kiwi);
            color: #fff;
        }
        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 18px;
        }
        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-nav a {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: rgba(237, 242, 236, 0.72);
            font-size: 14px;
            transition: .22s ease;
        }
        .footer-nav a i {
            font-size: 12px;
            opacity: .65;
        }
        .footer-nav a:hover {
            color: #8ACD9D;
            transform: translateX(3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(237, 242, 236, 0.1);
            margin-top: 56px;
            padding-top: 20px;
            padding-bottom: 22px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: rgba(237, 242, 236, 0.56);
            font-size: 13px;
        }
        .footer-bottom .powered i {
            color: var(--kiwi);
            margin-right: 5px;
        }
        @media (max-width: 767px) {
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                margin-top: 42px;
            }
        }
        @media (max-width: 575px) {
            .section {
                --space: 64px;
            }
            .guide-menu a {
                font-size: 14px;
            }
            .accordion-button {
                font-size: 15px;
            }
            .topic-card__body {
                padding: 18px;
            }
            .topic-card__foot {
                flex-wrap: wrap;
                gap: 7px;
            }
            .topic-card__cta {
                margin-left: 0;
            }
            .btn-kiwi,
            .btn-muted {
                padding: 11px 18px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }
            .hero-actions {
                width: 100%;
            }
        }
        @media (max-width: 340px) {
            .topbar__tools .btn-soft {
                display: none;
            }
            .channel-link {
                font-size: 12px;
                padding: 8px 9px;
            }
        }
