/* roulang page: index */
:root {
            --primary: #0B6B4F;
            --primary-light: #13A37C;
            --gold: #C69A3C;
            --gold-light: #E3C46F;
            --dark: #0B1F1A;
            --dark-2: #123228;
            --paper: #FAF7F2;
            --white: #FFFFFF;
            --text: #223029;
            --text-muted: #5E6B65;
            --border: #E2DFD8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 14px;
            --shadow: 0 6px 24px rgba(11, 32, 26, 0.06);
            --shadow-hover: 0 14px 36px rgba(11, 32, 26, 0.12);
            --gradient-main: linear-gradient(135deg, #0B6B4F 0%, #13A37C 100%);
            --gradient-gold: linear-gradient(135deg, #E3C46F 0%, #C69A3C 100%);
            --gradient-dark: linear-gradient(160deg, #0B1F1A 0%, #123228 100%);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
            --font-serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", serif;
            --font-num: "Barlow Condensed", "DIN Alternate", "Roboto Condensed", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--paper);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        a:hover {
            color: #085A41;
            text-decoration: underline;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1240px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section {
            padding: 88px 0;
        }

        .section-head {
            margin-bottom: 48px;
            max-width: 720px;
        }

        .section-head .section-index {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .section-head .section-index::after {
            content: "";
            width: 42px;
            height: 1px;
            background: var(--gradient-gold);
            display: inline-block;
        }

        .section-head h2 {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
            margin: 0 0 14px;
            letter-spacing: 0.01em;
        }

        .section-head p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .section-head.light h2 {
            color: var(--white);
        }

        .section-head.light p {
            color: rgba(255, 255, 255, 0.72);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 24px;
            border: 1px solid transparent;
            transition: all 0.22s ease;
        }

        .btn:focus-visible {
            outline: 2px dashed var(--gold);
            outline-offset: 4px;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: var(--white) !important;
            box-shadow: 0 4px 16px rgba(11, 107, 79, 0.26);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(11, 107, 79, 0.34);
            filter: brightness(1.06);
            text-decoration: none;
            color: var(--white) !important;
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.18);
            filter: none;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: rgba(11, 107, 79, 0.08);
            border-color: #085A41;
            color: #085A41;
            text-decoration: none;
            transform: translateY(-2px);
        }

        .btn-outline:active {
            transform: translateY(0);
            background: rgba(11, 107, 79, 0.14);
        }

        .btn-gold {
            background: var(--gradient-gold);
            color: var(--dark) !important;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 16px rgba(198, 154, 60, 0.28);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(198, 154, 60, 0.4);
            filter: brightness(1.05);
            text-decoration: none;
            color: var(--dark) !important;
        }

        .btn-outline-light {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.55);
            color: var(--white);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
            color: var(--white);
            text-decoration: none;
            transform: translateY(-2px);
        }

        .btn-lg {
            padding: 14px 30px;
            font-size: 16px;
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 14px;
            border-radius: 12px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(11, 107, 79, 0.1);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.4;
            white-space: nowrap;
        }

        .chip-gold {
            background: rgba(198, 154, 60, 0.14);
            color: #98732B;
        }

        /* ===== Dock 导航 ===== */
        .dock-wrap {
            position: fixed;
            top: 18px;
            left: 0;
            right: 0;
            z-index: 1080;
            display: flex;
            justify-content: center;
            pointer-events: none;
            padding: 0 16px;
        }

        .site-dock {
            pointer-events: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: min(920px, 100%);
            background: rgba(250, 247, 242, 0.86);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 10px 20px 10px 24px;
            box-shadow: var(--shadow);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .site-dock.scrolled {
            border-color: rgba(11, 107, 79, 0.22);
            box-shadow: 0 8px 32px rgba(11, 32, 26, 0.12);
        }

        .dock-logo {
            font-family: var(--font-sans);
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: 0.01em;
            white-space: nowrap;
            display: flex;
            align-items: baseline;
        }

        .dock-logo span {
            color: var(--primary);
            font-weight: 700;
        }

        .dock-logo:hover {
            text-decoration: none;
            color: var(--dark);
        }

        .dock-links {
            display: flex;
            align-items: center;
            gap: 26px;
        }

        .dock-links a {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            position: relative;
            padding: 6px 2px;
            white-space: nowrap;
        }

        .dock-links a:hover {
            color: var(--primary);
            text-decoration: none;
        }

        .dock-links a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            border-radius: 2px;
            transition: width 0.25s ease;
        }

        .dock-links a:hover::after,
        .dock-links a.active::after {
            width: 100%;
        }

        .dock-links a.active {
            color: var(--primary);
            font-weight: 700;
        }

        .dock-cta {
            white-space: nowrap;
        }

        .dock-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--border);
            background: var(--white);
            border-radius: 50%;
            font-size: 20px;
            line-height: 1;
            color: var(--primary);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .dock-toggle:hover {
            background: rgba(11, 107, 79, 0.08);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 76px;
            right: 16px;
            left: 16px;
            z-index: 1075;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: 0 20px 48px rgba(11, 32, 26, 0.18);
            padding: 12px;
            flex-direction: column;
            gap: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-menu a {
            display: block;
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
        }

        .mobile-menu a:hover {
            background: var(--paper);
            color: var(--primary);
            text-decoration: none;
        }

        .mobile-menu a.active {
            background: rgba(11, 107, 79, 0.1);
            color: var(--primary);
        }

        /* ===== Hero ===== */
        .hero {
            padding: 168px 0 88px;
            position: relative;
            overflow: hidden;
            background: var(--paper);
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -120px;
            right: -80px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(19, 163, 124, 0.14) 0%, rgba(198, 154, 60, 0.09) 65%, transparent 75%);
            filter: blur(70px);
            z-index: 0;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(11, 107, 79, 0.08);
            border: 1px solid rgba(11, 107, 79, 0.14);
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 22px;
        }

        .hero-badge i {
            color: var(--gold);
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: 50px;
            line-height: 1.22;
            font-weight: 700;
            margin: 0 0 20px;
            color: var(--dark);
            letter-spacing: 0.01em;
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.75;
            color: var(--text-muted);
            max-width: 440px;
            margin-bottom: 34px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 42px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0;
            border-top: 1px solid var(--border);
            padding-top: 28px;
        }

        .hero-stat-item {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            padding: 0 28px;
            position: relative;
        }

        .hero-stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 6px;
            bottom: 6px;
            width: 1px;
            background: var(--border);
        }

        .hero-stat-item:first-child {
            padding-left: 0;
        }

        .hero-stat-num {
            font-family: var(--font-num);
            font-size: 30px;
            font-weight: 700;
            line-height: 1.1;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .hero-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 18px 50px rgba(11, 32, 26, 0.16);
        }

        .hero-visual img {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
            background-color: #DDE8E2;
        }

        .hero-gold-arc {
            position: absolute;
            top: -26px;
            right: -26px;
            width: 110px;
            height: 110px;
            border: 5px solid rgba(198, 154, 60, 0.55);
            border-radius: 50%;
            border-right-color: transparent;
            border-bottom-color: transparent;
            transform: rotate(22deg);
            pointer-events: none;
        }

        /* ===== 快讯条 ===== */
        .info-ticker {
            background: var(--dark);
            color: var(--white);
            padding: 14px 0;
            overflow: hidden;
        }

        .info-ticker .ticker-inner {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .ticker-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--gradient-gold);
            color: var(--dark);
            font-size: 13px;
            font-weight: 800;
            padding: 4px 14px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .ticker-text {
            color: rgba(255, 255, 255, 0.88);
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ===== 痛点区 ===== */
        .section-pain {
            padding: 88px 0;
            background: var(--paper);
        }

        .pain-card {
            display: flex;
            gap: 18px;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(226, 223, 216, 0.7);
            transition: box-shadow 0.25s ease, transform 0.25s ease;
            height: 100%;
            position: relative;
        }

        .pain-card::before {
            content: "";
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 0;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 0 0 24px 24px;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .pain-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .pain-card:hover::before {
            opacity: 1;
        }

        .pain-icon {
            flex: 0 0 52px;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(11, 107, 79, 0.09);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .pain-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .pain-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-muted);
            margin: 0;
        }

        /* ===== 解决方案区 ===== */
        .section-solution {
            padding: 88px 0;
            background: var(--white);
        }

        .solution-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 100%;
            min-height: 360px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-hover);
        }

        .solution-visual img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #DDE8E2;
        }

        .solution-visual-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(11, 31, 26, 0.1) 0%, rgba(11, 31, 26, 0.78) 100%);
        }

        .solution-visual-text {
            position: relative;
            z-index: 2;
            padding: 32px;
            color: var(--white);
        }

        .solution-visual-text h3 {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .solution-visual-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin: 0;
        }

        .solution-feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            height: 100%;
        }

        .solution-feature {
            background: var(--paper);
            border: 1px solid rgba(226, 223, 216, 0.8);
            border-radius: var(--radius-md);
            padding: 26px;
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }

        .solution-feature:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(11, 107, 79, 0.25);
        }

        .feature-icon {
            display: inline-flex;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--gradient-main);
            color: var(--white);
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 18px;
        }

        .solution-feature h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .solution-feature p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        /* ===== 成果数据区 ===== */
        .section-stats {
            padding: 88px 0;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .section-stats::before {
            content: "";
            position: absolute;
            left: -120px;
            bottom: -140px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            border: 60px solid rgba(19, 163, 124, 0.12);
        }

        .section-stats::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -100px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 45px solid rgba(198, 154, 60, 0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 32px 16px;
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(198, 154, 60, 0.35);
        }

        .stat-num {
            font-family: var(--font-num);
            font-size: 56px;
            font-weight: 700;
            line-height: 1;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 600;
        }

        /* ===== 最新资讯 ===== */
        .section-news {
            padding: 88px 0;
            background: var(--paper);
        }

        .cms-news-list .row {
            align-items: stretch;
        }

        .news-feature {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(226, 223, 216, 0.8);
            box-shadow: var(--shadow);
            transition: box-shadow 0.25s ease, transform 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-feature:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .news-feature-img-link {
            display: block;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background-color: #DDE8E2;
        }

        .news-feature-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .news-feature:hover .news-feature-img {
            transform: scale(1.04);
        }

        .news-feature-body {
            padding: 26px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        .news-feature-body h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0;
        }

        .news-feature-body h3 a {
            color: var(--text);
        }

        .news-feature-body h3 a:hover {
            color: var(--primary);
            text-decoration: none;
        }

        .news-feature-body p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-muted);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-feature-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 8px;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }

        .more-link {
            font-weight: 700;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .more-link:hover {
            color: #085A41;
            text-decoration: none;
        }

        .news-list-stack {
            display: flex;
            flex-direction: column;
            gap: 0;
            height: 100%;
        }

        .news-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 20px 18px;
            border-radius: 16px;
            border-bottom: 1px solid var(--border);
            background: transparent;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .news-row:last-child {
            border-bottom: none;
        }

        .news-row:hover {
            background: rgba(19, 163, 124, 0.05);
            transform: translateX(4px);
            box-shadow: none;
            text-decoration: none;
        }

        .news-row-content {
            flex: 1;
            min-width: 0;
        }

        .news-row-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-row-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-row-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
            flex-shrink: 0;
        }

        .news-row-meta time {
            font-size: 12px;
            color: var(--text-muted);
        }

        .cms-news-empty {
            width: 100%;
            padding: 48px 24px;
            text-align: center;
            background: rgba(11, 107, 79, 0.045);
            border-radius: var(--radius-md);
            color: var(--text-muted);
            font-size: 15px;
            border: 1px dashed rgba(11, 107, 79, 0.2);
        }

        .news-empty-icon {
            font-size: 36px;
            color: var(--primary-light);
            margin-bottom: 10px;
        }

        .cms-news-empty p {
            margin: 0;
        }

        .news-more-empty {
            width: 100%;
            padding: 28px 16px;
            text-align: center;
            background: rgba(11, 107, 79, 0.03);
            border-radius: 16px;
            color: var(--text-muted);
            font-size: 14px;
            border: 1px dashed rgba(11, 107, 79, 0.15);
        }

        /* ===== 客户证言 ===== */
        .section-testimonials {
            padding: 88px 0;
            background: var(--white);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 24px;
            align-items: stretch;
        }

        .testimonial-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .testimonial-card {
            border-radius: var(--radius-lg);
            padding: 30px;
            position: relative;
        }

        .testimonial-card.light {
            background: var(--paper);
            border: 1px solid rgba(226, 223, 216, 0.85);
            box-shadow: var(--shadow);
        }

        .testimonial-card.light:hover {
            box-shadow: var(--shadow-hover);
        }

        .testimonial-card.dark {
            background: var(--gradient-dark);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 18px 50px rgba(11, 32, 26, 0.2);
        }

        .testimonial-quote-icon {
            font-size: 28px;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .testimonial-card p.quote {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .testimonial-card.dark p.quote {
            color: rgba(255, 255, 255, 0.92);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gradient-main);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            flex-shrink: 0;
        }

        .testimonial-card.dark .author-avatar {
            background: var(--gradient-gold);
            color: var(--dark);
        }

        .author-info {
            line-height: 1.4;
        }

        .author-info strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
        }

        .author-info span {
            font-size: 13px;
            color: var(--text-muted);
        }

        .testimonial-card.dark .author-info span {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ===== FAQ ===== */
        .section-faq {
            padding: 88px 0;
            background: var(--paper);
        }

        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: 16px !important;
            margin-bottom: 14px;
            background: var(--white);
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(11, 32, 26, 0.025);
        }

        .accordion-item:last-child {
            margin-bottom: 0;
        }

        .accordion-header {
            margin: 0;
        }

        .accordion-button {
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            padding: 20px 24px;
            background: var(--white);
            border: none;
            box-shadow: none;
            border-radius: 16px !important;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .accordion-button:hover {
            background: var(--paper);
            color: var(--primary);
        }

        .accordion-button:not(.collapsed) {
            background: rgba(11, 107, 79, 0.06);
            color: var(--primary);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
            outline: 2px dashed var(--gold);
            outline-offset: -2px;
        }

        .accordion-button::after {
            background-image: none !important;
            content: "+";
            font-size: 26px;
            font-weight: 400;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(198, 154, 60, 0.15);
            color: var(--gold);
            flex-shrink: 0;
            line-height: 1;
            transform: none;
            transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            background: var(--gradient-gold);
            color: var(--white);
        }

        .accordion-body {
            padding: 0 24px 22px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-muted);
            border-top: 1px solid rgba(226, 223, 216, 0.7);
            padding-top: 18px;
        }

        /* ===== CTA ===== */
        .section-cta {
            padding: 88px 0;
            background: var(--white);
        }

        .cta-panel {
            border-radius: 32px;
            padding: 58px 60px;
            background: var(--gradient-dark);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: "";
            position: absolute;
            right: -60px;
            top: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(19, 163, 124, 0.28), transparent 70%);
            pointer-events: none;
        }

        .cta-panel-text {
            position: relative;
            z-index: 2;
            max-width: 560px;
        }

        .cta-panel-text h2 {
            font-family: var(--font-serif);
            font-size: 30px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .cta-panel-text p {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            margin: 0;
        }

        .cta-panel-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            position: relative;
            z-index: 2;
            flex-shrink: 0;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.85);
            padding: 64px 0 30px;
        }

        .footer-brand {
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
            display: flex;
            align-items: baseline;
            gap: 5px;
        }

        .footer-brand span {
            color: var(--gold-light);
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            max-width: 280px;
        }

        .footer-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-badge i {
            color: var(--gold);
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 18px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.62);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--gold-light);
            text-decoration: none;
        }

        .footer-contact p {
            font-size: 14px;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.62);
        }

        .footer-contact i {
            color: var(--gold);
            margin-right: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            margin-top: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.48);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1199.98px) {
            .hero h1 {
                font-size: 42px;
            }

            .stats-grid {
                gap: 20px;
            }

            .stat-num {
                font-size: 46px;
            }

            .cta-panel {
                padding: 44px 38px;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 64px 0;
            }

            .section-pain,
            .section-solution,
            .section-stats,
            .section-news,
            .section-testimonials,
            .section-faq,
            .section-cta {
                padding: 64px 0;
            }

            .hero {
                padding: 140px 0 64px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero .row {
                flex-direction: column-reverse;
            }

            .hero-visual {
                margin-bottom: 32px;
            }

            .solution-feature-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-panel {
                flex-direction: column;
                gap: 28px;
            }

            .cta-panel-actions {
                width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .dock-links,
            .dock-cta {
                display: none;
            }

            .dock-toggle {
                display: inline-flex;
            }

            .mobile-menu {
                display: flex;
            }

            .dock-wrap {
                top: 12px;
                padding: 0 12px;
            }

            .site-dock {
                border-radius: 999px;
                padding: 8px 10px 8px 18px;
            }

            .dock-logo {
                font-size: 16px;
            }

            .section {
                padding: 48px 0;
            }

            .section-pain,
            .section-solution,
            .section-stats,
            .section-news,
            .section-testimonials,
            .section-faq,
            .section-cta {
                padding: 48px 0;
            }

            .section-head {
                margin-bottom: 32px;
            }

            .section-head h2 {
                font-size: 27px;
            }

            .hero {
                padding: 116px 0 48px;
            }

            .hero h1 {
                font-size: 31px;
                line-height: 1.3;
            }

            .hero-sub {
                font-size: 16px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-cta .btn {
                width: 100%;
            }

            .hero-stats {
                gap: 18px;
                padding-top: 20px;
            }

            .hero-stat-item {
                padding: 0 16px;
            }

            .hero-stat-item:first-child {
                padding-left: 0;
            }

            .hero-stat-num {
                font-size: 24px;
            }

            .hero-stat-label {
                font-size: 12px;
            }

            .pain-card {
                padding: 24px;
            }

            .solution-feature-grid {
                grid-template-columns: 1fr;
            }

            .solution-visual {
                min-height: 260px;
            }

            .stats-grid {
                gap: 14px;
            }

            .stat-item {
                padding: 24px 12px;
            }

            .stat-num {
                font-size: 40px;
            }

            .news-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 16px;
            }

            .news-row-meta {
                flex-direction: row;
                align-items: center;
                gap: 10px;
                width: 100%;
            }

            .news-feature-body {
                padding: 22px;
            }

            .cta-panel {
                border-radius: 24px;
                padding: 36px 24px;
            }

            .cta-panel-text h2 {
                font-size: 25px;
            }

            .cta-panel-actions .btn {
                width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .hero-stats {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .hero-stat-item::after {
                display: none;
            }

            .hero-stat-item {
                padding: 0 0 0 18px;
                border-left: 2px solid var(--border);
            }

            .hero-stat-item:first-child {
                padding-left: 18px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .btn-lg {
                width: 100%;
            }

            .dock-logo {
                font-size: 15px;
            }
        }

/* roulang page: article */
:root {
  --primary: #0B6B4F;
  --primary-light: #13A37C;
  --gold: #C69A3C;
  --gold-light: #E3C46F;
  --dark: #0B1F1A;
  --dark-2: #123228;
  --paper: #FAF7F2;
  --surface: #FFFFFF;
  --text: #223029;
  --text-muted: #5E6B65;
  --border: #E2DFD8;
  --focus-ring: #C69A3C;
  --radius-lg: 24px;
  --radius-sm: 16px;
  --radius-btn: 14px;
  --radius-pill: 999px;
  --radius-cta: 32px;
  --shadow: 0 6px 24px rgba(11, 32, 26, 0.06);
  --shadow-lg: 0 14px 36px rgba(11, 32, 26, 0.12);
  --grad-primary: linear-gradient(135deg, #0B6B4F 0%, #13A37C 100%);
  --grad-gold: linear-gradient(135deg, #E3C46F 0%, #C69A3C 100%);
  --grad-dark: linear-gradient(160deg, #0B1F1A 0%, #123228 100%);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
  --font-serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --font-number: "Barlow Condensed", "DIN Alternate", "Roboto Condensed", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #07543D;
  text-decoration: underline;
}
a:focus-visible,
button:focus-visible {
  outline: 2px dashed var(--focus-ring);
  outline-offset: 3px;
}
h1,
h2,
h3 {
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}
.container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}
.section-padding {
  padding: 88px 0;
}
.section-head {
  margin-bottom: 44px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(11, 107, 79, 0.08);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, filter 0.25s ease;
}
.btn-primary {
  background: var(--grad-primary);
  border-color: transparent;
  color: #ffffff;
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 107, 79, 0.28);
  filter: brightness(1.05);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.18);
}
.btn-primary:focus {
  outline: 2px dashed var(--focus-ring);
  outline-offset: 3px;
}
.btn-light {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}
.btn-light:hover {
  background: var(--gold-light);
  color: var(--dark);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 12px;
}

/* ---------- Floating Dock Nav ---------- */
.site-dock {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 980px;
  background: rgba(250, 247, 242, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1050;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.site-dock.scrolled {
  box-shadow: 0 10px 30px rgba(11, 32, 26, 0.12);
  border-color: #D3CFC5;
  background: rgba(250, 247, 242, 0.94);
}
.dock-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.dock-logo span {
  color: var(--gold);
  font-weight: 700;
}
.dock-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dock-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 4px;
  position: relative;
}
.dock-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.dock-links a:hover {
  color: var(--primary);
  text-decoration: none;
}
.dock-links a:hover::after {
  transform: scaleX(1);
}
.dock-links a.active {
  color: var(--primary);
}
.dock-links a.active::after {
  transform: scaleX(1);
}
.dock-cta {
  border-radius: var(--radius-pill);
  padding: 10px 22px;
}
.dock-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--dark);
  font-size: 20px;
  cursor: pointer;
}
.dock-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Article Page ---------- */
.article-page {
  padding: 150px 0 40px;
  min-height: 70vh;
}
.breadcrumb-bar {
  max-width: 860px;
  margin: 0 auto 20px;
}
.back-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
  transition: color 0.2s ease;
}
.back-news i {
  color: var(--gold);
  font-size: 15px;
}
.back-news:hover {
  color: var(--primary);
  text-decoration: none;
}
.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  box-shadow: var(--shadow);
}
.article-breadcrumb .breadcrumb {
  margin: 0;
  background: transparent;
  flex-wrap: nowrap;
}
.article-breadcrumb .breadcrumb-item {
  font-size: 14px;
  color: var(--text-muted);
}
.article-breadcrumb .breadcrumb-item a {
  color: var(--primary);
  font-weight: 500;
}
.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--gold);
  padding: 0 6px;
}
.article-breadcrumb .breadcrumb-item.active {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 221, 214, 0.65);
  box-shadow: var(--shadow);
  padding: 48px;
}
.article-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.article-header h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.28;
  color: var(--dark);
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-meta i {
  color: var(--gold);
}
.meta-cat {
  background: rgba(11, 107, 79, 0.10);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-weight: 600;
  font-size: 13px;
}
.article-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  background: #DDE8E2;
  box-shadow: var(--shadow);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 16px;
}
.article-body h2 {
  font-size: 24px;
  margin: 36px 0 16px;
  color: var(--dark);
}
.article-body h3 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--dark);
}
.article-body img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(198, 154, 60, 0.08);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  margin: 24px 0;
}
.article-body ul,
.article-body ol {
  margin: 16px 0 20px;
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-body a {
  color: var(--primary);
  font-weight: 500;
}
.article-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.pager-link {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.pager-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.pager-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.pager-link.pager-next .pager-label {
  justify-content: flex-end;
}
.pager-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
.pager-link:hover .pager-title {
  color: var(--primary);
}
.content-not-found {
  text-align: center;
  padding: 56px 24px;
}
.content-not-found i {
  font-size: 48px;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
}
.content-not-found h1 {
  font-size: 26px;
  margin-bottom: 12px;
}
.content-not-found p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---------- Related Cards ---------- */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.related-card {
  display: flex;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(224, 221, 214, 0.8);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rc-thumb {
  flex: 0 0 40%;
  max-width: 40%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #DDE8E2;
}
.rc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.related-card:hover .rc-thumb img {
  transform: scale(1.05);
}
.rc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.rc-cat {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.rc-body h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}
.rc-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.rc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rc-link:hover {
  color: #07543D;
  text-decoration: none;
}
.rc-link i {
  transition: transform 0.2s ease;
}
.rc-link:hover i {
  transform: translateX(3px);
}

/* ---------- CTA Panel ---------- */
.cta-section {
  padding: 40px 0 88px;
}
.cta-panel {
  position: relative;
  background: var(--grad-dark);
  border-radius: var(--radius-cta);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  color: #ffffff;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 196, 111, 0.28), transparent 70%);
  top: -100px;
  right: -80px;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  color: #ffffff;
  font-size: 30px;
  margin: 0 0 12px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 480px;
}
.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-actions .btn {
  min-width: 160px;
}
#contact {
  scroll-margin-top: 120px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 28px;
}
.site-footer .footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.site-footer .footer-brand span {
  color: var(--gold-light);
}
.footer-desc {
  font-size: 15px;
  max-width: 340px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-badge i {
  color: var(--gold-light);
}
.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
  text-decoration: none;
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact i {
  color: var(--gold-light);
  margin-right: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .article-card {
    padding: 40px;
  }
}
@media (max-width: 991.98px) {
  .section-padding {
    padding: 64px 0;
  }
  .site-dock {
    top: 12px;
    border-radius: 18px;
    padding: 10px 16px;
    max-width: calc(100% - 24px);
  }
  .dock-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .dock-links.open {
    display: flex;
  }
  .dock-links a {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
  }
  .dock-links a::after {
    display: none;
  }
  .dock-links a.active {
    background: rgba(11, 107, 79, 0.08);
    color: var(--primary);
  }
  .dock-links a:hover {
    background: rgba(11, 107, 79, 0.05);
  }
  .dock-cta {
    display: none;
  }
  .dock-toggle {
    display: inline-flex;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }
  .cta-actions {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .article-page {
    padding: 112px 0 32px;
  }
  .article-card {
    padding: 24px;
    border-radius: 20px;
  }
  .article-header h1 {
    font-size: 30px;
  }
  .section-title {
    font-size: 26px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    padding: 24px 0 48px;
  }
  .section-padding {
    padding: 48px 0;
  }
  .article-breadcrumb .breadcrumb-item.active {
    max-width: 180px;
  }
}
@media (max-width: 575.98px) {
  .btn {
    width: 100%;
    height: 48px;
  }
  .cta-actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }
  .cta-actions .btn {
    min-width: 0;
  }
  .article-pager {
    grid-template-columns: 1fr;
  }
  .related-card {
    flex-direction: column;
  }
  .rc-thumb {
    flex: none;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .rc-body {
    padding: 20px;
  }
  .site-dock {
    padding: 10px 12px;
  }
  .dock-logo {
    font-size: 17px;
  }
}

/* roulang page: category1 */
/* ==== 设计变量 ==== */
        :root {
            --primary: #0B6B4F;
            --primary-light: #13A37C;
            --gold: #C69A3C;
            --gold-light: #E3C46F;
            --dark: #0B1F1A;
            --dark-2: #123228;
            --paper: #FAF7F2;
            --white: #FFFFFF;
            --text: #223029;
            --text-muted: #5E6B65;
            --border: #E2DFD8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-btn: 14px;
            --shadow-sm: 0 6px 24px rgba(11,32,26,.06);
            --shadow-hover: 0 14px 36px rgba(11,32,26,.12);
            --font-serif: 'Songti SC', 'Noto Serif CJK SC', 'Source Han Serif SC', serif;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans SC', 'Noto Sans CJK SC', sans-serif;
            --font-num: 'Barlow Condensed', 'DIN Alternate', 'Roboto Condensed', sans-serif;
        }

        /* ==== 基础重置 ==== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background: var(--paper);
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif);
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 14px;
            color: var(--text);
        }

        p {
            margin: 0 0 14px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .3s ease;
        }

        a:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1240px;
        }

        /* ==== 按钮 ==== */
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            padding: 14px 28px;
            border: 1px solid transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all .3s ease;
            line-height: 1.4;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0B6B4F, #13A37C);
            border: 1px solid rgba(255,255,255,.08);
            color: #fff;
            box-shadow: 0 4px 16px rgba(11,107,79,.25);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: linear-gradient(135deg, #0E7D5C, #16B88E);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(11,107,79,.35);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 6px rgba(0,0,0,.2);
        }

        .btn-primary:focus-visible {
            outline: 2px dashed var(--gold);
            outline-offset: 3px;
        }

        .btn-outline-light {
            border: 1px solid rgba(255,255,255,.7);
            color: #fff;
            padding: 14px 28px;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: rgba(255,255,255,.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-light:focus-visible {
            outline: 2px dashed rgba(255,255,255,.8);
            outline-offset: 3px;
        }

        .btn-light {
            background: #fff;
            color: var(--dark);
            border: 1px solid rgba(255,255,255,.2);
            padding: 14px 28px;
        }

        .btn-light:hover {
            background: var(--paper);
            color: var(--dark);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 14px;
            border-radius: 12px;
            min-height: 40px;
        }

        .btn i {
            font-size: 1em;
        }

        /* ==== 通用区块 ==== */
        .section-pad {
            padding: 88px 0;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .02em;
            color: var(--primary);
            background: rgba(11,107,79,.08);
            border: 1px solid rgba(11,107,79,.14);
            padding: 5px 14px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .section-tag.light {
            background: rgba(227,196,111,.12);
            border-color: rgba(227,196,111,.3);
            color: var(--gold-light);
        }

        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 48px;
        }

        .section-head h2 {
            font-size: 34px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .section-head p {
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-muted);
            margin: 0;
        }

        .section-head.text-left {
            text-align: left;
            margin-left: 0;
        }

        /* ==== Dock 导航 ==== */
        .site-dock {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 40px);
            max-width: 900px;
            background: rgba(250,247,242,.86);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .site-dock.scrolled {
            box-shadow: 0 8px 32px rgba(11,32,26,.12);
            border-color: #D0CCC3;
        }

        .dock-logo {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 700;
            color: var(--dark);
            white-space: nowrap;
            line-height: 1.2;
        }

        .dock-logo span {
            color: var(--gold);
        }

        .dock-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dock-links a {
            position: relative;
            color: var(--text);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 999px;
            transition: background .3s ease, color .3s ease;
            text-decoration: none;
        }

        .dock-links a::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 4px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            opacity: 0;
            transform: scaleX(.4);
            transition: opacity .3s ease, transform .3s ease;
        }

        .dock-links a:hover {
            background: rgba(11,107,79,.06);
            color: var(--primary);
            text-decoration: none;
        }

        .dock-links a.active {
            color: var(--primary);
            font-weight: 600;
            background: rgba(11,107,79,.08);
        }

        .dock-links a.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .dock-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border: 1px solid var(--border);
            background: transparent;
            border-radius: 12px;
            color: var(--text);
            font-size: 20px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .dock-toggle:focus-visible {
            outline: 2px dashed var(--gold);
            outline-offset: 2px;
        }

        /* ==== 面包屑 ==== */
        .breadcrumb-wrap {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.2);
            padding: 7px 16px;
            border-radius: 999px;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            margin-bottom: 20px;
        }

        .breadcrumb {
            margin: 0;
        }

        .breadcrumb-item {
            font-size: 14px;
            color: rgba(255,255,255,.85);
        }

        .breadcrumb-item a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            transition: color .3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--gold-light);
        }

        .breadcrumb-item.active {
            color: var(--gold-light);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            color: rgba(255,255,255,.5);
            padding: 0 8px;
        }

        /* ==== 分类 Hero ==== */
        .category-hero {
            position: relative;
            padding: 170px 0 76px;
            background:
                linear-gradient(90deg, rgba(11,31,26,.88) 0%, rgba(11,107,79,.72) 55%, rgba(18,50,40,.5) 100%),
                url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .category-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 85% 20%, rgba(198,154,60,.2), transparent 40%);
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .category-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--gold-light);
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.18);
            padding: 7px 16px;
            border-radius: 999px;
            margin-bottom: 18px;
        }

        .category-title {
            font-family: var(--font-serif);
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: .01em;
        }

        .category-desc {
            font-size: 18px;
            color: rgba(255,255,255,.85);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .category-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            margin-top: 44px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,.2);
        }

        .hero-stat {
            min-width: 140px;
        }

        .hero-stat + .hero-stat {
            position: relative;
            padding-left: 40px;
        }

        .hero-stat + .hero-stat::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 1px;
            background: rgba(255,255,255,.25);
        }

        .hero-stat strong {
            display: block;
            font-family: var(--font-num);
            font-size: 42px;
            font-weight: 700;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .hero-stat span {
            display: block;
            color: rgba(255,255,255,.75);
            font-size: 14px;
            margin-top: 4px;
        }

        /* ==== 时间线区块 ==== */
        .timeline-section {
            padding: 88px 0;
            background: var(--paper);
            overflow: hidden;
        }

        .timeline {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 24px 0 8px;
        }

        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            border-radius: 999px;
            background: linear-gradient(180deg, rgba(198,154,60,.25), rgba(198,154,60,.75) 25%, rgba(226,223,216,.6) 85%, transparent);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 0 52px 56px 0;
        }

        .timeline-item.right {
            margin-left: 50%;
            padding: 0 0 56px 52px;
        }

        .timeline-dot {
            position: absolute;
            top: 32px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--paper);
            border: 4px solid var(--gold);
            box-shadow: 0 0 0 4px rgba(198,154,60,.22);
            z-index: 2;
        }

        .timeline-item.left .timeline-dot {
            right: -9px;
        }

        .timeline-item.right .timeline-dot {
            left: -9px;
        }

        .timeline-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .3s ease, transform .3s ease;
        }

        .timeline-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .timeline-media {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #DDE8E2;
        }

        .timeline-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .timeline-card:hover .timeline-media img {
            transform: scale(1.03);
        }

        .timeline-content {
            padding: 22px 26px 28px;
        }

        .timeline-label {
            display: inline-block;
            background: rgba(11,107,79,.1);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            margin-bottom: 12px;
        }

        .timeline-content h3 {
            font-size: 21px;
            margin-bottom: 8px;
        }

        .timeline-content p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0;
        }

        /* ==== 价值区块 ==== */
        .value-section {
            padding: 88px 0;
            background: #fff;
        }

        .value-section .section-head {
            margin-bottom: 28px;
        }

        .value-section .side-image {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-hover);
            width: 100%;
            object-fit: cover;
            aspect-ratio: 4 / 3;
        }

        .value-list {
            display: flex;
            flex-direction: column;
        }

        .value-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }

        .value-item:first-child {
            padding-top: 0;
        }

        .value-item:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

        .value-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(11,107,79,.12), rgba(19,163,124,.14));
            color: var(--primary);
            font-size: 22px;
        }

        .value-item h3 {
            font-family: var(--font-sans);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .value-item p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        /* ==== 场景区块 ==== */
        .scenario-section {
            padding: 88px 0;
            background: var(--paper);
        }

        .scenario-main {
            background: var(--dark);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            height: 100%;
            position: relative;
        }

        .scenario-main img {
            width: 100%;
            aspect-ratio: 16 / 11;
            object-fit: cover;
            display: block;
            opacity: .86;
        }

        .scenario-main-body {
            padding: 28px;
            color: #fff;
            position: relative;
        }

        .scenario-main-body h3 {
            color: #fff;
            font-size: 22px;
            margin-bottom: 8px;
        }

        .scenario-main-body p {
            color: rgba(255,255,255,.8);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .scenario-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.16);
            color: rgba(255,255,255,.9);
            font-size: 13px;
            padding: 4px 12px;
            border-radius: 999px;
            margin: 0 8px 8px 0;
        }

        .scenario-tag i {
            color: var(--gold-light);
        }

        .scenario-list {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .scenario-item {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 28px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: box-shadow .3s ease, transform .3s ease;
        }

        .scenario-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .scenario-item-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(11,107,79,.1), rgba(198,154,60,.12));
            color: var(--primary);
            font-size: 24px;
        }

        .scenario-item-body h3 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .scenario-item-body p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        .scenario-item > .bi-arrow-right {
            color: var(--gold);
            font-size: 18px;
            flex-shrink: 0;
        }

        .scenario-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 4px 0;
        }

        .scenario-link i {
            transition: transform .3s ease;
        }

        .scenario-link:hover i {
            transform: translateX(4px);
        }

        /* ==== 流程区块 ==== */
        .process-section {
            padding: 88px 0;
            background: linear-gradient(160deg, #0B1F1A, #123228);
            color: #fff;
        }

        .process-section .section-head h2 {
            color: #fff;
        }

        .process-section .section-head p {
            color: rgba(255,255,255,.7);
        }

        .process-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .process-row {
            display: flex;
            gap: 32px;
            align-items: flex-start;
            padding: 36px 0;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .process-row:first-child {
            padding-top: 0;
        }

        .process-row:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

        .process-num {
            font-family: var(--font-num);
            font-size: 60px;
            font-weight: 700;
            line-height: 1;
            min-width: 100px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .process-info h3 {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .process-info p {
            color: rgba(255,255,255,.7);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .process-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .process-tags span {
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.18);
            color: rgba(255,255,255,.85);
            font-size: 13px;
            padding: 4px 14px;
            border-radius: 999px;
        }

        /* ==== FAQ 区块 ==== */
        .faq-section {
            padding: 88px 0;
            background: #fff;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-md) !important;
            background: #fff;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .accordion-button {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            background: #fff;
            padding: 20px 24px;
            box-shadow: none;
            border-radius: var(--radius-md) !important;
            transition: background .3s ease;
        }

        .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 26px;
            font-weight: 500;
            color: var(--gold);
            line-height: 1;
            transform: none;
            transition: transform .3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
        }

        .accordion-button:not(.collapsed) {
            background: #fff;
            color: var(--text);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 4px rgba(198,154,60,.18);
            border-color: var(--gold);
            z-index: 1;
        }

        .accordion-button:hover {
            background: rgba(250,247,242,.6);
        }

        .accordion-body {
            color: var(--text-muted);
            line-height: 1.8;
            padding: 0 24px 22px;
            font-size: 15px;
        }

        /* ==== CTA 区块 ==== */
        .cta-section {
            padding: 88px 0;
            background: var(--paper);
        }

        .cta-panel {
            background:
                linear-gradient(160deg, rgba(11,31,26,.94), rgba(18,50,40,.88)),
                url('/assets/images/backpic/back-3.png') center / cover no-repeat;
            border-radius: 32px;
            padding: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            color: #fff;
            box-shadow: 0 20px 50px rgba(11,32,26,.2);
        }

        .cta-content {
            max-width: 520px;
        }

        .cta-content h2 {
            color: #fff;
            font-size: 32px;
            line-height: 1.35;
            margin-bottom: 10px;
        }

        .cta-content p {
            color: rgba(255,255,255,.75);
            font-size: 16px;
            line-height: 1.7;
            margin: 0 0 18px;
        }

        .cta-contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,.14);
        }

        .cta-contact-row span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,.7);
        }

        .cta-contact-row i {
            color: var(--gold-light);
        }

        .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ==== 页脚 ==== */
        .site-footer {
            background: var(--dark);
            color: rgba(255,255,255,.85);
            padding: 72px 0 24px;
        }

        .footer-brand {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand span {
            color: var(--gold);
        }

        .footer-desc {
            color: rgba(255,255,255,.6);
            font-size: 15px;
            max-width: 320px;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .footer-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-badge {
            background: rgba(255,255,255,.07);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 999px;
            padding: 4px 12px;
            font-size: 13px;
            color: rgba(255,255,255,.75);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-badge i {
            color: var(--gold-light);
        }

        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,.65);
            text-decoration: none;
            font-size: 15px;
            transition: color .3s ease;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-contact p {
            color: rgba(255,255,255,.65);
            font-size: 15px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact i {
            color: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 48px;
            padding-top: 22px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255,255,255,.55);
            margin: 0;
        }

        .footer-bottom a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

        /* ==== 响应式 ==== */
        @media (max-width: 1199px) {
            .category-title {
                font-size: 48px;
            }
            .hero-stat strong {
                font-size: 36px;
            }
            .process-num {
                font-size: 52px;
                min-width: 84px;
            }
        }

        @media (max-width: 991px) {
            .section-pad,
            .timeline-section,
            .value-section,
            .scenario-section,
            .process-section,
            .faq-section,
            .cta-section {
                padding: 64px 0;
            }

            .category-hero {
                padding: 150px 0 56px;
            }

            /* 时间线转单列 */
            .timeline::before {
                left: 12px;
            }

            .timeline-item,
            .timeline-item.right {
                width: 100%;
                margin-left: 0;
                padding: 0 0 44px 44px;
            }

            .timeline-item.left .timeline-dot,
            .timeline-item.right .timeline-dot {
                left: 3px;
                right: auto;
            }

            .value-section .side-image {
                max-height: 320px;
            }
        }

        @media (max-width: 767px) {
            body {
                font-size: 15px;
            }

            .section-pad,
            .timeline-section,
            .value-section,
            .scenario-section,
            .process-section,
            .faq-section,
            .cta-section {
                padding: 48px 0;
            }

            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .section-head {
                margin-bottom: 32px;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .section-head p {
                font-size: 15px;
            }

            /* Dock 移动端 */
            .site-dock {
                top: 12px;
                width: calc(100% - 24px);
                border-radius: 16px;
                padding: 10px 16px;
                flex-wrap: wrap;
                gap: 10px;
            }

            .dock-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #fff;
                border-radius: 16px;
                padding: 10px 8px;
                box-shadow: 0 8px 24px rgba(11,32,26,.1);
                border: 1px solid var(--border);
            }

            .dock-links.open {
                display: flex;
            }

            .dock-links a {
                line-height: 48px;
                padding: 0 16px;
                border-radius: 12px;
            }

            .dock-links a::after {
                display: none;
            }

            .dock-toggle {
                display: flex;
                margin-left: auto;
            }

            .dock-cta {
                width: auto;
                min-height: 40px;
                padding: 8px 16px;
                font-size: 14px;
            }

            .dock-logo {
                font-size: 20px;
            }

            /* Hero */
            .category-hero {
                padding: 128px 0 44px;
            }

            .category-title {
                font-size: 36px;
                margin-bottom: 10px;
            }

            .category-desc {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .category-actions .btn {
                width: 100%;
            }

            .hero-stats {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                margin-top: 30px;
                padding-top: 18px;
            }

            .hero-stat {
                padding: 12px 0;
            }

            .hero-stat + .hero-stat {
                padding-left: 0;
            }

            .hero-stat + .hero-stat::before {
                left: 0;
                top: 0;
                right: 0;
                bottom: auto;
                width: auto;
                height: 1px;
                background: rgba(255,255,255,.18);
            }

            .hero-stat strong {
                font-size: 32px;
            }

            /* 时间线 */
            .timeline {
                padding-top: 12px;
            }

            .timeline-card {
                border-radius: 16px;
            }

            .timeline-content {
                padding: 18px 20px 22px;
            }

            .timeline-content h3 {
                font-size: 18px;
            }

            /* 按钮移动端全宽 */
            .btn,
            .btn-primary,
            .btn-outline-light,
            .btn-light {
                width: 100%;
                min-height: 44px;
            }

            .dock-cta {
                width: auto;
            }

            /* 场景 */
            .scenario-item {
                padding: 20px;
                gap: 14px;
            }

            .scenario-item-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .scenario-main-body {
                padding: 22px;
            }

            /* 流程 */
            .process-row {
                gap: 20px;
                padding: 26px 0;
            }

            .process-num {
                font-size: 40px;
                min-width: 60px;
            }

            .process-info h3 {
                font-size: 18px;
            }

            /* FAQ */
            .accordion-button {
                font-size: 16px;
                padding: 16px 18px;
            }

            .accordion-body {
                padding: 0 18px 18px;
            }

            /* CTA */
            .cta-panel {
                padding: 32px 24px;
                border-radius: 24px;
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-content h2 {
                font-size: 26px;
            }

            .cta-actions {
                width: 100%;
            }

            .cta-actions .btn {
                flex: 1;
            }

            .cta-contact-row {
                gap: 12px;
                flex-direction: column;
            }

            /* 页脚 */
            .site-footer {
                padding-top: 48px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            .category-brand {
                font-size: 13px;
                padding: 5px 12px;
            }

            .dock-cta {
                display: none;
            }

            .hero-stat {
                min-width: 0;
            }

            .process-num {
                font-size: 34px;
            }

            .timeline-item,
            .timeline-item.right {
                padding-left: 36px;
            }

            .timeline::before {
                left: 8px;
            }

            .timeline-item.left .timeline-dot,
            .timeline-item.right .timeline-dot {
                left: -1px;
            }
        }

/* roulang page: category2 */
/* ============================================================
           全局设计变量与重置
           ============================================================ */
        :root {
            --primary: #0B6B4F;
            --primary-light: #13A37C;
            --gold: #C69A3C;
            --gold-light: #E3C46F;
            --dark: #0B1F1A;
            --dark-2: #123228;
            --bg: #FAF7F2;
            --surface: #FFFFFF;
            --text: #223029;
            --text-muted: #5E6B65;
            --border: #E2DFD8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --radius-btn: 14px;
            --radius-panel: 32px;
            --shadow-sm: 0 6px 24px rgba(11,32,26,0.06);
            --shadow-hover: 0 14px 36px rgba(11,32,26,0.12);
            --font-sans: "PingFang SC","Microsoft YaHei","Source Han Sans SC","Noto Sans CJK SC",sans-serif;
            --font-serif: "Songti SC","Noto Serif CJK SC","Source Han Serif SC",serif;
            --font-num: "Barlow Condensed","DIN Alternate","Roboto Condensed",sans-serif;
        }
        
        * {
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        
        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        a:hover {
            color: #084A36;
            text-decoration: underline;
        }
        
        .container {
            max-width: 1240px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ============================================================
           浮动 Dock 导航
           ============================================================ */
        .site-dock {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 900px;
            background: rgba(250,247,242,0.86);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1080;
            box-shadow: 0 4px 20px rgba(11,32,26,0.06);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        
        .site-dock.scrolled {
            background: rgba(250,247,242,0.94);
            box-shadow: 0 8px 32px rgba(11,32,26,0.12);
            border-color: #D8D2C8;
        }
        
        .dock-logo {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        
        .dock-logo span {
            color: var(--gold);
            font-weight: 600;
        }
        
        .dock-logo:hover {
            text-decoration: none;
            color: var(--primary);
        }
        
        .dock-links {
            display: flex;
            align-items: center;
            gap: 24px;
            margin: 0 12px;
        }
        
        .dock-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            position: relative;
            padding: 6px 2px;
            white-space: nowrap;
        }
        
        .dock-links a:hover {
            color: var(--primary);
            text-decoration: none;
        }
        
        .dock-links a.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .dock-links a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            border-radius: 2px;
        }
        
        .dock-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border: 1px solid transparent;
            border-radius: var(--radius-btn);
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }
        
        .dock-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(11,107,79,0.25);
            color: #fff;
            text-decoration: none;
        }
        
        .dock-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text);
            cursor: pointer;
            padding: 4px 8px;
        }

        /* ============================================================
           分类页头部
           ============================================================ */
        .cat-hero {
            padding: 140px 0 72px;
            background: var(--bg);
            position: relative;
            overflow: hidden;
        }
        
        .cat-hero::before {
            content: "";
            position: absolute;
            top: -80px;
            right: -100px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(19,163,124,0.10), rgba(19,163,124,0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .cat-hero::after {
            content: "";
            position: absolute;
            bottom: -60px;
            left: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(198,154,60,0.12), rgba(198,154,60,0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .cat-hero .container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 760px;
        }
        
        .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
        }
        
        .breadcrumb-custom a {
            color: var(--primary);
        }
        
        .breadcrumb-custom a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb-custom .sep {
            color: #C0BBB2;
        }
        
        .breadcrumb-custom .current {
            color: var(--text);
            font-weight: 500;
        }
        
        .cat-hero h1 {
            font-family: var(--font-serif);
            font-size: 52px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.01em;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .cat-hero .lead {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto 12px;
            line-height: 1.8;
        }

        /* ============================================================
           板块通用
           ============================================================ */
        section {
            padding: 88px 0;
            position: relative;
        }
        
        .section-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 56px;
        }
        
        .section-head .tagline {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.04em;
            background: rgba(198,154,60,0.10);
            border-radius: 999px;
            padding: 4px 14px;
            margin-bottom: 12px;
        }
        
        .section-head h2 {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
            margin-bottom: 12px;
        }
        
        .section-head p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ============================================================
           Z 字形交错卡片
           ============================================================ */
        .z-cards {
            background: var(--surface);
            padding-top: 88px;
            padding-bottom: 96px;
        }
        
        .z-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 56px;
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            min-height: 360px;
        }
        
        .z-row:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        
        .z-row:last-child {
            margin-bottom: 0;
        }
        
        .z-img {
            position: relative;
            min-height: 320px;
            overflow: hidden;
            background-color: #DDE8E2;
        }
        
        .z-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .z-text {
            padding: 40px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
        
        .z-text .step-num {
            font-family: var(--font-num);
            font-size: 15px;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        
        .z-text h3 {
            font-family: var(--font-serif);
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            line-height: 1.3;
        }
        
        .z-text p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 18px;
        }
        
        .z-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .z-link:hover {
            color: #084A36;
            gap: 10px;
            text-decoration: none;
        }
        
        .z-link i {
            transition: transform 0.2s ease;
        }
        
        .z-link:hover i {
            transform: translateX(4px);
        }
        
        .z-row.z-reverse .z-img {
            order: 2;
        }
        
        .z-row.z-reverse .z-text {
            order: 1;
        }

        /* ============================================================
           数据区
           ============================================================ */
        .stats-section {
            background: linear-gradient(160deg, var(--dark), var(--dark-2));
            padding: 88px 0;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(19,163,124,0.16), rgba(19,163,124,0) 60%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .stats-row {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px 12px;
        }
        
        .stat-item .stat-icon {
            font-size: 28px;
            color: var(--gold-light);
            margin-bottom: 8px;
            display: block;
        }
        
        .stat-item .stat-num {
            font-family: var(--font-num);
            font-size: 52px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 4px;
        }
        
        .stat-item .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            letter-spacing: 0.03em;
        }
        
        .stat-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.12);
            margin: 0;
        }

        /* ============================================================
           特色区（非对称 2+1）
           ============================================================ */
        .features-section {
            background: var(--bg);
            padding: 88px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 24px;
            align-items: stretch;
        }
        
        .feature-main {
            background: linear-gradient(150deg, var(--dark), var(--dark-2));
            border-radius: var(--radius-lg);
            padding: 44px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
            position: relative;
            overflow: hidden;
        }
        
        .feature-main::after {
            content: "";
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(198,154,60,0.25), rgba(198,154,60,0) 70%);
            border-radius: 50%;
        }
        
        .feature-main .feature-icon {
            font-size: 40px;
            color: var(--gold-light);
            margin-bottom: 20px;
        }
        
        .feature-main h3 {
            font-family: var(--font-serif);
            font-size: 24px;
            color: #fff;
            margin-bottom: 12px;
        }
        
        .feature-main p {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 0;
            max-width: 400px;
        }
        
        .feature-side {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 24px;
        }
        
        .feature-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        
        .feature-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        
        .feature-card .feature-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 12px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(19,163,124,0.10);
            border-radius: 12px;
        }
        
        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
        
        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ============================================================
           FAQ 手风琴
           ============================================================ */
        .faq-section {
            background: var(--surface);
            padding: 88px 0;
        }
        
        .faq-wrap {
            max-width: 840px;
            margin: 0 auto;
        }
        
        .accordion-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: none;
        }
        
        .accordion-item:last-child {
            margin-bottom: 0;
        }
        
        .accordion-button {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            padding: 20px 24px;
            background: #fff;
            border: none;
            box-shadow: none;
            cursor: pointer;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 4px rgba(198,154,60,0.18);
            border-radius: var(--radius-md);
        }
        
        .accordion-button:not(.collapsed) {
            background: #fff;
            color: var(--primary);
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 26px;
            font-weight: 500;
            color: var(--gold);
            transform: rotate(0deg);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            line-height: 1;
        }
        
        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--gold);
        }
        
        .accordion-body {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            padding: 0 24px 24px;
        }

        /* ============================================================
           CTA 区
           ============================================================ */
        .cta-section {
            background: var(--bg);
            padding: 64px 0 96px;
        }
        
        .cta-panel {
            background: linear-gradient(160deg, var(--dark), var(--dark-2));
            border-radius: var(--radius-panel);
            padding: 64px 72px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .cta-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
        }
        
        .cta-panel > * {
            position: relative;
            z-index: 2;
        }
        
        .cta-text h2 {
            font-family: var(--font-serif);
            font-size: 30px;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .cta-text p {
            font-size: 16px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 0;
            max-width: 480px;
        }
        
        .cta-actions {
            display: flex;
            gap: 14px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: var(--dark);
            font-weight: 600;
            font-size: 15px;
            border: none;
            border-radius: var(--radius-btn);
            padding: 14px 30px;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            cursor: pointer;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(198,154,60,0.35);
            color: var(--dark);
            filter: brightness(1.05);
            text-decoration: none;
        }
        
        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.45);
            font-weight: 500;
            font-size: 15px;
            border-radius: var(--radius-btn);
            padding: 14px 28px;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .btn-cta-outline:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border-color: #fff;
            text-decoration: none;
        }

        /* ============================================================
           页脚
           ============================================================ */
        .site-footer {
            background: var(--dark);
            color: rgba(255,255,255,0.85);
            padding: 72px 0 28px;
            font-size: 15px;
        }
        
        .footer-brand {
            font-family: var(--font-serif);
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        
        .footer-brand span {
            color: var(--gold-light);
        }
        
        .footer-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 320px;
        }
        
        .footer-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: rgba(255,255,255,0.75);
            background: rgba(255,255,255,0.06);
            border-radius: 999px;
            padding: 5px 14px;
        }
        
        .footer-badge i {
            color: var(--gold-light);
        }
        
        .footer-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 18px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 4px;
            text-decoration: none;
        }
        
        .footer-contact p {
            font-size: 14px;
            color: rgba(255,255,255,0.65);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-contact i {
            color: var(--gold-light);
            font-size: 16px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.10);
            padding-top: 24px;
            margin-top: 56px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .footer-bottom p {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            margin: 0;
        }
        
        .footer-bottom a {
            color: rgba(255,255,255,0.55);
        }
        
        .footer-bottom a:hover {
            color: var(--gold-light);
        }

        /* ============================================================
           响应式断点
           ============================================================ */
        @media (max-width: 1199px) {
            .z-text {
                padding: 32px;
            }
            
            .z-text h3 {
                font-size: 22px;
            }
            
            .cta-panel {
                padding: 48px 40px;
            }
        }
        
        @media (max-width: 991px) {
            .cat-hero {
                padding-top: 120px;
            }
            
            .cat-hero h1 {
                font-size: 40px;
            }
            
            .z-row {
                grid-template-columns: 1fr;
            }
            
            .z-img {
                min-height: 280px;
                position: relative;
                height: auto;
            }
            
            .z-img img {
                position: absolute;
            }
            
            .z-row.z-reverse .z-img {
                order: 1;
            }
            
            .z-row.z-reverse .z-text {
                order: 2;
            }
            
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-main {
                min-height: 300px;
            }
            
            .cta-panel {
                flex-direction: column;
                text-align: center;
                padding: 48px 32px;
            }
            
            .cta-text p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .cta-actions {
                justify-content: center;
            }
        }
        
        @media (max-width: 767px) {
            .site-dock {
                width: calc(100% - 24px);
                padding: 8px 16px !important;
                border-radius: 16px;
                top: 12px;
            }
            
            .dock-logo {
                font-size: 19px;
            }
            
            .dock-links {
                display: none;
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                right: 0;
                background: #fff;
                border-radius: 16px;
                padding: 12px 20px;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                box-shadow: 0 12px 32px rgba(11,32,26,0.14);
                border: 1px solid var(--border);
            }
            
            .dock-links.open {
                display: flex;
            }
            
            .dock-links a {
                padding: 12px 8px;
                font-size: 16px;
                border-bottom: 1px solid #F0EDE7;
            }
            
            .dock-links a:last-child {
                border-bottom: none;
            }
            
            .dock-links a.active::after {
                display: none;
            }
            
            .dock-links a.active {
                background: rgba(19,163,124,0.08);
                border-radius: 8px;
                color: var(--primary);
            }
            
            .dock-toggle {
                display: block;
            }
            
            .dock-cta {
                display: none;
            }
            
            section {
                padding: 48px 0;
            }
            
            .cat-hero {
                padding-top: 100px;
                padding-bottom: 48px;
            }
            
            .cat-hero h1 {
                font-size: 34px;
            }
            
            .cat-hero .lead {
                font-size: 15px;
            }
            
            .section-head {
                margin-bottom: 36px;
            }
            
            .section-head h2 {
                font-size: 26px;
            }
            
            .section-head p {
                font-size: 15px;
            }
            
            .z-cards {
                padding-top: 48px;
                padding-bottom: 56px;
            }
            
            .z-row {
                margin-bottom: 24px;
                border-radius: var(--radius-md);
            }
            
            .z-img {
                min-height: 220px;
            }
            
            .z-text {
                padding: 24px;
            }
            
            .z-text h3 {
                font-size: 20px;
            }
            
            .stats-section {
                padding: 48px 0;
            }
            
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 16px;
            }
            
            .stat-item .stat-num {
                font-size: 38px;
            }
            
            .features-section {
                padding: 48px 0;
            }
            
            .feature-main {
                padding: 28px;
                min-height: 260px;
            }
            
            .feature-card {
                padding: 24px;
            }
            
            .faq-section {
                padding: 48px 0;
            }
            
            .cta-section {
                padding: 40px 0 56px;
            }
            
            .cta-panel {
                padding: 36px 24px;
                border-radius: var(--radius-lg);
            }
            
            .cta-text h2 {
                font-size: 24px;
            }
            
            .cta-actions {
                width: 100%;
            }
            
            .btn-cta,
            .btn-cta-outline {
                width: 100%;
                text-align: center;
            }
            
            .site-footer {
                padding: 48px 0 24px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 520px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 20px 12px;
            }
            
            .stat-item {
                padding: 12px 8px;
            }
            
            .stat-item .stat-num {
                font-size: 32px;
            }
            
            .stat-item .stat-label {
                font-size: 13px;
            }
            
            .breadcrumb-custom {
                font-size: 13px;
                padding: 5px 12px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #0B6B4F;
            --primary-light: #13A37C;
            --gold: #C69A3C;
            --gold-light: #E3C46F;
            --ink-green: #0B1F1A;
            --paper: #FAF7F2;
            --surface: #FFFFFF;
            --text: #223029;
            --text-sub: #5E6B65;
            --border: #E2DFD8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-btn: 14px;
            --shadow-sm: 0 6px 24px rgba(11,32,26,0.06);
            --shadow-hover: 0 14px 36px rgba(11,32,26,0.12);
            --font-main: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
            --font-serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", serif;
            --font-display: "Barlow Condensed", "DIN Alternate", "Roboto Condensed", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-main);
            background: var(--paper);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
        }

        a:hover {
            color: #064A36;
            text-decoration: underline;
        }

        .container {
            max-width: 1240px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section {
            padding: 88px 0;
        }

        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 56px;
        }

        .section-head h2 {
            font-size: 34px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.01em;
            color: var(--text);
            margin-bottom: 12px;
        }

        .section-head p {
            color: var(--text-sub);
            font-size: 16px;
            margin-bottom: 0;
        }

        .btn {
            border-radius: var(--radius-btn);
            padding: 14px 28px;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid transparent;
            transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, background .25s ease;
        }

        .btn:focus,
        .btn:focus-visible {
            outline: 2px dashed var(--gold);
            outline-offset: 3px;
            box-shadow: 0 0 0 6px rgba(198,154,60,0.18);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 8px 24px rgba(11,107,79,0.22);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            filter: brightness(1.08);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(11,107,79,0.28);
            text-decoration: none;
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 3px 10px rgba(0,0,0,0.14);
        }

        .btn-outline-primary {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline-primary:hover {
            background: rgba(11,107,79,0.08);
            color: var(--primary);
            border-color: #064A36;
            text-decoration: none;
            transform: translateY(-2px);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            color: #fff;
            box-shadow: 0 8px 24px rgba(198,154,60,0.26);
        }

        .btn-gold:hover {
            filter: brightness(1.06);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(198,154,60,0.32);
            text-decoration: none;
        }

        .btn-gold:active {
            transform: translateY(0);
            box-shadow: inset 0 3px 10px rgba(0,0,0,0.12);
        }

        .btn-sm {
            padding: 10px 22px;
            font-size: 14px;
            border-radius: 12px;
        }

        /* Dock Navigation */
        .site-dock {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1050;
            width: calc(100% - 40px);
            max-width: 900px;
            background: rgba(250,247,242,0.86);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 20px rgba(11,32,26,0.05);
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .site-dock.scrolled {
            box-shadow: 0 8px 32px rgba(11,32,26,0.12);
            border-color: #CFCAC0;
        }

        .dock-logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .dock-logo span {
            color: var(--gold);
            font-weight: 700;
        }

        .dock-logo:hover {
            text-decoration: none;
            color: var(--primary);
        }

        .dock-links {
            display: flex;
            align-items: center;
            gap: 24px;
            margin: 0 auto;
        }

        .dock-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            padding: 6px 2px;
            position: relative;
            white-space: nowrap;
        }

        .dock-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold));
            border-radius: 2px;
            transition: width .3s ease;
        }

        .dock-links a:hover {
            color: var(--primary);
            text-decoration: none;
        }

        .dock-links a:hover::after {
            width: 100%;
        }

        .dock-links a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .dock-links a.active::after {
            width: 100%;
        }

        .dock-toggle {
            display: none;
            background: rgba(11,107,79,0.08);
            border: none;
            border-radius: 12px;
            width: 40px;
            height: 40px;
            font-size: 20px;
            color: var(--primary);
            line-height: 1;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .main-wrapper {
            padding-top: 96px;
        }

        /* Category Hero */
        .category-hero {
            background: linear-gradient(180deg, rgba(11,107,79,0.05) 0%, rgba(250,247,242,0.2) 100%);
            padding: 72px 0 56px;
            border-bottom: 1px solid var(--border);
        }

        .breadcrumb-wrap {
            margin-bottom: 28px;
        }

        .breadcrumb {
            display: inline-flex;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 6px 18px;
            margin: 0;
        }

        .breadcrumb-item {
            font-size: 14px;
            color: var(--text-sub);
        }

        .breadcrumb-item a {
            color: var(--primary);
        }

        .breadcrumb-item+.breadcrumb-item::before {
            content: "/";
            color: #B8B4AA;
        }

        .breadcrumb-item.active {
            color: var(--text);
            font-weight: 600;
        }

        .category-hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.01em;
            margin-bottom: 16px;
            color: var(--text);
        }

        .category-hero h1 span {
            color: var(--gold);
        }

        .category-hero .lead-desc {
            font-size: 17px;
            color: var(--text-sub);
            max-width: 640px;
            margin-bottom: 0;
        }

        /* Service Flow */
        .service-flow {
            background: var(--paper);
        }

        .flow-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .flow-item {
            display: flex;
            gap: 40px;
            padding: 48px 0;
            border-top: 1px solid var(--border);
        }

        .flow-item:first-child {
            border-top: none;
            padding-top: 0;
        }

        .flow-item:last-child {
            border-bottom: 1px solid var(--border);
        }

        .flow-number {
            font-family: var(--font-display);
            font-size: 72px;
            font-weight: 700;
            line-height: 1;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            min-width: 110px;
            letter-spacing: 0.02em;
        }

        .flow-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }

        .flow-content p {
            color: var(--text-sub);
            font-size: 16px;
            margin-bottom: 18px;
            max-width: 620px;
        }

        .flow-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .flow-tags span {
            display: inline-block;
            background: rgba(11,107,79,0.08);
            color: var(--primary);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* Service Assure */
        .service-assure {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .assure-media {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            position: relative;
            aspect-ratio: 4/3;
        }

        .assure-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #DDE8E2;
        }

        .assure-content {
            padding-left: 24px;
        }

        .assure-content h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 18px;
            color: var(--text);
        }

        .assure-content h2 span {
            color: var(--gold);
        }

        .assure-list {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
        }

        .assure-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 16px;
            color: var(--text);
        }

        .assure-list li:last-child {
            border-bottom: none;
        }

        .assure-list li i {
            color: var(--gold);
            font-size: 18px;
            margin-top: 3px;
        }

        /* Stats */
        .service-stats {
            background: linear-gradient(160deg, var(--ink-green) 0%, #123228 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .service-stats::before {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(19,163,124,0.18) 0%, transparent 60%);
            top: -180px;
            right: -120px;
            pointer-events: none;
        }

        .service-stats .section-head h2 {
            color: #fff;
        }

        .service-stats .section-head p {
            color: rgba(255,255,255,0.7);
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            padding: 36px 24px;
            text-align: center;
            transition: transform .25s ease, border-color .25s ease;
        }

        .stat-item:hover {
            transform: translateY(-4px);
            border-color: rgba(198,154,60,0.5);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            letter-spacing: 0.02em;
        }

        /* FAQ */
        .faq-section {
            background: var(--paper);
        }

        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .accordion {
            --bs-accordion-border-color: var(--border);
            --bs-accordion-bg: var(--surface);
            --bs-accordion-border-radius: var(--radius-md);
            --bs-accordion-inner-border-radius: var(--radius-md);
            --bs-accordion-btn-focus-box-shadow: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: var(--radius-md) !important;
            overflow: hidden;
            background: var(--surface);
        }

        .accordion-button {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            padding: 20px 24px;
            background: var(--surface);
            box-shadow: none;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: rgba(11,107,79,0.03);
            box-shadow: none;
        }

        .accordion-button:focus,
        .accordion-button:active {
            box-shadow: none;
            border: none;
            outline: 2px dashed var(--gold);
            outline-offset: -2px;
        }

        .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 26px;
            font-weight: 400;
            color: var(--gold);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(198,154,60,0.12);
            transition: transform .3s ease, background-color .3s ease;
            flex-shrink: 0;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            background-color: rgba(198,154,60,0.2);
        }

        .accordion-body {
            padding: 4px 24px 24px;
            color: var(--text-sub);
            line-height: 1.8;
            font-size: 16px;
        }

        /* CTA */
        .cta-section {
            padding: 80px 0;
            background: var(--paper);
        }

        .cta-box {
            background: linear-gradient(135deg, var(--ink-green) 0%, #123228 100%);
            border-radius: 32px;
            padding: 56px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .cta-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            pointer-events: none;
        }

        .cta-box>* {
            position: relative;
            z-index: 1;
        }

        .cta-box h2 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-box p {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            margin-bottom: 0;
        }

        /* Footer */
        .site-footer {
            background: var(--ink-green);
            color: rgba(255,255,255,0.82);
            padding: 72px 0 32px;
        }

        .footer-brand {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }

        .footer-brand span {
            color: var(--gold-light);
        }

        .footer-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.66);
            max-width: 320px;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 13px;
            color: rgba(255,255,255,0.82);
        }

        .footer-badge i {
            color: var(--gold-light);
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.66);
            font-size: 15px;
        }

        .footer-links a:hover {
            color: var(--gold-light);
            text-decoration: none;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: rgba(255,255,255,0.66);
            font-size: 15px;
        }

        .footer-contact i {
            color: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.12);
            margin-top: 48px;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 14px;
            color: rgba(255,255,255,0.55);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.55);
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .site-dock {
                max-width: 100%;
                margin: 0 20px;
                left: 0;
                transform: none;
                width: auto;
            }

            .stat-grid {
                gap: 16px;
            }

            .stat-number {
                font-size: 40px;
            }
        }

        @media (max-width: 991.98px) {
            .category-hero h1 {
                font-size: 38px;
            }

            .assure-content {
                padding-left: 0;
                margin-top: 32px;
            }

            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-box {
                flex-direction: column;
                text-align: center;
                padding: 48px 32px;
            }

            .flow-item {
                gap: 24px;
            }

            .flow-number {
                font-size: 56px;
                min-width: 80px;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 48px 0;
            }

            .site-dock {
                top: 12px;
                border-radius: 16px;
                padding: 10px 16px;
                align-items: center;
                gap: 8px;
                left: 0;
                transform: none;
                width: calc(100% - 24px);
                margin: 0 12px;
            }

            .dock-logo {
                font-size: 18px;
            }

            .dock-links {
                display: none;
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                right: 0;
                background: #fff;
                border-radius: 16px;
                box-shadow: 0 16px 40px rgba(11,32,26,0.14);
                padding: 12px;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                margin: 0;
            }

            .dock-links.open {
                display: flex;
            }

            .dock-links a {
                padding: 14px 16px;
                border-radius: 12px;
                font-size: 15px;
            }

            .dock-links a::after {
                display: none;
            }

            .dock-links a:hover,
            .dock-links a.active {
                background: rgba(11,107,79,0.08);
                color: var(--primary);
            }

            .dock-cta {
                display: none;
            }

            .dock-toggle {
                display: inline-flex;
                margin-left: auto;
            }

            .main-wrapper {
                padding-top: 88px;
            }

            .category-hero {
                padding: 48px 0 40px;
            }

            .category-hero h1 {
                font-size: 32px;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .flow-item {
                flex-direction: column;
                gap: 12px;
                padding: 36px 0;
            }

            .flow-number {
                font-size: 48px;
            }

            .flow-content h3 {
                font-size: 20px;
            }

            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-item {
                padding: 24px 16px;
            }

            .stat-number {
                font-size: 34px;
            }

            .cta-box {
                padding: 36px 20px;
                border-radius: 24px;
            }

            .cta-box h2 {
                font-size: 24px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
