/* roulang page: index */
/* ===== CSS Reset & Variables ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --brand-primary: #0D7A6E;
            --brand-primary-dark: #0A5B53;
            --brand-secondary: #F2B544;
            --brand-secondary-dark: #E5A62F;
            --brand-accent: #E0643A;
            --brand-accent-dark: #C84729;
            --bg-page: #F6F5F1;
            --bg-card: #FFFFFF;
            --bg-soft: #EDF5F2;
            --ink-strong: #1E2A2D;
            --ink-body: #3C4547;
            --ink-muted: #7A8385;
            --line: rgba(30, 42, 45, 0.10);
            --line-warm: #E5E2DA;
            --success: #0E7C66;
            --danger: #D95335;
            --warning: #E8A020;
            --radius-card: 20px;
            --radius-lg: 24px;
            --radius-btn: 12px;
            --radius-sm: 6px;
            --radius-pill: 100px;
            --shadow-card: 0 4px 20px rgba(13, 122, 110, 0.06);
            --shadow-hover: 0 14px 40px rgba(13, 122, 110, 0.14);
            --shadow-urgent: 0 8px 30px rgba(224, 100, 58, 0.3);
            --container: 1200px;
            --font-serif: "Noto Serif SC", "Songti SC", "SimSun", "STSong", serif;
            --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-page);
            color: var(--ink-body);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-style: none;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
        }
        a:hover {
            color: var(--brand-primary);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(242, 181, 68, 0.5);
            outline-offset: 2px;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
            line-height: 1;
        }
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: 16px;
            border: 1px solid var(--line);
            background: #fff;
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            width: 100%;
            color: var(--ink-body);
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 4px rgba(13, 122, 110, 0.08);
        }
        select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A8385' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            cursor: pointer;
        }
        ::placeholder {
            color: #ADB4B6;
            opacity: 1;
        }

        /* ===== Container ===== */
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Button System ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            transition: all var(--transition);
            white-space: nowrap;
            border: 2px solid transparent;
        }
        .btn:active {
            transform: translateY(1px);
        }
        .btn-primary {
            background: var(--brand-secondary);
            color: var(--ink-strong);
            border-color: var(--brand-secondary);
        }
        .btn-primary:hover {
            background: var(--brand-secondary-dark);
            border-color: var(--brand-secondary-dark);
            color: var(--ink-strong);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(242, 181, 68, 0.35);
        }
        .btn-outline {
            background: transparent;
            color: var(--brand-primary);
            border-color: var(--brand-primary);
        }
        .btn-outline:hover {
            background: var(--brand-primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(13, 122, 110, 0.25);
        }
        .btn-urgent {
            background: var(--brand-accent);
            color: #fff;
            border-color: var(--brand-accent);
        }
        .btn-urgent:hover {
            background: var(--brand-accent-dark);
            border-color: var(--brand-accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(224, 100, 58, 0.4);
        }
        .btn-sm {
            height: 40px;
            padding: 0 20px;
            font-size: 14px;
        }
        .btn-lg {
            height: 54px;
            padding: 0 40px;
            font-size: 16px;
        }
        .btn-block {
            width: 100%;
        }
        .btn-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 15px;
        }
        .btn-link:hover {
            color: var(--brand-primary-dark);
        }
        .btn-link .arrow {
            transition: transform var(--transition);
        }
        .btn-link:hover .arrow {
            transform: translateX(4px);
        }

        /* ===== Section Head ===== */
        .section-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 56px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.1em;
            color: var(--brand-primary);
            background: rgba(13, 122, 110, 0.08);
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
        }
        .section-head h2 {
            font-family: var(--font-serif);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--ink-strong);
            line-height: 1.4;
            margin-bottom: 12px;
        }
        .section-head p {
            font-size: 16px;
            color: var(--ink-muted);
            line-height: 1.7;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 60px;
            background: transparent;
            transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
            border-bottom: 1px solid transparent;
        }
        .site-header.scrolled {
            background: rgba(246, 245, 241, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 40px;
            flex: 1;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
            color: #fff;
            font-family: var(--font-serif);
            font-size: 21px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(13, 122, 110, 0.3);
            flex-shrink: 0;
        }
        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-text strong {
            font-size: 17px;
            font-weight: 700;
            color: var(--ink-strong);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-text small {
            font-size: 11px;
            color: var(--ink-muted);
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        .brand-light .brand-mark {
            background: var(--brand-secondary);
            color: var(--ink-strong);
        }
        .brand-light .brand-text strong {
            color: #fff;
        }
        .brand-light .brand-text small {
            color: rgba(255, 255, 255, 0.6);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-body);
            position: relative;
            padding: 20px 0;
            white-space: nowrap;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 14px;
            left: 0;
            width: 100%;
            height: 2px;
            border-radius: 2px;
            background: var(--brand-primary);
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .nav-link:hover {
            color: var(--brand-primary);
        }
        .nav-link:hover::after {
            transform: scaleX(1);
        }
        .nav-link.active {
            color: var(--brand-primary);
            font-weight: 600;
        }
        .nav-link.active::after {
            transform: scaleX(1);
        }
        .search-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            color: var(--ink-body);
            transition: background var(--transition);
        }
        .search-toggle:hover {
            background: rgba(13, 122, 110, 0.08);
            color: var(--brand-primary);
        }
        .search-box {
            display: none;
            position: absolute;
            top: 52px;
            right: 24px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
            padding: 12px;
            width: 320px;
            z-index: 1001;
        }
        .search-box.open {
            display: block;
            animation: slideDown 0.25s ease;
        }
        .search-box input {
            height: 44px;
        }
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            align-items: center;
        }
        .menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--ink-strong);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== Mobile Menu ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
            background: #fff;
            padding: 32px 24px;
            flex-direction: column;
            justify-content: space-between;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
            animation: slideDown 0.3s ease;
        }
        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .mobile-menu-nav a {
            font-size: 20px;
            font-weight: 600;
            color: var(--ink-strong);
            padding: 16px 8px;
            border-bottom: 1px solid var(--line);
        }
        .mobile-menu-nav a.active {
            color: var(--brand-primary);
        }
        .mobile-menu-footer {
            margin-top: 48px;
        }
        .mobile-menu-footer .btn {
            width: 100%;
            margin-bottom: 16px;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            padding: calc(60px + 72px) 0 88px;
            background: linear-gradient(135deg, #EDF5F2 0%, #FFFFFF 100%);
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            right: -100px;
            top: -100px;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle at 60% 40%, rgba(13, 122, 110, 0.12), transparent 65%);
            z-index: 0;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 56% 44%;
            gap: 48px;
            align-items: center;
        }
        .hero-content {
            padding-right: 24px;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 122, 110, 0.1);
            color: var(--brand-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
            letter-spacing: 0.04em;
        }
        .hero-tag::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-secondary);
        }
        .hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4.5vw, 52px);
            font-weight: 700;
            line-height: 1.25;
            color: var(--ink-strong);
            margin-bottom: 20px;
            letter-spacing: 0.01em;
        }
        .hero h1 .accent {
            color: var(--brand-primary);
            position: relative;
        }
        .hero-subtitle {
            font-size: 16px;
            line-height: 1.8;
            color: var(--ink-body);
            margin-bottom: 32px;
            max-width: 460px;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .hero-stats {
            display: flex;
            gap: 0;
            border-top: 1px solid var(--line);
            padding-top: 24px;
        }
        .stat {
            padding: 0 24px;
            border-right: 1px solid var(--line);
        }
        .stat:first-child {
            padding-left: 0;
        }
        .stat:last-child {
            padding-right: 0;
            border-right: none;
        }
        .stat strong {
            display: block;
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            color: var(--ink-strong);
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
        }
        .stat span {
            font-size: 13px;
            color: var(--ink-muted);
            display: block;
            margin-top: 2px;
        }
        .hero-visual {
            position: relative;
        }
        .hero-visual .main-img {
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(13, 122, 110, 0.18);
            border: 4px solid rgba(255, 255, 255, 0.6);
            width: 100%;
            height: 420px;
            object-fit: cover;
        }
        .hero-visual::before {
            content: '';
            position: absolute;
            top: -16px;
            right: -16px;
            width: 100%;
            height: 100%;
            border-radius: var(--radius-lg);
            border: 2px dashed rgba(13, 122, 110, 0.3);
            z-index: -1;
        }
        .hero-badge {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(13, 122, 110, 0.12);
            padding: 12px 18px;
            z-index: 2;
        }
        .hero-badge strong {
            font-size: 24px;
            font-weight: 700;
            color: var(--ink-strong);
            font-variant-numeric: tabular-nums;
            line-height: 1;
            font-family: var(--font-serif);
        }
        .hero-badge span {
            font-size: 12px;
            color: var(--ink-muted);
            line-height: 1.3;
            display: block;
        }
        .hero-badge-1 {
            top: 24px;
            left: -20px;
            transform: rotate(-4deg);
        }
        .hero-badge-2 {
            bottom: 60px;
            right: -16px;
            transform: rotate(3deg);
            background: var(--brand-secondary);
            border-color: var(--brand-secondary);
        }
        .hero-badge-2 strong {
            color: var(--ink-strong);
        }
        .hero-badge-2 span {
            color: rgba(30, 42, 45, 0.7);
        }
        .hero-badge-3 {
            bottom: -16px;
            left: 40px;
            transform: rotate(-2deg);
        }

        /* ===== Plans ===== */
        .plans {
            padding: clamp(64px, 8vw, 110px) 0;
            background: var(--bg-page);
        }
        .plan-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr 1.05fr;
            gap: 24px;
            align-items: start;
        }
        .plan-card {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            padding: 36px 32px 32px;
            position: relative;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }
        .plan-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .plan-card.plan-featured {
            border: 2px solid rgba(13, 122, 110, 0.4);
            box-shadow: 0 16px 48px rgba(13, 122, 110, 0.12);
            margin-top: -20px;
            padding-top: 44px;
        }
        .plan-card.plan-featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }
        .plan-card.plan-premium {
            border-color: rgba(242, 181, 68, 0.5);
        }
        .plan-badge {
            display: inline-block;
            background: var(--brand-secondary);
            color: var(--ink-strong);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 6px;
            position: absolute;
            top: -12px;
            left: 32px;
            letter-spacing: 0.04em;
            box-shadow: 0 4px 12px rgba(242, 181, 68, 0.4);
        }
        .plan-level {
            font-size: 13px;
            font-weight: 500;
            color: var(--ink-muted);
            letter-spacing: 0.06em;
            margin-bottom: 6px;
        }
        .plan-name {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: var(--ink-strong);
            margin-bottom: 8px;
        }
        .plan-desc {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .plan-features {
            list-style: none;
            margin-bottom: 28px;
            padding: 0;
        }
        .plan-features li {
            font-size: 14px;
            color: var(--ink-body);
            padding: 7px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
        }
        .plan-features li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 6px;
            background: rgba(13, 122, 110, 0.1);
            color: var(--brand-primary);
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .plan-price {
            margin-bottom: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--line);
        }
        .plan-price .price {
            font-family: var(--font-serif);
            font-size: 30px;
            font-weight: 700;
            color: var(--ink-strong);
            font-variant-numeric: tabular-nums;
        }
        .plan-price .unit {
            font-size: 14px;
            color: var(--ink-muted);
        }
        .plan-card .btn {
            width: 100%;
        }

        /* ===== Compare Table ===== */
        .compare {
            padding: clamp(64px, 8vw, 110px) 0;
            background: var(--bg-soft);
        }
        .table-wrapper {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow-x: auto;
            border: 1px solid var(--line);
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }
        .compare-table th,
        .compare-table td {
            padding: 18px 20px;
            text-align: center;
            font-size: 14px;
            border-bottom: 1px solid rgba(30, 42, 45, 0.06);
        }
        .compare-table thead th {
            font-family: var(--font-serif);
            font-size: 17px;
            font-weight: 700;
            color: var(--ink-strong);
            background: #fff;
            padding: 24px 20px;
        }
        .compare-table thead th:first-child {
            text-align: left;
            font-size: 13px;
            font-weight: 500;
            color: var(--ink-muted);
            letter-spacing: 0.06em;
        }
        .compare-table thead th.featured-col {
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
            color: #fff;
            position: relative;
        }
        .compare-table thead th.featured-col .small {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 2px;
        }
        .compare-table tbody td:first-child {
            text-align: left;
            font-weight: 500;
            color: var(--ink-muted);
            background: rgba(246, 245, 241, 0.6);
            width: 140px;
        }
        .compare-table tbody td.featured-col {
            background: rgba(13, 122, 110, 0.05);
            border-left: 2px solid rgba(13, 122, 110, 0.3);
            border-right: 2px solid rgba(13, 122, 110, 0.3);
        }
        .compare-table tbody td.featured-col.total {
            border-bottom: 2px solid rgba(13, 122, 110, 0.3);
            font-weight: 600;
        }
        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }
        .compare-table tbody tr:hover td {
            background: rgba(13, 122, 110, 0.03);
        }
        .compare-table tbody tr:hover td.featured-col {
            background: rgba(13, 122, 110, 0.07);
        }
        .compare-table .price-cell {
            font-weight: 700;
            color: var(--ink-strong);
            font-variant-numeric: tabular-nums;
            font-size: 15px;
        }
        .compare-table .recommend-flag {
            display: inline-block;
            background: var(--brand-secondary);
            color: var(--ink-strong);
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 6px;
            margin-right: 6px;
        }

        /* ===== Urgent ===== */
        .urgent {
            position: relative;
            padding: clamp(64px, 8vw, 110px) 0;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
            overflow: hidden;
        }
        .urgent::before {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle at 60% 40%, rgba(242, 181, 68, 0.25), transparent 60%);
            z-index: 0;
        }
        .urgent::after {
            content: '';
            position: absolute;
            left: -100px;
            bottom: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            z-index: 0;
        }
        .urgent-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .urgent-inner h2 {
            font-family: var(--font-serif);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .urgent-inner .urgent-sub {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 36px;
        }
        .countdown {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 36px;
        }
        .countdown-item {
            background: rgba(0, 0, 0, 0.25);
            border-radius: 16px;
            padding: 20px 24px;
            min-width: 90px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .countdown-item strong {
            display: block;
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
            line-height: 1;
            margin-bottom: 4px;
            font-family: var(--font-serif);
        }
        .countdown-item span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }
        .urgent-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 16px;
            padding: 12px 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            margin-bottom: 32px;
        }
        .urgent-badge strong {
            font-size: 20px;
            font-weight: 700;
            color: var(--ink-strong);
            font-family: var(--font-serif);
        }
        .urgent-badge span {
            font-size: 12px;
            color: var(--ink-muted);
        }
        .urgent-inner .btn-urgent {
            font-size: 17px;
            height: 54px;
            padding: 0 44px;
            box-shadow: 0 8px 28px rgba(224, 100, 58, 0.4);
        }

        /* ===== News / CMS List ===== */
        .news {
            padding: clamp(64px, 8vw, 110px) 0;
            background: var(--bg-page);
        }
        .post-card-wide {
            display: flex;
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            margin-bottom: 24px;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .post-card-wide:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .post-card-wide__thumb {
            width: 280px;
            flex-shrink: 0;
        }
        .post-card-wide__thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .post-card-wide__body {
            padding: 28px 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .post-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            color: var(--brand-primary);
            background: rgba(13, 122, 110, 0.08);
            padding: 4px 12px;
            border-radius: 6px;
            margin-bottom: 12px;
            align-self: flex-start;
        }
        .post-card-wide__body h3 {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 700;
            color: var(--ink-strong);
            line-height: 1.4;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-card-wide__body p {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.6;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--ink-muted);
        }
        .post-meta time {
            font-variant-numeric: tabular-nums;
        }
        .post-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .post-card {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
        }
        .post-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .post-card__thumb {
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .post-card__thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .post-card:hover .post-card__thumb img {
            transform: scale(1.05);
        }
        .post-card__body {
            padding: 20px 24px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .post-card__meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .post-card__meta time {
            font-size: 12px;
            color: var(--ink-muted);
            font-variant-numeric: tabular-nums;
        }
        .post-card__body h3 {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 700;
            color: var(--ink-strong);
            line-height: 1.45;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-card__body p {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .post-read-more {
            margin-top: 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .post-read-more .arrow {
            transition: transform var(--transition);
        }
        .post-card:hover .post-read-more .arrow {
            transform: translateX(4px);
        }
        /* Empty State */
        .empty-state {
            border: 2px dashed rgba(13, 122, 110, 0.3);
            border-radius: var(--radius-card);
            padding: 80px 40px;
            text-align: center;
            background: rgba(246, 245, 241, 0.6);
        }
        .empty-state .empty-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(13, 122, 110, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--brand-primary);
        }
        .empty-state p {
            font-size: 15px;
            color: var(--ink-muted);
            font-weight: 500;
        }

        /* ===== Contact Form ===== */
        .contact {
            padding: clamp(64px, 8vw, 110px) 0;
            background: var(--bg-soft);
        }
        .contact-inner {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 48px;
            align-items: center;
        }
        .contact-left {
            padding-right: 24px;
        }
        .contact-left .section-tag {
            margin-bottom: 14px;
        }
        .contact-left h2 {
            font-family: var(--font-serif);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--ink-strong);
            line-height: 1.4;
            margin-bottom: 16px;
        }
        .contact-left p {
            font-size: 16px;
            color: var(--ink-muted);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .contact-points {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .contact-points li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 0;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink-body);
        }
        .contact-points li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: var(--brand-primary);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .contact-points li .point-label {
            color: var(--ink-muted);
            font-weight: 400;
            font-size: 14px;
        }
        .contact-form-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            box-shadow: 0 16px 48px rgba(13, 122, 110, 0.12);
            padding: 36px 32px;
            border: 1px solid var(--line);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-strong);
            margin-bottom: 6px;
        }
        .form-group label .required {
            color: var(--brand-accent);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            height: 48px;
        }
        .form-group textarea {
            height: 100px;
            resize: vertical;
            min-height: 80px;
        }
        .form-feedback {
            padding: 10px 14px;
            border-radius: 10px;
            font-size: 14px;
            margin-bottom: 14px;
            display: none;
        }
        .form-feedback.success {
            background: rgba(14, 124, 102, 0.08);
            color: var(--success);
            display: block;
        }
        .form-feedback.error {
            background: rgba(217, 83, 53, 0.08);
            color: var(--danger);
            display: block;
        }
        .form-note {
            font-size: 12px;
            color: var(--ink-muted);
            text-align: center;
            margin-top: 12px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--ink-strong);
            color: rgba(255, 255, 255, 0.75);
            padding: 72px 0 0;
            position: relative;
            overflow: hidden;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(13, 122, 110, 0.25), transparent 65%);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 20px;
            line-height: 1.7;
            max-width: 260px;
        }
        .footer-col h4 {
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 24px;
            height: 2px;
            background: var(--brand-secondary);
            border-radius: 2px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            padding: 6px 0;
            transition: color var(--transition), padding-left var(--transition);
        }
        .footer-col a:hover {
            color: var(--brand-secondary);
            padding-left: 4px;
        }
        .footer-col p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            padding: 4px 0;
            line-height: 1.6;
        }
        .footer-bottom {
            padding: 28px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .main-nav {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-content {
                padding-right: 0;
            }
            .hero-visual {
                max-width: 560px;
                margin: 0 auto;
            }
            .plan-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .plan-card.plan-featured {
                margin-top: 0;
            }
            .contact-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .contact-left {
                padding-right: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .brand-text small {
                display: none;
            }
            .header-right .btn-sm {
                display: none;
            }
            .hero {
                padding: calc(60px + 48px) 0 64px;
            }
            .hero h1 {
                font-size: 30px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 16px;
            }
            .stat {
                padding: 0 16px;
            }
            .stat:first-child {
                padding-left: 0;
            }
            .stat strong {
                font-size: 22px;
            }
            .hero-visual .main-img {
                height: 280px;
            }
            .hero-badge-1 {
                left: 8px;
                top: 12px;
            }
            .hero-badge-2 {
                right: 8px;
                bottom: 40px;
            }
            .hero-badge-3 {
                bottom: -12px;
                left: 16px;
            }
            .plan-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .plan-card.plan-featured {
                margin-top: 0;
                order: -1;
            }
            .section-head {
                margin-bottom: 36px;
            }
            .countdown {
                gap: 8px;
                flex-wrap: wrap;
            }
            .countdown-item {
                padding: 16px 14px;
                min-width: 70px;
            }
            .countdown-item strong {
                font-size: 26px;
            }
            .post-card-wide {
                flex-direction: column;
            }
            .post-card-wide__thumb {
                width: 100%;
                height: 180px;
            }
            .post-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .contact-form-card {
                padding: 28px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .table-wrapper {
                margin: 0 -16px;
                border-radius: 0;
                border-left: none;
                border-right: none;
            }
        }
        @media (max-width: 520px) {
            .hero-badge-2 {
                display: none;
            }
            .brand-text strong {
                font-size: 15px;
            }
            .brand-mark {
                width: 34px;
                height: 34px;
                font-size: 18px;
            }
            .hero-actions .btn {
                height: 46px;
                font-size: 14px;
            }
            .countdown-item {
                min-width: 62px;
                padding: 12px 10px;
            }
            .countdown-item strong {
                font-size: 22px;
            }
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in-up {
            animation: fadeInUp 0.6s ease both;
        }

/* roulang page: article */
:root {
    --brand-primary: #0D7A6E;
    --brand-primary-dark: #0A5B53;
    --brand-secondary: #F2B544;
    --brand-secondary-dark: #E5A62F;
    --brand-accent: #E0643A;
    --brand-accent-dark: #C84729;
    --bg-page: #F6F5F1;
    --bg-card: #FFFFFF;
    --ink-strong: #1E2A2D;
    --ink-body: #3C4547;
    --ink-muted: #7A8385;
    --line: rgba(30,42,45,0.10);
    --line-warm: #E5E2DA;
    --success: #0E7C66;
    --danger: #D95335;
    --warning: #E8A020;
    --radius-card: 20px;
    --radius-banner: 24px;
    --radius-btn: 12px;
    --shadow-card: 0 4px 20px rgba(13,122,110,0.06);
    --shadow-hover: 0 14px 40px rgba(13,122,110,0.14);
    --font-serif: "Noto Serif SC", "Songti SC", SimSun, serif;
    --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --container-width: 1200px;
    --nav-height: 60px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-body);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-primary-dark); }
ul, ol { list-style-position: inside; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 14px; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.icon-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-body);
    font-size: 16px;
    transition: all .25s;
}
.icon-btn:hover { background: rgba(13,122,110,0.08); color: var(--brand-primary); }
.icon-btn:focus-visible { outline: 3px solid rgba(242,181,68,0.5); outline-offset: 2px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 48px; padding: 0 28px;
    border-radius: var(--radius-btn);
    font-size: 15px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid rgba(242,181,68,0.5); outline-offset: 2px; }
.btn-primary { background: var(--brand-secondary); color: var(--ink-strong); }
.btn-primary:hover { background: var(--brand-secondary-dark); color: var(--ink-strong); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,181,68,0.35); }
.btn-outline { border: 2px solid var(--brand-primary); color: var(--brand-primary); background: transparent; }
.btn-outline:hover { background: var(--brand-primary); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,122,110,0.22); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink-body); background: var(--bg-card); }
.btn-ghost:hover { border-color: var(--brand-primary); color: var(--brand-primary); background: rgba(13,122,110,0.04); }
.btn-urgent { background: var(--brand-accent); color: #fff; }
.btn-urgent:hover { background: var(--brand-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(224,100,58,0.35); }
.btn-sm { height: 40px; padding: 0 20px; font-size: 14px; }

.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(246,245,241,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 20px rgba(30,42,45,0.05);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-left { display: flex; align-items: center; gap: 28px; min-width: 0; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: #fff;
    font-family: var(--font-serif);
    font-size: 20px; font-weight: 700;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(13,122,110,0.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-serif); font-size: 17px; color: var(--ink-strong); letter-spacing: 0.02em; }
.brand-text small { font-size: 10px; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: rgba(255,255,255,0.6); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
    position: relative;
    padding: 8px 14px;
    font-size: 14px; font-weight: 500;
    color: var(--ink-body);
    border-radius: 8px;
    transition: color .25s, background .25s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--brand-primary); background: rgba(13,122,110,0.06); }
.nav-link.active { color: var(--brand-primary); font-weight: 600; }
.nav-link.active::after {
    content: '';
    position: absolute; left: 14px; right: 14px; bottom: 2px;
    height: 3px; border-radius: 3px;
    background: var(--brand-secondary);
}
.nav-cta { margin-left: 4px; }
.hamburger { display: none; }
.mobile-menu { display: none; }

.article-hero {
    padding: calc(var(--nav-height) + 48px) 0 44px;
    background: linear-gradient(135deg, #EDF5F2 0%, #FFFFFF 68%);
    border-bottom: 1px solid var(--line-warm);
    position: relative;
    overflow: hidden;
}
.article-hero::before {
    content: '';
    position: absolute; right: -80px; top: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(242,181,68,0.18), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}
.article-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
    gap: 44px;
    align-items: center;
}
.article-hero-text { min-width: 0; }
.breadcrumb {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb-sep { color: rgba(30,42,45,0.2); }
.breadcrumb-current { color: var(--ink-muted); max-width: 280px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink-strong);
    margin-bottom: 18px;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--ink-muted);
}
.meta-item i { color: var(--brand-primary); font-size: 14px; }
.meta-item .meta-cat {
    background: rgba(13,122,110,0.10);
    color: var(--brand-primary);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 12px;
}
.article-hero-cover { position: relative; }
.article-hero-cover img {
    border-radius: var(--radius-banner);
    box-shadow: var(--shadow-hover);
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}
.article-hero-cover::after {
    content: '九游首页入口 · 留学阅读';
    position: absolute; left: 16px; bottom: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    color: var(--brand-primary);
    letter-spacing: 0.03em;
}

.article-body { padding: 56px 0 24px; }
.article-container { max-width: 860px; margin: 0 auto; }
.article-content {
    background: var(--bg-card);
    border: 1px solid rgba(30,42,45,0.06);
    border-radius: var(--radius-banner);
    padding: clamp(28px, 4vw, 52px) clamp(22px, 4vw, 56px);
    box-shadow: var(--shadow-card);
}
.article-content > *:first-child { margin-top: 0; }
.article-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ink-body);
    margin-bottom: 18px;
}
.article-content h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink-strong);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(13,122,110,0.15);
}
.article-content h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-strong);
    margin: 28px 0 12px;
}
.article-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink-strong);
    margin: 22px 0 10px;
}
.article-content ul, .article-content ol {
    margin: 16px 0 20px;
    padding-left: 6px;
    line-height: 1.8;
}
.article-content ul li, .article-content ol li { margin-bottom: 6px; }
.article-content ul li::marker { color: var(--brand-primary); }
.article-content a { color: var(--brand-primary); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--brand-primary-dark); }
.article-content blockquote {
    border-left: 4px solid var(--brand-primary);
    background: rgba(13,122,110,0.05);
    padding: 16px 22px;
    margin: 24px 0;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    color: var(--ink-strong);
    font-size: 15px;
}
.article-content blockquote p { margin-bottom: 0; }
.article-content img {
    border-radius: 16px;
    margin: 24px auto;
    box-shadow: var(--shadow-card);
}
.article-content figure { margin: 24px 0; }
.article-content figcaption {
    font-size: 13px;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 8px;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 14px;
}
.article-content th {
    background: rgba(13,122,110,0.08);
    color: var(--ink-strong);
    font-weight: 600;
    padding: 10px 14px;
    border-bottom: 2px solid rgba(13,122,110,0.15);
    text-align: left;
}
.article-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    line-height: 1.7;
}
.article-content tr:last-child td { border-bottom: none; }
.article-content code {
    background: rgba(30,42,45,0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: monospace;
}
.article-content pre {
    background: var(--ink-strong);
    color: #E8E4DE;
    padding: 20px;
    border-radius: 14px;
    overflow-x: auto;
    margin: 22px 0;
    line-height: 1.7;
}
.article-content pre code { background: none; padding: 0; color: inherit; }
.article-content hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 32px 0;
}
.article-content strong { color: var(--ink-strong); font-weight: 600; }

.not-found {
    background: var(--bg-card);
    border: 1px dashed rgba(13,122,110,0.3);
    border-radius: var(--radius-banner);
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.not-found-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(13,122,110,0.08);
    color: var(--brand-primary);
    font-size: 34px;
    display: flex; align-items: center; justify-content: center;
}
.not-found h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--ink-strong);
    margin-bottom: 10px;
}
.not-found p { color: var(--ink-muted); margin-bottom: 28px; }

.article-nav-section { padding: 32px 0 8px; }
.article-nav-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.related-posts { padding: 56px 0 24px; }
.section-head { margin-bottom: 28px; }
.section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--brand-primary);
    background: rgba(13,122,110,0.10);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.6vw, 32px);
    color: var(--ink-strong);
    font-weight: 700;
    line-height: 1.4;
}
.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.related-item {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) minmax(140px, auto);
    gap: 20px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(30,42,45,0.06);
    border-radius: 16px;
    padding: 18px 24px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.related-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: rgba(13,122,110,0.25);
}
.related-cat {
    font-size: 12px; font-weight: 600;
    color: var(--brand-primary);
    background: rgba(13,122,110,0.08);
    padding: 4px 12px;
    border-radius: 100px;
    justify-self: start;
}
.related-title {
    font-size: 15px; font-weight: 600;
    color: var(--ink-strong);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .2s;
}
.related-item:hover .related-title { color: var(--brand-primary); }
.related-meta {
    font-size: 13px;
    color: var(--ink-muted);
    display: flex; align-items: center; gap: 6px;
    justify-self: end;
}

.cta-section {
    margin-top: 48px;
    padding: clamp(60px, 8vw, 96px) 0;
    background: linear-gradient(135deg, rgba(13,122,110,0.94), rgba(10,91,83,0.96)), url('/assets/images/backpic/back-1.webp') center/cover;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(242,181,68,0.35), transparent 60%);
    border-radius: 50%;
}
.cta-inner {
    position: relative;
    text-align: center;
    max-width: 720px;
}
.cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.2vw, 36px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}
.cta-inner p {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    margin-bottom: 28px;
}
.cta-inner .btn-urgent { box-shadow: 0 8px 30px rgba(224,100,58,0.4); }

.site-footer {
    background: #162628;
    color: rgba(255,255,255,0.7);
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; bottom: -120px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(13,122,110,0.25), transparent 70%);
    border-radius: 50%;
}
.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    transition: color .2s, padding-left .2s;
}
.footer-col a:hover {
    color: var(--brand-secondary);
    padding-left: 4px;
}
.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
}
.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 22px 0 28px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .nav-left { gap: 16px; }
    .main-nav { display: none; }
    .hamburger {
        display: inline-flex;
        width: 38px; height: 38px;
        align-items: center; justify-content: center;
        border-radius: 10px;
        font-size: 18px;
        color: var(--ink-body);
        transition: background .2s;
    }
    .hamburger:hover { background: rgba(13,122,110,0.08); }
    .hamburger:focus-visible { outline: 3px solid rgba(242,181,68,0.5); }
    .mobile-menu {
        display: none;
        position: fixed; top: var(--nav-height); left: 0; right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 40px rgba(30,42,45,0.1);
        padding: 16px 24px 24px;
        z-index: 999;
        flex-direction: column;
        gap: 4px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-link {
        display: block;
        padding: 12px 8px;
        font-size: 15px; font-weight: 500;
        color: var(--ink-body);
        border-radius: 8px;
        transition: background .2s, color .2s;
    }
    .mobile-link:hover { background: rgba(13,122,110,0.06); color: var(--brand-primary); }
    .mobile-link.active { color: var(--brand-primary); font-weight: 600; }
    .mobile-cta { margin-top: 12px; justify-content: center; }
    .article-hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .article-hero-cover { order: -1; max-width: 560px; }
    .related-item { grid-template-columns: 1fr; gap: 10px; }
    .related-meta { justify-self: start; }
}
@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .nav-cta { padding: 0 16px; font-size: 13px; height: 36px; }
    .brand-text strong { font-size: 15px; }
    .brand-text small { font-size: 9px; }
    .article-hero { padding: calc(var(--nav-height) + 28px) 0 32px; }
    .article-hero h1 { font-size: 26px; }
    .article-meta { gap: 10px; }
    .article-body { padding: 36px 0 16px; }
    .article-content { padding: 24px 18px; border-radius: 18px; }
    .article-content p { font-size: 15px; }
    .article-content h2 { font-size: 21px; }
    .article-content h3 { font-size: 18px; }
    .related-item { padding: 14px 18px; }
    .article-nav-btns { flex-direction: column; align-items: stretch; }
    .article-nav-btns .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-section { margin-top: 32px; }
    .cta-inner .btn-urgent { width: 100%; }
}

/* roulang page: category1 */
/* ========== Design Tokens ========== */
:root {
  --brand-primary: #0D7A6E;
  --brand-primary-dark: #0A5B53;
  --brand-secondary: #F2B544;
  --brand-secondary-dark: #E5A62F;
  --brand-accent: #E0643A;
  --brand-accent-dark: #C84729;
  --bg-page: #F6F5F1;
  --bg-card: #FFFFFF;
  --bg-mist: #EDF5F2;
  --ink-strong: #1E2A2D;
  --ink-body: #3C4547;
  --ink-muted: #7A8385;
  --line: rgba(30, 42, 45, 0.10);
  --line-warm: #E5E2DA;
  --success: #0E7C66;
  --danger: #D95335;
  --warning: #E8A020;
  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-input: 12px;
  --radius-badge: 100px;
  --shadow-card: 0 4px 20px rgba(13, 122, 110, 0.06);
  --shadow-hover: 0 14px 40px rgba(13, 122, 110, 0.14);
  --shadow-btn: 0 6px 20px rgba(242, 181, 68, 0.35);
  --font-serif: "Noto Serif SC", "Songti SC", SimSun, serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --container: 1200px;
  --spacing-section: clamp(64px, 8vw, 110px) 0;
  --transition: 0.25s ease;
}

/* ========== Reset / Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--ink-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--spacing-section);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  color: var(--ink-strong);
  line-height: 1.4;
  font-weight: 700;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-secondary);
  color: var(--ink-strong);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--brand-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(242, 181, 68, 0.4);
}

.btn-outline {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 122, 110, 0.25);
}

.btn-accent {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 6px 22px rgba(224, 100, 58, 0.35);
}

.btn-accent:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 100, 58, 0.4);
}

.btn-small {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.btn:focus-visible {
  outline: 3px solid rgba(242, 181, 68, 0.5);
  outline-offset: 2px;
}

/* ========== Header / Nav ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(246, 245, 241, 0.98);
  border-bottom-color: rgba(30, 42, 45, 0.14);
  box-shadow: 0 4px 24px rgba(30, 42, 45, 0.06);
}

.nav-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 10px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-strong);
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav .nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  padding: 6px 2px;
  transition: color var(--transition);
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.main-nav .nav-link:hover {
  color: var(--brand-primary);
}

.main-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.main-nav .nav-link.active {
  color: var(--brand-primary);
  font-weight: 600;
}

.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-search {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--ink-body);
  transition: all var(--transition);
}

.nav-search:hover {
  background: rgba(13, 122, 110, 0.08);
  color: var(--brand-primary);
}

.nav-search:focus-visible {
  outline: 3px solid rgba(242, 181, 68, 0.5);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-strong);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  box-shadow: 0 24px 48px rgba(30, 42, 45, 0.1);
  display: none;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-body);
  border-radius: 12px;
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: rgba(13, 122, 110, 0.06);
  color: var(--brand-primary);
}

.mobile-menu a.active {
  color: var(--brand-primary);
  background: rgba(13, 122, 110, 0.08);
  font-weight: 600;
}

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
}

/* ========== Page Hero ========== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #EDF5F2 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(242, 181, 68, 0.18), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at center, rgba(13, 122, 110, 0.1), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--brand-primary);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--brand-primary-dark);
}

.breadcrumb span {
  color: var(--ink-muted);
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink-strong);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.page-lead {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-body);
}

/* ========== Info Bands ========== */
.info-band-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.info-bands {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 88px);
}

.info-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.info-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.info-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-band:hover .info-media img {
  transform: scale(1.03);
}

.info-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 122, 110, 0.04), rgba(13, 122, 110, 0.08));
  pointer-events: none;
}

.info-deco {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--brand-secondary);
  border-radius: 50%;
  top: -18px;
  right: -18px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.info-band.reversed .info-deco {
  top: auto;
  bottom: -18px;
  right: auto;
  left: -18px;
}

.info-content {
  padding: 8px 0;
}

.info-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(13, 122, 110, 0.1);
  color: var(--brand-primary);
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.info-content h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink-strong);
  margin-bottom: 14px;
  line-height: 1.4;
}

.info-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-body);
  margin-bottom: 24px;
}

.info-content .btn {
  min-width: 160px;
}

/* CTA Banner */
.cta-banner {
  padding: clamp(64px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(242, 181, 68, 0.2), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== Footer ========== */
.site-footer {
  background: #1E2A2D;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(13, 122, 110, 0.28), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand .brand-light .brand-mark {
  background: var(--brand-secondary);
  color: var(--ink-strong);
}

.footer-brand .brand-light .brand-text strong {
  color: #fff;
}

.footer-brand .brand-light .brand-text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand > p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--brand-secondary);
  padding-left: 4px;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== Responsive ========== */
@media (max-width: 1023px) and (min-width: 768px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav .nav-link {
    font-size: 13px;
  }

  .brand-text small {
    display: none;
  }

  .info-band {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .main-nav {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .page-hero {
    padding: 110px 0 56px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .info-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-band.reversed .info-media {
    order: 0;
  }

  .info-content {
    padding: 4px 0;
  }

  .info-content .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .nav-actions .nav-search {
    display: flex;
  }
}

@media (max-width: 520px) {
  .brand-text strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .brand-text small {
    display: none;
  }
}

/* Focus visible states */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(242, 181, 68, 0.5);
  outline-offset: 2px;
}

/* roulang page: category2 */
:root {
            --brand-primary: #0D7A6E;
            --brand-primary-dark: #0A5B53;
            --brand-secondary: #F2B544;
            --brand-secondary-dark: #E5A62F;
            --brand-accent: #E0643A;
            --brand-accent-dark: #C84729;
            --bg-page: #F6F5F1;
            --bg-card: #FFFFFF;
            --ink-strong: #1E2A2D;
            --ink-body: #3C4547;
            --ink-muted: #7A8385;
            --line: rgba(30, 42, 45, 0.10);
            --success: #0E7C66;
            --danger: #D95335;
            --warning: #E8A020;
            --radius-lg: 24px;
            --radius-md: 20px;
            --radius-sm: 12px;
            --radius-badge: 100px;
            --shadow-card: 0 4px 20px rgba(13, 122, 110, 0.06);
            --shadow-hover: 0 14px 40px rgba(13, 122, 110, 0.14);
            --font-title: "Noto Serif SC", "Songti SC", SimSun, serif;
            --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            --header-h: 60px;
            --container-w: 1200px;
            --space-section: clamp(64px, 8vw, 110px);
        }

        /* Reset */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink-body);
            background: var(--bg-page);
            -webkit-font-smoothing: antialiased;
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-title);
            color: var(--ink-strong);
            line-height: 1.4;
            font-weight: 700;
        }
        h1 {
            font-size: clamp(32px, 4.5vw, 46px);
            line-height: 1.25;
        }
        h2 {
            font-size: clamp(26px, 3vw, 34px);
        }
        h3 {
            font-size: 20px;
            font-weight: 600;
        }
        a {
            color: var(--brand-primary);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--brand-primary-dark);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            background: none;
        }
        input,
        textarea {
            font-family: var(--font-body);
        }

        .container {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 46px;
            padding: 0 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            transition: all 0.25s ease;
            border: 2px solid transparent;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--brand-secondary);
            color: var(--ink-strong);
        }
        .btn-primary:hover {
            background: var(--brand-secondary-dark);
            color: var(--ink-strong);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(242, 181, 68, 0.35);
        }
        .btn-outline {
            background: transparent;
            color: var(--brand-primary);
            border-color: var(--brand-primary);
        }
        .btn-outline:hover {
            background: var(--brand-primary);
            color: #fff;
        }
        .btn-urgent {
            background: var(--brand-accent);
            color: #fff;
        }
        .btn-urgent:hover {
            background: var(--brand-accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(224, 100, 58, 0.35);
        }
        .btn-lg {
            height: 52px;
            padding: 0 36px;
            font-size: 16px;
        }
        .btn-sm {
            height: 38px;
            padding: 0 20px;
            font-size: 14px;
        }
        .btn:focus-visible,
        .nav-link:focus-visible,
        .faq-question:focus-visible,
        .nav-toggle:focus-visible,
        .search-btn:focus-visible {
            outline: 3px solid rgba(242, 181, 68, 0.5);
            outline-offset: 2px;
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            z-index: 1000;
            background: rgba(246, 245, 241, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--line);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(30, 42, 45, 0.06);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-h);
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 24px;
            gap: 24px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
            color: #fff;
            font-family: var(--font-title);
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(13, 122, 110, 0.25);
        }
        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-text strong {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink-strong);
            letter-spacing: 0.02em;
        }
        .brand-text small {
            font-size: 11px;
            color: var(--ink-muted);
            letter-spacing: 0.05em;
        }
        .brand-light .brand-text strong {
            color: #fff;
        }
        .brand-light .brand-text small {
            color: rgba(255, 255, 255, 0.7);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link {
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-body);
            border-radius: 8px;
            position: relative;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .nav-link:hover {
            color: var(--brand-primary);
            background: rgba(13, 122, 110, 0.06);
        }
        .nav-link.active {
            color: var(--brand-primary);
            font-weight: 600;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 3px;
            height: 2px;
            border-radius: 2px;
            background: var(--brand-primary);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
        }
        .search-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink-body);
            transition: background 0.2s ease, color 0.2s ease;
        }
        .search-btn:hover {
            background: rgba(13, 122, 110, 0.08);
            color: var(--brand-primary);
        }
        .nav-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: rgba(13, 122, 110, 0.06);
        }
        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: var(--ink-strong);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Page Hero */
        .page-hero {
            position: relative;
            padding: calc(var(--header-h) + 64px) 0 72px;
            background: linear-gradient(135deg, rgba(13, 122, 110, 0.82), rgba(10, 91, 83, 0.88)), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242, 181, 68, 0.35), transparent 70%);
            pointer-events: none;
        }
        .page-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        .breadcrumb a:hover {
            color: var(--brand-secondary);
            border-color: var(--brand-secondary);
        }
        .page-hero h1 {
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }
        .page-hero-desc {
            font-size: 16px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.92);
            max-width: 720px;
            margin: 0 auto 28px;
        }
        .page-hero-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 8px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: var(--radius-badge);
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.22);
            font-size: 13px;
            font-weight: 500;
            color: #fff;
            backdrop-filter: blur(4px);
        }
        .hero-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--brand-secondary);
        }

        /* Section Head */
        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto clamp(40px, 5vw, 64px);
        }
        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand-primary);
            background: rgba(13, 122, 110, 0.08);
            padding: 6px 18px;
            border-radius: var(--radius-badge);
            margin-bottom: 16px;
        }
        .section-head h2 {
            margin-bottom: 14px;
        }
        .section-head p {
            color: var(--ink-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Process Section */
        .process-section {
            padding: var(--space-section) 0;
            background: var(--bg-page);
        }
        .process-timeline {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .process-timeline::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
            border-radius: 2px;
            opacity: 0.6;
        }
        .process-item {
            position: relative;
            padding-left: 76px;
            margin-bottom: 40px;
        }
        .process-item:last-child {
            margin-bottom: 0;
        }
        .process-badge {
            position: absolute;
            left: 0;
            top: 18px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 4px var(--bg-page), 0 0 0 6px rgba(13, 122, 110, 0.35);
            z-index: 1;
            font-family: var(--font-body);
        }
        .process-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .process-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .process-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--ink-strong);
        }
        .process-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--ink-body);
        }

        /* FAQ Section */
        .faq-section {
            padding: var(--space-section) 0;
            background: var(--bg-card);
            border-top: 1px solid var(--line);
        }
        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: var(--bg-card);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .faq-item.active {
            border-color: rgba(13, 122, 110, 0.4);
            box-shadow: 0 4px 20px rgba(13, 122, 110, 0.08);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 20px 24px;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink-strong);
            background: transparent;
            transition: color 0.2s ease;
        }
        .faq-item.active .faq-question {
            color: var(--brand-primary);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(13, 122, 110, 0.08);
            color: var(--brand-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 400;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--brand-primary);
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 24px 20px;
            border-left: 3px solid var(--brand-primary);
            margin-left: 24px;
            padding-left: 16px;
        }
        .faq-answer-inner p {
            font-size: 14px;
            line-height: 1.75;
            color: var(--ink-body);
        }
        .faq-aside {
            position: sticky;
            top: calc(var(--header-h) + 40px);
            background: linear-gradient(135deg, #EDF5F2, var(--bg-card));
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
        }
        .faq-aside img {
            border-radius: var(--radius-md);
            margin: 0 auto 20px;
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 4 / 3;
        }
        .faq-aside h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .faq-aside p {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            padding: clamp(64px, 8vw, 100px) 0;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: 10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242, 181, 68, 0.3), transparent 65%);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 5%;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224, 100, 58, 0.2), transparent 65%);
            pointer-events: none;
        }
        .cta-box {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .cta-box h2 {
            color: #fff;
            margin-bottom: 16px;
            font-size: clamp(24px, 3vw, 34px);
        }
        .cta-box p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .cta-note {
            margin-top: 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Footer */
        .site-footer {
            background: #162628;
            color: rgba(255, 255, 255, 0.75);
            padding: 64px 0 0;
            position: relative;
            overflow: hidden;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(13, 122, 110, 0.25), transparent 70%);
            pointer-events: none;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 48px;
            position: relative;
            z-index: 2;
        }
        .footer-brand .brand {
            margin-bottom: 16px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            max-width: 320px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
            font-family: var(--font-body);
            letter-spacing: 0.04em;
        }
        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 2.2;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--brand-secondary);
            padding-left: 4px;
        }
        .footer-col p {
            font-size: 14px;
            line-height: 2;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            position: relative;
            z-index: 2;
        }
        .footer-bottom p:first-child {
            color: rgba(255, 255, 255, 0.55);
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .faq-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .faq-aside {
                position: static;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                padding: 0 16px;
                gap: 12px;
            }
            .main-nav {
                position: fixed;
                top: var(--header-h);
                left: 0;
                width: 100%;
                background: var(--bg-card);
                flex-direction: column;
                align-items: stretch;
                padding: 16px;
                border-bottom: 1px solid var(--line);
                box-shadow: 0 12px 30px rgba(30, 42, 45, 0.12);
                transform: translateY(-120%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            .main-nav.open {
                transform: translateY(0);
            }
            .nav-link {
                padding: 14px 16px;
                font-size: 16px;
                border-radius: var(--radius-sm);
            }
            .nav-link.active::after {
                display: none;
            }
            .nav-link.active {
                background: rgba(13, 122, 110, 0.08);
            }
            .nav-toggle {
                display: flex;
            }
            .header-actions .btn-sm {
                display: inline-flex;
                height: 36px;
                padding: 0 14px;
                font-size: 13px;
            }
            .page-hero {
                padding: calc(var(--header-h) + 48px) 0 56px;
            }
            .page-hero-desc {
                font-size: 15px;
            }
            .hero-badge {
                padding: 6px 14px;
                font-size: 12px;
            }
            .process-timeline {
                padding: 0 16px;
            }
            .process-item {
                padding-left: 60px;
                margin-bottom: 32px;
            }
            .process-timeline::before {
                left: 15px;
            }
            .process-badge {
                width: 30px;
                height: 30px;
                font-size: 12px;
                left: 1px;
                top: 20px;
                box-shadow: 0 0 0 3px var(--bg-page), 0 0 0 5px rgba(13, 122, 110, 0.35);
            }
            .process-card {
                padding: 20px;
            }
            .faq-question {
                padding: 16px 18px;
                font-size: 14px;
            }
            .faq-answer-inner {
                margin-left: 16px;
                padding-left: 12px;
            }
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            .cta-actions .btn {
                width: 100%;
                max-width: 320px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .header-inner {
                gap: 8px;
            }
            .brand-text small {
                display: none;
            }
            .brand-text strong {
                font-size: 15px;
            }
            .header-actions .btn-sm {
                padding: 0 12px;
                font-size: 13px;
            }
            .page-hero-meta {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
        }
