/* roulang page: index */
/* ====== 设计变量 ====== */
        :root {
            --primary: #C8102E;
            --primary-dark: #9E0D24;
            --primary-light: #EC5A70;
            --secondary: #14142B;
            --secondary-light: #222244;
            --accent: #D4AF37;
            --accent-light: #F3E3A2;
            --bg: #FAF8F5;
            --surface: #FFFFFF;
            --text: #1D1D2F;
            --text-weak: #6E6E82;
            --border: #E8E4DF;
            --radius-lg: 26px;
            --radius-md: 18px;
            --radius-sm: 10px;
            --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.10);
            --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.07);
            --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ====== 基础 Reset ====== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        /* ====== 容器 ====== */
        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 28px;
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 18px;
            }
        }

        /* ====== 全局按钮 ====== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 20px rgba(200, 16, 46, 0.28);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(200, 16, 46, 0.35);
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(200, 16, 46, 0.4);
            outline-offset: 2px;
        }

        .btn-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.6);
            color: #fff;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        .btn-dark {
            background: var(--secondary);
            color: #fff;
        }

        .btn-dark:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(20, 20, 43, 0.25);
        }

        .btn-sm {
            padding: 9px 18px;
            font-size: 14px;
        }

        /* ====== 标签 / badge ====== */
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            background: rgba(200, 16, 46, 0.08);
            color: var(--primary);
            letter-spacing: 0.3px;
        }

        .tag-accent {
            background: rgba(212, 175, 55, 0.15);
            color: #8A6D14;
        }

        .tag-dark {
            background: rgba(20, 20, 43, 0.08);
            color: var(--secondary);
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            background: var(--primary);
            color: #fff;
        }

        /* ====== Header / 导航 ====== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            min-height: 76px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 19px;
            box-shadow: 0 6px 18px rgba(200, 16, 46, 0.3);
        }

        .brand-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .brand-text span {
            color: var(--primary);
        }

        .main-nav {
            margin-left: auto;
            margin-right: auto;
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 500;
            font-size: 15px;
            color: var(--text);
            transition: var(--transition);
        }

        .nav-link i {
            font-size: 12px;
            opacity: 0.6;
        }

        .nav-link:hover {
            background: rgba(200, 16, 46, 0.06);
            color: var(--primary);
        }

        .nav-link.active {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 18px rgba(200, 16, 46, 0.25);
        }

        .has-mega {
            position: relative;
        }

        .mega-panel {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 560px;
            background: var(--surface);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 9998;
        }

        .has-mega:hover .mega-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .mega-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-weak);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 12px;
        }

        .mega-col ul li {
            margin-bottom: 8px;
        }

        .mega-col ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 10px;
            color: var(--text);
            transition: var(--transition);
        }

        .mega-col ul li a:hover {
            background: rgba(200, 16, 46, 0.06);
            color: var(--primary);
            padding-left: 16px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--bg);
            color: var(--text);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .menu-toggle:hover {
            background: rgba(200, 16, 46, 0.08);
        }

        /* 移动端导航 */
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 6px;
            padding: 16px 24px 24px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
            opacity: 0;
        }

        .mobile-nav.open {
            max-height: 340px;
            padding: 16px 24px 24px;
            opacity: 1;
        }

        .mobile-link {
            padding: 13px 18px;
            border-radius: 12px;
            font-weight: 500;
            font-size: 15px;
            color: var(--text);
            transition: var(--transition);
        }

        .mobile-link:hover {
            background: rgba(200, 16, 46, 0.06);
            color: var(--primary);
        }

        .mobile-link.active {
            background: var(--primary);
            color: #fff;
        }

        .mobile-link.btn {
            justify-content: center;
            margin-top: 6px;
        }

        /* ====== Hero ====== */
        .hero {
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background: url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
            isolation: isolate;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg,
                    rgba(20, 20, 43, 0.88) 0%,
                    rgba(20, 20, 43, 0.72) 45%,
                    rgba(20, 20, 43, 0.35) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 700px;
            color: #fff;
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            padding: 8px 18px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 26px;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .hero-tagline i {
            color: var(--accent);
        }

        .hero h1 {
            font-size: 50px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: 1px;
            margin-bottom: 22px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero h1 em {
            font-style: normal;
            color: var(--accent);
        }

        .hero-desc {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 34px;
            max-width: 560px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-meta {
            display: flex;
            align-items: center;
            gap: 22px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-meta-item i {
            color: var(--accent);
        }

        /* ====== 板块公用 ====== */
        .section {
            padding: 90px 0;
        }

        .section-alt {
            background: var(--surface);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 14px;
            color: var(--text);
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-weak);
            line-height: 1.8;
        }

        /* ====== 核心说明卡 ====== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 18px;
            color: var(--primary);
            background: rgba(200, 16, 46, 0.08);
        }

        .feature-card:nth-child(2) .feature-icon {
            color: var(--accent);
            background: rgba(212, 175, 55, 0.15);
        }

        .feature-card:nth-child(3) .feature-icon {
            color: #2563EB;
            background: rgba(37, 99, 235, 0.08);
        }

        .feature-card:nth-child(4) .feature-icon {
            color: #10B981;
            background: rgba(16, 185, 129, 0.08);
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-weak);
        }

        /* ====== 图文区块 ====== */
        .split-block {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .split-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .split-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        .split-image .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 12px 18px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .split-image .image-badge i {
            color: var(--primary);
        }

        .split-content .content-label {
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .split-content h2 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 18px;
        }

        .split-content p {
            color: var(--text-weak);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .check-list {
            margin-top: 18px;
            display: grid;
            gap: 10px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
        }

        .check-list li i {
            color: var(--primary);
            margin-top: 5px;
            font-size: 16px;
        }

        /* ====== 分类入口 ====== */
        .category-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 340px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .category-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.06);
        }

        .category-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(20, 20, 43, 0.82) 100%);
        }

        .category-card-content {
            position: relative;
            z-index: 2;
            padding: 32px;
            color: #fff;
            width: 100%;
        }

        .category-card-content h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .category-card-content p {
            font-size: 14px;
            opacity: 0.85;
            margin-bottom: 16px;
        }

        .category-card-content .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(6px);
            padding: 8px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
        }

        .category-card-content .link-arrow:hover {
            background: #fff;
            color: var(--primary);
            gap: 12px;
        }

        /* ====== 资讯列表 ====== */
        .post-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .post-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .post-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .post-thumb {
            position: relative;
            height: 190px;
            overflow: hidden;
            background: #F0EDE9;
        }

        .post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .post-card:hover .post-thumb img {
            transform: scale(1.05);
        }

        .post-thumb .badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
        }

        .post-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-weak);
            margin-bottom: 12px;
        }

        .post-meta time {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .post-body h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .post-body h3 a {
            color: var(--text);
        }

        .post-body h3 a:hover {
            color: var(--primary);
        }

        .post-body p {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
        }

        .post-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }

        .post-footer .read-more {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .post-footer .read-more:hover {
            gap: 10px;
        }

        .empty-tip {
            text-align: center;
            padding: 50px 20px;
            color: var(--text-weak);
            font-size: 16px;
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px dashed var(--border);
        }

        /* ====== 数据统计 ====== */
        .stats-section {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            color: #fff;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: rgba(212, 175, 55, 0.12);
            border-radius: 50%;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -60px;
            width: 220px;
            height: 220px;
            background: rgba(200, 16, 46, 0.18);
            border-radius: 50%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 32px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            backdrop-filter: blur(6px);
            transition: var(--transition);
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .stat-number {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 0.5px;
        }

        /* ====== 流程步骤 ====== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            position: relative;
        }

        .step-card {
            text-align: center;
            padding: 30px 20px;
            position: relative;
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .step-num {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
        }

        .step-card:nth-child(2) .step-num {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            box-shadow: 0 8px 24px rgba(20, 20, 43, 0.25);
        }

        .step-card:nth-child(3) .step-num {
            background: linear-gradient(135deg, var(--accent), #B8932A);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
        }

        .step-card:nth-child(4) .step-num {
            background: linear-gradient(135deg, #10B981, #059669);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.7;
        }

        /* ====== FAQ ====== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: grid;
            gap: 16px;
        }

        .faq-item {
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            overflow: hidden;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(200, 16, 46, 0.15);
        }

        .faq-question {
            width: 100%;
            padding: 22px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            cursor: pointer;
            background: none;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(200, 16, 46, 0.08);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 24px;
            color: var(--text-weak);
            font-size: 15px;
            line-height: 1.8;
            border-top: 0 solid transparent;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 24px 22px;
            border-top-width: 1px;
            border-top-color: var(--border);
            padding-top: 18px;
            margin-top: 4px;
        }

        /* ====== CTA ====== */
        .cta-section {
            position: relative;
            padding: 100px 0;
            background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
            isolation: isolate;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(20, 20, 43, 0.85);
            z-index: -1;
        }

        .cta-inner {
            text-align: center;
            color: #fff;
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .cta-inner p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ====== Footer ====== */
        .site-footer {
            background: var(--secondary);
            color: #A8A8BE;
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand .brand-copy {
            margin-top: 18px;
            font-size: 14px;
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-heading {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li a {
            font-size: 14px;
            color: #A8A8BE;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links li a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-links li a i {
            font-size: 12px;
            opacity: 0.5;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 24px 0;
            flex-wrap: wrap;
        }

        .footer-bottom p {
            font-size: 13px;
        }

        .footer-bottom p span {
            color: var(--accent);
        }

        .footer-bottom .footer-legal {
            font-size: 13px;
            color: #6E6E8E;
        }

        /* ====== 响应式 ====== */
        @media (max-width: 1024px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .post-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .split-block {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .split-image img {
                height: 320px;
            }

            .mega-panel {
                width: 460px;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .header-actions .btn {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .mobile-nav {
                display: flex;
            }

            .hero {
                min-height: auto;
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-desc {
                font-size: 16px;
            }

            .section {
                padding: 64px 0;
            }

            .section-header h2 {
                font-size: 30px;
            }

            .split-content h2 {
                font-size: 28px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .cta-inner h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                min-height: 66px;
            }

            .brand-text {
                font-size: 16px;
            }

            .brand-icon {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-desc {
                font-size: 15px;
            }

            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .post-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .stat-number {
                font-size: 32px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 26px;
            }

            .split-content h2 {
                font-size: 24px;
            }

            .split-image img {
                height: 240px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 360px) {
            .brand-text {
                font-size: 14px;
            }

            .menu-toggle {
                width: 40px;
                height: 40px;
            }
        }

/* roulang page: article */
:root {
    --primary: #c8102e;
    --primary-dark: #a00d25;
    --primary-light: #e63b52;
    --secondary: #e8b440;
    --secondary-light: #f5d27a;
    --dark: #0f1320;
    --dark-2: #181e30;
    --dark-3: #222942;
    --bg: #f6f7fb;
    --bg-gray: #eef0f5;
    --white: #ffffff;
    --text: #20263a;
    --text-weak: #6b7280;
    --text-light: #9aa2b5;
    --border: #e4e7f0;
    --radius: 14px;
    --radius-lg: 24px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(15, 19, 32, .08);
    --shadow-lg: 0 24px 60px rgba(15, 19, 32, .14);
    --shadow-red: 0 12px 30px rgba(200, 16, 46, .28);
    --space: 16px;
    --space-lg: 48px;
    --transition: all .25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; outline: none; }
i, em { font-style: normal; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-gray { background: var(--bg-gray); }
.section-dark { background: var(--dark); color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--primary); background: rgba(200,16,46,.08); padding: 6px 18px; border-radius: 40px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; line-height: 1.3; color: var(--text); margin-bottom: 14px; }
.section-head p { color: var(--text-weak); font-size: 16px; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--text-light); }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 999px; font-size: 15px; font-weight: 700; line-height: 1; transition: var(--transition); border: 2px solid transparent; }
.btn i { font-size: 15px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(200,16,46,.36); }
.btn-outline { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); transform: translateY(-3px); }
.btn-accent { background: var(--secondary); color: #1a1a1a; }
.btn-accent:hover { background: var(--secondary-light); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(232,180,64,.35); }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255,255,255,.3); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,16,46,.1); color: var(--primary); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 40px; }
.badge i { font-size: 13px; }

/* Header */
.site-header { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 22px; color: var(--dark); white-space: nowrap; }
.brand-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 6px 14px rgba(200,16,46,.3); }
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list > li { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 40px; font-size: 15px; font-weight: 600; color: var(--text); }
.nav-link i { font-size: 14px; opacity: .75; }
.nav-link:hover { color: var(--primary); background: rgba(200,16,46,.06); }
.nav-link.active { color: var(--primary); background: rgba(200,16,46,.1); }
.has-mega > .nav-link .fa-chevron-down { font-size: 11px; transition: var(--transition); }
.has-mega:hover > .nav-link .fa-chevron-down { transform: rotate(180deg); }
.has-mega:hover > .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(10px); width: 580px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 26px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 50; }
.mega-panel::before { content: ''; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: #fff; }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mega-title { display: block; font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--text-light); margin-bottom: 14px; text-transform: uppercase; }
.mega-col ul { display: grid; gap: 4px; }
.mega-col ul a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; font-size: 14px; color: var(--text); }
.mega-col ul a i { color: var(--primary); font-size: 13px; width: 18px; text-align: center; }
.mega-col ul a:hover { background: var(--bg); color: var(--primary); padding-left: 16px; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-search { display: none; }
.nav-toggle { display: none; font-size: 22px; color: var(--text); padding: 8px; border-radius: 8px; }

/* Article Hero */
.article-hero { position: relative; min-height: 420px; display: flex; align-items: center; padding: 100px 0 80px; overflow: hidden; color: #fff; }
.article-hero .banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; }
.article-hero .banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,13,24,.92) 0%, rgba(24,30,48,.78) 55%, rgba(200,16,46,.5) 100%); z-index: -1; }
.article-hero .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.article-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.article-hero .breadcrumb a:hover { color: var(--secondary); }
.article-hero .breadcrumb i { font-size: 11px; opacity: .6; }
.article-hero h1 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 900; line-height: 1.3; max-width: 860px; margin-bottom: 22px; text-shadow: 0 4px 18px rgba(0,0,0,.3); }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; font-size: 14px; color: rgba(255,255,255,.85); }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta i { font-size: 14px; }
.article-meta .badge { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); }

/* Article Main */
.article-main { padding: 70px 0 0; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 48px; align-items: start; }
.article-content { min-width: 0; }
.article-body { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 46px 48px; box-shadow: var(--shadow); }
.article-body h2 { font-size: 26px; font-weight: 800; margin: 34px 0 14px; color: var(--dark); padding-left: 16px; border-left: 4px solid var(--primary); }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--dark); }
.article-body p { margin-bottom: 18px; color: #444a5e; font-size: 15.5px; line-height: 1.9; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body ul li, .article-body ol li { margin-bottom: 10px; color: #444a5e; font-size: 15.5px; position: relative; padding-left: 4px; }
.article-body ul li::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 11px; color: var(--primary); margin-right: 10px; }
.article-body img { border-radius: var(--radius); margin: 24px 0; }
.article-body blockquote { background: var(--bg); border-left: 4px solid var(--primary); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: normal; color: #4a5065; }
.not-found-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px; text-align: center; box-shadow: var(--shadow); }
.not-found-card i { font-size: 52px; color: var(--primary); margin-bottom: 18px; }
.not-found-card p { font-size: 18px; color: var(--text-weak); margin-bottom: 24px; }

/* Sidebar */
.article-sidebar { display: grid; gap: 26px; position: sticky; top: 100px; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.side-card .side-title { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.side-card .side-title i { color: var(--primary); }
.side-info li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.side-info li:last-child { border-bottom: none; }
.side-info li span:first-child { color: var(--text-light); }
.side-info li span:last-child { font-weight: 600; color: var(--text); }
.side-links { display: grid; gap: 8px; }
.side-links a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--radius-sm); background: var(--bg); font-size: 14px; color: var(--text); font-weight: 600; }
.side-links a i { color: var(--primary); font-size: 13px; width: 18px; text-align: center; }
.side-links a:hover { background: rgba(200,16,46,.08); color: var(--primary); transform: translateX(4px); }
.side-ticket { background: linear-gradient(135deg, var(--dark), var(--dark-3)); border-radius: var(--radius-lg); padding: 26px; color: #fff; position: relative; overflow: hidden; }
.side-ticket::after { content: ''; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; background: rgba(200,16,46,.4); border-radius: 50%; }
.side-ticket h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.side-ticket h4 i { color: var(--secondary); }
.side-ticket p { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 18px; line-height: 1.7; }
.side-ticket a { color: var(--secondary); font-weight: 700; font-size: 14px; }

/* Info Bar */
.info-bar { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 28px 32px; margin-bottom: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.info-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px; }
.info-item i { width: 46px; height: 46px; border-radius: 12px; background: rgba(200,16,46,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.info-item b { display: block; font-size: 15px; color: var(--dark); }
.info-item span { font-size: 13px; color: var(--text-light); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 40px; }
.step-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 34px 28px; position: relative; text-align: center; backdrop-filter: blur(6px); transition: var(--transition); }
.step-card:hover { background: rgba(255,255,255,.12); transform: translateY(-6px); border-color: rgba(255,255,255,.2); }
.step-num { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 10px 24px rgba(200,16,46,.35); }
.step-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }
.step-arrow { position: absolute; top: 50%; right: -18px; transform: translateY(-50%); color: var(--secondary); font-size: 16px; z-index: 2; }

/* Related */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.related-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.related-card .card-media { height: 210px; position: relative; overflow: hidden; }
.related-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-card:hover .card-media img { transform: scale(1.06); }
.related-card .card-tag { position: absolute; left: 18px; top: 18px; background: rgba(255,255,255,.92); color: var(--primary); font-size: 12px; font-weight: 800; padding: 5px 16px; border-radius: 40px; backdrop-filter: blur(6px); }
.related-card .card-body { padding: 26px; }
.related-card .card-body h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.related-card .card-body p { font-size: 14px; color: var(--text-weak); line-height: 1.7; margin-bottom: 18px; }
.related-card .card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--primary); }
.related-card .card-link i { font-size: 12px; transition: transform .25s ease; }
.related-card .card-link:hover i { transform: translateX(4px); }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.faq-item summary { display: flex; align-items: center; gap: 16px; padding: 22px 26px; cursor: pointer; font-size: 16px; font-weight: 700; color: var(--dark); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i.fa-chevron-down { margin-left: auto; color: var(--primary); font-size: 13px; transition: transform .3s ease; flex-shrink: 0; }
.faq-item[open] { border-color: rgba(200,16,46,.25); }
.faq-item[open] summary i.fa-chevron-down { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 26px 24px 26px; color: var(--text-weak); font-size: 14.5px; line-height: 1.8; border-top: 1px dashed var(--border); margin-top: 4px; padding-top: 18px; }

/* CTA */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-section .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; }
.cta-section .cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,16,46,.94) 0%, rgba(120,8,24,.92) 100%); z-index: -1; }
.cta-content { max-width: 700px; margin: 0 auto; text-align: center; color: #fff; }
.cta-content h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; margin-bottom: 18px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,.9); margin-bottom: 36px; line-height: 1.8; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; font-size: 22px; margin-bottom: 16px; }
.footer-brand .brand-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.brand-copy { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8; margin-top: 16px; max-width: 360px; }
.footer-heading { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 22px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 3px; border-radius: 3px; background: var(--primary); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.68); }
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; padding: 26px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom p span { color: rgba(255,255,255,.7); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,.35); }

@media (max-width: 1024px) {
    .section { padding: 70px 0; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .step-arrow { display: none; }
    .related-grid { gap: 20px; }
    .mega-panel { width: 520px; }
}

@media (max-width: 768px) {
    .header-inner { height: 68px; }
    .nav-toggle { display: block; }
    .main-nav { order: 3; }
    .nav-list { position: fixed; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 18px 20px 24px; box-shadow: 0 20px 40px rgba(0,0,0,.12); border-radius: 0 0 20px 20px; display: none; gap: 4px; max-height: calc(100vh - 68px); overflow-y: auto; }
    .nav-list.open { display: flex; }
    .nav-link { padding: 14px 16px; border-radius: 12px; font-size: 15px; justify-content: space-between; }
    .has-mega > .nav-link .fa-chevron-down { transform: none; }
    .mega-panel { position: static; transform: none; opacity: 1; visibility: visible; display: none; width: 100%; box-shadow: none; border: none; padding: 0 0 0 12px; background: transparent; margin-top: 8px; }
    .has-mega:hover > .mega-panel { display: none; }
    .has-mega.mobile-open > .mega-panel { display: block; }
    .mega-inner { grid-template-columns: 1fr; gap: 16px; }
    .mega-title { font-size: 12px; }
    .header-cta .btn { display: none; }
    .article-hero { min-height: 360px; padding: 80px 0 60px; }
    .article-body { padding: 30px 24px; }
    .article-main { padding-top: 50px; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .cta-section { padding: 70px 0; }
    .info-bar { padding: 22px; }
}

@media (max-width: 520px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .article-sidebar { grid-template-columns: 1fr; }
    .article-body { padding: 26px 18px; border-radius: 16px; }
    .section-head h2 { font-size: 26px; }
    .brand-text { font-size: 17px; }
    .brand-icon { width: 34px; height: 34px; font-size: 15px; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* roulang page: category1 */
:root {
            --primary: #c8102e;
            --primary-dark: #9e0c24;
            --accent: #d4a843;
            --dark: #181823;
            --dark-2: #232333;
            --bg: #f7f5f2;
            --card-bg: #ffffff;
            --text: #25252e;
            --text-weak: #6f6f7d;
            --border: #e8e4e0;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 10px 30px rgba(24, 24, 35, .08);
            --shadow-lg: 0 24px 60px rgba(24, 24, 35, .16);
            --transition: .3s cubic-bezier(.4, 0, .2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input {
            font-family: inherit;
            border: none;
            background: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ===== Header & Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(24, 24, 35, .04);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 78px;
            gap: 24px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 6px 16px rgba(200, 16, 46, .3);
        }

        .brand-text {
            font-size: 19px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .brand-accent {
            color: var(--primary);
        }

        .main-nav {
            display: flex;
            align-items: center;
            margin-left: auto;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-list>li {
            position: relative;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 16px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
            transition: all var(--transition);
        }

        .nav-link i {
            font-size: 13px;
        }

        .nav-link:hover {
            background: rgba(200, 16, 46, .08);
            color: var(--primary);
        }

        .nav-link.active {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 18px rgba(200, 16, 46, .28);
        }

        .has-mega {
            position: static;
        }

        .mega-panel {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 560px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition);
            z-index: 100;
        }

        .has-mega:hover .mega-panel,
        .has-mega:focus-within .mega-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            padding: 24px;
        }

        .mega-title {
            display: block;
            font-weight: 800;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-weak);
            margin-bottom: 12px;
        }

        .mega-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mega-col a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            color: var(--text);
            font-weight: 500;
            font-size: 14px;
            transition: all var(--transition);
        }

        .mega-col a:hover {
            background: rgba(200, 16, 46, .06);
            color: var(--primary);
            padding-left: 16px;
        }

        .mega-col a i {
            width: 20px;
            text-align: center;
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .mobile-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--dark);
            color: #fff;
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition);
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 22px rgba(200, 16, 46, .3);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(200, 16, 46, .36);
            color: #fff;
        }

        .btn-outline {
            border-color: rgba(255, 255, 255, .8);
            color: #fff;
            background: transparent;
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, .14);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-dark {
            background: var(--dark);
            color: #fff;
        }

        .btn-dark:hover {
            background: var(--dark-2);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 14px;
            border-radius: 10px;
        }

        .btn i {
            font-size: 14px;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--dark);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.png') center/cover no-repeat;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(24, 24, 35, .92) 0%, rgba(24, 24, 35, .72) 45%, rgba(24, 24, 35, .4) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 72px 0;
            color: #fff;
            max-width: 680px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .7);
            margin-bottom: 22px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, .85);
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .sep {
            opacity: .5;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 100px;
            background: rgba(212, 168, 67, .18);
            border: 1px solid rgba(212, 168, 67, .5);
            color: #f4d689;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .hero-title {
            font-size: clamp(32px, 4.6vw, 52px);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: .5px;
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--accent);
        }

        .hero-desc {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .82);
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 34px;
        }

        .hero-note {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .14);
            font-size: 13px;
            color: rgba(255, 255, 255, .78);
            max-width: 600px;
        }

        .hero-note i {
            color: var(--accent);
            font-size: 16px;
        }

        /* ===== Section ===== */
        .section {
            padding: clamp(56px, 8vw, 100px) 0;
        }

        .section-alt {
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-head {
            max-width: 680px;
            margin-bottom: 48px;
        }

        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: rgba(200, 16, 46, .08);
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(26px, 3.4vw, 40px);
            font-weight: 900;
            line-height: 1.25;
            color: var(--dark);
            margin-bottom: 14px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-weak);
            line-height: 1.75;
        }

        /* ===== Entry Cards ===== */
        .entry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .entry-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px 26px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .entry-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition);
        }

        .entry-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .entry-card:hover::after {
            transform: scaleX(1);
        }

        .entry-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--dark), var(--dark-2));
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(24, 24, 35, .2);
        }

        .entry-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .entry-card p {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.65;
            margin-bottom: 18px;
            flex: 1;
        }

        .entry-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
        }

        .entry-link i {
            transition: transform var(--transition);
        }

        .entry-card:hover .entry-link i {
            transform: translateX(4px);
        }

        /* ===== Steps Timeline ===== */
        .steps-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
            position: relative;
        }

        .steps-wrap::before {
            content: "";
            position: absolute;
            top: 28px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
            opacity: .3;
            border-radius: 2px;
        }

        .step-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 28px;
            position: relative;
            transition: all var(--transition);
        }

        .step-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }

        .step-number {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-size: 18px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(200, 16, 46, .3);
            position: relative;
            z-index: 1;
        }

        .step-content h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .step-content p {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.7;
        }

        /* ===== News Cards ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .news-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .news-cover {
            position: relative;
            height: 180px;
            overflow: hidden;
            background: var(--dark);
        }

        .news-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .news-card:hover .news-cover img {
            transform: scale(1.06);
        }

        .news-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(24, 24, 35, .35), transparent);
        }

        .news-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            padding: 5px 12px;
            border-radius: 100px;
            background: rgba(200, 16, 46, .9);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .5px;
            backdrop-filter: blur(4px);
        }

        .news-body {
            padding: 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-weak);
            margin-bottom: 10px;
        }

        .news-title {
            font-size: 16px;
            font-weight: 800;
            line-height: 1.5;
            color: var(--dark);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-summary {
            font-size: 13px;
            color: var(--text-weak);
            line-height: 1.65;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-more {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
        }

        .news-more i {
            transition: transform var(--transition);
        }

        .news-card:hover .news-more i {
            transform: translateX(4px);
        }

        /* ===== Stats ===== */
        .stats-band {
            position: relative;
            background: var(--dark);
            overflow: hidden;
            padding: clamp(56px, 7vw, 90px) 0;
        }

        .stats-band::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            opacity: .18;
        }

        .stats-band::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(200, 16, 46, .25), transparent);
        }

        .stats-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-item {
            padding: 24px 16px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            backdrop-filter: blur(6px);
        }

        .stat-number {
            font-size: clamp(34px, 4vw, 52px);
            font-weight: 900;
            color: var(--accent);
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, .75);
            font-weight: 600;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 26px;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(200, 16, 46, .3);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 16px;
            font-weight: 800;
            color: var(--dark);
            cursor: pointer;
        }

        .faq-question i {
            font-size: 14px;
            color: var(--primary);
            transition: transform var(--transition);
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: rgba(200, 16, 46, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.75;
            padding-top: 0;
            max-height: 0;
            overflow: hidden;
            transition: all .35s ease;
        }

        .faq-item.open .faq-answer {
            padding-top: 16px;
            max-height: 300px;
        }

        /* ===== CTA ===== */
        .cta-band {
            background: linear-gradient(120deg, var(--dark), var(--dark-2));
            padding: clamp(56px, 7vw, 90px) 0;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 16, 46, .4), transparent 60%);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 760px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(28px, 3.6vw, 44px);
            font-weight: 900;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .cta-title span {
            color: var(--accent);
        }

        .cta-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, .75);
            line-height: 1.75;
            margin-bottom: 30px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .7);
            padding: 60px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .footer-brand .brand-text {
            color: #fff;
        }

        .brand-copy {
            font-size: 14px;
            line-height: 1.75;
            margin-top: 16px;
            color: rgba(255, 255, 255, .55);
            max-width: 320px;
        }

        .footer-heading {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, .6);
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-links a i {
            font-size: 11px;
            color: var(--accent);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            padding-top: 24px;
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
        }

        .footer-bottom span {
            color: rgba(255, 255, 255, .5);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .entry-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-wrap {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                min-height: 68px;
            }

            .mobile-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                background: #fff;
                padding: 16px 24px 24px;
                box-shadow: var(--shadow-lg);
                border-radius: 0 0 var(--radius) var(--radius);
                display: block;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all var(--transition);
                max-height: 80vh;
                overflow-y: auto;
            }

            .main-nav.open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .nav-link {
                width: 100%;
                justify-content: space-between;
            }

            .has-mega {
                position: relative;
            }

            .mega-panel {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                border-left: 3px solid var(--primary);
                border-radius: 0;
                margin: 6px 0 6px 8px;
                padding: 0;
                background: rgba(247, 245, 242, .8);
                max-height: 0;
                overflow: hidden;
                padding: 0 12px;
                transition: max-height .35s ease;
            }

            .has-mega.open .mega-panel {
                max-height: 800px;
                padding: 16px 12px;
            }

            .mega-inner {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0;
            }

            .header-actions {
                display: none;
            }

            .hero {
                min-height: 480px;
            }

            .hero-content {
                padding: 52px 0;
            }

            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 18px;
            }

            .brand-text {
                font-size: 16px;
            }

            .brand-icon {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }

            .entry-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }

            .steps-wrap {
                grid-template-columns: 1fr;
            }

            .steps-wrap::before {
                display: none;
            }

            .step-item {
                text-align: left;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .stat-item {
                padding: 18px 12px;
            }

            .stat-number {
                font-size: 30px;
            }

            .faq-question {
                font-size: 15px;
            }

            .cta-actions {
                flex-direction: column;
            }

            .cta-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-note {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }
