/* roulang page: index */
:root {
            --mk-primary: #0C5A40;
            --mk-primary-deep: #0A3D2C;
            --mk-primary-soft: #D9E7DF;
            --mk-accent: #EE6A1B;
            --mk-accent-deep: #D2550E;
            --mk-page-bg: #F6F4ED;
            --mk-card-bg: #FFFFFF;
            --mk-ink: #1D241F;
            --mk-muted: #617068;
            --mk-border: #E3E2D8;
            --mk-shadow: 0 10px 32px rgba(15, 40, 28, 0.08);
            --mk-radius-sm: 4px;
            --mk-radius-md: 10px;
            --mk-radius-lg: 18px;
            --mk-radius-xl: 26px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            background-color: var(--mk-page-bg);
            color: var(--mk-ink);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: var(--mk-primary);
            text-decoration: none;
            transition: color 0.2s ease-out;
        }

        a:hover {
            color: var(--mk-accent-deep);
        }

        .container-mk {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .btn {
            border-radius: var(--mk-radius-md);
            font-weight: 600;
            transition: background-color 0.25s ease-out, color 0.25s ease-out, transform 0.2s ease-out, box-shadow 0.25s ease-out;
            padding: 12px 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid transparent;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .btn:focus,
        .btn-ghost:focus,
        .btn-outline:focus,
        .form-control:focus,
        .form-select:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(238, 106, 27, 0.25);
            border-color: var(--mk-accent);
        }

        .btn-primary-mk {
            background-color: var(--mk-accent);
            border-color: var(--mk-accent);
            color: #ffffff;
        }

        .btn-primary-mk:hover {
            background-color: var(--mk-accent-deep);
            border-color: var(--mk-accent-deep);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(210, 85, 14, 0.22);
        }

        .btn-primary-mk:active {
            transform: translateY(0);
            background-color: #b84809;
        }

        .btn-outline-mk {
            background-color: transparent;
            border-color: var(--mk-primary);
            color: var(--mk-primary);
        }

        .btn-outline-mk:hover {
            background-color: rgba(12, 90, 64, 0.06);
            border-color: var(--mk-primary-deep);
            color: var(--mk-primary-deep);
        }

        .btn-light-outline {
            background-color: transparent;
            border-color: rgba(255, 255, 255, 0.8);
            color: #ffffff;
        }

        .btn-light-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            color: #ffffff;
        }

        .section-eyebrow {
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--mk-muted);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-size: clamp(1.35rem, 2.4vw, 1.9rem);
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--mk-ink);
            letter-spacing: 0.01em;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--mk-muted);
            max-width: 640px;
            line-height: 1.8;
        }

        /* ===== 整体布局样式 ===== */
        .app-wrapper {
            display: flex;
            min-height: 100vh;
        }

        .sidebar {
            width: 252px;
            flex-shrink: 0;
            background-color: var(--mk-primary);
            color: #ffffff;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            z-index: 1040;
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 22px 20px 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .logo-mark {
            width: 42px;
            height: 42px;
            background-color: #ffffff;
            color: var(--mk-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.4;
            letter-spacing: 0.01em;
        }

        .logo-text small {
            display: block;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .sidebar-nav {
            padding: 14px 0;
            flex: 1;
        }

        .sidebar-nav .nav-item {
            margin-bottom: 2px;
        }

        .sidebar-nav .nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.94rem;
            border-left: 4px solid transparent;
            transition: all 0.2s ease;
            font-weight: 400;
        }

        .sidebar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.07);
            color: #ffffff;
            border-left-color: rgba(255, 255, 255, 0.3);
        }

        .sidebar-nav .nav-link.active {
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: var(--mk-accent);
            color: #ffffff;
            font-weight: 600;
        }

        .sidebar-nav .nav-link i {
            width: 20px;
            text-align: center;
            font-size: 0.94rem;
            color: rgba(255, 255, 255, 0.65);
        }

        .sidebar-nav .nav-link.active i {
            color: var(--mk-accent);
        }

        .sidebar-contact {
            padding: 18px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .sidebar-contact a {
            color: rgba(255, 255, 255, 0.8);
            display: block;
            margin-top: 4px;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .sidebar-contact a:hover {
            color: #ffffff;
        }

        .main-area {
            margin-left: 252px;
            width: calc(100% - 252px);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .top-nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            height: 64px;
            background-color: var(--mk-primary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .top-nav-mobile .mobile-header-bar {
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-left: 20px;
            padding-right: 16px;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05rem;
            color: #ffffff;
            font-weight: 600;
        }

        .mobile-toggle {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 10px;
            line-height: 1;
        }

        .offcanvas-mk {
            background-color: var(--mk-primary);
            color: #fff;
            max-width: 320px;
        }

        .offcanvas-mk .btn-close-white {
            opacity: 0.8;
        }

        .offcanvas-mk .offcanvas-body {
            padding: 0;
        }

        .content-wrap {
            flex: 1;
        }

        .page-footer {
            background-color: var(--mk-primary-deep);
            color: rgba(255, 255, 255, 0.7);
            padding: 28px 0 24px;
            margin-top: 0;
            width: 100%;
            font-size: 0.88rem;
        }

        .page-footer .container-mk {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .page-footer a {
            color: rgba(255, 255, 255, 0.8);
        }

        .page-footer a:hover {
            color: #fff;
        }

        .footer-logo-text {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2px;
        }

        .footer-meta {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== 首页 Hero ===== */
        .hero-section {
            position: relative;
            background-image: linear-gradient(103deg, rgba(6, 30, 21, 0.92) 20%, rgba(10, 61, 44, 0.45) 68%, rgba(8, 38, 28, 0.15)),
                url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center 60%;
            background-repeat: no-repeat;
            min-height: 540px;
            display: flex;
            align-items: center;
            border-radius: 0 0 var(--mk-radius-lg) var(--mk-radius-lg);
            position: relative;
            isolation: isolate;
        }

        .hero-section::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.07);
        }

        .hero-inner {
            padding: 76px 64px 68px 48px;
            max-width: 800px;
        }

        .hero-mark {
            display: inline-block;
            background: rgba(238, 106, 27, 0.15);
            border-left: 3px solid var(--mk-accent);
            color: #ffb98a;
            padding: 6px 14px;
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            margin-bottom: 24px;
            border-radius: 0 var(--mk-radius-md) var(--mk-radius-md) 0;
            font-weight: 500;
        }

        .hero-title {
            font-size: clamp(2rem, 3.6vw, 2.9rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 18px;
            letter-spacing: 0.01em;
        }

        .hero-lead {
            font-size: clamp(1rem, 1.3vw, 1.16rem);
            color: rgba(255, 255, 255, 0.84);
            max-width: 540px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-flag {
            position: absolute;
            bottom: 28px;
            right: 36px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.72rem;
            letter-spacing: 0.35em;
            writing-mode: vertical-rl;
            text-transform: uppercase;
            border-right: 2px solid rgba(238, 106, 27, 0.6);
            padding-right: 8px;
        }

        /* ===== 优惠阶梯 ===== */
        .plan-steps-section {
            padding: clamp(54px, 6.5vw, 96px) 0;
        }

        .step-cards {
            display: flex;
            gap: 20px;
            align-items: flex-end;
            margin-top: 44px;
            flex-wrap: wrap;
        }

        .step-card {
            background-color: var(--mk-card-bg);
            border-radius: var(--mk-radius-lg);
            padding: 30px 26px 26px;
            box-shadow: var(--mk-shadow);
            flex: 1;
            min-width: 260px;
            position: relative;
            transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
            border-bottom: 1px solid rgba(12, 90, 64, 0.05);
        }

        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(15, 40, 28, 0.12);
        }

        .step-card-highlight {
            background-color: var(--mk-primary);
            color: #ffffff;
            box-shadow: var(--mk-shadow);
            border-bottom: none;
        }

        .step-card-highlight:hover {
            box-shadow: 0 18px 40px rgba(10, 61, 44, 0.2);
        }

        .step-card-highlight .step-card-text {
            color: rgba(255, 255, 255, 0.75);
        }

        .step-card-highlight .card-list li {
            color: rgba(255, 255, 255, 0.82);
        }

        .step-card-highlight .card-list li i {
            color: #7fb99f;
        }

        .step-card-highlight .price-num {
            color: #ffffff;
        }

        .step-card-highlight .btn-outline-mk {
            border-color: rgba(255, 255, 255, 0.7);
            color: #ffffff;
        }

        .step-card-highlight .btn-outline-mk:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            color: #ffffff;
        }

        .step-num {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--mk-primary);
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            opacity: 0.6;
        }

        .step-card-highlight .step-num {
            color: rgba(255, 255, 255, 0.6);
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0.01em;
        }

        .step-badge {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.74rem;
            font-weight: 600;
            margin-bottom: 16px;
            background: rgba(12, 90, 64, 0.08);
            color: var(--mk-primary);
        }

        .step-card-highlight .step-badge {
            background: var(--mk-accent);
            color: #ffffff;
        }

        .step-card-text {
            color: #617068;
            font-size: 0.9rem;
            margin-bottom: 18px;
            line-height: 1.75;
        }

        .card-list {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
        }

        .card-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.94rem;
            line-height: 1.6;
            color: #3e4b43;
        }

        .card-list li i {
            color: var(--mk-primary);
            margin-top: 4px;
        }

        .price-box {
            margin-bottom: 20px;
            border-top: 1px dashed var(--mk-border);
            padding-top: 18px;
        }

        .price-word {
            font-size: 0.74rem;
            color: var(--mk-muted);
            display: block;
            margin-bottom: 2px;
        }

        .price-num {
            font-size: 2rem;
            font-weight: 700;
            color: var(--mk-primary);
        }

        .price-num span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--mk-muted);
        }

        .price-old {
            font-size: 0.8rem;
            color: var(--mk-muted);
            text-decoration: line-through;
            margin-left: 8px;
            font-weight: 400;
        }

        .step-cta {
            text-align: left;
        }

        /* ===== 核心卖点 / 数据引用 ===== */
        .feature-section {
            background-color: #EDEAE1;
            padding: clamp(54px, 6.5vw, 85px) 0;
            border-radius: var(--mk-radius-lg);
        }

        .feature-grid {
            display: flex;
            gap: 18px;
            margin-top: 38px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .feature-card-simple {
            background-color: #fff;
            border-radius: var(--mk-radius-md);
            padding: 26px 22px;
            box-shadow: 0 4px 14px rgba(15, 40, 28, 0.04);
            width: 235px;
            border-left: 3px solid var(--mk-primary);
            transition: transform 0.2s ease-out;
        }

        .feature-card-simple:hover {
            transform: translateY(-3px);
        }

        .feature-symbol {
            background-color: var(--mk-primary-soft);
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--mk-primary);
            font-size: 1.25rem;
            margin-bottom: 14px;
        }

        .feature-card-simple h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--mk-ink);
        }

        .feature-card-simple p {
            font-size: 0.88rem;
            color: var(--mk-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ===== 对比表 ===== */
        .compare-section {
            padding: clamp(54px, 6.5vw, 96px) 0;
        }

        .table-compare-wrap {
            overflow-x: auto;
            margin-top: 38px;
            background-color: #fff;
            border-radius: var(--mk-radius-lg);
            box-shadow: var(--mk-shadow);
        }

        .compare-table {
            width: 100%;
            min-width: 780px;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .compare-table th,
        .compare-table td {
            padding: 18px 16px;
            text-align: left;
            border-bottom: 1px solid var(--mk-border);
            vertical-align: top;
        }

        .compare-table thead th {
            background-color: var(--mk-primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding-top: 20px;
            padding-bottom: 20px;
            border-bottom-color: var(--mk-primary-deep);
            white-space: nowrap;
        }

        .compare-table thead th:first-child {
            border-radius: var(--mk-radius-lg) 0 0 0;
        }

        .compare-table thead th:last-child {
            border-radius: 0 var(--mk-radius-lg) 0 0;
        }

        .compare-table td.dim-name {
            font-weight: 600;
            color: var(--mk-ink);
        }

        .compare-table th.dim-label {
            background: var(--mk-primary-deep);
            width: 190px;
        }

        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }

        .compare-table tr td {
            background-color: #fff;
        }

        .compare-pick {
            background-color: #EDF4F0;
        }

        .compare-pick .table-hot {
            color: var(--mk-accent);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .badge-mk-rec {
            background-color: var(--mk-accent);
            color: #fff;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            vertical-align: middle;
        }

        .compare-table .btn-sm {
            padding: 8px 14px;
            font-size: 0.82rem;
        }

        .compare-cell-note {
            font-size: 0.82rem;
            color: var(--mk-muted);
            display: block;
            margin-top: 4px;
        }

        /* ===== 资讯列表 / CMS区域 ===== */
        .news-section {
            padding: clamp(54px, 6.5vw, 80px) 0;
            background-color: #FDFCF8;
            border-radius: var(--mk-radius-lg);
        }

        .news-layout {
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 30px;
            margin-top: 44px;
        }

        .news-intro {
            padding-right: 20px;
        }

        .news-intro p {
            font-size: 0.95rem;
            color: var(--mk-muted);
            line-height: 1.8;
        }

        .news-list {
            display: flex;
            flex-direction: column;
        }

        .news-item {
            display: flex;
            flex-direction: row;
            padding: 20px 8px 20px 14px;
            border-bottom: 1px solid var(--mk-border);
            transition: background-color 0.2s ease-out, border-left-color 0.2s ease;
            border-left: 3px solid transparent;
            text-decoration: none;
            color: inherit;
        }

        .news-item:hover {
            border-left-color: var(--mk-accent);
            background-color: rgba(246, 244, 237, 0.6);
        }

        .news-meta {
            min-width: 120px;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .news-cat-tag {
            display: inline-block;
            background-color: var(--mk-primary-soft);
            color: var(--mk-primary);
            padding: 2px 10px;
            border-radius: 4px;
            font-size: 0.76rem;
            font-weight: 600;
        }

        .news-date {
            font-size: 0.82rem;
            color: var(--mk-muted);
            margin-top: 7px;
            display: block;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            font-size: 1.02rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--mk-ink);
            transition: color 0.2s;
        }

        .news-item:hover .news-title {
            color: var(--mk-primary);
        }

        .news-summary {
            font-size: 0.9rem;
            color: var(--mk-muted);
            max-width: 640px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }

        .news-read-more {
            font-size: 0.84rem;
            color: var(--mk-primary);
            font-weight: 500;
        }

        .news-empty {
            min-height: 180px;
            background-color: #fff;
            border: 2px dashed var(--mk-border);
            border-radius: var(--mk-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px;
            color: var(--mk-muted);
            font-size: 0.92rem;
        }

        .news-empty-icon {
            font-size: 28px;
            color: #9BA89F;
            margin-bottom: 8px;
        }

        /* ===== 限时入口 ===== */
        .cta-band {
            padding: 34px 0 0;
        }

        .cta-band-box {
            background: linear-gradient(105deg, var(--mk-primary), var(--mk-primary-deep));
            color: #fff;
            border-radius: var(--mk-radius-lg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 42px 38px;
            gap: 28px;
            flex-wrap: wrap;
        }

        .cta-band-title {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
            font-weight: 700;
            margin-bottom: 5px;
            color: #fff;
        }

        .cta-band-text {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }

        .cta-timer {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            margin-top: 6px;
        }

        .cta-timer-item {
            background-color: rgba(0, 0, 0, 0.25);
            padding: 8px 10px;
            border-radius: 8px;
            font-size: 1.3rem;
            font-weight: 600;
            display: flex;
            flex-direction: column;
            text-align: center;
            min-width: 55px;
            letter-spacing: 0.02em;
        }

        .cta-timer-item span:first-child {
            font-size: 1.4rem;
            font-family: "SF Mono", Menlo, Consolas, monospace;
        }

        .cta-timer-item span:last-child {
            font-size: 0.66rem;
            opacity: 0.7;
            text-align: center;
            margin-top: 2px;
            font-weight: 400;
        }

        .cta-btn-area .btn {
            white-space: nowrap;
        }

        /* ===== 咨询表单 ===== */
        .contact-section {
            padding: clamp(54px, 6.5vw, 96px) 0;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 36px;
            margin-top: 44px;
        }

        .contact-info {
            padding-right: 24px;
        }

        .contact-info-title {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .contact-info-list {
            margin: 22px 0 0;
            padding: 0;
            list-style: none;
        }

        .contact-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 0.94rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #3e4b43;
        }

        .contact-info-list i {
            width: 38px;
            height: 38px;
            background-color: var(--mk-primary-soft);
            color: var(--mk-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-form-card {
            background: #fff;
            border-radius: var(--mk-radius-md);
            padding: 28px 30px;
            box-shadow: var(--mk-shadow);
        }

        .contact-form-card .form-label {
            font-size: 0.86rem;
            font-weight: 600;
            color: var(--mk-ink);
            margin-bottom: 6px;
        }

        .form-control-mk,
        .form-select-mk {
            background-color: #F7F5EF;
            border: 1px solid var(--mk-border);
            border-radius: var(--mk-radius-sm);
            font-size: 0.95rem;
            padding: 12px 14px;
            height: auto;
            min-height: 46px;
            color: var(--mk-ink);
            transition: border-color 0.2s, background-color 0.2s;
        }

        .form-control-mk:focus,
        .form-select-mk:focus {
            background-color: #fff;
            border-color: var(--mk-accent);
            box-shadow: 0 0 0 2px rgba(238, 106, 27, 0.15);
        }

        .form-control-mk::placeholder {
            color: #AAB4AD;
        }

        textarea.form-control-mk {
            min-height: 110px;
        }

        .form-check-input:checked {
            background-color: var(--mk-primary);
            border-color: var(--mk-primary);
        }

        .form-hint {
            font-size: 0.82rem;
            color: var(--mk-muted);
            text-align: center;
            margin-top: 12px;
            Line-height: 2;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding-bottom: clamp(54px, 6.5vw, 80px);
        }

        .faq-accordion {
            max-width: 860px;
            margin: 0 auto;
            margin-top: 36px;
        }

        .faq-item {
            background: var(--mk-card-bg);
            border: 1px solid var(--mk-border) !important;
            border-radius: var(--mk-radius-md) !important;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .faq-item+.faq-item {
            border-top: 1px solid var(--mk-border);
        }

        .faq-item .accordion-button {
            background: var(--mk-card-bg);
            color: var(--mk-ink);
            font-weight: 600;
            padding: 18px 22px;
            font-size: 0.98rem;
            border: none;
            box-shadow: none;
        }

        .faq-item .accordion-button::after {
            content: '\2b';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            background-image: none;
            font-size: 1rem;
            color: var(--mk-primary);
            margin-left: auto;
            width: auto;
            height: auto;
        }

        .faq-item .accordion-button:not(.collapsed)::after {
            content: '\00d7';
        }

        .faq-item .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .faq-item .accordion-button:not(.collapsed) {
            background-color: #fff;
            color: var(--mk-primary);
            box-shadow: none;
        }

        .faq-item .accordion-body {
            background-color: #fff;
            padding: 0 22px 20px;
            color: var(--mk-muted);
            font-size: 0.9rem;
            line-height: 1.75;
            border-top: 1px dotted var(--mk-border);
            padding-top: 14px;
            box-shadow: none;
        }

        .faq-accordion .accordion-header {
            background: #fff;
        }

        /* ===== 面包屑 ===== */

        .breadcrumb-area {
            padding-top: 20px;
            padding-bottom: 4px;
            font-size: 0.85rem;
        }

        .breadcrumb-mk {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 0;
            margin: 0;
            color: var(--mk-muted);
        }

        .breadcrumb-mk li {
            display: inline-flex;
            align-items: center;
        }

        .breadcrumb-mk li+li::before {
            content: "/";
            margin-right: 6px;
            color: #B3BDB5;
        }

        .breadcrumb-mk a {
            color: var(--mk-muted);
        }

        .breadcrumb-mk a:hover {
            color: var(--mk-primary);
        }

        /* ===== 分类营销页模块 ===== */
        .category-hero {
            background-image: linear-gradient(93deg, rgba(5, 25, 18, 0.9) 15%, rgba(10, 61, 44, 0.42) 70%, rgba(7, 25, 18, 0.2)),
                url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 var(--mk-radius-lg) var(--mk-radius-lg);
            padding: 60px 48px;
            min-height: 240px;
            display: flex;
            align-items: center;
        }

        .category-hero h1 {
            color: #fff;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .category-hero .cat-hero-desc {
            color: rgba(255, 255, 255, 0.82);
            max-width: 520px;
            font-size: 0.98rem;
        }

        .cat-hero-tagline {
            display: block;
            margin-bottom: 12px;
            color: var(--mk-accent);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
        }

        .cat-card-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        %        /* ===== 通用组件辅助 ===== */
        .visual-line {
            height: 4px;
            width: 42px;
            background: var(--mk-accent);
            border-radius: 2px;
            margin: 12px 0 18px;
        }

        .img-frame-mk {
            border-radius: var(--mk-radius-md);
            overflow: hidden;
        }

        /* ===== media responsive css ===== */
        @media (max-width: 1199px) {
            .main-area {
                margin-left: 220px;
                width: calc(100% - 220px);
            }

            .sidebar {
                width: 220px;
            }

            .hero-inner {
                padding-left: 38px;
            }
        }

        @media (max-width: 991px) {
            .sidebar {
                display: none;
            }

            .main-area {
                margin-left: 0;
                width: 100%;
            }

            .top-nav-mobile {
                display: block;
            }

            .content-wrap {
                padding-top: 72px;
            }

            .news-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .news-intro {
                padding-right: 0;
            }

            .contact-layout {
                grid-template-columns: 1fr;
            }

            .cta-band-box {
                padding: 32px 24px;
            }

            .step-cards {
                gap: 16px;
                align-items: stretch;
            }

            .step-card .step-cta {
                text-align: center;
            }

            .hero-inner {
                padding: 58px 32px;
                max-width: 96%;
            }
        }

        @media (max-width: 767px) {
            body {
                font-size: 0.95rem;
            }

            .container-mk {
                padding-left: 16px;
                padding-right: 16px;
            }

            .top-nav-mobile .mobile-header-bar {
                padding-left: 16px;
                padding-right: 12px;
            }

            .hero-section {
                border-radius: 0 0 var(--mk-radius-md) var(--mk-radius-md);
                min-height: 470px;
            }

            .hero-inner {
                padding: 48px 20px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-lead {
                font-size: 0.95rem;
            }

            .hero-flag {
                display: none;
            }
            .compare-table {
                min-width: 640px;
            }

            .feature-grid {
                flex-direction: column;
                align-items: stretch;
            }

            .feature-card-simple {
                width: 100%;
            }

            .cta-band-box {
                flex-direction: column;
            }

            .cta-timer {
                gap: 8px;
            }

            .cta-timer-item {
                min-width: 44px;
                font-size: 1.1rem;
                padding: 6px 6px;
            }

            .news-item {
                flex-direction: column;
                padding: 14px 6px;
            }

            .news-meta {
                margin-right: 0;
                margin-bottom: 6px;
                min-width: auto;
            }

            .news-date {
                margin-top: 2px;
            }

            .page-footer .container-mk {
                flex-direction: column;
                gap: 8px;
                justify-content: center;
                text-align: center;
            }

            .contact-form-card {
                padding: 20px;
            }

            .category-hero {
                padding: 40px 20px;
                min-height: 200px;
            }

            .category-hero h1 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 520px) {
            .step-cards {
                flex-direction: column;
            }

            .cta-timer {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

/* roulang page: article */
:root {
    --bs-primary: #0C5A40;
    --bs-primary-rgb: 12, 90, 64;
    --bs-link-color: #0C5A40;
    --bs-link-hover-color: #D2550E;
    --mk-primary: #0C5A40;
    --mk-primary-deep: #0A3D2C;
    --mk-primary-soft: #D9E7DF;
    --mk-accent: #EE6A1B;
    --mk-accent-deep: #D2550E;
    --mk-page-bg: #F6F4ED;
    --mk-card-bg: #FFFFFF;
    --mk-ink: #1D241F;
    --mk-muted: #617068;
    --mk-border: #E3E2D8;
    --mk-shadow: 0 10px 32px rgba(15, 40, 28, 0.08);
    --mk-shadow-hover: 0 16px 36px rgba(15, 40, 28, 0.12);
    --mk-radius-sm: 4px;
    --mk-radius-md: 10px;
    --mk-radius-lg: 18px;
    --mk-radius-xl: 26px;
    --mk-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--mk-page-bg);
    color: var(--mk-ink);
    font-family: var(--mk-font);
    font-size: 1rem;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--mk-ink);
    line-height: 1.3;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
}

p {
    margin-top: 0;
}

a {
    color: var(--mk-primary);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease-out;
}

a:hover {
    color: var(--mk-accent-deep);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(238, 106, 27, 0.55);
    outline-offset: 2px;
    border-radius: 4px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul, ol {
    padding-left: 1.25rem;
}

i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", sans-serif;
}

/* 按钮系统 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--mk-radius-md);
    font-family: var(--mk-font);
    font-weight: 600;
    line-height: 1;
    padding: 0 26px;
    height: 46px;
    letter-spacing: 0.02em;
    transition: all 0.25s ease-out;
}

.btn i {
    font-size: 0.9em;
}

.btn:active {
    transform: scale(0.97);
}

.btn-accent {
    background: var(--mk-accent);
    color: #FFFFFF;
    border-color: var(--mk-accent);
}

.btn-accent:hover {
    background: var(--mk-accent-deep);
    border-color: var(--mk-accent-deep);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(210, 85, 14, 0.22);
}

.btn-ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-ghost-deep {
    background: transparent;
    color: var(--mk-primary);
    border-color: rgba(12, 90, 64, 0.45);
}

.btn-ghost-deep:hover {
    background: var(--mk-primary-soft);
    border-color: var(--mk-primary);
    color: var(--mk-primary);
}

/* 桌面左侧导航栏 */
.mk-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    display: flex;
    flex-direction: column;
    width: 252px;
    margin: 0;
    padding: 0 16px 24px;
    background: var(--mk-primary-deep);
    color: #FFFFFF;
    z-index: 1040;
    border: none;
}

.mk-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 6px 22px;
    margin: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-brand-symbol {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mk-accent);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 18px rgba(8, 28, 20, 0.3);
}

.mk-brand-name,
.mk-brand-mobile {
    font-size: 1.1rem;
    font-weight: 750;
    line-height: 1.2;
    color: #FFFFFF;
    white-space: nowrap;
}

.mk-brand-name small,
.mk-brand-mobile small {
    display: block;
    margin-top: 3px;
    font-size: 0.66rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.14em;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    padding: 22px 4px 0;
}

.sidebar-nav .navbar-nav {
    width: 100%;
    gap: 4px;
    margin: 0;
    list-style: none;
    padding: 0;
}

.sidebar-nav .nav-item {
    margin: 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 13px 16px;
    border-radius: 8px;
    border-left: 4px solid transparent;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sidebar-nav .nav-link i {
    width: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.98rem;
    flex: 0 0 auto;
}

.sidebar-nav .nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.07);
}

.sidebar-nav .nav-link:hover i {
    color: #FFFFFF;
}

.sidebar-nav .nav-link.active,
.sidebar-nav .nav-link[aria-current="page"] {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.09);
    border-left-color: var(--mk-accent);
    font-weight: 650;
}

.sidebar-nav .nav-link.active i,
.sidebar-nav .nav-link[aria-current="page"] i {
    color: var(--mk-accent);
}

.sidebar-tip {
    margin-top: auto;
    padding: 18px 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sidebar-tip-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.sidebar-tip-text i {
    margin-top: 3px;
    color: var(--mk-accent);
}

/* 移动端顶栏 */
.mk-topbar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1030;
    height: 64px;
    background: var(--mk-primary-deep);
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: #FFFFFF;
}

.mk-topbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.mk-topbar-brand:hover {
    color: #FFFFFF;
}

.mk-topbar .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
}

.mk-topbar .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

/* 移动抽屉 */
.mk-offcanvas {
    width: min(320px, 86vw) !important;
    background: var(--mk-primary-deep);
    color: #FFFFFF;
    border: none;
}

.mk-offcanvas .offcanvas-header {
    padding: 18px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-offcanvas .offcanvas-header .btn-close {
    filter: invert(1) brightness(1.6);
}

.mk-offcanvas .offcanvas-body {
    padding: 18px 18px 28px;
}

.mk-offcanvas .sidebar-nav {
    padding: 0;
}

.mk-offcanvas .sidebar-nav .nav-link {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
}

.mk-offcanvas .sidebar-nav .nav-link:hover,
.mk-offcanvas .sidebar-nav .nav-link.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.mk-offcanvas .sidebar-nav .nav-link i {
    color: rgba(255, 255, 255, 0.6);
}

.mk-offcanvas .sidebar-nav .nav-link.active i {
    color: var(--mk-accent);
}

/* 主体外框 */
.mk-main {
    margin-left: 252px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mk-stage {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding: 34px 36px 28px;
    flex: 1 0 auto;
}

/* 面包屑 */
.mk-breadcrumb-wrap {
    margin-bottom: 22px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.87rem;
    color: var(--mk-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #B5B9B3;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--mk-muted);
}

.breadcrumb-item a:hover {
    color: var(--mk-accent-deep);
}

.breadcrumb-item.active {
    color: #8B948D;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 文章标题卡 */
.article-masthead {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: var(--mk-card-bg);
    border: 1px solid rgba(227, 226, 216, 0.7);
    border-radius: var(--mk-radius-lg);
    box-shadow: var(--mk-shadow);
    padding: clamp(26px, 4.5vw, 54px);
    margin-bottom: 42px;
}

.article-masthead::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--mk-accent) 0%, var(--mk-accent) 46%, transparent 46%, transparent 58%, var(--mk-primary) 58%, var(--mk-primary) 100%);
}

.article-cat-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.article-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--mk-primary-soft);
    color: var(--mk-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.article-cat-badge i {
    font-size: 0.72rem;
}

.article-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mk-muted);
}

.article-title {
    margin: 0 0 22px;
    max-width: 860px;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    line-height: 1.28;
    font-weight: 750;
    letter-spacing: 0.01em;
    color: var(--mk-ink);
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--mk-muted);
}

.article-meta-row .meta-unit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-meta-row .meta-dot {
    width: 4px;
    height: 4px;
    background: #C4C2B8;
    border-radius: 50%;
    flex: 0 0 auto;
}

/* 正文阅读区 */
.article-body-main {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 52px;
}

.article-content {
    font-size: 0.99rem;
    line-height: 1.82;
    color: #2D3630;
}

.mk-typography > *:last-child {
    margin-bottom: 0;
}

.mk-typography p {
    margin: 0 0 1.6em;
    word-break: break-word;
}

.mk-typography h1,
.mk-typography h2,
.mk-typography h3 {
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 700;
    color: var(--mk-ink);
}

.mk-typography h1 {
    font-size: 1.7rem;
}

.mk-typography h2 {
    font-size: 1.46rem;
    padding-top: 0.2rem;
}

.mk-typography h3 {
    font-size: 1.18rem;
}

.mk-typography a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(12, 90, 64, 0.3);
}

.mk-typography a:hover {
    text-decoration-color: var(--mk-accent-deep);
}

.mk-typography blockquote {
    border-left: 4px solid var(--mk-accent);
    margin: 2rem 0;
    padding: 0.6rem 0 0.6rem 1.5rem;
    color: var(--mk-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.mk-typography blockquote p {
    margin-bottom: 0.6em;
}

.mk-typography blockquote p:last-child {
    margin-bottom: 0;
}

.mk-typography ul,
.mk-typography ol {
    margin: 0 0 1.6em;
    line-height: 1.7;
    padding-left: 1.4rem;
}

.mk-typography li {
    margin-bottom: 0.45em;
}

.mk-typography li::marker {
    color: var(--mk-accent);
}

.mk-typography img {
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(15, 40, 28, 0.07);
    margin: 1.6rem 0;
}

.mk-typography figure {
    margin: 1.8rem auto;
    text-align: center;
}

.mk-typography figure img {
    margin: 0 auto;
}

.mk-typography figcaption {
    font-size: 0.82rem;
    color: var(--mk-muted);
    line-height: 1.5;
    margin-top: 0.7rem;
}

.mk-typography table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8rem 0;
    font-size: 0.93rem;
    overflow-x: auto;
    display: block;
}

.mk-typography th,
.mk-typography td {
    border: 1px solid var(--mk-border);
    padding: 10px 12px;
    text-align: left;
    line-height: 1.6;
}

.mk-typography th {
    background: var(--mk-primary-soft);
    color: var(--mk-primary-deep);
    font-weight: 700;
}

/* 正文标签与翻页 */
.article-bottom-zone {
    border-top: 1px solid var(--mk-border);
    padding-top: 26px;
    margin-top: 42px;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.chip-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--mk-primary);
    background: rgba(217, 231, 223, 0.7);
    border: 1px solid rgba(12, 90, 64, 0.11);
}

.article-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.article-pager-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mk-primary);
    font-size: 0.89rem;
    font-weight: 600;
    padding: 8px 2px;
}

.article-pager-link i {
    color: var(--mk-accent);
}

.article-pager-link:hover {
    color: var(--mk-accent-deep);
}

/* 空态 */
.content-notfound {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #FFFFFF;
    border: 1px dashed #C7CBBE;
    border-radius: 16px;
    padding: 40px 32px;
    margin: 26px 0 16px;
}

.content-notfound-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--mk-primary-soft);
    color: var(--mk-primary);
    border-radius: 50%;
    font-size: 1.1rem;
}

.content-notfound h2 {
    margin: 0;
    font-size: 1.25rem;
}

.content-notfound p {
    margin: 0;
    color: var(--mk-muted);
    max-width: 720px;
}

.empty-recommend {
    background: #FFFFFF;
    border: 1px dashed #C7CBBE;
    border-radius: 14px;
    padding: 30px;
    color: var(--mk-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.empty-recommend i {
    color: #A9AA9F;
    font-size: 1rem;
}

/* 继续浏览区块 */
.article-extra {
    border-top: 1px solid var(--mk-border);
    padding-top: 34px;
    margin-top: 40px;
}

.section-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: var(--mk-accent-deep);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.article-extra-title {
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    margin-bottom: 22px;
    color: var(--mk-ink);
}

.relation-card {
    height: 100%;
    display: block;
    background: #FFFFFF;
    border: 1px solid rgba(227, 226, 216, 0.7);
    border-radius: var(--mk-radius-md);
    overflow: hidden;
    color: var(--mk-ink);
    box-shadow: 0 4px 14px rgba(15, 40, 28, 0.04);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}

.relation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mk-shadow-hover);
    border-color: rgba(12, 90, 64, 0.16);
    color: var(--mk-primary-deep);
}

.relation-media {
    height: 188px;
    background: var(--mk-page-bg);
    overflow: hidden;
    position: relative;
}

.relation-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.relation-body {
    padding: 20px 22px 22px;
}

.relation-tag {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--mk-accent-deep);
    margin-bottom: 9px;
    letter-spacing: 0.04em;
}

.relation-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mk-ink);
}

.relation-text {
    margin: 0;
    color: var(--mk-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

/* 文末CTA条 */
.article-cta-strip {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(135deg, var(--mk-primary) 0%, var(--mk-primary-deep) 100%);
    border-radius: var(--mk-radius-lg);
    box-shadow: var(--mk-shadow-hover);
    overflow: hidden;
    padding: clamp(26px, 3.2vw, 44px);
    color: #FFFFFF;
    margin: 44px 0 0;
}

.article-cta-strip::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 28px solid rgba(255, 255, 255, 0.06);
}

.article-cta-strip .cta-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.article-cta-strip h2 {
    margin: 0 0 8px;
    color: #FFFFFF;
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.article-cta-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.article-cta-strip .cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* 页脚 */
.page-footer {
    background: var(--mk-primary-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    margin-top: auto;
}

.page-footer .container-mk {
    max-width: 1240px;
    margin-inline: auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-logo-text {
    font-size: 1.08rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.footer-meta {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.52);
    margin-top: 4px;
}

.page-footer .container-mk > div:last-child .footer-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
}

/* 响应式断点 */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .mk-sidebar {
        width: 224px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .mk-main {
        margin-left: 224px;
    }

    .mk-stage {
        padding-left: 26px;
        padding-right: 26px;
    }

    .page-footer .container-mk {
        padding-left: 26px;
        padding-right: 26px;
    }
}

@media (max-width: 991.98px) {
    .mk-sidebar {
        display: none !important;
    }

    .mk-topbar {
        display: flex;
    }

    .mk-mobile-drawer {
        display: block;
    }

    .mk-main {
        margin-left: 0;
    }

    .mk-stage {
        padding: 24px 18px 20px;
    }

    .page-footer .container-mk {
        padding: 0 20px;
    }
}

@media (max-width: 767.98px) {
    .mk-stage {
        padding: 18px 14px 18px;
    }

    .article-masthead {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .article-body-main {
        max-width: 100%;
    }

    .article-content {
        font-size: 0.97rem;
        line-height: 1.78;
    }

    .article-pager {
        flex-direction: column;
        align-items: flex-start;
    }

    .relation-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: 12px;
    }

    .relation-media {
        width: 132px;
        min-height: 100%;
        height: auto;
        flex: 0 0 132px;
    }

    .relation-media img {
        object-fit: cover;
    }

    .relation-body {
        padding: 15px 16px;
    }

    .relation-title {
        font-size: 0.97rem;
        margin-bottom: 4px;
    }

    .relation-text {
        font-size: 0.82rem;
    }

    .article-cta-strip {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .article-cta-strip .cta-actions {
        width: 100%;
    }

    .article-cta-strip .btn {
        flex: 1 1 auto;
    }

    .breadcrumb-item.active {
        max-width: 180px;
    }
}

@media (max-width: 520px) {
    .article-masthead {
        padding: 24px 18px;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-meta-row {
        gap: 6px 5px;
    }

    .meta-unit {
        font-size: 0.78rem;
    }

    .article-pager,
    .tag-group {
        width: 100%;
    }

    .btn-accent,
    .btn-ghost {
        width: 100%;
    }
}

/* roulang page: category1 */
:root {
            --mk-primary: #0C5A40;
            --mk-primary-deep: #0A3D2C;
            --mk-primary-soft: #D9E7DF;
            --mk-accent: #EE6A1B;
            --mk-accent-deep: #D2550E;
            --mk-page-bg: #F6F4ED;
            --mk-card-bg: #FFFFFF;
            --mk-ink: #1D241F;
            --mk-muted: #617068;
            --mk-border: #E3E2D8;
            --mk-shadow: 0 10px 32px rgba(15, 40, 28, 0.08);
            --mk-radius-sm: 4px;
            --mk-radius-md: 10px;
            --mk-radius-lg: 18px;
            --mk-radius-xl: 26px;
            --mk-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--mk-page-bg);
            color: var(--mk-ink);
            font-family: var(--mk-font);
            font-size: 1rem;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            color: var(--mk-ink);
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
        }

        a {
            color: var(--mk-primary);
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: var(--mk-accent-deep);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container-mk {
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: clamp(16px, 3vw, 36px);
            padding-right: clamp(16px, 3vw, 36px);
        }

        .mk-sidebar {
            display: none;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 1040;
            width: 252px;
            padding: 28px 16px 20px;
            background: linear-gradient(180deg, var(--mk-primary) 0%, var(--mk-primary-deep) 100%);
            flex-direction: column;
        }

        @media (min-width: 992px) {
            .mk-sidebar {
                display: flex;
            }

            .mk-main {
                margin-left: 252px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199.98px) {
            .mk-sidebar {
                width: 220px;
                padding-left: 12px;
                padding-right: 12px;
            }

            .mk-main {
                margin-left: 220px;
            }
        }

        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 4px 8px 22px;
            border-bottom: 1px solid rgba(255, 255, 255, .14);
            margin-bottom: 18px;
        }

        .brand-mark {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #FFFFFF;
            color: var(--mk-primary-deep);
            font-size: 1.04rem;
            font-weight: 800;
            letter-spacing: .02em;
        }

        .brand-copy {
            line-height: 1.25;
            min-width: 0;
        }

        .brand-copy b {
            display: block;
            color: #FFF;
            font-size: 1.08rem;
            letter-spacing: .02em;
            white-space: nowrap;
        }

        .brand-copy span {
            display: block;
            font-size: .72rem;
            color: rgba(255, 255, 255, .58);
            margin-top: 3px;
            letter-spacing: .08em;
        }

        .sidebar-nav {
            display: block;
        }

        .sidebar-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .mk-sidebar .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-left: 4px solid transparent;
            border-radius: 8px;
            font-size: .95rem;
            color: rgba(255, 255, 255, .82);
            transition: background .2s ease, color .2s ease;
        }

        .mk-sidebar .sidebar-nav a i {
            width: 20px;
            text-align: center;
            font-size: .95rem;
        }

        .mk-sidebar .sidebar-nav a:hover {
            color: #FFF;
            background: rgba(255, 255, 255, .08);
        }

        .mk-sidebar .sidebar-nav a.active {
            color: #FFF;
            background: rgba(255, 255, 255, .12);
            border-left-color: var(--mk-accent);
        }

        .sidebar-foot {
            margin-top: auto;
            padding: 18px 4px 4px;
            border-top: 1px solid rgba(255, 255, 255, .12);
        }

        .sidebar-foot small {
            display: block;
            color: rgba(255, 255, 255, .52);
            font-size: .78rem;
            margin-bottom: 8px;
        }

        .mobile-topbar {
            position: sticky;
            top: 0;
            z-index: 1030;
            min-height: 64px;
            background: rgba(12, 90, 64, .97);
            backdrop-filter: blur(8px);
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
        }

        .mobile-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #FFF;
            font-weight: 700;
        }

        .mobile-brand .brand-mark {
            flex-basis: 34px;
            width: 34px;
            height: 34px;
            font-size: .85rem;
        }

        .mobile-topbar .menu-toggler {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 10px;
            background: rgba(255, 255, 255, .1);
            color: #FFF;
            font-size: 1.1rem;
        }

        .mobile-topbar .menu-toggler:hover {
            background: rgba(255, 255, 255, .18);
        }

        .mobile-drawer {
            max-width: 320px;
            width: 320px;
            background: var(--mk-primary-deep);
            border: 0;
        }

        .mobile-drawer .offcanvas-header {
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            padding: 18px 18px 16px;
        }

        .mobile-drawer .offcanvas-body {
            padding: 20px 16px;
        }

        .mobile-drawer .sidebar-nav {
            margin-top: 6px;
        }

        .mobile-drawer .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 12px;
            border-left: 4px solid transparent;
            border-radius: 8px;
            color: rgba(255, 255, 255, .84);
            font-size: .98rem;
        }

        .mobile-drawer .sidebar-nav a i {
            width: 22px;
            text-align: center;
        }

        .mobile-drawer .sidebar-nav a:hover {
            color: #FFF;
            background: rgba(255, 255, 255, .07);
        }

        .mobile-drawer .sidebar-nav a.active {
            color: #FFF;
            background: rgba(255, 255, 255, .12);
            border-left-color: var(--mk-accent);
        }

        .mobile-drawer .sidebar-foot {
            margin-top: 28px;
        }

        .mobile-drawer .sidebar-foot small {
            color: rgba(255, 255, 255, .5);
            display: block;
            font-size: .8rem;
            margin-bottom: 10px;
        }

        .page-wrap {
            padding: clamp(16px, 3.4vw, 38px) 0 0;
        }

        .breadcrumb-mk {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: .84rem;
            color: var(--mk-muted);
            margin-bottom: 18px;
        }

        .breadcrumb-mk a {
            color: var(--mk-muted);
        }

        .breadcrumb-mk a:hover {
            color: var(--mk-accent-deep);
        }

        .breadcrumb-mk .separator {
            color: #B7BFBA;
        }

        .breadcrumb-mk span:last-child {
            color: var(--mk-primary);
            font-weight: 600;
        }

        .camp-hero {
            position: relative;
            border-radius: var(--mk-radius-xl);
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
            padding: clamp(34px, 5.5vw, 76px);
            background:
                linear-gradient(78deg, rgba(6, 34, 23, .96) 0%, rgba(10, 61, 44, .84) 42%, rgba(13, 54, 40, .45) 78%),
                url('/assets/images/backpic/back-2.png') center 24% no-repeat;
            background-size: cover;
        }

        .camp-hero .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 650px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #FFD5B4;
            font-size: .8rem;
            letter-spacing: .12em;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 999px;
            padding: 7px 14px;
            margin-bottom: 20px;
        }

        .hero-kicker .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--mk-accent);
        }

        .camp-hero h1 {
            color: #FFF;
            font-size: clamp(2rem, 4.4vw, 3.3rem);
            letter-spacing: .02em;
            margin: 0 0 12px;
            line-height: 1.2;
        }

        .camp-hero p {
            color: rgba(255, 255, 255, .88);
            font-size: clamp(.98rem, 1.5vw, 1.08rem);
            line-height: 1.75;
            max-width: 560px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .btn-mk-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 26px;
            background: var(--mk-accent);
            border: 1px solid transparent;
            border-radius: var(--mk-radius-md);
            color: #FFF;
            font-weight: 600;
            font-size: .96rem;
            line-height: 1;
            transition: all .25s ease-out;
        }

        .btn-mk-accent:hover {
            background: var(--mk-accent-deep);
            color: #FFF;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(229, 103, 25, .24);
        }

        .btn-mk-accent:active {
            transform: translateY(0);
        }

        .btn-mk-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 24px;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .75);
            border-radius: var(--mk-radius-md);
            color: #FFF;
            font-weight: 600;
            font-size: .95rem;
            transition: all .25s ease-out;
        }

        .btn-mk-ghost:hover {
            background: rgba(255, 255, 255, .13);
            border-color: #FFF;
            color: #FFF;
            transform: translateY(-2px);
        }

        .btn-mk-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 24px;
            background: transparent;
            border: 1.5px solid var(--mk-primary);
            border-radius: var(--mk-radius-md);
            color: var(--mk-primary);
            font-weight: 600;
            font-size: .94rem;
            line-height: 1;
            transition: all .25s ease-out;
        }

        .btn-mk-outline:hover {
            background: var(--mk-primary-soft);
            border-color: var(--mk-primary-deep);
            color: var(--mk-primary-deep);
            transform: translateY(-2px);
        }

        .btn-mk-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 18px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .55);
            border-radius: var(--mk-radius-md);
            color: #FFF;
            font-size: .88rem;
            font-weight: 600;
            transition: all .2s ease;
        }

        .btn-mk-outline-light:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #FFF;
            color: #FFF;
        }

        .hero-stat-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            border-top: 1px solid rgba(255, 255, 255, .15);
            margin-top: 38px;
            padding-top: 22px;
            max-width: 680px;
        }

        .hero-stat {
            display: flex;
            align-items: baseline;
            gap: 10px;
            padding-right: 20px;
        }

        .hero-stat strong {
            color: #FFF;
            font-size: clamp(1.35rem, 2.2vw, 1.85rem);
            line-height: 1;
            font-weight: 800;
            white-space: nowrap;
        }

        .hero-stat span {
            color: rgba(255, 255, 255, .72);
            font-size: .86rem;
            line-height: 1.5;
        }

        .mk-section {
            margin-top: clamp(54px, 6.5vw, 96px);
        }

        .sec-eyebrow {
            font-size: .78rem;
            letter-spacing: .14em;
            color: var(--mk-muted);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .sec-eyebrow.light {
            color: rgba(255, 255, 255, .72);
        }

        .section-head {
            max-width: 760px;
            margin-bottom: clamp(26px, 3vw, 44px);
        }

        .section-head h2 {
            font-size: clamp(1.4rem, 2.6vw, 2rem);
            letter-spacing: .01em;
            line-height: 1.3;
            margin: 0 0 12px;
        }

        .section-head p {
            font-size: .98rem;
            color: var(--mk-muted);
            margin: 0;
        }

        .mk-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 34px;
            align-items: center;
        }

        @media (min-width: 992px) {
            .mk-split {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                gap: 62px;
            }
        }

        .mk-frame {
            display: block;
            position: relative;
            aspect-ratio: 4 / 3;
            border-radius: var(--mk-radius-lg);
            overflow: hidden;
            background: var(--mk-primary-soft);
            box-shadow: var(--mk-shadow);
        }

        .mk-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .mk-frame:hover img {
            transform: scale(1.03);
        }

        .mk-frame .frame-note {
            position: absolute;
            left: 20px;
            bottom: 16px;
            background: rgba(8, 40, 28, .74);
            border-radius: 999px;
            padding: 7px 14px;
            color: #FFF;
            font-size: .78rem;
            letter-spacing: .05em;
        }

        .text-col h2 {
            font-size: clamp(1.35rem, 2.4vw, 1.9rem);
            margin-bottom: 14px;
        }

        .text-col p {
            color: var(--mk-muted);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .mk-checklist {
            list-style: none;
            margin: 0 0 22px;
            padding: 0;
        }

        .mk-checklist li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 8px 0;
            color: var(--mk-ink);
            line-height: 1.6;
        }

        .mk-checklist li i {
            margin-top: 4px;
            color: var(--mk-accent-deep);
            flex: 0 0 18px;
        }

        .program-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 20px;
        }

        @media (min-width: 768px) {
            .program-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 1200px) {
            .program-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        .program-card {
            position: relative;
            background: var(--mk-card-bg);
            border: 0;
            border-radius: var(--mk-radius-md);
            padding: 28px 26px 26px;
            box-shadow: var(--mk-shadow);
            transition: transform .25s ease-out, box-shadow .25s ease-out;
        }

        .program-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(15, 40, 28, .12);
        }

        .program-card .program-no {
            display: block;
            font-size: .86rem;
            font-weight: 700;
            letter-spacing: .08em;
            color: #A6B5AC;
            margin-bottom: 10px;
        }

        .program-card .icon-square {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: var(--mk-primary-soft);
            color: var(--mk-primary);
            font-size: 1.15rem;
            margin-bottom: 20px;
        }

        .program-card:nth-child(2) .icon-square {
            background: #FDEDDE;
            color: var(--mk-accent-deep);
        }

        .program-card:nth-child(3) .icon-square {
            background: #E4EEF0;
            color: #37636B;
        }

        .program-card:nth-child(4) .icon-square {
            background: #EFEDE4;
            color: #8A6A32;
        }

        .program-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .program-card p {
            font-size: .9rem;
            line-height: 1.75;
            color: var(--mk-muted);
            margin-bottom: 0;
        }

        .program-card .price-tag {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--mk-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--mk-primary-deep);
            font-weight: 600;
            font-size: .88rem;
        }

        .program-card .price-tag i {
            color: var(--mk-accent-deep);
        }

        .process-panel {
            background: var(--mk-primary-deep);
            border-radius: var(--mk-radius-xl);
            padding: clamp(28px, 4vw, 54px);
            color: rgba(255, 255, 255, .86);
        }

        .process-panel .sec-eyebrow {
            color: rgba(255, 255, 255, .62);
        }

        .process-panel h2 {
            color: #FFF;
        }

        .process-list {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 14px;
            margin-top: 28px;
            padding: 0;
            list-style: none;
        }

        @media (min-width: 992px) {
            .process-list {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 18px;
            }
        }

        .process-item {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: var(--mk-radius-md);
            padding: 22px 20px;
            min-height: 148px;
        }

        .process-item .step-index {
            font-size: 1.8rem;
            font-weight: 800;
            color: rgba(238, 106, 27, .9);
            line-height: 1;
            margin-bottom: 14px;
        }

        .process-item h3 {
            color: #FFF;
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .process-item p {
            color: rgba(255, 255, 255, .68);
            font-size: .85rem;
            line-height: 1.7;
            margin: 0;
        }

        .faq-section .row {
            align-items: flex-start;
        }

        .accordion {
            --bs-accordion-border-width: 0;
            --bs-accordion-border-radius: var(--mk-radius-md);
            --bs-accordion-inner-border-radius: var(--mk-radius-md);
        }

        .accordion-item {
            background: var(--mk-card-bg);
            border: 1px solid var(--mk-border) !important;
            border-radius: var(--mk-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(15, 40, 28, .03);
        }

        .accordion-button {
            font-weight: 600;
            color: var(--mk-ink);
            background: transparent;
            padding: 18px 20px;
            font-size: .97rem;
            line-height: 1.5;
            box-shadow: none !important;
            border: 0;
            transition: color .2s ease;
        }

        .accordion-button:focus {
            box-shadow: none !important;
        }

        .accordion-button:hover {
            color: var(--mk-primary-deep);
            background: #FBF7F0;
        }

        .accordion-button:not(.collapsed) {
            background: var(--mk-primary-soft);
            color: var(--mk-primary-deep);
            box-shadow: none !important;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231D241F'%3e%3cpath fill-rule='evenodd' d='M8 2a.75.75 0 0 1 .75.75v4.5h4.5a.75.75 0 0 1 0 1.5h-4.5v4.5a.75.75 0 0 1-1.5 0v-4.5h-4.5a.75.75 0 0 1 0-1.5h4.5v-4.5A.75.75 0 0 1 8 2Z'/%3e%3c/svg%3e");
            transition: transform .25s ease;
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230C5A40'%3e%3cpath fill-rule='evenodd' d='M2.75 8a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            font-size: .92rem;
            line-height: 1.9;
            color: var(--mk-muted);
            background: #FFF;
            padding: 4px 20px 20px;
        }

        .cta-shell {
            position: relative;
            overflow: hidden;
            border-radius: var(--mk-radius-xl);
            background:
                linear-gradient(96deg, rgba(6, 35, 24, .97) 0%, rgba(10, 61, 44, .88) 48%, rgba(10, 61, 44, .42) 100%),
                url('/assets/images/backpic/back-1.png') center center no-repeat;
            background-size: cover;
            padding: clamp(30px, 4.5vw, 62px);
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 34px;
            align-items: center;
        }

        @media (min-width: 992px) {
            .cta-shell {
                grid-template-columns: 5fr 7fr;
                gap: 54px;
            }
        }

        .cta-copy h2 {
            color: #FFF;
            font-size: clamp(1.4rem, 2.6vw, 2rem);
            margin-bottom: 16px;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, .76);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .cta-points {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }

        .cta-points li {
            color: rgba(255, 255, 255, .88);
            font-size: .95rem;
            line-height: 1.6;
            padding: 6px 0;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .cta-points li i {
            color: var(--mk-accent);
            margin-top: 4px;
            flex: 0 0 16px;
        }

        .cta-form-card {
            background: #FFF;
            border-radius: var(--mk-radius-lg);
            box-shadow: 0 20px 48px rgba(4, 25, 16, .24);
            padding: clamp(24px, 3vw, 38px);
        }

        .cta-form-card h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
        }

        .cta-form-card .form-subtitle {
            color: var(--mk-muted);
            font-size: .86rem;
            margin-bottom: 20px;
        }

        .form-label-mk {
            font-weight: 600;
            font-size: .86rem;
            color: var(--mk-ink);
            margin-bottom: 6px;
        }

        .form-control-mk {
            display: block;
            width: 100%;
            min-height: 46px;
            background: #F7F5EF;
            border: 1px solid var(--mk-border);
            border-radius: 8px;
            padding: 10px 14px;
            font-size: .93rem;
            color: var(--mk-ink);
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .form-control-mk:focus {
            background: #FFF;
            border-color: var(--mk-accent);
            outline: 0;
            box-shadow: 0 0 0 .22rem rgba(238, 106, 27, .16);
            color: var(--mk-ink);
        }

        textarea.form-control-mk {
            min-height: 108px;
            resize: vertical;
        }

        .form-success {
            background: var(--mk-primary-soft);
            border: 1px solid var(--mk-primary);
            border-radius: var(--mk-radius-md);
            color: var(--mk-primary-deep);
            padding: 14px 16px;
            font-size: .92rem;
            margin-bottom: 18px;
        }

        .cta-form-card .submit-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .form-footnote {
            font-size: .78rem;
            color: var(--mk-muted);
        }

        .page-footer {
            background: var(--mk-primary-deep);
            margin-top: clamp(54px, 6.5vw, 96px);
            padding: clamp(26px, 3vw, 38px) 0 30px;
        }

        .page-footer .container-mk {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .footer-logo-text {
            color: #FFF;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: .03em;
            line-height: 1.4;
        }

        .footer-meta {
            color: rgba(255, 255, 255, .55);
            font-size: .84rem;
        }

        @media (max-width: 575.98px) {
            .camp-hero {
                padding: 30px 24px;
                min-height: 380px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn-mk-accent,
            .hero-actions .btn-mk-ghost {
                width: 100%;
            }

            .hero-stat-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }

            .hero-stat strong {
                font-size: 1.05rem;
            }

            .hero-stat span {
                font-size: .68rem;
            }

            .process-panel,
            .cta-shell {
                padding: 24px 18px;
            }

            .cta-form-card {
                padding: 22px 18px;
            }

            .page-footer .container-mk {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 767.98px) {
            .program-grid {
                grid-template-columns: repeat(1, minmax(0, 1fr));
            }

            .mk-split {
                gap: 24px;
            }
        }

/* roulang page: category2 */
:root {
  --mk-primary: #0C5A40;
  --mk-primary-deep: #0A3D2C;
  --mk-primary-soft: #D9E7DF;
  --mk-accent: #EE6A1B;
  --mk-accent-deep: #D2550E;
  --mk-page-bg: #F6F4ED;
  --mk-card-bg: #FFFFFF;
  --mk-ink: #1D241F;
  --mk-muted: #617068;
  --mk-border: #E3E2D8;
  --mk-shadow: 0 10px 32px rgba(15, 40, 28, 0.08);
  --mk-radius-sm: 4px;
  --mk-radius-md: 10px;
  --mk-radius-lg: 18px;
  --mk-radius-xl: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--mk-page-bg);
  color: var(--mk-ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  line-height: 1.75;
  font-size: 15.5px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--mk-ink);
  line-height: 1.3;
  margin: 0 0 0.55em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--mk-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--mk-accent-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.container-mk {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 252px;
  z-index: 1055;
  background: linear-gradient(180deg, var(--mk-primary-deep) 0%, #071F16 100%);
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  padding: 28px 16px 22px;
  transition: transform 0.3s ease;
}

.sidebar-brand {
  padding: 0 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.brand-logo:hover {
  color: #ffffff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  flex: 0 0 auto;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.2;
}

.brand-sub {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 4px;
}

.sidebar-nav {
  margin-top: 30px;
  flex: 1;
}

.sidebar-nav .navbar-nav {
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav .nav-item {
  margin: 0;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  padding: 11px 14px;
  border-radius: var(--mk-radius-sm);
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.sidebar-nav .nav-link i {
  width: 18px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}

.sidebar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.sidebar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.11);
  border-left-color: var(--mk-accent);
  color: #ffffff;
}

.sidebar-nav .nav-link.active i {
  color: var(--mk-accent);
}

.sidebar-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.main-area {
  margin-left: 252px;
  width: calc(100% - 252px);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-body {
  flex: 1;
  padding: 30px clamp(18px, 4vw, 52px) 48px;
}

.page-body .container-mk {
  padding: 0;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 64px;
  background: var(--mk-primary-deep);
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: var(--mk-shadow);
}

.mobile-header .brand-logo .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 0.9rem;
}

.mobile-header .brand-name {
  font-size: 1rem;
}

.btn-menu {
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  border-radius: var(--mk-radius-sm);
  transition: background 0.2s ease;
}

.btn-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-menu:focus-visible {
  outline: 2px solid var(--mk-accent);
  outline-offset: 2px;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(7, 31, 22, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .side-nav {
    width: 252px;
  }

  .main-area {
    margin-left: 252px;
    width: calc(100% - 252px);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .side-nav {
    width: 220px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-area {
    margin-left: 220px;
    width: calc(100% - 220px);
  }

  .brand-sub {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .side-nav {
    transform: translateX(-110%);
    width: 288px;
    box-shadow: 16px 0 42px rgba(6, 25, 17, 0.28);
  }

  body.menu-open .side-nav {
    transform: translateX(0);
  }

  .main-area {
    margin-left: 0;
    width: 100%;
  }

  .mobile-header {
    display: flex;
  }

  .page-body {
    padding: 90px 16px 42px;
  }
}

a:focus-visible,
button:focus-visible,
.accordion-button:focus-visible {
  outline: 2px solid var(--mk-accent);
  outline-offset: 3px;
  border-radius: var(--mk-radius-sm);
}

.btn-mk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--mk-radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-solid {
  background: var(--mk-accent);
  color: #ffffff;
}

.btn-solid:hover {
  background: var(--mk-accent-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(238, 106, 27, 0.22);
}

.btn-solid:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(238, 106, 27, 0.14);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost-light:active {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(0);
}

.btn-primary-mk {
  background: transparent;
  border-color: var(--mk-primary);
  color: var(--mk-primary);
}

.btn-primary-mk:hover {
  background: rgba(12, 90, 64, 0.07);
  color: var(--mk-primary-deep);
  transform: translateY(-2px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--mk-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--mk-accent);
  display: inline-block;
}

.site-section {
  padding-top: clamp(38px, 5vw, 70px);
  margin-top: clamp(38px, 5vw, 70px);
  border-top: 1px solid var(--mk-border);
}

.section-head {
  max-width: 860px;
  margin-bottom: clamp(24px, 3.6vw, 42px);
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  margin: 12px 0 10px;
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--mk-muted);
  font-size: 0.95rem;
}

.crumb-nav {
  margin-bottom: 22px;
  font-size: 0.83rem;
  color: var(--mk-muted);
}

.crumb-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.crumb-nav li + li::before {
  content: "/";
  margin-right: 6px;
  color: #A9B4AD;
}

.crumb-nav a {
  color: var(--mk-muted);
}

.crumb-nav a:hover {
  color: var(--mk-accent-deep);
}

.category-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--mk-radius-xl);
  padding: clamp(30px, 5vw, 68px);
  color: #ffffff;
  background:
    linear-gradient(100deg, rgba(10, 61, 44, 0.96) 0%, rgba(12, 90, 64, 0.9) 58%, rgba(12, 90, 64, 0.55) 100%),
    url("/assets/images/backpic/back-2.png") center 30% / cover no-repeat;
  box-shadow: var(--mk-shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 34px;
  align-items: end;
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #B9CFC4;
}

.banner-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--mk-accent);
}

.banner-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: #ffffff;
  font-weight: 800;
  margin: 8px 0 16px;
}

.banner-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner-note {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--mk-radius-lg);
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.banner-note strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.banner-note span.line {
  display: block;
  padding: 5px 0 5px 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.32);
  margin-top: 8px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(24px, 3.6vw, 40px);
}

.fact-card {
  background: var(--mk-card-bg);
  border-radius: var(--mk-radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 6px 18px rgba(15, 40, 28, 0.05);
  border: 1px solid rgba(227, 226, 216, 0.7);
}

.fact-key {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--mk-accent);
  line-height: 1;
  white-space: nowrap;
}

.fact-text {
  color: var(--mk-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-strip {
  display: grid;
  grid-template-columns: 64px minmax(160px, 0.62fr) minmax(0, 1.4fr);
  gap: 18px 26px;
  align-items: center;
  background: var(--mk-card-bg);
  border-radius: var(--mk-radius-lg);
  border-left: 3px solid var(--mk-primary-soft);
  padding: 20px 22px 20px 24px;
  box-shadow: 0 5px 18px rgba(15, 40, 28, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-strip:hover {
  transform: translateX(5px);
  border-left-color: var(--mk-accent);
  box-shadow: var(--mk-shadow);
}

.strip-no {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mk-primary);
  line-height: 1;
}

.strip-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.strip-desc {
  color: var(--mk-muted);
  font-size: 0.92rem;
  margin: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
  padding: 6px 0;
}

.feature-row + .feature-row {
  margin-top: clamp(44px, 6vw, 80px);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--mk-radius-xl);
  box-shadow: 0 16px 38px rgba(15, 40, 28, 0.12);
}

.feature-copy {
  min-width: 0;
}

.feature-tag {
  display: block;
  color: var(--mk-accent-deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
}

.feature-copy h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 14px;
}

.feature-copy p {
  color: var(--mk-muted);
  font-size: 0.96rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  line-height: 1.6;
}

.feature-list li i {
  color: var(--mk-accent);
  margin-top: 5px;
  font-size: 0.82rem;
}

.feature-row-reverse .feature-media {
  order: 2;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.scene-card {
  background: var(--mk-card-bg);
  border-radius: var(--mk-radius-lg);
  padding: 26px 28px 24px;
  box-shadow: 0 7px 20px rgba(15, 40, 28, 0.06);
  border: 1px solid rgba(227, 226, 216, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 40, 28, 0.1);
}

.scene-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--mk-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 106, 27, 0.12);
  color: var(--mk-accent-deep);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.scene-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.scene-card p {
  color: var(--mk-muted);
  font-size: 0.91rem;
  margin-bottom: 0;
}

.process-wrap {
  background: var(--mk-primary-deep);
  border-radius: var(--mk-radius-xl);
  margin-top: clamp(38px, 5vw, 70px);
  padding: clamp(26px, 4vw, 54px);
  color: #ffffff;
  border-top: 0;
}

.process-wrap .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.process-wrap .section-head h2 {
  color: #ffffff;
}

.process-wrap .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.process-step {
  background: #ffffff;
  border-radius: var(--mk-radius-lg);
  padding: 24px 18px 22px;
  border-top: 3px solid var(--mk-accent);
  box-shadow: var(--mk-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(6, 25, 17, 0.18);
}

@media (min-width: 992px) {
  .process-step:nth-child(even) {
    transform: translateY(14px);
  }

  .process-step:nth-child(even):hover {
    transform: translateY(9px);
  }
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mk-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--mk-muted);
  margin: 0;
  line-height: 1.7;
}

.faq-layout {
  max-width: 880px;
}

.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
}

.accordion-item {
  background: var(--mk-card-bg);
  border: 1px solid var(--mk-border) !important;
  border-radius: var(--mk-radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background: var(--mk-card-bg);
  border: 0;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--mk-ink);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(12, 90, 64, 0.05);
  color: var(--mk-primary);
}

.accordion-button::after {
  content: "+";
  background-image: none;
  width: auto;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--mk-primary);
  transform: none;
}

.accordion-button:not(.collapsed)::after {
  content: "×";
  background-image: none;
  transform: none;
  color: var(--mk-accent-deep);
}

.accordion-body {
  padding: 4px 22px 22px;
  color: var(--mk-muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-radius: var(--mk-radius-xl);
  padding: clamp(28px, 5vw, 58px) clamp(26px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(100deg, rgba(8, 44, 31, 0.97) 0%, rgba(12, 90, 64, 0.88) 70%, rgba(10, 61, 44, 0.82) 100%),
    url("/assets/images/backpic/back-3.png") center / cover no-repeat;
}

.cta-copy {
  max-width: 680px;
}

.cta-copy h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  margin-bottom: 10px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  font-size: 0.96rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  min-width: 240px;
}

.page-footer {
  background: var(--mk-primary-deep);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
}

.page-footer .container-mk {
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 26px clamp(18px, 4vw, 52px);
}

.footer-logo-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767.98px) {
  .category-banner {
    grid-template-columns: 1fr;
  }

  .banner-note {
    max-width: 100%;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 18px 18px 20px;
  }

  .strip-no {
    font-size: 1.35rem;
  }

  .strip-desc {
    grid-column: 2;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .feature-row-reverse .feature-media {
    order: initial;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn-mk {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .page-body {
    padding: 86px 14px 32px;
  }

  .banner-actions .btn-mk {
    width: 100%;
  }

  .page-footer .container-mk {
    flex-direction: column;
    align-items: flex-start;
  }
}
