/* roulang page: index */
@layer base {
            :root {
                --primary: #1E3A2F;
                --primary-deep: #142b22;
                --primary-soft: #2c4f41;
                --accent: #C89B5E;
                --accent-light: #d9b57a;
                --accent-dark: #b88245;
                --paper: #E8DCC8;
                --paper-deep: #f5f0e8;
                --ink: #1C1917;
                --ink-soft: #57534E;
                --ink-mute: #A8A29E;
                --border: #E7E0D4;
            }

            html {
                scroll-behavior: smooth;
                scroll-padding-top: 96px;
            }

            body {
                font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
                @apply bg-[#FAF8F4] text-[#1C1917] antialiased;
                line-height: 1.7;
                letter-spacing: .015em;
                overflow-x: hidden;
            }

            h1,
            h2,
            h3,
            h4,
            h5 {
                @apply text-[#1C1917] font-black;
                letter-spacing: .02em;
            }

            img {
                @apply max-w-full h-auto align-middle;
            }

            ::selection {
                background: rgba(200, 155, 94, .35);
                color: #1c1917;
            }

            a,
            button {
                transition: all .2s ease;
            }

            a:hover,
            button:hover {
                cursor: pointer;
            }

            input,
            textarea {
                outline: none;
            }

            .section {
                @apply py-16 md:py-20 xl:py-24;
            }

            .site-container {
                @apply mx-auto w-full max-w-7xl px-5 sm:px-6 lg:px-8;
            }

            .chip {
                @apply inline-flex items-center gap-1.5 rounded-full border border-[#E7E0D4] bg-[#F5F0E8] px-4 py-1.5 text-xs font-semibold tracking-wide text-[#57534E];
            }

            .chip-accent {
                @apply border-[#C89B5E]/40 bg-[#C89B5E]/10 text-[#1E3A2F];
            }

            .btn {
                @apply inline-flex items-center justify-center rounded-[10px] font-bold transition duration-200 focus:outline-none focus-visible:ring-4 focus-visible:ring-[#C89B5E]/40;
            }

            .btn-primary {
                @apply btn h-11 min-w-[128px] px-6 text-[#1C1917];
                background-color: #C89B5E;
                box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
            }

            .btn-primary:hover {
                background-color: #d9b57a;
                box-shadow: 0 8px 22px rgba(200, 155, 94, .32);
                transform: translateY(-1px);
            }

            .btn-primary:active {
                transform: scale(.98);
            }

            .btn-outline {
                @apply btn h-11 min-w-[128px] border border-[#C89B5E]/70 px-6 text-[#C89B5E] bg-transparent;
            }

            .btn-outline:hover {
                background: rgba(200, 155, 94, .08);
                border-color: #C89B5E;
            }

            .btn-dark {
                @apply btn h-11 min-w-[128px] px-6 text-white;
                background-color: #1E3A2F;
            }

            .btn-dark:hover {
                background-color: #2c4f41;
            }

            .card {
                @apply rounded-2xl border border-[#E7E0D4] bg-white;
            }

            .section-eyebrow {
                @apply mb-3 inline-flex items-center gap-2 text-xs font-bold uppercase tracking-[.18em] text-[#C89B5E];
            }

            .section-title {
                @apply text-[1.875rem] leading-tight md:text-[2.25rem] font-black text-[#1C1917];
            }

            .section-desc {
                @apply mt-4 max-w-3xl text-base md:text-lg leading-[1.8] text-[#57534E];
            }

            .nav-link {
                @apply relative inline-flex items-center py-2 text-[15px] font-semibold text-[#1C1917] transition;
            }

            .nav-link::after {
                content: '';
                @apply absolute left-0 -bottom-px h-[2px] w-0 rounded-full transition-all duration-300;
                background: #C89B5E;
            }

            .nav-link:hover {
                @apply text-[#1E3A2F];
            }

            .nav-link:hover::after,
            .nav-link.nav-active::after {
                width: 100%;
            }

            .nav-link.nav-active {
                @apply text-[#1E3A2F];
            }

            .header-shell {
                @apply sticky top-0 z-50 w-full;
                background: rgba(252, 250, 246, .82);
                border-bottom: 1px solid rgba(200, 155, 94, .18);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                transition: background .3s, border-color .3s, box-shadow .3s;
            }

            .header-shell.header-scrolled {
                background: rgba(30, 58, 47, .97);
                border-bottom-color: rgba(200, 155, 94, .38);
                box-shadow: 0 12px 30px rgba(12, 27, 22, .22);
            }

            .header-shell.header-scrolled .header-logo,
            .header-shell.header-scrolled .header-logo-name {
                color: #fff;
            }

            .header-shell.header-scrolled .nav-link {
                color: #E4DCD0;
            }

            .header-shell.header-scrolled .nav-link:hover,
            .header-shell.header-scrolled .nav-link.nav-active {
                color: #F0D9B2;
            }

            .header-shell.header-scrolled .header-login-btn {
                color: #E9E1D5;
            }

            .header-shell.header-scrolled .header-login-btn:hover {
                color: #fff;
            }

            .search-box {
                @apply flex h-10 w-[200px] items-center gap-2 rounded-[10px] border px-3 text-sm;
                border-color: rgba(200, 155, 94, .25);
                background: #F6F2EB;
                transition: border-color .2s, background .2s;
            }

            .search-box:focus-within {
                border-color: rgba(200, 155, 94, .65);
                background: #fff;
                box-shadow: 0 0 0 3px rgba(200, 155, 94, .12);
            }

            .search-box input {
                @apply w-full bg-transparent text-sm text-[#1C1917] placeholder:text-[#A8A29E];
            }

            .header-shell.header-scrolled .search-box {
                background: rgba(255, 255, 255, .1);
                border-color: rgba(255, 255, 255, .14);
            }

            .header-shell.header-scrolled .search-box input {
                color: #fff;
            }

            .header-shell.header-scrolled .search-box input::placeholder {
                color: rgba(255, 255, 255, .45);
            }

            .footer-link {
                @apply inline-flex text-sm leading-relaxed text-[#CFC6B8] transition hover:text-[#E8DCC8] hover:-translate-y-[1px];
            }

            .stat-card {
                @apply relative overflow-hidden rounded-2xl border border-[#E7E0D4] bg-white p-5 sm:p-6;
            }

            .stat-card::before {
                content: '';
                @apply absolute left-0 top-0 h-full w-1;
                background: linear-gradient(to bottom, #C89B5E, #E8DCC8);
            }

            .news-list-card {
                @apply relative overflow-hidden rounded-2xl border border-[#E5DED2] bg-white p-6 transition duration-300;
                box-shadow: 0 1px 2px rgba(28, 25, 23, .04);
            }

            .news-list-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 18px 36px rgba(28, 25, 23, .08);
                border-color: #D9C5A3;
            }

            .news-list-card::after {
                content: '';
                @apply absolute left-0 top-0 h-full w-[3px];
                background: #C89B5E;
                opacity: 0;
                transition: opacity .2s;
            }

            .news-list-card:hover::after {
                opacity: 1;
            }

            .article-link {
                @apply inline-flex items-center gap-1 text-sm font-bold text-[#1E3A2F] transition hover:text-[#B88245];
            }

            .faq-answer {
                color: #57534E;
            }

            .drawer-nav a {
                @apply flex items-center justify-between rounded-xl px-4 py-3 text-[15px] font-semibold text-[#1C1917] transition hover:bg-[#F0EADC] hover:text-[#1E3A2F];
            }

            .drawer-nav a.nav-active {
                @apply bg-[#F5EFE6] text-[#1E3A2F];
            }
        }

        @layer components {
            .hero-bg {
                background-color: rgba(16, 33, 27, .92);
            }

            .hero-board {
                background-image: linear-gradient(135deg, rgba(255, 255, 255, .12) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, .12) 75%, transparent 75%, transparent);
                background-size: 24px 24px;
                background-position: 0 0;
            }

            .board-card {
                background: rgba(255, 255, 255, .1);
                border: 1px solid rgba(255, 255, 255, .16);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
            }

            .service-row-active {
                border-color: rgba(200, 155, 94, .5);
                background: linear-gradient(135deg, rgba(200, 155, 94, .08), rgba(255, 255, 255, .9));
                box-shadow: 0 16px 36px rgba(28, 25, 23, .08);
            }
        }

/* roulang page: article */
:root {
            --primary: #1E3A2F;
            --primary-soft: #1a3229;
            --accent: #C89B5E;
            --accent-light: #D9B57A;
            --paper: #E8DCC8;
            --paper-soft: #F7F4EE;
            --ink: #1C1917;
            --ink-soft: #57534E;
            --muted: #A8A29E;
            --line: #E7E0D4;
            --white: #FFFFFF;
            --raidus-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 1px 2px rgba(28, 25, 23, .05), 0 10px 28px rgba(28, 25, 23, .05);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: ui-sans-serif, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background: var(--paper-soft);
            color: var(--ink);
            line-height: 1.75;
            letter-spacing: .01em;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        textarea {
            font: inherit;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(200, 155, 94, .45);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .site-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .shadow-card {
            box-shadow: var(--shadow-card);
        }

        .site-header {
            background: rgba(30, 58, 47, .92);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(200, 155, 94, .2);
            transition: height .3s ease, background .3s ease, box-shadow .3s ease;
        }

        #siteHeader.scrolled {
            height: 64px !important;
            background: rgba(30, 58, 47, .97);
            box-shadow: 0 8px 24px rgba(20, 30, 26, .12);
        }

        .nav-link {
            position: relative;
            font-size: .93rem;
            font-weight: 600;
            color: rgba(232, 220, 200, .78);
            letter-spacing: .02em;
            padding: 6px 2px;
            transition: color .2s ease;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: var(--accent);
            border-radius: 99px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .25s ease;
        }

        .nav-link:hover,
        .nav-link.nav-active {
            color: #fff;
        }

        .nav-link:hover::after,
        .nav-link.nav-active::after {
            transform: scaleX(1);
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 200px;
            height: 40px;
            padding: 0 13px;
            border: 1px solid rgba(200, 155, 94, .18);
            border-radius: 10px;
            background: rgba(232, 220, 200, .1);
        }

        .header-search input {
            width: 100%;
            background: transparent;
            border: 0;
            outline: 0;
            color: #F5F0E8;
            font-size: .875rem;
            letter-spacing: .02em;
        }

        .header-search input::placeholder {
            color: rgba(232, 220, 200, .5);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 42px;
            padding: 0 22px;
            background: var(--accent);
            color: var(--ink);
            font-size: .9rem;
            font-weight: 700;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: all .2s ease;
        }

        .btn-primary:hover {
            background: var(--accent-light);
            box-shadow: 0 8px 20px rgba(200, 155, 94, .22);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: scale(.98);
            box-shadow: none;
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 42px;
            padding: 0 22px;
            background: transparent;
            border: 1px solid rgba(200, 155, 94, .65);
            color: #F7F0E5;
            font-size: .9rem;
            font-weight: 600;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all .2s ease;
        }

        .btn-outline-light:hover {
            background: rgba(200, 155, 94, .12);
            color: #fff;
            border-color: var(--accent);
        }

        .btn-outline-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 42px;
            padding: 0 22px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: .9rem;
            font-weight: 600;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all .2s ease;
        }

        .btn-outline-dark:hover {
            background: rgba(30, 58, 47, .05);
            border-color: var(--accent);
        }

        .mobileMenu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(86%, 360px);
            height: 100vh;
            background: var(--primary);
            border-left: 1px solid rgba(200, 155, 94, .18);
            box-shadow: -20px 0 50px rgba(0, 0, 0, .18);
            transition: right .3s ease;
            z-index: 70;
        }

        .mobileMenu.open {
            right: 0;
        }

        .mobileMenu a.mobile-nav-link {
            display: block;
            padding: 12px 4px;
            font-size: 1rem;
            font-weight: 600;
            color: rgba(232, 220, 200, .82);
            border-bottom: 1px solid rgba(232, 220, 200, .08);
        }

        .mobileMenu a.mobile-nav-link:hover,
        .mobileMenu a.mobile-nav-link.nav-active {
            color: #fff;
        }

        .article-shell {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 20px;
            box-shadow: var(--shadow-card);
        }

        .article-body {
            font-size: 1.0625rem;
            line-height: 1.9;
            color: #292524;
            overflow-wrap: break-word;
        }

        .article-body p {
            margin: 0 0 1.35em;
        }

        .article-body h2 {
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.45;
            color: var(--ink);
            margin: 1.8em 0 .7em;
            letter-spacing: .01em;
        }

        .article-body h3 {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.5;
            color: var(--ink);
            margin: 1.6em 0 .6em;
        }

        .article-body h4 {
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--ink);
            margin: 1.4em 0 .5em;
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 1.5em;
            padding-left: 1.4em;
        }

        .article-body li {
            margin-bottom: .45em;
        }

        .article-body blockquote {
            margin: 1.8em 0;
            padding: 8px 0 8px 20px;
            border-left: 4px solid var(--accent);
            background: rgba(232, 220, 200, .22);
            color: var(--ink-soft);
            font-size: 1rem;
            line-height: 1.8;
        }

        .article-body blockquote p {
            margin-bottom: .5em;
        }

        .article-body a {
            color: var(--accent);
            text-decoration: underline;
            text-decoration-color: rgba(200, 155, 94, .3);
            text-underline-offset: 4px;
        }

        .article-body a:hover {
            color: var(--primary);
        }

        .article-body img {
            border-radius: 16px;
            margin: 1.6em 0;
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6em 0;
            font-size: .95rem;
        }

        .article-body th,
        .article-body td {
            border: 1px solid var(--line);
            padding: 10px 12px;
            text-align: left;
        }

        .article-body th {
            background: rgba(232, 220, 200, .3);
            font-weight: 700;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            padding: 6px 15px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: #F7F4EE;
            font-size: .8rem;
            font-weight: 600;
            color: var(--ink-soft);
            transition: all .2s ease;
        }

        .tag-pill:hover {
            border-color: rgba(200, 155, 94, .5);
            color: var(--ink);
        }

        .site-footer {
            background: var(--primary);
            color: #CFC6B8;
        }

        .site-footer .footer-title {
            font-size: .9rem;
            font-weight: 700;
            color: #F1EBE1;
            margin-bottom: 1rem;
            letter-spacing: .03em;
        }

        .site-footer .footer-link {
            display: block;
            font-size: .875rem;
            color: #B7AD9F;
            line-height: 2.1;
            transition: color .2s ease;
        }

        .site-footer .footer-link:hover {
            color: var(--accent-light);
        }

        @media (max-width: 767px) {
            .site-container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .article-body {
                font-size: 1rem;
                line-height: 1.8;
            }

            .article-body h2 {
                font-size: 1.3rem;
            }

            .article-body h3 {
                font-size: 1.125rem;
            }
        }

/* roulang page: category1 */
:root {
    --color-primary: #1E3A2F;
    --color-primary-deep: #152D24;
    --color-accent: #C89B5E;
    --color-accent-light: #D9B57A;
    --color-accent-deep: #B88245;
    --color-paper: #E8DCC8;
    --color-paper-light: #F7F4EE;
    --color-ink: #1C1917;
    --color-muted: #57534E;
    --color-faint: #A8A29E;
    --color-line: #E7E0D4;
    --radius-card: 16px;
    --radius-btn: 10px;
    --shadow-card: 0 4px 18px rgba(28,25,23,.06);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    background: #fff;
    color: var(--color-ink);
    font-family: ui-sans-serif, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    padding-top: 80px;
    min-height: 100vh;
}
a {
    color: inherit;
    text-decoration: none;
}
a img,
img {
    display: block;
    max-width: 100%;
}
button,
input {
    font-family: inherit;
    font-size: inherit;
}
ul,
ol {
    list-style: none;
}
h1,
h2,
h3,
h4 {
    color: var(--color-ink);
    line-height: 1.35;
    font-weight: 900;
}
p {
    margin: 0;
}
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.shadow-card {
    box-shadow: var(--shadow-card);
}
.section-block {
    padding: 84px 0;
}
.section-paper {
    background: var(--color-paper-light);
}
.section-dark {
    background: var(--color-primary);
    color: #d8d2c8;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}
.anchor-target {
    scroll-margin-top: 96px;
}
/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: 80px;
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    transition: height .32s ease, box-shadow .32s ease, background .32s ease;
}
.site-header.is-scrolled {
    height: 64px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 6px 20px rgba(28, 25, 23, .06);
    border-bottom: 1px solid rgba(200, 155, 94, .28);
}
.site-header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height .32s ease;
}
.site-header.is-scrolled .site-header-inner {
    height: 64px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(30, 58, 47, .32);
    box-shadow: 0 0 0 4px rgba(200, 155, 94, .12);
}
.brand-text-line {
    line-height: 1.2;
}
.brand-name {
    display: block;
    font-size: 1.14rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--color-primary);
    white-space: nowrap;
}
.brand-sub {
    display: block;
    margin-top: 2px;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: #8A8072;
    white-space: nowrap;
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 10px;
}
.nav-link {
    position: relative;
    font-size: .9rem;
    font-weight: 700;
    color: #37342F;
    padding: 12px 2px 10px;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: color .2s;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width .25s ease;
}
.nav-link:hover,
.nav-link.nav-active {
    color: var(--color-primary);
}
.nav-link:hover::after,
.nav-link.nav-active::after {
    width: 100%;
}
.header-search {
    position: relative;
    width: 208px;
}
.header-search svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #8A8072;
    pointer-events: none;
}
.header-search input {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: #F2EDE6;
    padding-left: 40px;
    padding-right: 14px;
    font-size: .85rem;
    color: var(--color-ink);
    transition: border .2s, background .2s, box-shadow .2s;
}
.header-search input::placeholder {
    color: #9C9388;
}
.header-search input:focus {
    outline: none;
    border-color: rgba(200, 155, 94, .65);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 155, 94, .12);
}
.login-txt {
    font-size: .9rem;
    font-weight: 700;
    color: #3D3830;
    transition: color .2s;
}
.login-txt:hover {
    color: var(--color-primary);
}
.mobile-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: 10px;
    background: #fff;
    color: var(--color-primary);
    cursor: pointer;
}
/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: var(--radius-btn);
    font-weight: 800;
    font-size: .92rem;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background .22s ease, transform .15s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
}
.btn:active {
    transform: scale(.98);
}
.btn-primary {
    background: var(--color-accent);
    color: #1C1917;
    border-color: var(--color-accent);
}
.btn-primary:hover {
    background: #D8AD73;
    border-color: #D8AD73;
    box-shadow: 0 10px 22px rgba(200, 155, 94, .28);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: rgba(30, 58, 47, .45);
}
.btn-outline:hover {
    background: rgba(30, 58, 47, .06);
    border-color: var(--color-primary);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}
.btn-light {
    background: #fff;
    color: var(--color-primary);
}
.btn-light:hover {
    background: var(--color-paper);
}
.btn-lg {
    min-height: 52px;
    padding: 0 32px;
    font-size: 1rem;
}
.btn-sm {
    min-height: 38px;
    padding: 0 16px;
    font-size: .84rem;
}
/* Mobile menu drawer */
.mobile-wrap {
    position: fixed;
    inset: 0;
    z-index: 110;
    visibility: hidden;
    pointer-events: none;
}
.mobile-wrap.is-open {
    visibility: visible;
    pointer-events: auto;
}
.mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 21, .52);
    opacity: 0;
    transition: opacity .32s ease;
}
.mobile-wrap.is-open .mobile-overlay {
    opacity: 1;
}
.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88%, 390px);
    background: #fff;
    transform: translateX(100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    transition: transform .36s cubic-bezier(.22, 1, .36, 1);
}
.mobile-wrap.is-open .mobile-panel {
    transform: translateX(0);
}
.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--color-line);
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-search {
    position: relative;
}
.mobile-search svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #8A8072;
    pointer-events: none;
}
.mobile-search input {
    width: 100%;
    height: 46px;
    border-radius: 10px;
    background: #F5F1EA;
    border: 1px solid transparent;
    padding-left: 40px;
    padding-right: 14px;
}
.mobile-search input:focus {
    outline: none;
    border-color: rgba(200, 155, 94, .65);
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-radius: 10px;
    font-weight: 800;
    color: #37342F;
    border: 1px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--color-primary);
    background: #F9F5EF;
    border-color: rgba(200, 155, 94, .25);
}
.mobile-nav-link.is-active {
    color: var(--color-primary);
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 200;
    background: var(--color-accent);
    color: #1C1917;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 800;
    transition: top .2s;
}
.skip-link:focus {
    top: 14px;
}
/* ---------- Hero ---------- */
.category-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #FAF7F2 0%, #F3EDE3 55%, #EEE4D6 100%);
    border-bottom: 1px solid var(--color-line);
}
.category-hero::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -130px;
    top: -190px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 94, .24);
    pointer-events: none;
}
.category-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: 36px;
    bottom: -120px;
    border-radius: 50%;
    border: 1px dashed rgba(30, 58, 47, .12);
    pointer-events: none;
}
.crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: .8rem;
    color: #7A746C;
}
.crumb a {
    color: #7A746C;
    transition: color .2s;
}
.crumb a:hover {
    color: var(--color-primary);
}
.crumb .sep {
    color: #BFB5A8;
}
.crumb .cur {
    color: var(--color-primary);
    font-weight: 700;
}
.hero-pill {
    display: inline-block;
    margin-top: 18px;
    border: 1px solid rgba(30, 58, 47, .2);
    background: rgba(255, 255, 255, .5);
    color: var(--color-primary);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
}
.hero-title {
    font-size: clamp(2.3rem, 4.4vw, 3.05rem);
    line-height: 1.22;
    color: var(--color-primary);
    margin-top: 14px;
    letter-spacing: .02em;
}
.hero-desc {
    margin-top: 10px;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--color-accent-deep);
}
.hero-text {
    margin-top: 14px;
    max-width: 36rem;
    color: var(--color-muted);
    font-size: .95rem;
    line-height: 1.9;
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--color-line);
    background: rgba(255, 255, 255, .72);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    color: #4E4942;
}
.tag-chip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    display: inline-block;
}
.hero-figure {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(30, 58, 47, .18);
}
.hero-figure img {
    transition: transform .6s ease;
}
.hero-figure:hover img {
    transform: scale(1.02);
}
.hero-figure:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(18deg, rgba(21, 45, 36, .9) 0%, rgba(30, 58, 47, .18) 70%, rgba(255, 255, 255, 0) 100%);
}
.hero-figure-copy {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 26px;
    color: #fff;
}
.hero-figure-copy .small {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: #E3C79B;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-figure-copy .small::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--color-accent);
}
.hero-figure-copy strong {
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.35;
}
.hero-figure-copy p {
    margin-top: 8px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .76);
}
/* Section Title */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--color-accent-deep);
}
.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-accent);
}
.section-title {
    margin-top: 10px;
    font-size: clamp(1.75rem, 3vw, 2.1rem);
    color: var(--color-primary);
}
.section-sub {
    margin-top: 13px;
    color: var(--color-muted);
    font-size: .98rem;
    max-width: 44rem;
}
/* Rule list */
.rule-feed {
    border: 1px solid var(--color-line);
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.rules-item {
    display: grid;
    grid-template-columns: 154px 1fr;
    gap: 22px;
    padding: 28px 32px;
    transition: background .22s ease;
}
.rules-item + .rules-item {
    border-top: 1px solid var(--color-line);
}
.rules-item:hover {
    background: #FAF7F2;
}
.rule-date {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--color-line);
    background: var(--color-paper-light);
    border-radius: 14px;
    min-height: 108px;
    padding: 9px;
}
.rule-date .day {
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: var(--color-primary);
}
.rule-date .month {
    margin-top: 7px;
    font-size: .74rem;
    letter-spacing: .1em;
    color: #706B62;
}
.tag-mini {
    font-size: .72rem;
    font-weight: 800;
    color: #5F584E;
    background: #F1ECE4;
    border: 1px solid #E7E0D4;
    border-radius: 999px;
    padding: 2px 10px;
}
.tag-mini.tag-accent {
    background: rgba(200, 155, 94, .12);
    color: #8C5F28;
    border-color: rgba(200, 155, 94, .3);
}
.rules-body h3 {
    font-size: 1.3rem;
    margin-top: 10px;
    color: var(--color-primary);
    font-weight: 900;
    line-height: 1.45;
}
.rules-body h3 a {
    transition: color .2s;
}
.rules-body h3 a:hover {
    color: var(--color-accent-deep);
}
.rules-body p {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: .91rem;
    line-height: 1.85;
}
.rules-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    font-size: .86rem;
    font-weight: 800;
    color: var(--color-primary);
    transition: color .2s, gap .2s;
}
.rules-link svg {
    transition: transform .2s;
}
.rules-link:hover {
    color: var(--color-accent-deep);
    gap: 11px;
}
/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--color-line);
    font-size: .86rem;
    font-weight: 800;
    color: #4A453E;
    transition: all .2s;
}
.page-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
}
.page-btn.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.page-btn.disabled {
    opacity: .5;
    cursor: not-allowed;
}
/* Scene */
.scene-panel {
    background: var(--color-primary);
    border-radius: 22px;
    padding: 34px 30px;
    color: #e5dccd;
    position: relative;
    overflow: hidden;
}
.scene-panel::after {
    content: "";
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 94, .35);
    position: absolute;
    right: -70px;
    bottom: -70px;
}
.scene-panel h3 {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.5;
    font-weight: 900;
}
.scene-panel p {
    margin-top: 13px;
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    line-height: 1.9;
}
.scene-list {
    display: grid;
    gap: 12px;
}
.scene-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 2px 8px rgba(28, 25, 23, .03);
    transition: box-shadow .25s, border-color .25s;
}
.scene-card:hover {
    box-shadow: 0 12px 24px rgba(28, 25, 23, .06);
    border-color: rgba(200, 155, 94, .45);
}
.scene-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 47, .08);
    color: var(--color-primary);
}
.scene-card strong {
    display: block;
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 900;
}
.scene-card p {
    margin-top: 3px;
    font-size: .86rem;
    color: var(--color-muted);
    line-height: 1.7;
}
/* Dark service cards */
.dark-card {
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 20px 22px;
    min-height: 155px;
    transition: background .25s, border-color .25s, transform .25s;
}
.dark-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(200, 155, 94, .55);
    transform: translateY(-3px);
}
.dark-card .card-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #E4C38F;
    background: rgba(200, 155, 94, .14);
}
.dark-card h3 {
    color: #fff;
    margin-top: 14px;
    font-size: 1.05rem;
    font-weight: 800;
}
.dark-card p {
    margin-top: 6px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}
/* Process / timeline */
.step-item {
    position: relative;
    padding: 22px 18px 10px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    transition: border-color .25s, transform .25s;
}
.step-item:hover {
    border-color: rgba(200, 155, 94, .5);
    transform: translateY(-2px);
}
.step-num {
    font-size: .76rem;
    letter-spacing: .12em;
    color: var(--color-accent-deep);
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-num::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-line);
}
.step-item h3 {
    margin-top: 14px;
    color: var(--color-primary);
    font-size: 1.04rem;
}
.step-item p {
    margin-top: 7px;
    font-size: .87rem;
    color: var(--color-muted);
    line-height: 1.8;
}
/* FAQ */
.faq-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 10px 26px;
}
.faq-item {
    border-bottom: 1px solid var(--color-line);
}
.faq-item:last-child {
    border-bottom: 0;
}
.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    cursor: pointer;
    padding: 16px 0;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-ink);
    line-height: 1.6;
}
.faq-icon {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-line);
    color: var(--color-primary);
    transition: all .25s;
}
.faq-item[open] .faq-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 36px 22px 0;
    color: var(--color-muted);
    font-size: .92rem;
    line-height: 1.9;
}
/* CTA */
.cta-panel {
    background: linear-gradient(108deg, #BD8B50, #D8B078 55%, #CDA065);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 36px 42px;
    color: #223A2F;
    box-shadow: 0 14px 40px rgba(200, 155, 94, .2);
}
.cta-panel::after {
    content: "";
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -62px;
    top: -100px;
    background: rgba(30, 58, 47, .16);
    position: absolute;
}
.cta-panel h2 {
    font-size: clamp(1.4rem, 2.3vw, 1.9rem);
    color: #152D24;
}
.cta-panel p {
    margin-top: 7px;
    color: rgba(21, 45, 36, .8);
    font-size: .95rem;
    max-width: 40rem;
}
.cta-panel .cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
/* Footer */
.site-footer {
    background: var(--color-primary);
    color: #cfc6b8;
}
.site-footer a {
    transition: color .2s, opacity .2s;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-link {
    display: inline-block;
    color: #BDB4A6;
    font-size: .86rem;
    line-height: 1.9;
    transition: color .2s, padding-left .2s;
}
.footer-link:hover {
    color: var(--color-accent-light);
    padding-left: 2px;
}
@media (max-width: 1023px) {
    .nav-center,
    .header-search,
    .header-actions {
        display: none;
    }
    .brand {
        gap: 6px;
    }
    .brand-name {
        font-size: 1.1rem;
    }
    .section-block {
        padding: 64px 0;
    }
}
@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
    .site-header,
    .site-header.is-scrolled {
        height: 64px;
    }
    .site-header-inner,
    .site-header.is-scrolled .site-header-inner {
        height: 64px;
    }
    .brand-name {
        font-size: 1.03rem;
    }
    .brand-sub {
        display: none;
    }
    .section-block {
        padding: 52px 0;
    }
    .site-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .rules-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px 20px;
    }
    .rule-date {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        min-height: auto;
        padding: 10px 16px;
    }
    .rule-date .day {
        font-size: 1.4rem;
    }
    .rule-date .month {
        margin-top: 0;
        font-size: .78rem;
    }
    .cta-panel {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }
    .cta-panel .cta-actions {
        justify-content: flex-start;
    }
    .scroll-arrow {
        display: none;
    }
}
@media (max-width: 520px) {
    .btn-lg {
        min-height: 48px;
        padding: 0 22px;
        font-size: .92rem;
    }
    .brand-mark {
        width: 34px;
        height: 34px;
    }
    .brand-name {
        font-size: .98rem;
    }
}

/* roulang page: category2 */
:root {
            --color-primary: #1E3A2F;
            --color-primary-light: #2D6A4F;
            --color-accent: #C89B5E;
            --color-accent-light: #D9B57A;
            --color-paper: #E8DCC8;
            --color-cream: #F7F4EE;
            --color-ink: #1C1917;
            --color-muted: #57534E;
            --color-soft: #A8A29E;
            --color-border: #E7E0D4;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 1px 2px rgba(28, 25, 23, .05);
            --shadow-hover: 0 14px 34px rgba(28, 25, 23, .09);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: ui-sans-serif, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background: #FCFBF8;
            color: var(--color-ink);
            line-height: 1.75;
            letter-spacing: .01em;
            padding-top: 80px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid rgba(200, 155, 94, .55);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .site-container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        @media (min-width: 1024px) {
            .site-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
            body {
                padding-top: 80px;
            }
        }

        @media (max-width: 640px) {
            body {
                padding-top: 64px;
            }
        }

        section[id] {
            scroll-margin-top: 96px;
        }

        ::selection {
            background: rgba(200, 155, 94, .3);
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(30, 58, 47, .96);
            border-bottom: 1px solid transparent;
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
            border-bottom-color: rgba(200, 155, 94, .3);
        }

        .header-inner {
            height: 80px;
            display: flex;
            align-items: center;
            transition: height .3s ease;
        }

        .site-header.scrolled .header-inner {
            height: 64px;
        }

        @media (max-width: 640px) {
            .header-inner {
                height: 64px;
            }
            .site-header.scrolled .header-inner {
                height: 56px;
            }
        }

        .logo-mark {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid rgba(200, 155, 94, .6);
            background: rgba(0, 0, 0, .18);
            flex: none;
        }

        .nav-link {
            position: relative;
            display: inline-block;
            padding: 7px 2px;
            color: rgba(220, 215, 206, .9);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: .02em;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            border-radius: 999px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .25s ease;
        }

        .nav-link:hover,
        .nav-link.nav-active {
            color: #FFFFFF;
        }

        .nav-link:hover::after,
        .nav-link.nav-active::after {
            transform: scaleX(1);
        }

        .header-search {
            height: 38px;
            width: 180px;
            border-radius: 999px;
            padding-left: 36px;
            padding-right: 14px;
            font-size: .875rem;
            border: 1px solid transparent;
            background: rgba(255, 255, 255, .1);
            color: #F5F1EA;
            transition: border-color .2s ease, background .2s ease, width .25s ease;
        }

        .header-search::placeholder {
            color: rgba(220, 215, 206, .62);
        }

        .header-search:focus {
            outline: none;
            border-color: rgba(200, 155, 94, .8);
            background: rgba(255, 255, 255, .14);
            width: 220px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;
            border-radius: var(--radius-btn);
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            border: 1px solid transparent;
            transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .btn-primary {
            height: 44px;
            padding: 0 26px;
            background: var(--color-accent);
            color: #1C1917;
        }

        .btn-primary:hover {
            background: var(--color-accent-light);
            box-shadow: 0 8px 20px rgba(200, 155, 94, .32);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: translateY(0) scale(.98);
        }

        .btn-outline {
            height: 44px;
            padding: 0 26px;
            border: 1px solid rgba(30, 58, 47, .38);
            color: var(--color-ink);
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(30, 58, 47, .06);
            border-color: rgba(30, 58, 47, .55);
        }

        .btn-outline-light {
            height: 44px;
            padding: 0 26px;
            border: 1px solid rgba(232, 220, 200, .55);
            color: #FFF;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .1);
            border-color: rgba(232, 220, 200, .8);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 38px;
            padding: 0 16px;
            border-radius: var(--radius-btn);
            color: rgba(230, 224, 214, .92);
            font-weight: 600;
            font-size: .875rem;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, .08);
            color: #FFF;
        }

        .btn-sm {
            height: 38px;
            padding: 0 18px;
            font-size: .875rem;
            border-radius: 8px;
        }

        .brand-desc {
            font-size: .75rem;
            color: rgba(215, 209, 199, .72);
            letter-spacing: .02em;
        }

        /* Mini tags */
        .chip {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            padding: .28rem .9rem;
            border-radius: 999px;
            border: 1px solid rgba(30, 58, 47, .14);
            background: rgba(255, 255, 255, .78);
            color: var(--color-muted);
            font-size: .8rem;
            font-weight: 500;
        }

        .chip-accent {
            border-color: rgba(200, 155, 94, .55);
            background: rgba(200, 155, 94, .12);
            color: #7A5A2E;
            font-weight: 600;
        }

        /* Cards */
        .static-card {
            background: #FFFFFF;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .static-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(200, 155, 94, .45);
        }

        .outline-card {
            background: rgba(255, 255, 255, .6);
            border: 1px dashed rgba(200, 155, 94, .55);
            border-radius: var(--radius-card);
        }

        .mini-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(30, 58, 47, .08);
            color: var(--color-primary);
            border: 1px solid rgba(30, 58, 47, .06);
            flex: none;
        }

        .dark-card {
            background: var(--color-primary);
            color: #F1ECE4;
            border-radius: 20px;
        }

        .paper-card {
            background: var(--color-paper);
            border-radius: 20px;
        }

        /* Page hero */
        .page-hero {
            background: linear-gradient(135deg, #EDE3D3 0%, #E8DCC8 52%, #DDCBB0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-overlay-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: .55;
            background-image: radial-gradient(circle at 14px 14px, rgba(30, 58, 47, .12) 1.5px, transparent 2px);
            background-size: 28px 28px;
        }

        .page-hero-pattern {
            position: absolute;
            right: -100px;
            top: -120px;
            width: 360px;
            height: 360px;
            border-radius: 999px;
            border: 1px solid rgba(30, 58, 47, .08);
        }

        .page-hero-pattern::before,
        .page-hero-pattern::after {
            content: "";
            position: absolute;
            inset: 0;
            margin: auto;
            border-radius: 999px;
            border: 1px solid rgba(30, 58, 47, .07);
        }

        .page-hero-pattern::before {
            width: 230px;
            height: 230px;
        }

        .page-hero-pattern::after {
            width: 110px;
            height: 110px;
            border-color: rgba(200, 155, 94, .28);
        }

        .breadcrumb {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: .45rem;
            font-size: .825rem;
            color: rgba(30, 58, 47, .72);
        }

        .breadcrumb-sep {
            color: rgba(30, 58, 47, .36);
        }

        /* Timeline */
        .timeline-wrap {
            position: relative;
            padding-left: 30px;
        }

        .timeline-wrap::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: linear-gradient(to bottom, rgba(200, 155, 94, .6), rgba(200, 155, 94, .12));
            border-radius: 999px;
        }

        .timeline-item {
            position: relative;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -30px;
            top: 9px;
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: #FFFFFF;
            border: 5px solid var(--color-accent);
        }

        .step-num {
            font-weight: 900;
            font-size: 1.45rem;
            color: var(--color-accent);
            letter-spacing: 0;
            line-height: 1;
        }

        /* Date list */
        .date-slab {
            width: 118px;
            min-height: 118px;
            flex: none;
            border-radius: 14px;
            background: var(--color-cream);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-primary);
        }

        .date-slab strong {
            font-size: 2.25rem;
            font-weight: 900;
            line-height: 1.1;
        }

        .date-slab span {
            margin-top: 4px;
            font-size: .78rem;
            letter-spacing: .06em;
            color: var(--color-muted);
        }

        /* FAQ */
        .acc-item {
            background: #FFFFFF;
            border: 1px solid var(--color-border);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color .2s ease, box-shadow .3s ease;
        }

        .acc-item.open {
            border-color: rgba(200, 155, 94, .55);
            box-shadow: 0 10px 26px rgba(28, 25, 23, .06);
        }

        .acc-btn {
            width: 100%;
            min-height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 14px 20px;
            background: transparent;
            border: none;
            text-align: left;
            color: var(--color-ink);
            font-size: 1.02rem;
            font-weight: 600;
            cursor: pointer;
        }

        .acc-icon {
            flex: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 999px;
            color: var(--color-accent);
            border: 1px solid rgba(200, 155, 94, .45);
            transition: transform .3s ease, background .2s ease;
        }

        .acc-item.open .acc-icon {
            transform: rotate(45deg);
            background: rgba(200, 155, 94, .14);
        }

        .acc-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .acc-panel-inner {
            padding: 0 22px 20px;
            color: var(--color-muted);
            font-size: .94rem;
            line-height: 1.85;
        }

        /* Pagination */
        .btn-page {
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--color-border);
            border-radius: 10px;
            font-size: .875rem;
            color: var(--color-muted);
            background: #fff;
        }

        .btn-page:hover {
            border-color: rgba(200, 155, 94, .55);
            color: var(--color-ink);
            background: rgba(200, 155, 94, .08);
        }

        .btn-page.disabled {
            opacity: .45;
            pointer-events: none;
        }

        .btn-page-active {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: #fff;
            font-weight: 700;
        }

        /* CTA */
        .cta-band {
            background:
                radial-gradient(circle at 80% 20%, rgba(200, 155, 94, .2), transparent 36%),
                linear-gradient(135deg, #1E3A2F 0%, #142A22 100%);
            border-radius: 24px;
            overflow: hidden;
        }

        /* Footer */
        .footer-bottom {
            border-top: 1px solid rgba(232, 220, 200, .12);
        }

        .footer-col-title {
            font-size: .8125rem;
            font-weight: 700;
            letter-spacing: .08em;
            color: rgba(232, 220, 200, .78);
            text-transform: uppercase;
        }

        .footer-link {
            display: inline-block;
            font-size: .875rem;
            color: #C2B9AB;
            padding: 3px 0;
            transition: color .2s ease;
        }

        .footer-link:hover {
            color: #F1EAE0;
        }

        /* Mobile */
        .btn-burger {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .1);
        }

        .btn-burger span {
            width: 20px;
            height: 2px;
            border-radius: 999px;
            background: #F1EAE0;
            display: block;
        }

        .mobile-drawer {
            position: fixed;
            inset: 0 0 0 auto;
            z-index: 70;
            width: min(86vw, 340px);
            background: #1E3A2F;
            box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
            transform: translateX(100%);
            transition: transform .3s ease;
            padding: 28px 24px;
            overflow-y: auto;
        }

        .mobile-drawer.open {
            transform: translateX(0);
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            z-index: 60;
            background: rgba(15, 24, 20, .56);
            opacity: 0;
            visibility: hidden;
            transition: opacity .3s ease, visibility .3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-link {
            display: block;
            padding: 11px 12px;
            border-radius: 10px;
            color: rgba(232, 220, 200, .9);
            font-size: 1rem;
            font-weight: 600;
            border: 1px solid transparent;
        }

        .mobile-link:hover,
        .mobile-link-active {
            color: #fff;
            background: rgba(255, 255, 255, .06);
            border-color: rgba(200, 155, 94, .24);
        }

        @media (max-width: 520px) {
            .header-search {
                display: none;
            }
            .btn-header-login {
                display: none !important;
            }
        }

/* roulang page: category4 */
:root {
            --color-primary: #1E3A2F;
            --color-accent: #C89B5E;
            --color-paper: #E8DCC8;
            --color-cream: #F7F4EE;
            --ink: #1C1917;
            --ink-soft: #57534E;
            --ink-mute: #A8A29E;
            --line: #E7E0D4;
            --radius-card: 16px;
            --radius-btn: 10px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: ui-sans-serif, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background: #fff;
            color: var(--ink);
            line-height: 1.75;
            letter-spacing: 0.01em;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        button,
        input,
        textarea {
            font: inherit;
            letter-spacing: inherit;
        }

        h1,
        h2,
        h3,
        p {
            margin: 0;
        }

        .site-container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* 站点头部 */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            height: 80px;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(231, 224, 212, 0.9);
            transition: height .3s ease, background .3s ease, box-shadow .3s ease;
        }

        .site-header.scrolled {
            height: 64px;
            background: rgba(30, 58, 47, 0.97);
            box-shadow: 0 6px 24px rgba(30, 58, 47, 0.12);
            border-bottom: 1px solid rgba(200, 155, 94, 0.3);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .site-header.scrolled .header-logo-text {
            color: #F5F0E8;
        }

        .site-header.scrolled .header-logo-sub {
            color: #C2B9AB;
        }

        .site-header.scrolled .header-nav-link {
            color: #DDD6CA;
        }

        .site-header.scrolled .header-login {
            color: #E7E0D4;
        }

        .site-header.scrolled .header-search {
            background: rgba(200, 155, 94, 0.12);
            border-color: rgba(200, 155, 94, 0.24);
        }

        .site-header.scrolled .header-search input {
            color: #F5F0E8;
        }

        .site-header.scrolled .header-search input::placeholder {
            color: rgba(220, 212, 200, 0.55);
        }

        .site-navigation {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: 24px;
        }

        .header-nav-link {
            position: relative;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--ink-soft);
            line-height: 1.4;
            padding: 6px 2px;
            transition: color .25s ease;
        }

        .header-nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 100%;
            height: 2px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .3s ease;
        }

        .header-nav-link:hover::after,
        .header-nav-link.nav-active::after {
            transform: scaleX(1);
        }

        .header-nav-link.nav-active {
            color: var(--color-primary);
            font-weight: 700;
        }

        .site-header.scrolled .header-nav-link.nav-active {
            color: #fff;
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 200px;
            height: 40px;
            padding: 0 14px;
            background: #F5F0E8;
            border: 1px solid transparent;
            border-radius: 999px;
            transition: border .2s ease, background .2s ease;
        }

        .header-search:focus-within {
            border-color: rgba(200, 155, 94, 0.5);
            background: #fff;
        }

        .header-search input {
            width: 100%;
            border: 0;
            outline: none;
            background: transparent;
            font-size: 0.875rem;
            color: var(--ink);
        }

        .header-search input::placeholder {
            color: #A8A29E;
        }

        .header-cta {
            width: 128px;
            height: 40px;
            border: 0;
            border-radius: var(--radius-btn);
            background: var(--color-accent);
            color: #1C1917;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
        }

        .header-cta:hover {
            background: #DDB975;
            box-shadow: 0 6px 16px rgba(200, 155, 94, 0.25);
        }

        .header-cta:active {
            transform: scale(.97);
        }

        .header-cta:focus-visible,
        .btn-primary:focus-visible,
        .btn-outline:focus-visible,
        .submit-btn:focus-visible {
            outline: 4px solid rgba(200, 155, 94, 0.4);
            outline-offset: 2px;
        }

        /* 抽屉蒙层 */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(28, 25, 23, 0.42);
            z-index: 60;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }

        .drawer-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: #fff;
            z-index: 61;
            padding: 32px 26px;
            transform: translateX(104%);
            transition: transform .32s ease;
            box-shadow: -12px 0 36px rgba(0, 0, 0, 0.08);
        }

        body.drawer-open .drawer-overlay {
            opacity: 1;
            pointer-events: auto;
        }

        body.drawer-open .drawer-panel {
            transform: translateX(0);
        }

        body.drawer-open {
            overflow: hidden;
        }

        /* 通用按钮 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 128px;
            height: 46px;
            padding: 0 20px;
            border: 0;
            border-radius: var(--radius-btn);
            background: var(--color-accent);
            color: #1C1917;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
        }

        .btn-primary:hover {
            background: #DDB975;
            box-shadow: 0 8px 22px rgba(200, 155, 94, 0.25);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: translateY(0) scale(.98);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 124px;
            height: 46px;
            padding: 0 20px;
            border: 1px solid var(--color-primary);
            border-radius: var(--radius-btn);
            background: transparent;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background .2s ease, border .2s ease;
        }

        .btn-outline:hover {
            background: rgba(30, 58, 47, 0.06);
            border-color: var(--color-primary);
        }

        .btn-outline:active {
            background: rgba(30, 58, 47, 0.1);
        }

        .btn-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 128px;
            height: 46px;
            padding: 0 20px;
            border-radius: var(--radius-btn);
            background: #fff;
            color: #1E3A2F;
            font-weight: 700;
            font-size: 0.95rem;
            transition: background .25s ease, transform .15s ease;
        }

        .btn-light:hover {
            background: var(--color-paper);
            transform: translateY(-1px);
        }

        /* 板块标题 */
        .section-title {
            font-size: 1.875rem;
            font-weight: 800;
            line-height: 1.35;
            letter-spacing: 0.02em;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--color-primary);
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 2px;
            background: var(--color-accent);
        }

        /* 公司信息卡片 */
        .info-card {
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            padding: 26px 22px;
            transition: box-shadow .25s ease, transform .25s ease;
        }

        .info-card:hover {
            box-shadow: 0 10px 26px rgba(30, 58, 47, 0.07);
            transform: translateY(-3px);
        }

        /* 组织架构节点 */
        .org-node {
            background: #fff;
            border: 1px solid rgba(232, 220, 200, 0.85);
            border-radius: 14px;
            padding: 14px 12px;
            text-align: center;
            font-weight: 600;
            color: #1E3A2F;
            line-height: 1.35;
            font-size: 0.95rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        /* 手风琴 */
        .faq-item {
            border-bottom: 1px solid var(--line);
        }

        .faq-button {
            min-height: 56px;
            padding: 14px 6px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            background: transparent;
            border: 0;
            width: 100%;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
            cursor: pointer;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-answer-inner {
            padding: 4px 0 18px 0;
            color: var(--ink-soft);
            line-height: 1.8;
            max-width: 680px;
        }

        .faq-icon {
            transition: transform .3s;
            color: var(--color-accent);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* 表单 */
        .form-field {
            width: 100%;
            height: 48px;
            padding: 0 4px;
            border: 0;
            border-bottom: 1px solid #E5E0D6;
            background: transparent;
            outline: none;
            font-size: 0.925rem;
            color: var(--ink);
            border-radius: 0;
            transition: border .2s ease;
        }

        textarea.form-field {
            height: 110px;
            padding-top: 10px;
            resize: vertical;
        }

        .form-field:focus {
            border-bottom: 2px solid var(--color-accent);
        }

        .form-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 4px;
            display: block;
        }

        /* 页脚 */
        .footer-link {
            color: #CFC6B8;
            font-size: 0.875rem;
            transition: color .2s ease, padding-left .2s ease;
        }

        .footer-link:hover {
            color: #E8DCC8;
            padding-left: 4px;
        }

        .footer-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #E8DCC8;
            letter-spacing: 0.04em;
            margin-bottom: 12px;
        }

        /* 滚动锚点 */
        section {
            scroll-margin-top: 96px;
        }

        /* 背景底纹 */
        .section-paper {
            background: var(--color-cream);
        }

        .section-deep {
            background: var(--color-primary);
        }

        /* 导航移动端 */
        .mobile-nav a {
            display: block;
            padding: 8px 0;
            font-weight: 600;
            color: var(--ink);
            border-bottom: 1px solid #F2EDE6;
            font-size: 1rem;
        }

        .mobile-nav a.nav-active {
            color: var(--color-primary);
            border-bottom-color: var(--color-accent);
        }

        @media (max-width: 1024px) {
            .site-navigation {
                display: none;
            }

            .header-search {
                width: 160px;
            }
        }

        @media (max-width: 640px) {
            .site-container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .site-header {
                height: 64px;
            }

            .header-search,
            .header-login {
                display: none;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }

/* roulang page: category3 */
:root {
            --color-primary: #1E3A2F;
            --color-accent: #C89B5E;
            --color-paper: #E8DCC8;
            --radius-card: 16px;
            --radius-btn: 10px;
            --text-primary: #1C1917;
            --text-secondary: #57534E;
            --text-muted: #A8A29E;
            --border-color: #E7E0D4;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: ui-sans-serif, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background: #FCFAF5;
            color: var(--text-primary);
            line-height: 1.75;
            letter-spacing: 0.015em;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        input, textarea {
            font-family: inherit;
            outline: none;
        }
        .site-container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        @media (min-width: 1024px) {
            .site-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            width: 100%;
            background: rgba(252, 250, 245, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(231, 224, 212, 0.8);
            height: 72px;
            transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            height: 62px;
            background: rgba(30, 58, 47, 0.96);
            border-bottom: 1px solid rgba(200, 155, 94, 0.3);
            box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
        }
        .site-header.scrolled .header-logo-text {
            color: #fff;
        }
        .site-header.scrolled .header-logo-sub {
            color: rgba(207, 198, 184, 0.85);
        }
        .site-header.scrolled .header-sub {
            color: #C2B9AB;
        }
        .site-header.scrolled .nav-link {
            color: #DCD7CE;
        }
        .site-header.scrolled .nav-link:hover {
            color: #fff;
        }
        .site-header.scrolled .nav-link.nav-active {
            color: #fff;
        }
        .site-header.scrolled .nav-link.nav-active::after {
            background: var(--color-accent);
        }
        .site-header.scrolled .login-text {
            color: #DCD7CE;
        }
        .site-header.scrolled .login-text:hover {
            color: #fff;
        }
        .site-header.scrolled .search-wrap {
            background: rgba(255, 255, 255, 0.08);
            border-color: transparent;
        }
        .site-header.scrolled .search-wrap input {
            color: #E8E2D8;
        }
        .site-header.scrolled .search-wrap input::placeholder {
            color: rgba(200, 198, 190, 0.65);
        }
        .site-header.scrolled .search-icon {
            color: #C2B9AB;
        }
        .header-inner {
            display: flex;
            align-items: center;
            height: 100%;
            gap: 1.5rem;
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .header-logo-icon {
            display: flex;
            height: 38px;
            width: 38px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(30, 58, 47, 0.08);
            border: 1px solid rgba(200, 155, 94, 0.4);
        }
        .site-header.scrolled .header-logo-icon {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(200, 155, 94, 0.5);
        }
        .header-logo-text {
            font-size: 1.05rem;
            font-weight: 900;
            letter-spacing: 0.02em;
            color: var(--color-primary);
            line-height: 1.25;
            white-space: nowrap;
        }
        .header-logo-sub {
            font-size: 0.65rem;
            color: #8B8378;
            letter-spacing: 0.05em;
            font-weight: 500;
            line-height: 1.2;
        }
        .site-header.scrolled .header-logo-sub {
            color: rgba(207, 198, 184, 0.85);
        }
        .header-nav {
            display: flex;
            align-items: center;
            gap: 1.75rem;
            margin-left: 1.5rem;
        }
        .nav-link {
            position: relative;
            font-size: 0.9rem;
            font-weight: 600;
            color: #44403C;
            transition: color 0.25s;
            white-space: nowrap;
            padding: 0.2rem 0;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -4px;
            transform: translateX(-50%) scaleX(0);
            height: 2px;
            width: 100%;
            background: var(--color-accent);
            transition: transform 0.3s ease;
        }
        .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }
        .nav-link.nav-active {
            color: var(--color-primary);
            font-weight: 700;
        }
        .nav-link.nav-active::after {
            transform: translateX(-50%) scaleX(1);
            background: var(--color-accent);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            margin-left: auto;
        }
        .search-wrap {
            display: flex;
            align-items: center;
            background: #F5F0E8;
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 0 0.9rem;
            height: 38px;
            width: 185px;
            transition: all 0.3s ease;
        }
        .search-wrap:focus-within {
            border-color: rgba(200, 155, 94, 0.7);
            background: #FFFDF9;
            box-shadow: 0 0 0 3px rgba(200, 155, 94, 0.15);
        }
        .search-wrap input {
            border: none;
            background: transparent;
            font-size: 0.82rem;
            flex: 1;
            color: #1C1917;
        }
        .search-wrap input::placeholder {
            color: #9CA3AF;
        }
        .search-wrap input:focus {
            outline: none;
        }
        .search-icon {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .login-text {
            font-size: 0.88rem;
            font-weight: 600;
            color: #44403C;
            white-space: nowrap;
            padding: 0.35rem 0.5rem;
        }
        .login-text:hover {
            color: var(--color-primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            background: var(--color-accent);
            color: #1C1917;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.55rem 1.15rem;
            border-radius: 8px;
            border: none;
            transition: all 0.25s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: #D8AE6E;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(200, 155, 94, 0.25);
        }
        .btn-primary:active {
            transform: scale(0.97);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            background: transparent;
            border: 1.5px solid var(--color-accent);
            color: var(--color-primary);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 1.1rem;
            border-radius: 8px;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(200, 155, 94, 0.12);
            border-color: var(--color-accent);
        }
        .btn-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            background: var(--color-primary);
            color: #F5F0E8;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.55rem 1.15rem;
            border-radius: 8px;
            transition: all 0.25s ease;
            border: none;
        }
        .btn-dark:hover {
            background: #274D3E;
        }
        .site-header.scrolled .btn-primary {
            background: var(--color-accent);
            color: #1C1917;
        }
        .site-header.scrolled .btn-primary:hover {
            background: #E2BE82;
        }
        .mobile-menu-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            border: 1px solid rgba(200, 155, 94, 0.25);
            background: transparent;
            color: var(--color-primary);
            margin-left: auto;
        }
        .site-header.scrolled .mobile-menu-btn {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }
        @media (min-width: 1025px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        @media (max-width: 1024px) {
            .header-nav {
                display: none;
            }
            .header-actions .login-text,
            .header-actions .search-wrap,
            .header-actions .header-cta {
                display: none;
            }
        }
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(20, 16, 12, 0.5);
            z-index: 60;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .drawer-backdrop.show {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            height: 100vh;
            width: 300px;
            background: #FCFAF5;
            z-index: 61;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            transition: right 0.35s ease;
            box-shadow: -10px 0 30px rgba(0,0,0,0.12);
        }
        .mobile-drawer.show {
            right: 0;
        }
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .drawer-nav a,
        .drawer-extra a {
            padding: 0.75rem 0;
            font-size: 1rem;
            font-weight: 600;
            color: #2A2A28;
            border-bottom: 1px solid #EFEBE4;
            transition: all 0.2s;
        }
        .drawer-nav a:hover,
        .drawer-extra a:hover {
            color: var(--color-accent);
            padding-left: 0.5rem;
        }
        .drawer-nav a.is-active {
            color: var(--color-accent);
            font-weight: 700;
        }
        .drawer-actions {
            margin-top: auto;
            display: flex;
            gap: 0.8rem;
            border-top: 1px solid #EFEBE4;
            padding-top: 1.5rem;
        }
        .cover-section {
            background: linear-gradient(135deg, #F4EEDA 0%, #E9DDC7 60%, #DCCDB3 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0 48px;
            border-bottom: 1px solid rgba(200, 155, 94, 0.25);
        }
        .cover-section .bg-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            object-fit: cover;
            opacity: 0.12;
        }
        .cover-inner {
            display: flex;
            gap: 3rem;
            align-items: center;
            position: relative;
        }
        .cover-left {
            flex: 1.1;
        }
        .cover-left h1 {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--color-primary);
            line-height: 1.25;
            margin-bottom: 0.8rem;
            letter-spacing: 0.02em;
        }
        .cover-left .breadcrumb {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.35rem;
        }
        .cover-desc {
            font-size: 1.05rem;
            color: #44403C;
            max-width: 520px;
            line-height: 1.9;
        }
        .cover-desc p:not(:last-child) {
            margin-bottom: 0.45rem;
        }
        .cover-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.6rem;
        }
        .tag-btn {
            display: inline-block;
            font-size: 0.78rem;
            background: rgba(255,255,255,0.65);
            border: 1px solid rgba(200, 155, 94, 0.5);
            color: #57534E;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-btn:hover {
            background: var(--color-primary);
            color: #F5F0E8;
            border-color: var(--color-primary);
        }
        .cover-right {
            display: none;
            flex-shrink: 0;
        }
        .cover-right .card-mini {
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: var(--radius-card);
            box-shadow: 0 10px 28px rgba(30, 58, 47, 0.12);
            min-width: 240px;
            padding: 1.4rem;
        }
        @media (min-width: 1024px) {
            .cover-right {
                display: block;
            }
            .cover-section {
                padding-top: 120px;
            }
        }
        .section-padding {
            padding: 84px 0;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            color: var(--color-accent);
            text-transform: uppercase;
            margin-bottom: 0.8rem;
            position: relative;
        }
        .section-title-area {
            margin-bottom: 2.8rem;
        }
        .section-title {
            font-size: 1.9rem;
            font-weight: 900;
            color: var(--color-primary);
            line-height: 1.45;
            letter-spacing: 0.02em;
        }
        .section-sub {
            color: var(--text-secondary);
            max-width: 720px;
        }
        .section-head-center {
            text-align: center;
            margin-bottom: 2.8rem;
        }
        
        .point-grid {
            display: grid;
            gap: 1.5rem;
        }
        .main-highlight-card {
            background: var(--color-primary);
            border-radius: var(--radius-card);
            padding: 2.2rem;
            color: #E8E2D8;
            overflow: hidden;
            position: relative;
        }
        .main-highlight-card::after {
            content: '';
            position: absolute;
            right: -35px;
            bottom: -35px;
            width: 160px;
            height: 160px;
            border: 1.5px solid rgba(200, 155, 94, 0.25);
            border-radius: 50%;
        }
        .main-highlight-card .quote-icon {
            color: var(--color-accent);
        }
        .main-highlight-card h3 {
            font-size: 1.25rem;   
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.6rem;
        }
        .main-highlight-card p {
            color: #C2B9AB;
            line-height: 1.8;
            font-size: 0.96rem;
        }
        
        .insight-list {
            display: grid;
            gap: 1.1rem;
        }
        .insight-list-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .insight-num {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
            border-radius: 10px;
            background: rgba(240, 231, 215, 0.65);
            border: 1px solid rgba(200, 155, 94, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--color-primary);
        }
        .insight-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            border-radius: 12px;
            background: #F4EEE3;
            border: 1px solid rgba(200,155,94,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }
        
        .feature-list-item {
            background: #FFFFFF;
            border: 1px solid rgba(231, 224, 212, 0.9);
            border-radius: var(--radius-card);
            padding: 1.6rem 1.6rem;
            transition: transform 0.25s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        .feature-list-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(30, 58, 47, 0.08), 0 2px 8px rgba(30, 58, 47, 0.04);
        }
        .feature-list-item .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            background: #EFE9DF;
            color: var(--color-primary);
        }
        .feature-list-item:nth-child(3n+2) .card-icon {
            background: #F4E4CC;
            color: #9A6A2B;
        }
        .feature-list-item:nth-child(3n) .card-icon {
            background: #DDEDE3;
            color: var(--color-primary);
        }
        .feature-list-item h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.65rem;
        }
        .feature-list-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.8;
            flex: 1;
        }
        
        .timeline-list {
            display: flex;
            flex-direction: column;
            margin-top: 1.6rem;
        }
        .timeline-item {
            border-left: 2px solid var(--color-accent);
            padding-bottom: 1.8rem;
            padding-left: 1.8rem;
            position: relative;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--color-accent);
            border: 2px solid #FCFAF5;
            box-shadow: 0 0 0 2px var(--color-accent);
        }
        .timeline-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-primary);
        }
        .timeline-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-top: 0.25rem;
        }
        .timeline-text {
            color: var(--text-secondary);
        }
        
        .notice-strip {
            background: var(--color-primary);
            color: #E8E2D8;
            padding: 1rem 1.4rem;
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            border-left: 4px solid var(--color-accent);
            margin-bottom: 2rem;
        }
        .notice-strip .speaker-icon {
            flex-shrink: 0;
        }
        .notice-strip span {
            font-weight: 600;
        }
        .notice-strip p {
            flex: 1;
            min-width: 270px;
        }
        
        .report-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;    
        }
        .report-card {
            background: #fff;
            border: 1px solid #EFEBE0;
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .report-card:hover {
            box-shadow: 0 14px 26px rgba(30,58,47,0.1);
            transform: translateY(-5px);
        }
        .report-card .cover-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .report-card .cover-img .pattern-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(30,58,47,0.65), transparent);
        }
        .report-card-body {
            padding: 1.7rem 1.7rem;
        }
        .report-card-body h3 {
            color: var(--color-primary);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.55rem;
            line-height: 1.5;
        }
        .report-card-body p {
            color: var(--text-secondary);
            font-size: 0.9rem;

            line-height: 1.8;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1.2rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .tag-pill {
            background: rgba(200,155,94,0.18);
            border: none;
            color: #8A5A24;
            font-weight: 700;
            font-size: 0.72rem;
            padding: 0.12rem 0.8rem;
            border-radius: 999px;
            display: inline-flex;
        }
        .btn-read {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 700;
            color: var(--primary, #1E3A2F);
            border-bottom: 1.5px solid rgba(200, 155, 94, 0.6);
            padding-bottom: 2px;
        }
        .btn-read:hover {
            color: var(--color-accent);
            border-bottom-color: var(--color-accent);
        }
        
        .notify-card {
            background: var(--color-paper);
            border-radius: var(--radius-card);
            padding: 2.2rem;
            border: 1px solid rgba(200,155,94,0.25);
        }
        .notify-card .small-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: 0.02em;
        }
        .notify-card .sub {
            font-size: 0.9rem;
            color: #726A5E;
        }
        .icon-list {
            list-style: none;
            display: grid;
            gap: 1.1rem;
            margin-top: 1.2rem;
        }
        .icon-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 0.94rem;
            color: #4F4B45;
        }
        .icon-list li svg {
            flex-shrink: 0;
            margin-top: 0.3rem;
            color: var(--color-accent);
        }
        .cover-quote {
            position: relative;
            background: #FFFFFF;
            border-radius: var(--radius-card);
            border: 1px solid #E7DFD3;
            padding: 2.2rem;
        }
        .cover-quote h3 {
            font-size: 1.4rem;
            font-weight: 900;
            line-height: 1.5;
            color: var(--color-primary);
            margin-bottom: 0.8rem;
        }
        .cover-quote .quote-author {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        
        .row-stats {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(4, 1fr);
        }
        .stats-card {
            background: #fff;
            border: 1px solid #EFEBE0;
            border-radius: 14px;
            text-align: center;
            padding: 2rem 1.2rem;
            transition: border 0.25s, box-shadow .3s;
        }
        .stats-card:hover {
            border-color: rgba(200,155,94,0.5);
            box-shadow: 0 8px 18px rgba(30,58,47,0.08);
        }
        .stats-card strong {
            display: block;
            font-size: 2.1rem;
            font-weight: 900;
            color: var(--color-primary);
            font-variant-numeric: tabular-nums;
        }
        .stats-card span {
            display: block;
            margin-top: 6px;
            font-size: 0.88rem;
            color: var(--text-secondary);
        }
        @media (max-width: 768px){
            .row-stats {
                grid-template-columns: repeat(2,1fr);
            }
        }
        
        .switch-card {
            background: #FFFFFF;
            border: 1px solid #EFEBE0;
            border-radius: var(--radius-card);
            padding: 1.8rem;
            transition: transform 0.25s, box-shadow 0.3s;
        }
        .switch-card:hover {
            box-shadow: 0 10px 24px rgba(30,58,47,0.08);
            transform: translateY(-3px);
        }
        .switch-card .icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #EAE2D3;
            color: var(--color-primary);
            margin-bottom: 1.2rem;
        }
        .switch-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: .55rem;
            color: #1C1917;
        }
        .switch-card p {
            font-size: .9rem;
            color: var(--text-secondary);
            line-height: 1.75;
        }
        .switch-card:not(:last-child) {
            margin-bottom: 1.3rem;
        }
        
        .content-card {
            background: #fff;
            border: 1px solid #E8E0D4;
            border-radius: var(--radius-card);
            transition: all 0.25s ease;
        }
        .content-card:hover {
            border-color: #D2C2AC;
            box-shadow: 0 12px 24px rgba(30,58,47,0.08);
            transform: translateY(-3px);
        }
        
        .method-card {
            background: #fff;
            border: 1px solid #E7DFD3;
            border-radius: var(--radius-card);
            padding: 2.4rem 2rem;
        }
        
        .md-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .step-row {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 1.2rem;
            align-items: start;
        }
        .step-index {
            width: 64px;
            height: 64px;
            background: rgba(200,155,94,0.12);
            color: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 900;
            border: 1px dashed rgba(200,155,94,0.6);
        }
        
        .service-band {
            background: #F9F6EF;
            border-top: 1px solid #E9E1D3;
            border-bottom: 1px solid #E9E1D3;
        }
        
        .cta-special {
            background: var(--color-primary);
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            padding: 3.4rem 2.5rem;
            color: #F2EEE8;
        }
        .cta-special::before {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 1px solid rgba(200,155,94,0.3);
        }
        .cta-special::after {
            content: '';
            position: absolute;
            right: 10px;
            top: -15px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 1px solid rgba(200,155,94,0.2);
        }
        .cta-pattern {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 280px;
            height: 100%;
            background-image: radial-gradient(rgba(200,155,94,0.1) 1px, transparent 1px);
            background-size: 16px 16px;
        }
        
        .contact-card {
            background: #fff;
            border-radius: 20px;
            border: 1px solid rgba(231,224,212,0.8);
            padding: 2.4rem;
        }
        
        .faq-rows {
            display: grid;
            gap: 1.2rem;
        }
        .faq-row {
            background: #FFFFFF;
            border: 1px solid #E7E0D4;
            border-radius: 14px;
            transition: border-color .25s, box-shadow .25s;
            overflow: hidden;
        }
        .faq-row.open {
            border-color: rgba(200,155,94,0.55);
            box-shadow: 0 5px 16px rgba(30,58,47,0.08);
        }
        .faq-row .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.2rem;
            width: 100%;
            text-align: left;
            background: transparent;
            padding: 1.25rem 1.4rem;
            border: none;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1.5;
        }
        .faq-row .faq-q:hover {
            color: var(--color-primary);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #F4EEE4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            transition: all 0.3s;
        }
        .faq-row.open .faq-icon {
            transform: rotate(45deg);
            background: var(--color-accent);
            color: #fff;
        }
        .faq-row .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .faq-row .faq-a-inner {
            padding: 0 1.4rem 1.4rem;
            color: var(--text-secondary);
            line-height: 2;
            font-size: 0.98rem;
        }
        .faq-a-inner a {
            color: var(--color-accent);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        
        .text-list-dot {
            list-style: none;
        }
        .text-list-dot li {
            position: relative;
            padding-left: 1.3rem;
            color: #3F3A36;
            margin-bottom: 0.55rem;
            font-size: 0.95rem;
        }
        .text-list-dot li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: var(--color-accent);
            border: 1.5px solid #F5EFE6;
        }
        
        .service-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.9rem;
            background: #FCF5EA;
            border: 1px solid rgba(200,155,94,0.5);
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 600;
            color: #6B4C27;
        }
        
        .faq-wrap {
            display: grid;
            gap: 2rem;
        }
        .faq-left-sticky {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        
        .service-block {
            background: #ffffffee;
            border-radius: 16px;
            padding: 1.1rem 1.4rem;
            border: 1px solid rgba(220, 210, 190, .5);
            backdrop-filter: blur(8px);
        }
        .letter-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(200,155,94,0.14);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.6rem;
            margin-top: 2.8rem;
        }
        .pagination span {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            width: 40px;
            height: 40px;
            justify-content: center;
            border-radius: 10px;
            background: #FFFFFF;
            border: 1px solid #E7E0D4;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .pagination span.active-page {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: #F5F0E8;
        }
        
        @media (max-width: 767px) {
            .section-padding {
                padding: 56px 0;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .cover-section {
                padding: 108px 0 32px;
            }
            .cover-left h1 {
                font-size: 1.8rem;
            }
            .point-grid .main-highlight-card {
                padding: 1.6rem 1.4rem;
            }
            .report-grid {
                grid-template-columns: 1fr;
                gap: 1.3rem;
            }
            .cover-desc {
                font-size: 0.97rem;
            }
            .header-inner {
                gap: .7rem;
            }
            .header-logo-icon {
                height: 34px;
                width: 34px;
            }
            .cta-special {
                padding: 1.9rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .site-header {
                height: 64px;
            }
            .header-logo-sub {
                display: none;
            }
            .btn-primary.header-start {
                padding: 0.5rem 0.8rem;
                font-size: 0.8rem;
            }
        }
        .feature-grid-special {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(3, 1fr);
        }
        .grid-big {
            grid-template-columns: repeat(3, 1fr);
        }
        .double-col {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 1024px){
            .grid-big {
                grid-template-columns: repeat(2,1fr);
            }
            .double-col {
                grid-template-columns: 1fr;
            }
            .cover-inner {
                display: block;
            }
            .cover-right {
                display: none;
            }
            .faq-left-sticky {
                position: static;
            }
        }
        @media (max-width: 767px){
            .grid-big,
            .feature-grid-special {
                grid-template-columns: 1fr;
            }
            .double-col {
                grid-template-columns: 1fr;
            }
        }
        .brand-logo-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 0.8rem;
        }
        .industry-layer {
            background: #FFFFFF;
            border: 1px solid rgba(231,224,212,0.9);
            border-radius: 16px;
            padding: 1.7rem;
        }
        .industry-layer h4 {
            color: var(--color-primary);
            font-weight: 700;
            margin-bottom: 0.7rem;
            font-size: 1.08rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }
        .stat-line {
            display: flex;
            align-items: baseline;
            gap: .5rem;
            color: var(--color-primary);
            border-bottom: 1px dashed rgba(200,155,94,0.35);
            padding: 0.55rem 0;
            font-weight: 600;
            font-size: 0.9rem;
            justify-content: space-between;
        }
        .stat-line span:last-child {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--color-accent);
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        .data-tip {
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-top: 1.1rem;
        }
        
        .site-footer {
            background: #1E3A2F;
        }
        .footer-link-columns {
            display: grid;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .footer-link-columns {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .footer-col h4 {
            font-size: 1rem;
            color: #E8DDD2;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .footer-col a {
            display: block;
            color: #AEA79B;
            line-height: 2.2;
            font-size: 0.86rem;
            transition: all .25s;
        }
        .footer-col a:hover {
            color: #C89B5E;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.12);
            margin-top: 2rem;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            color: #A6A19A;
            font-size: .82rem;
        }
        @media (max-width: 767px) {
            .footer-bottom {
                gap: 0.7rem;
                flex-direction: column;
            }
        }
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #FFF;
            border: 1px solid #E0D7C8;
            box-shadow: 0 6px 17px rgba(30,58,47,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            z-index: 60;
        }
        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top-btn:hover {
            background: var(--color-primary);
            color: #fff;
        }
        .pattern-dot {
            background-image: radial-gradient(rgba(200,155,94,0.17) 1px, transparent 1px);
            background-size: 18px 18px;
        }
        .pattern-dot-light {
            background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
            background-size: 18px 18px;
        }
        .white-overlay {
            background: rgba(250,248,245,.72);
        }
