/* roulang page: index */
:root {
        --page-bg: #F4F0E8;
        --surface: #FFFFFF;
        --surface-2: #ECE7DC;
        --ink: #17222B;
        --muted: #5E6870;
        --brand: #E1572A;
        --brand-deep: #B83B18;
        --accent: #0A7961;
        --accent-soft: #E4F1EC;
        --dark: #151E26;
        --line: #DCD4C5;
        --radius-lg: 20px;
        --radius-md: 16px;
        --radius-sm: 10px;
        --shadow-card: 0 1px 0 rgba(21,30,38,0.04), 0 12px 28px -24px rgba(21,30,38,0.18);
        --shadow-hover: 0 2px 0 rgba(21,30,38,0.05), 0 24px 40px -24px rgba(21,30,38,0.26);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        background-color: var(--page-bg);
        color: var(--ink);
        font-size: 16px;
        line-height: 1.75;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    .container__main {
        max-width: 1220px;
        margin: 0 auto;
        padding-left: clamp(16px, 4vw, 32px);
        padding-right: clamp(16px, 4vw, 32px);
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: all 0.28s ease;
    }
    a:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 3px;
        border-radius: 6px;
    }
    img {
        max-width: 100%;
        display: block;
    }
    button, input, select, textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }
    button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
    .tabnum {
        font-variant-numeric: tabular-nums;
    }
    .numfont {
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.02em;
    }

    /* ===== HEADER NAV CARD ===== */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 12px 0;
        background: transparent;
        transition: background 0.3s;
    }
    .site-header.is-scrolled {
        background: rgba(244, 240, 232, 0.86);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 1px 0 rgba(21,30,38,0.06);
    }
    .nav-card {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 999px;
        border: 1px solid var(--line);
        padding: 8px 10px 8px 22px;
        box-shadow: 0 12px 28px -24px rgba(21,30,38,0.22);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .site-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .site-logo .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: var(--brand);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        box-shadow: 0 6px 14px -6px rgba(225, 87, 42, 0.6);
    }
    .site-logo .logo-text {
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 0.02em;
        color: var(--ink);
        line-height: 1.2;
    }
    .site-logo .logo-text small {
        display: block;
        font-size: 11px;
        font-weight: 400;
        color: var(--muted);
        letter-spacing: 0.04em;
    }
    .header-category {
        display: flex;
        align-items: center;
        gap: 4px;
        background: var(--surface-2);
        padding: 4px;
        border-radius: 999px;
        flex-shrink: 0;
    }
    .header-category a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 16px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        white-space: nowrap;
        transition: all 0.25s;
    }
    .header-category a i {
        font-size: 13px;
        opacity: 0.8;
    }
    .header-category a:hover {
        background: var(--surface);
        color: var(--brand-deep);
    }
    .header-category a.active {
        background: var(--surface);
        color: var(--brand-deep);
        font-weight: 600;
        box-shadow: 0 2px 6px rgba(21,30,38,0.06);
    }
    .header-btn {
        flex-shrink: 0;
    }
    .header-btn .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--brand);
        color: #fff;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 8px 18px -8px rgba(225, 87, 42, 0.65);
        transition: all 0.28s;
    }
    .header-btn .btn-primary:hover {
        background: var(--brand-deep);
        transform: translateY(-1px);
        box-shadow: 0 14px 24px -10px rgba(184, 59, 24, 0.55);
    }
    .header-btn .btn-primary i {
        transition: transform 0.25s;
    }
    .header-btn .btn-primary:hover i {
        transform: translateX(3px);
    }

    .menu-toggle {
        display: none;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: var(--surface);
        color: var(--ink);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
    }
    .menu-toggle i {
        font-size: 20px;
    }
    .mobile-menu {
        display: none;
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        border: 1px solid var(--line);
        padding: 14px;
        box-shadow: 0 16px 40px -20px rgba(21,30,38,0.25);
        backdrop-filter: blur(16px);
    }
    .mobile-menu.show {
        display: block;
    }
    .mobile-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 14px;
        background: var(--page-bg);
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--ink);
    }
    .mobile-menu a i {
        width: 22px;
        text-align: center;
        color: var(--brand);
    }
    .mobile-menu a.active {
        background: var(--accent-soft);
        color: var(--brand-deep);
    }

    /* Buttons */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--brand);
        color: #fff;
        padding: 12px 28px;
        border-radius: var(--radius-sm);
        border: none;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        box-shadow: 0 10px 20px -10px rgba(225, 87, 42, 0.6);
        transition: all 0.25s;
    }
    .btn-primary:hover {
        background: var(--brand-deep);
        transform: translateY(-2px);
        box-shadow: 0 16px 30px -10px rgba(184, 59, 24, 0.55);
    }
    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 6px 14px -6px rgba(184, 59, 24, 0.5);
    }
    .btn-ghost-light {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(255,255,255,0.12);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.42);
        padding: 12px 28px;
        border-radius: var(--radius-sm);
        cursor: pointer;
        font-weight: 500;
        font-size: 15px;
        backdrop-filter: blur(6px);
        transition: all 0.25s;
    }
    .btn-ghost-light:hover {
        background: rgba(255,255,255,0.22);
        border-color: rgba(255,255,255,0.8);
        transform: translateY(-2px);
    }
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--surface);
        color: var(--ink);
        border: 1px solid var(--line);
        padding: 12px 28px;
        border-radius: var(--radius-sm);
        cursor: pointer;
        font-weight: 500;
        font-size: 15px;
        box-shadow: 0 2px 0 rgba(21,30,38,0.03);
        transition: all 0.25s;
    }
    .btn-secondary:hover {
        border-color: var(--brand);
        color: var(--brand-deep);
        transform: translateY(-2px);
        box-shadow: var(--shadow-card);
    }

    /* ===== HERO ===== */
    .hero-wrap {
        padding-top: 90px;
        padding-bottom: clamp(30px, 5vw, 60px);
        position: relative;
    }
    .hero-panel {
        position: relative;
        border-radius: 28px;
        overflow: hidden;
        background-color: var(--dark);
        min-height: 560px;
        display: flex;
        align-items: stretch;
        box-shadow: 0 4px 20px rgba(21,30,38,0.08);
    }
    .hero-bg-layer {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .hero-bg-layer .bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.55;
    }
    .hero-bg-layer::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, rgba(21,30,38,0.92) 15%, rgba(21,30,38,0.78) 48%, rgba(21,30,38,0.1) 100%);
    }
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(36px, 6vw, 72px);
        max-width: 660px;
        color: #fff;
    }
    .hero-badge-line {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.14);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.24);
        border-radius: 999px;
        padding: 7px 16px;
        font-size: 13px;
        color: #fff;
        width: fit-content;
        margin-bottom: 22px;
        letter-spacing: 0.03em;
    }
    .hero-badge-line i {
        color: #ffd6c2;
    }
    .hero-title {
        font-size: clamp(32px, 5vw, 56px);
        line-height: 1.16;
        font-weight: 800;
        text-wrap: balance;
        letter-spacing: -0.01em;
        margin-bottom: 18px;
    }
    .hero-title .hl-brand {
        color: #FFF;
        background: linear-gradient(90deg, #ffd3bd, #fff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }
    .hero-desc {
        font-size: 16px;
        line-height: 1.85;
        color: rgba(255,255,255,0.9);
        max-width: 540px;
        margin-bottom: 30px;
    }
    .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    /* Countdown */
    .countdown-shell {
        position: relative;
        z-index: 3;
        margin: 24px auto 0;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.4);
        box-shadow: 0 18px 44px -20px rgba(21,30,38,0.3);
    }
    .countdown-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 24px;
        flex-wrap: wrap;
    }
    .cd-event-name {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }
    .cd-event-name .cd-event-title {
        font-weight: 700;
        font-size: 16px;
        color: var(--ink);
        white-space: nowrap;
    }
    .cd-status-pill {
        background: var(--accent-soft);
        color: var(--accent);
        font-size: 12px;
        padding: 3px 12px;
        border-radius: 999px;
        font-weight: 600;
        white-space: nowrap;
    }
    .countdown-grid {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }
    .cd-part {
        text-align: center;
        min-width: 66px;
        background: var(--dark);
        border-radius: 12px;
        padding: 9px 8px 7px;
        color: #fff;
    }
    .cd-part .cd-num {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.1;
        font-family: "PingFang SC", "HarmonyOS Sans SC", Arial, sans-serif;
        font-variant-numeric: tabular-nums;
    }
    .cd-part .cd-label {
        font-size: 11px;
        color: rgba(255,255,255,0.65);
        margin-top: 2px;
        letter-spacing: 0.12em;
    }
    .cd-sep {
        font-size: 22px;
        color: var(--line);
        font-weight: 300;
    }
    .cd-cta {
        flex-shrink: 0;
    }
    .cd-cta .btn-primary {
        background: var(--brand);
        color: #fff;
        border-radius: 999px;
        padding: 12px 30px;
    }

    /* ===== SECTION COMMON ===== */
    .section-pad {
        padding-top: clamp(60px, 8vw, 96px);
        padding-bottom: clamp(60px, 8vw, 96px);
    }
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: var(--brand-deep);
        letter-spacing: 0.05em;
        margin-bottom: 14px;
    }
    .section-label::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--brand);
        border-radius: 2px;
        display: inline-block;
    }
    .section-label .label-num {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 0 8px;
        color: var(--muted);
        font-size: 12px;
        margin-left: 4px;
    }
    .section-h2 {
        font-size: clamp(26px, 3.4vw, 44px);
        font-weight: 700;
        line-height: 1.25;
        color: var(--ink);
        text-wrap: balance;
        margin-bottom: 14px;
        letter-spacing: -0.01em;
    }
    .section-sub {
        font-size: 15px;
        color: var(--muted);
        max-width: 680px;
        line-height: 1.8;
    }
    .section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .link-more {
        color: var(--brand);
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding-bottom: 4px;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
    }
    .link-more:hover {
        border-bottom-color: var(--brand);
        gap: 10px;
    }

    /* ===== FEATURE BLOCK ===== */
    .feature-block {
        background: var(--surface);
        border-radius: 28px;
        border: 1px solid var(--line);
        padding: clamp(32px, 5vw, 56px);
        position: relative;
        overflow: hidden;
    }
    .feature-block::before {
        content: '';
        position: absolute;
        top: -160px;
        right: -100px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(225, 87, 42, 0.06) 0%, transparent 65%);
        pointer-events: none;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: clamp(32px, 5vw, 70px);
        align-items: center;
    }
    .feature-2col-content .section-sub {
        margin-bottom: 30px;
    }
    .feature-list {
        list-style: none;
        margin-top: 14px;
    }
    .feature-list li {
        display: flex;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(220, 212, 197, 0.8);
        align-items: flex-start;
    }
    .feat-num {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background: var(--page-bg);
        border: 1px solid var(--line);
        color: var(--brand-deep);
        font-weight: 700;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .feat-text .feat-title-line {
        font-weight: 600;
        font-size: 16px;
        color: var(--ink);
        margin-bottom: 3px;
        display: block;
    }
    .feat-text .feat-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
    }
    .feature-stats {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 18px;
    }
    .stat-pill {
        background: var(--accent-soft);
        color: var(--accent);
        border-radius: 999px;
        padding: 6px 16px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .feature-visual {
        border-radius: 20px;
        overflow: hidden;
        background: var(--surface-2);
        min-height: 320px;
        box-shadow: var(--shadow-card);
        position: relative;
    }
    .feature-visual img {
        width: 100%;
        height: 100%;
        min-height: 360px;
        object-fit: cover;
    }
    .feature-visual-caption {
        position: absolute;
        bottom: 18px;
        left: 18px;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 10px 16px;
        font-size: 13px;
        border: 1px solid rgba(255,255,255,0.6);
        box-shadow: 0 8px 20px rgba(21,30,38,0.12);
        z-index: 2;
    }

    /* ===== NEWS / LATEST ===== */
    .news-panel {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: clamp(20px, 3vw, 32px);
        align-items: stretch;
    }
    .featured-card {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--line);
        background: var(--surface);
        box-shadow: var(--shadow-card);
        display: flex;
        flex-direction: column;
        transition: all 0.3s;
    }
    .featured-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }
    .featured-card .fc-thumb {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/9;
        background: var(--surface-2);
    }
    .featured-card .fc-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .featured-card:hover .fc-thumb img {
        transform: scale(1.04);
    }
    .fc-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(10, 121, 97, 0.92);
        color: #fff;
        padding: 4px 14px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        backdrop-filter: blur(6px);
    }
    .fc-body {
        padding: 22px 24px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .fc-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.55;
        color: var(--ink);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }
    .fc-excerpt {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.8;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 16px;
        flex: 1;
    }
    .fc-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--muted);
        font-size: 13px;
        border-top: 1px solid var(--line);
        padding-top: 14px;
    }
    .fc-link {
        color: var(--brand);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
    }
    .list-card-stack {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .lc-item {
        display: flex;
        gap: 16px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 16px 18px;
        box-shadow: 0 1px 0 rgba(21,30,38,0.03);
        transition: all 0.26s;
        align-items: center;
    }
    .lc-item:hover {
        border-color: #d5aa8a;
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }
    .lc-index {
        width: 30px;
        font-size: 12px;
        font-weight: 700;
        color: var(--line);
        flex-shrink: 0;
        font-variant-numeric: tabular-nums;
    }
    .lc-body {
        flex: 1;
        min-width: 0;
    }
    .lc-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.5;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .lc-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.65;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .lc-right {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: var(--muted);
        white-space: nowrap;
    }
    .lc-time {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .lc-arrow {
        color: var(--line);
        font-size: 16px;
        transition: color 0.2s;
    }
    .lc-item:hover .lc-arrow {
        color: var(--brand);
        transform: translateX(3px);
    }
    .empty-list-box {
        border: 2px dashed var(--line);
        border-radius: 20px;
        background: rgba(255,255,255,0.5);
        padding: 44px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        transition: background 0.3s;
    }
    .empty-list-box:hover {
        background: var(--surface);
    }
    .empty-list-box i {
        font-size: 32px;
        color: #c6beb0;
    }
    .empty-list-box p {
        font-size: 15px;
        color: var(--muted);
    }
    .empty-refresh {
        font-size: 13px;
        color: var(--brand);
        border: 1px solid var(--line);
        padding: 5px 18px;
        border-radius: 999px;
        background: var(--surface);
        cursor: pointer;
        transition: 0.25s;
        margin-top: 4px;
    }
    .empty-refresh:hover {
        background: var(--brand);
        color: #fff;
    }

    /* ===== GALLERY WALL ===== */
    .gallery-wrap {
        background: var(--surface-2);
        border-radius: 28px;
        padding: clamp(28px, 4vw, 50px);
        position: relative;
        overflow: hidden;
    }
    .gallery-wrap::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 24px;
        right: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(225, 87, 42, 0.3), transparent);
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 150px;
        gap: 14px;
    }
    .g-card {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        background-size: cover;
        background-position: center;
        border: 1px solid rgba(255, 255, 255, 0.4);
        transition: all 0.3s;
        background-color: var(--dark);
    }
    .g-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
        transition: transform 0.5s ease;
    }
    .g-card:hover img {
        transform: scale(1.05);
    }
    .g-card::after {
        content: '';
        position: absolute;
        inset: auto 0 0 0;
        height: 55%;
        background: linear-gradient(to bottom, transparent, rgba(21, 30, 38, 0.58));
        opacity: 0;
        transition: opacity 0.3s;
    }
    .g-card:hover::after {
        opacity: 1;
    }
    .g-card-caption {
        position: absolute;
        bottom: 12px;
        left: 12px;
        right: 12px;
        z-index: 5;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 1px 6px rgba(0,0,0,0.3);
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.3s, transform 0.3s;
        line-height: 1.5;
    }
    .g-card:hover .g-card-caption {
        opacity: 1;
        transform: translateY(0);
    }
    .g-card-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(255,255,255,0.88);
        backdrop-filter: blur(4px);
        font-size: 11px;
        color: var(--ink);
        padding: 3px 10px;
        border-radius: 999px;
        font-weight: 600;
        z-index: 6;
    }
    .g-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .g-card:nth-child(2) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .g-card:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .g-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .g-card:nth-child(5) {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* ===== CTA Signup ===== */
    .cta-main-wrap {
        background: var(--dark);
        border-radius: 28px;
        overflow: hidden;
        color: #fff;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        min-height: 480px;
        box-shadow: 0 24px 60px -30px rgba(21,30,38,0.8);
    }
    .cta-info-side {
        padding: clamp(32px, 5vw, 64px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        position: relative;
        z-index: 2;
    }
    .cta-info-side::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--brand), transparent 80%);
    }
    .cta-pill {
        background: rgba(225, 87, 42, 0.2);
        color: #ffb59c;
        padding: 5px 14px;
        border-radius: 999px;
        font-size: 12px;
        width: fit-content;
        border: 1px solid rgba(225, 87, 42, 0.3);
        font-weight: 600;
    }
    .cta-title {
        font-size: clamp(28px, 3.4vw, 44px);
        font-weight: 800;
        line-height: 1.3;
        text-wrap: balance;
    }
    .cta-desc {
        font-size: 15px;
        color: rgba(255,255,255,0.75);
        max-width: 480px;
        line-height: 1.85;
    }
    .cta-note-list {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 8px;
    }
    .cta-note {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        padding: 6px 14px;
        border-radius: 10px;
        font-size: 13px;
        color: rgba(255,255,255,0.9);
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .cta-note i {
        color: var(--brand);
    }
    .cta-form-wrapper {
        background: var(--surface);
        color: var(--ink);
        border-radius: 0 28px 28px 0;
        padding: clamp(28px, 4vw, 52px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .cta-form-wrapper .form-title-line {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--ink);
    }
    .cta-form-wrapper .form-hint {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 22px;
    }
    .form-group {
        margin-bottom: 16px;
    }
    .form-group label {
        display: block;
        font-size: 13px;
        margin-bottom: 6px;
        color: var(--ink);
        font-weight: 500;
    }
    .label-required::before {
        content: '*';
        color: var(--brand);
        margin-right: 4px;
    }
    .form-control {
        width: 100%;
        height: 48px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 0 16px;
        background: var(--surface);
        color: var(--ink);
        transition: border-color 0.2s, box-shadow 0.2s;
        font-size: 14px;
        outline: none;
    }
    .form-control:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(10, 121, 97, 0.1);
    }
    .form-control::placeholder {
        color: #a8a298;
    }
    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235E6870' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 44px;
        cursor: pointer;
    }
    .form-submit-btn {
        width: 100%;
        height: 52px;
        border: none;
        background: var(--brand);
        color: #fff;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.25s;
        margin-top: 8px;
    }
    .form-submit-btn:hover {
        background: var(--brand-deep);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px -8px rgba(184, 59, 24, 0.5);
    }
    .form-submit-btn:active {
        transform: translateY(0);
    }
    .privacy-note {
        font-size: 12px;
        color: var(--muted);
        text-align: center;
        margin-top: 12px;
        line-height: 1.6;
    }

    /* ===== FAQ ===== */
    .faq-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 920px;
        margin: 0 auto;
    }
    .faq-item {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        padding: 0 24px;
        box-shadow: 0 2px 0 rgba(21,30,38,0.02);
        transition: all 0.25s;
    }
    .faq-item:hover {
        box-shadow: var(--shadow-card);
    }
    .faq-item.active {
        border-color: #e2a98e;
    }
    .faq-q {
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        padding: 18px 0;
        -webkit-user-select: none;
        user-select: none;
    }
    .faq-q .faq-q-mark {
        width: 28px;
        height: 28px;
        border-radius: 10px;
        background: var(--accent-soft);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 13px;
        flex-shrink: 0;
        transition: background 0.2s;
    }
    .faq-item.active .faq-q-mark {
        background: var(--brand);
        color: #fff;
    }
    .faq-q-text {
        flex: 1;
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.5;
    }
    .faq-arrow {
        color: var(--muted);
        transition: transform 0.3s;
        flex-shrink: 0;
    }
    .faq-item.active .faq-arrow {
        transform: rotate(180deg);
        color: var(--brand);
    }
    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease;
    }
    .faq-a-content {
        padding: 2px 0 20px 44px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.85;
    }
    .faq-a-content strong {
        color: var(--ink);
        font-weight: 600;
    }
    .faq-bottom-link {
        margin-top: 28px;
        display: flex;
        gap: 12px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .faq-bottom-link .btn-secondary {
        border-radius: 999px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
        background: var(--dark);
        color: rgba(255,255,255,0.75);
        border-radius: 28px 28px 0 0;
        margin-top: clamp(40px, 6vw, 70px);
        position: relative;
        overflow: hidden;
    }
    .site-footer::before {
        content: '';
        position: absolute;
        inset: 0 0 auto 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--accent), transparent);
        opacity: 0.5;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1.2fr;
        gap: clamp(28px, 4vw, 64px);
        padding: clamp(44px, 6vw, 72px) 0 40px;
    }
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }
    .footer-logo .logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        background: var(--brand);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 800;
        font-size: 18px;
    }
    .footer-logo .ft-logo-text {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
    }
    .footer-brand-desc {
        font-size: 14px;
        color: rgba(255,255,255,0.55);
        line-height: 1.9;
        max-width: 360px;
        margin-bottom: 20px;
    }
    .footer-link-group {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }
    .footer-col-title {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .footer-col-title::before {
        content: '';
        width: 16px;
        height: 2px;
        border-radius: 2px;
        background: var(--brand);
    }
    .footer-list {
        list-style: none;
    }
    .footer-list li {
        margin-bottom: 12px;
    }
    .footer-list a {
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.2s;
        border-radius: 4px;
    }
    .footer-list a i {
        font-size: 12px;
        color: rgba(255,255,255,0.3);
        transition: color 0.2s;
    }
    .footer-list a:hover {
        color: #fff;
        transform: translateX(2px);
    }
    .footer-contact-col .footer-list li {
        color: rgba(255,255,255,0.55);
        font-size: 14px;
        line-height: 1.9;
    }
    .footer-contact-info {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        background: rgba(255,255,255,0.08);
        border-radius: 999px;
        padding: 8px 18px;
        margin-top: 6px;
        font-size: 13px;
        color: rgba(255,255,255,0.85);
    }
    .footer-contact-info i {
        color: var(--brand);
    }
    .footer-service-note {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .service-chips {
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.06);
        padding: 4px 14px;
        border-radius: 999px;
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        backdrop-filter: blur(4px);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
        color: rgba(255,255,255,0.35);
    }
    .footer-bottom .legal-domain {
        letter-spacing: 0.02em;
    }
    .footer-bottom-menu span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }
    .footer-bottom-menu span + span::before {
        content: '•';
        margin-right: 8px;
        color: rgba(255,255,255,0.2);
    }

    /* ===== SIDE FLOATING ===== */
    .temp-float-panel {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 80;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .float-help-trigger {
        background: var(--surface);
        color: var(--ink);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-card);
        width: 52px;
        height: 52px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }
    .float-help-trigger:hover {
        box-shadow: var(--shadow-hover);
        color: var(--brand);
    }

    /* ===== RESPONSIVE ===== */
    @media screen and (max-width: 1180px) {
        .news-panel {
            grid-template-columns: 1fr;
        }
        .featured-card {
            flex-direction: row;
        }
        .featured-card .fc-thumb {
            width: 42%;
            min-width: 280px;
            aspect-ratio: 1 / 1;
        }
        .cta-main-wrap {
            grid-template-columns: 1fr;
        }
        .cta-form-wrapper {
            border-radius: 0 0 28px 28px;
        }
        .gallery-grid {
            grid-auto-rows: 140px;
        }
    }

    @media screen and (max-width: 1024px) {
        header.site-header {
            padding-bottom: 0;
            background: rgba(244, 240, 232, 0.96);
        }
        .header-category {
            display: none;
        }
        .menu-toggle {
            display: inline-flex;
        }
        .mobile-menu {
            display: none;
        }
        .mobile-menu.show {
            display: block;
        }
        .feature-grid {
            grid-template-columns: 1fr;
        }
        .feature-visual img {
            min-height: 300px;
        }
        .footer-top {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media screen and (max-width: 768px) {
        .site-header.is-scrolled {
            background: rgba(244, 240, 232, 0.96);
        }
        .hero-wrap {
            padding-top: 82px;
        }
        .hero-content {
            padding: 40px 24px;
        }
        .hero-panel {
            min-height: 540px;
        }
        .hero-bg-layer::after {
            background: linear-gradient(to bottom, rgba(21,30,38,0.9) 15%, rgba(21,30,38,0.6) 100%);
        }
        .countdown-inner {
            justify-content: center;
            gap: 16px;
            padding: 16px;
        }
        .countdown-grid {
            gap: 5px;
        }
        .cd-part .cd-num {
            font-size: 24px;
        }
        .cd-sep {
            display: none;
        }
        .feature-block {
            padding: 28px 20px;
        }
        .featured-card {
            flex-direction: column;
        }
        .featured-card .fc-thumb {
            width: 100%;
            aspect-ratio: 16/9;
        }
        .gallery-wrap {
            padding: 24px 16px;
        }
        .gallery-grid {
            grid-auto-rows: 120px;
            gap: 8px;
        }
        .g-card-caption {
            opacity: 1;
            transform: translateY(0);
        }
        .g-card::after {
            opacity: 0.6;
        }
        .cta-info-side, .cta-form-wrapper {
            padding: 32px 24px;
        }
        .faq-item {
            padding: 0 16px;
        }
        .faq-a-content {
            padding-left: 20px;
        }
        .footer-top {
            grid-template-columns: 1fr;
            gap: 32px;
            padding-top: 48px;
        }
        .footer-bottom {
            justify-content: center;
            text-align: center;
        }
        .site-footer {
            border-radius: 20px 20px 0 0;
        }
    }

    @media screen and (max-width: 520px) {
        .site-logo .logo-text {
            font-size: 15px;
        }
        .site-logo small {
            font-size: 9px;
        }
        .site-logo .logo-mark {
            width: 34px;
            height: 34px;
            font-size: 15px;
        }
        .hero-content {
            padding: 34px 18px;
        }
        .hero-title {
            font-size: 30px;
        }
        .hero-actions {
            flex-direction: column;
        }
        .hero-actions .btn-primary, .hero-actions .btn-ghost-light {
            justify-content: center;
            width: 100%;
        }
        .cd-event-name {
            width: 100%;
            justify-content: center;
        }
        .countdown-grid {
            width: 100%;
            justify-content: center;
        }
        .cd-part {
            min-width: 58px;
            padding: 8px 4px 6px;
        }
        .cd-part .cd-num {
            font-size: 22px;
        }
        .section-h2 {
            font-size: 25px;
        }
        .feature-stats {
            flex-direction: column;
            align-items: flex-start;
        }
        .stat-pill {
            border-radius: 10px;
        }
        .featured-card .fc-body {
            padding: 18px 16px;
        }
        .lc-item {
            padding: 12px;
            gap: 6px;
        }
        .lc-index {
            font-size: 10px;
        }
        .lc-desc {
            display: none;
        }
        .lc-right {
            gap: 4px;
        }
        .lc-right .lc-time i {
            display: none;
        }
        .gallery-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .g-card {
            width: 100%;
            height: 160px;
            flex-shrink: 0;
        }
        .g-card:nth-child(1),
        .g-card:nth-child(2),
        .g-card:nth-child(5) {
            height: 220px;
        }
        .section-label {
            font-size: 12px;
        }
        .faq-q-text {
            font-size: 15px;
        }
        .faq-a-content {
            padding-right: 0;
        }
        .footer-bottom {
            padding: 16px 0;
            font-size: 12px;
        }
        .footer-bottom-menu {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-bottom-menu span::before {
            display: none;
        }
        .temp-float-panel {
            right: 14px;
            bottom: 14px;
        }
    }

/* roulang page: article */
:root {
            --page-bg: #F4F0E8;
            --surface: #FFFFFF;
            --surface-2: #ECE7DC;
            --ink: #17222B;
            --muted: #5E6870;
            --brand: #E1572A;
            --brand-deep: #B83B18;
            --accent: #0A7961;
            --accent-soft: #E4F1EC;
            --dark: #151E26;
            --line: #DCD4C5;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 10px;
            --shadow-card: 0 1px 0 rgba(21,30,38,.04), 0 12px 28px -24px rgba(21,30,38,.18);
            --shadow-hover: 0 2px 0 rgba(21,30,38,.05), 0 22px 42px -30px rgba(21,30,38,.28);
            --container: 1200px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--page-bg);
            color: var(--ink);
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        body.page-article {
            padding-top: 92px;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
        }

        a {
            color: var(--ink);
            text-decoration: none;
            transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        a:hover {
            color: var(--brand);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 2px;
        }

        .container__main {
            width: min(var(--container), 100% - clamp(32px, 6vw, 64px));
            margin-inline: auto;
        }

        .site-header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 100;
            padding: 16px 16px 8px;
            background: linear-gradient(180deg, rgba(244, 240, 232, .92), rgba(244, 240, 232, .55) 82%, transparent);
        }

        .nav-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            width: min(1240px, 100%);
            margin-inline: auto;
            padding: 10px 14px;
            background: rgba(255, 255, 255, .84);
            border: 1px solid rgba(220, 212, 197, .86);
            border-radius: 20px;
            box-shadow: 0 10px 30px -22px rgba(21, 30, 38, .3);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .site-logo {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            display: grid;
            place-items: center;
            background: var(--brand);
            color: #fff;
            font-weight: 800;
            font-size: 20px;
            border-radius: 13px;
            letter-spacing: 0;
            box-shadow: 0 8px 20px -12px rgba(225, 87, 42, .8);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            font-weight: 800;
            font-size: 17px;
            line-height: 1.2;
            color: var(--ink);
            letter-spacing: .01em;
            white-space: nowrap;
        }

        .logo-text small {
            margin-top: 3px;
            font-size: 11px;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: .04em;
        }

        .header-category {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .header-category a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            transition: all .2s ease;
            white-space: nowrap;
        }

        .header-category a i {
            color: var(--accent);
            font-size: 13px;
        }

        .header-category a:hover {
            background: var(--surface-2);
            color: var(--brand-deep);
            transform: translateY(-1px);
        }

        .header-category a.active {
            background: rgba(225, 87, 42, .12);
            color: var(--brand-deep);
        }

        .header-category a.active i {
            color: var(--brand);
        }

        .header-btn .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 12px;
            background: var(--brand);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            border: 0;
            cursor: pointer;
            box-shadow: 0 10px 22px -14px rgba(225, 87, 42, .8);
            transition: all .2s ease;
            white-space: nowrap;
        }

        .header-btn .btn-primary:hover {
            background: var(--brand-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 26px -16px rgba(184, 59, 24, .8);
        }

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 12px;
            background: var(--surface-2);
            color: var(--ink);
            font-size: 18px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu {
            display: none;
        }

        .article-hero {
            position: relative;
            padding: clamp(30px, 5vw, 58px) 0 32px;
        }

        .article-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(21, 30, 38, .07) 1px, transparent 1px);
            background-size: 22px 22px;
            pointer-events: none;
        }

        .breadcrumb-nav {
            position: relative;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-nav a {
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb-nav a:hover {
            color: var(--brand);
        }

        .breadcrumb-nav .breadcrumb-icon {
            color: var(--accent);
            font-size: 12px;
        }

        .breadcrumb-nav .breadcrumb-sep {
            color: rgba(21, 30, 38, .25);
            font-size: 11px;
        }

        .article-heading-wrap {
            position: relative;
            max-width: 960px;
        }

        .article-category-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px 6px 12px;
            border-radius: 999px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .article-category-pill i {
            font-size: 12px;
        }

        .article-heading {
            font-size: clamp(30px, 4.5vw, 52px);
            line-height: 1.2;
            letter-spacing: -.015em;
            font-weight: 800;
            color: var(--ink);
            margin: 0 0 18px;
            text-wrap: balance;
        }

        .article-meta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 22px;
            color: var(--muted);
            font-size: 13px;
        }

        .article-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .article-meta-row i {
            color: var(--accent);
            width: 15px;
            text-align: center;
        }

        .article-meta-row .meta-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: #aaa;
        }

        .article-main-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 318px;
            gap: clamp(24px, 3vw, 40px);
            align-items: start;
            padding-bottom: clamp(52px, 8vw, 84px);
        }

        .article-primary {
            display: grid;
            gap: 24px;
        }

        .article-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: clamp(22px, 4.4vw, 44px);
            min-width: 0;
            overflow: hidden;
        }

        .article-abstract {
            margin: 0 0 26px;
            padding: 17px 20px;
            border-radius: 14px;
            background: var(--surface-2);
            border-left: 4px solid var(--brand);
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .article-body {
            font-size: 17px;
            line-height: 1.95;
            color: rgba(23, 34, 43, .92);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .article-body p {
            margin: 0 0 1.55em;
        }

        .article-body h2,
        .article-body h3,
        .article-body h4 {
            margin: 2.1em 0 .8em;
            font-weight: 800;
            line-height: 1.4;
            color: var(--ink);
            scroll-margin-top: 110px;
        }

        .article-body h2 {
            font-size: clamp(23px, 3vw, 30px);
            padding-left: 15px;
            border-left: 4px solid var(--brand);
        }

        .article-body h3 {
            font-size: 21px;
            margin-top: 1.7em;
        }

        .article-body h4 {
            font-size: 18px;
            margin-top: 1.4em;
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 1.6em;
            padding-left: 1.25em;
        }

        .article-body ul li,
        .article-body ol li {
            margin-bottom: .48em;
            padding-left: .3em;
        }

        .article-body ul li::marker {
            color: var(--brand);
        }

        .article-body blockquote {
            margin: 1.8em 0;
            padding: 16px 20px;
            background: var(--accent-soft);
            border-radius: 12px;
            color: rgba(23, 34, 43, .8);
            border-left: 4px solid var(--accent);
            font-size: 16px;
        }

        .article-body blockquote p {
            margin-bottom: .5em;
        }

        .article-body blockquote p:last-child {
            margin-bottom: 0;
        }

        .article-body img {
            border-radius: 16px;
            margin: 1.2em 0;
            box-shadow: var(--shadow-card);
        }

        .article-body a {
            color: var(--brand-deep);
            border-bottom: 1px solid rgba(225, 87, 42, .3);
        }

        .article-body a:hover {
            color: var(--brand);
            border-bottom-color: var(--brand);
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6em 0;
            font-size: 15px;
            border-radius: 12px;
            overflow: hidden;
        }

        .article-body th,
        .article-body td {
            border: 1px solid var(--line);
            padding: 10px 14px;
            text-align: left;
        }

        .article-body th {
            background: var(--surface-2);
            font-weight: 700;
            color: var(--ink);
        }

        .article-body hr {
            border: 0;
            border-top: 1px solid var(--line);
            margin: 2.2em 0;
        }

        .article-code {
            background: rgba(21, 30, 38, .05);
            border-radius: 8px;
            padding: 2px 8px;
            font-family: "SFMono-Regular", Consolas, monospace;
            font-size: .92em;
            color: var(--brand-deep);
        }

        .article-empty {
            padding: 44px 20px;
            text-align: center;
        }

        .article-empty i {
            font-size: 44px;
            color: var(--brand);
            opacity: .8;
        }

        .article-empty h2 {
            font-size: 24px;
            margin: 18px 0 6px;
        }

        .article-empty p {
            color: var(--muted);
            margin: 0 auto 26px;
            max-width: 400px;
        }

        .article-bottom-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--line);
        }

        .article-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 0;
            background: var(--brand);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            padding: 11px 20px;
            border-radius: 11px;
            cursor: pointer;
            transition: all .2s ease;
            box-shadow: 0 10px 22px -14px rgba(225, 87, 42, .7);
        }

        .btn-primary:hover {
            background: var(--brand-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 26px -16px rgba(184, 59, 24, .7);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #fff;
            color: var(--ink);
            border: 1px solid var(--line);
            font-size: 14px;
            font-weight: 600;
            padding: 10px 18px;
            border-radius: 11px;
            cursor: pointer;
            transition: all .2s ease;
        }

        .btn-secondary:hover {
            border-color: var(--brand);
            color: var(--brand-deep);
            background: rgba(225, 87, 42, .04);
            transform: translateY(-1px);
        }

        .article-sidebar {
            position: sticky;
            top: 112px;
            display: grid;
            gap: 20px;
        }

        .side-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 22px;
            box-shadow: var(--shadow-card);
        }

        .side-card-soft {
            background: var(--surface-2);
            border-color: transparent;
        }

        .side-title {
            font-size: 16px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 9px;
            margin: 0 0 14px;
            padding-bottom: 11px;
            border-bottom: 1px solid rgba(23, 34, 43, .1);
        }

        .side-title i {
            color: var(--brand);
        }

        .toc-list {
            list-style: none;
            margin: 0;
            padding: 0;
            max-height: 320px;
            overflow: auto;
        }

        .toc-list li {
            margin-bottom: 2px;
        }

        .toc-list a {
            display: block;
            padding: 7px 10px;
            border-radius: 9px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.55;
        }

        .toc-list a:hover {
            background: var(--surface);
            color: var(--brand-deep);
        }

        .toc-list a.toc-h2 {
            font-weight: 700;
            color: var(--ink);
            padding-left: 12px;
        }

        .toc-list a.toc-h3 {
            padding-left: 24px;
        }

        .side-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 4px;
        }

        .side-nav-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            background: rgba(255, 255, 255, .5);
            border: 1px solid rgba(220, 212, 197, .45);
        }

        .side-nav-list a i {
            width: 18px;
            color: var(--accent);
            text-align: center;
        }

        .side-nav-list a:hover {
            background: var(--surface);
            border-color: var(--accent);
            color: var(--accent);
            transform: translateX(2px);
        }

        .side-note-card {
            padding: 0;
            overflow: hidden;
            background: linear-gradient(145deg, #fff 0%, #faf7f1 100%);
        }

        .side-note-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }

        .side-note-content {
            padding: 18px 20px;
        }

        .side-tag {
            display: inline-flex;
            padding: 4px 10px;
            font-size: 12px;
            background: var(--accent-soft);
            color: var(--accent);
            border-radius: 999px;
            font-weight: 700;
            margin-bottom: 9px;
        }

        .side-note-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
            margin: 0 0 10px;
        }

        .cta-section {
            padding-bottom: clamp(52px, 8vw, 84px);
        }

        .cta-dark-panel {
            position: relative;
            background: var(--dark);
            color: rgba(255, 255, 255, .86);
            border-radius: 26px;
            overflow: hidden;
            padding: clamp(28px, 5vw, 58px);
            display: grid;
            grid-template-columns: minmax(0, 1fr) 390px;
            gap: 28px;
            align-items: center;
        }

        .cta-dark-panel::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            right: -90px;
            top: -110px;
            border-radius: 50%;
            background: var(--brand);
            opacity: .15;
            pointer-events: none;
        }

        .cta-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #F4A486;
            margin-bottom: 14px;
        }

        .cta-copy h2 {
            margin: 0 0 12px;
            color: #fff;
            font-size: clamp(25px, 3.2vw, 36px);
            line-height: 1.25;
            letter-spacing: -.01em;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, .72);
            margin: 0 0 18px;
            max-width: 620px;
            line-height: 1.8;
            font-size: 15px;
        }

        .cta-note-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .cta-note-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(255, 255, 255, .62);
        }

        .cta-note-links a:hover {
            color: #fff;
        }

        .cta-form-card {
            position: relative;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 22px;
            backdrop-filter: blur(8px);
        }

        .cta-form-card h3 {
            color: #fff;
            font-size: 18px;
            margin: 0 0 14px;
            font-weight: 600;
        }

        .cta-form-row {
            margin-bottom: 12px;
        }

        .cta-form-row label {
            display: block;
            color: rgba(255, 255, 255, .7);
            font-size: 13px;
            margin-bottom: 5px;
        }

        .cta-form-row label b {
            color: #F47C5E;
        }

        .cta-form-row input,
        .cta-form-row select {
            width: 100%;
            height: 46px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 11px;
            color: #fff;
            padding: 0 14px;
            font-size: 14px;
            outline: none;
            transition: border-color .2s ease, background .2s ease;
        }

        .cta-form-row input::placeholder {
            color: rgba(255, 255, 255, .48);
        }

        .cta-form-row select {
            appearance: none;
            background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.7) 50%), linear-gradient(135deg, rgba(255,255,255,.7) 50%, transparent 50%);
            background-position: calc(100% - 19px) 20px, calc(100% - 14px) 20px;
            background-repeat: no-repeat;
            background-size: 5px 5px, 5px 5px;
            color: #fff;
        }

        .cta-form-row select option {
            color: var(--ink);
            background: #fff;
        }

        .cta-form-row input:focus,
        .cta-form-row select:focus {
            border-color: var(--brand);
            background: rgba(255, 255, 255, .13);
        }

        .cta-form-submit {
            width: 100%;
            height: 48px;
            border: 0;
            border-radius: 11px;
            background: var(--brand);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 5px;
        }

        .cta-form-submit:hover {
            background: #F4713A;
            transform: translateY(-1px);
        }

        .form-privacy-tip {
            font-size: 12px;
            color: rgba(255, 255, 255, .45);
            margin: 12px 0 0;
            text-align: center;
        }

        .cta-form-success {
            text-align: center;
            padding: 28px 10px;
            min-height: 218px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .cta-form-success i {
            font-size: 42px;
            color: #65CFA5;
            margin-bottom: 14px;
        }

        .cta-form-success h4 {
            font-size: 18px;
            margin: 0 0 8px;
        }

        .cta-form-success p {
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            margin: 0;
            line-height: 1.7;
        }

        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .72);
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            padding-top: 50px;
            position: relative;
        }

        .site-footer a {
            color: rgba(255, 255, 255, .66);
        }

        .site-footer a:hover {
            color: #fff;
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) .9fr 1.1fr;
            gap: 48px;
            padding-bottom: 36px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .footer-logo .logo-mark {
            background: var(--brand);
        }

        .ft-logo-text {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: .02em;
        }

        .footer-brand-desc {
            margin: 0 0 16px;
            max-width: 360px;
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .56);
        }

        .footer-contact-info {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .6);
            font-size: 14px;
            margin-top: 10px;
        }

        .footer-contact-info i {
            color: var(--brand);
        }

        .footer-col-title {
            font-size: 15px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: .02em;
        }

        .footer-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }

        .footer-list li {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 14px;
            color: rgba(255, 255, 255, .62);
        }

        .footer-list a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .footer-list a i {
            font-size: 10px;
            color: rgba(255, 255, 255, .3);
        }

        .footer-list a:hover i {
            color: var(--brand);
            transform: translateX(3px);
            transition: all .2s ease;
        }

        .footer-service-note {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .service-chips {
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .65);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px 22px;
            padding: 19px 0 24px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            font-size: 13px;
            color: rgba(255, 255, 255, .44);
        }

        .legal-domain {
            color: rgba(255, 255, 255, .5);
            font-family: "SF Mono SC", "JetBrains Mono", Consolas, monospace;
            letter-spacing: .02em;
        }

        .footer-bottom-menu {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .footer-bottom-menu span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        @media (max-width: 1080px) {
            .article-main-layout {
                grid-template-columns: 1fr;
            }

            .article-sidebar {
                position: static;
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 900px) {
            body.page-article {
                padding-top: 78px;
            }

            .nav-card {
                min-height: 68px;
            }

            .header-category,
            .header-btn {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .mobile-menu {
                display: grid;
                gap: 6px;
                width: min(1240px, 100%);
                margin: 8px auto 0;
                background: rgba(255, 255, 255, .96);
                border: 1px solid var(--line);
                border-radius: 18px;
                padding: 10px;
                box-shadow: 0 20px 40px -20px rgba(21, 30, 38, .35);
                opacity: 0;
                transform: translateY(-8px);
                pointer-events: none;
                transition: all .2s ease;
                backdrop-filter: blur(16px);
            }

            .mobile-menu.open {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .mobile-menu a {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 16px;
                border-radius: 12px;
                font-size: 15px;
                font-weight: 600;
                color: var(--ink);
            }

            .mobile-menu a i {
                width: 20px;
                text-align: center;
                color: var(--accent);
            }

            .mobile-menu a.active {
                background: rgba(225, 87, 42, .1);
                color: var(--brand-deep);
            }

            .cta-dark-panel {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            body.page-article {
                padding-top: 72px;
            }

            .site-header {
                padding-left: 10px;
                padding-right: 10px;
            }

            .nav-card {
                gap: 8px;
                padding: 8px 10px;
            }

            .logo-mark {
                width: 34px;
                height: 34px;
                font-size: 17px;
                border-radius: 10px;
                flex-basis: 34px;
            }

            .logo-text {
                font-size: 16px;
            }

            .logo-text small {
                font-size: 10px;
            }

            .article-card {
                padding: 20px 16px;
            }

            .article-bottom-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .article-bottom-links {
                width: 100%;
                flex-direction: column;
            }

            .article-bottom-links .btn-secondary,
            .article-bottom-links .btn-primary {
                width: 100%;
            }

            .article-sidebar {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-dark-panel {
                padding: 28px 22px;
                border-radius: 18px;
            }

            .cta-form-card {
                padding: 18px;
            }
        }

        @media (max-width: 420px) {
            .logo-text small {
                display: none;
            }

            .logo-text {
                font-size: 15px;
            }

            .menu-toggle {
                width: 38px;
                height: 38px;
            }
        }

/* roulang page: category1 */
:root {
            --page-bg: #F4F0E8;
            --surface: #FFFFFF;
            --surface-2: #ECE7DC;
            --ink: #17222B;
            --muted: #5E6870;
            --brand: #E1572A;
            --brand-deep: #B83B18;
            --accent: #0A7961;
            --accent-soft: #E4F1EC;
            --dark: #151E26;
            --line: #DCD4C5;
            --shadow-card: 0 1px 0 rgba(21,30,38,0.04), 0 12px 28px -24px rgba(21,30,38,0.18);
            --shadow-hover: 0 1px 0 rgba(21,30,38,0.04), 0 20px 40px -30px rgba(21,30,38,0.32);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--page-bg);
            color: var(--ink);
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .container__main {
            width: min(1180px, calc(100% - clamp(32px, 6vw, 64px)));
            margin-inline: auto;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 80;
            padding: 14px 0 10px;
            background: rgba(244, 240, 232, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: background 0.25s ease, box-shadow 0.25s ease;
        }

        .nav-card {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 22px;
            padding: 10px 12px 10px 14px;
            box-shadow: var(--shadow-card), 0 0 0 1px rgba(21,30,38,0.02);
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            margin-right: auto;
        }

        .logo-mark {
            display: inline-grid;
            place-items: center;
            width: 44px;
            height: 44px;
            border-radius: 15px;
            background: var(--brand);
            color: #fff;
            font-size: 21px;
            font-weight: 800;
            letter-spacing: 0.02em;
            box-shadow: 0 10px 18px -12px rgba(225, 87, 42, 0.6);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            color: var(--ink);
            font-weight: 800;
            font-size: 19px;
            letter-spacing: -0.01em;
        }

        .logo-text small {
            font-weight: 500;
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 0.04em;
            margin-top: 2px;
        }

        .header-category {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px;
            background: var(--surface-2);
            border-radius: 999px;
        }

        .header-category a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 13px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            transition: background 0.2s ease, color 0.2s ease;
        }

        .header-category a i {
            color: var(--muted);
            font-size: 13px;
            transition: color 0.2s ease;
        }

        .header-category a:hover {
            background: rgba(255, 255, 255, 0.72);
            color: var(--brand-deep);
        }

        .header-category a:hover i {
            color: var(--brand);
        }

        .header-category a.active {
            background: var(--surface);
            color: var(--brand-deep);
            box-shadow: 0 8px 24px -20px rgba(21, 30, 38, 0.4);
        }

        .header-category a.active i {
            color: var(--brand);
        }

        .header-btn {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 0 18px;
            border-radius: 12px;
            background: var(--brand);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            border: 1px solid transparent;
            box-shadow: 0 14px 24px -16px rgba(225, 87, 42, 0.68);
            transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--brand-deep);
            transform: translateY(-1px);
            box-shadow: 0 16px 26px -16px rgba(184, 59, 24, 0.7);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 6px 14px -12px rgba(184, 59, 24, 0.6);
        }

        .btn-ghost-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 0 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.32);
            color: #fff;
            background: transparent;
            font-size: 14px;
            font-weight: 600;
            transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
        }

        .btn-ghost-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.58);
            transform: translateY(-1px);
        }

        .menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: var(--surface);
            color: var(--ink);
            font-size: 18px;
            cursor: pointer;
        }

        .menu-toggle:hover {
            background: var(--surface-2);
        }

        .mobile-menu {
            display: none;
            margin-top: 8px;
            background: var(--surface);
            border-radius: 18px;
            border: 1px solid rgba(21, 30, 38, 0.06);
            box-shadow: var(--shadow-card);
            padding: 12px;
        }

        .mobile-menu.open {
            display: grid;
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 14px;
            border-radius: 12px;
            color: var(--ink);
            font-weight: 600;
            background: var(--surface);
            transition: background 0.2s ease;
        }

        .mobile-menu a i {
            color: var(--muted);
            width: 18px;
            text-align: center;
        }

        .mobile-menu a:hover {
            background: var(--surface-2);
            color: var(--brand-deep);
        }

        .mobile-menu a.active {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .mobile-menu a.active i {
            color: var(--accent);
        }

        main {
            padding-top: 92px;
        }

        .category-hero {
            position: relative;
            color: #fff;
            background-color: var(--dark);
            background-image: linear-gradient(90deg, rgba(21, 30, 38, 0.94) 0%, rgba(21, 30, 38, 0.72) 48%, rgba(21, 30, 38, 0.34) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center right;
            overflow: hidden;
            border-radius: 0 0 34px 34px;
        }

        .category-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) 0 0 / 28px 28px,
                linear-gradient(315deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) 0 0 / 28px 28px;
            opacity: 0.38;
        }

        .category-hero__inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
            gap: clamp(28px, 6vw, 72px);
            align-items: center;
            padding-top: clamp(48px, 7vw, 88px);
            padding-bottom: clamp(48px, 7vw, 90px);
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 13px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: rgba(255, 255, 255, 0.86);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 22px;
        }

        .category-hero h1 {
            margin: 0 0 16px;
            font-size: clamp(44px, 6.4vw, 76px);
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-wrap: balance;
        }

        .category-hero h1 span {
            color: #FFC1A8;
        }

        .hero-lead {
            margin: 0 0 28px;
            max-width: 62ch;
            color: rgba(255, 255, 255, 0.78);
            font-size: 16px;
            line-height: 1.9;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-panel {
            border-radius: 22px;
            padding: 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .hero-panel__title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
            margin-bottom: 10px;
        }

        .hero-panel__item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 13px 2px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        }

        .hero-panel__item:last-child {
            border-bottom: 0;
        }

        .hero-panel__item-left {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .hero-panel__item-left i {
            width: 18px;
            color: #FFC1A8;
        }

        .hero-panel__status {
            flex-shrink: 0;
            padding: 4px 9px;
            border-radius: 999px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
        }

        .hero-bottom-strip {
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(21, 30, 38, 0.28);
            padding: 14px 0;
            overflow: hidden;
        }

        .hero-bottom-strip__inner {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
            color: rgba(255, 255, 255, 0.72);
            font-size: 13px;
        }

        .hero-bottom-strip__inner span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .hero-bottom-strip__inner i {
            color: #FFB596;
        }

        .section-shell {
            padding-block: clamp(60px, 8vw, 104px);
        }

        .section-heading {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
            margin-bottom: 40px;
        }

        .section-heading--light {
            color: #fff;
        }

        .section-heading__left {
            max-width: 720px;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--brand);
            margin-bottom: 10px;
        }

        .section-heading--light .section-kicker {
            color: #FFB596;
        }

        .section-title {
            margin: 0;
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.2;
            letter-spacing: -0.01em;
            text-wrap: balance;
        }

        .section-deck {
            max-width: 42ch;
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
        }

        .section-heading--light .section-deck {
            color: rgba(255, 255, 255, 0.64);
        }

        .filter-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 0 0 28px;
        }

        .filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: var(--surface);
            color: var(--muted);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .filter-btn:hover {
            border-color: var(--brand);
            color: var(--brand-deep);
            transform: translateY(-1px);
        }

        .filter-btn.is-active {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff;
        }

        .category-list {
            display: grid;
            gap: 24px;
        }

        .directory-card {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
            background: var(--surface);
            border: 1px solid rgba(21, 30, 38, 0.05);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform 0.24s ease, box-shadow 0.24s ease;
        }

        .directory-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .directory-card:nth-child(even) .directory-card__media {
            order: 2;
        }

        .directory-card__media {
            position: relative;
            min-height: 260px;
            background: var(--surface-2);
            overflow: hidden;
        }

        .directory-card__media img {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .directory-card:hover .directory-card__media img {
            transform: scale(1.025);
        }

        .directory-card__media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(21, 30, 38, 0.24) 100%);
            pointer-events: none;
        }

        .card-media-tag {
            position: absolute;
            left: 16px;
            top: 16px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 11px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--brand-deep);
            font-size: 13px;
            font-weight: 700;
            backdrop-filter: blur(6px);
        }

        .directory-card:nth-child(even) .card-media-tag {
            left: auto;
            right: 16px;
        }

        .directory-card__content {
            padding: clamp(24px, 4vw, 42px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .directory-card__content h3 {
            margin: 0 0 10px;
            font-size: clamp(21px, 2.4vw, 28px);
            line-height: 1.35;
            color: var(--ink);
        }

        .directory-card__content p {
            margin: 0 0 20px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .tag-line {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .tag-line span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 11px;
            border-radius: 999px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
        }

        .tag-line span:nth-child(2) {
            background: rgba(225, 87, 42, 0.12);
            color: var(--brand-deep);
        }

        .card-footer-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--surface-2);
            color: var(--muted);
            font-size: 13px;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--brand-deep);
            font-weight: 700;
            font-size: 14px;
            transition: gap 0.2s ease, color 0.2s ease;
        }

        .text-link:hover {
            color: var(--brand);
            gap: 11px;
        }

        .process-band {
            position: relative;
            background: var(--dark);
            border-radius: 34px;
            padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 64px);
            overflow: hidden;
        }

        .process-band::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            right: -80px;
            top: -80px;
            border-radius: 50%;
            background: rgba(225, 87, 42, 0.14);
            filter: blur(20px);
        }

        .process-band::after {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            left: -60px;
            bottom: -80px;
            border-radius: 50%;
            background: rgba(10, 121, 97, 0.14);
            filter: blur(18px);
        }

        .process-layout {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.55fr);
            gap: clamp(30px, 6vw, 72px);
            align-items: start;
        }

        .process-summary {
            color: rgba(255, 255, 255, 0.82);
        }

        .process-summary .process-num {
            font-size: 15px;
            letter-spacing: 0.12em;
            color: #FFB596;
            margin-bottom: 14px;
        }

        .process-summary .process-main-title {
            margin: 0 0 18px;
            font-size: clamp(26px, 3.6vw, 42px);
            line-height: 1.3;
            color: #fff;
            text-wrap: balance;
        }

        .process-summary p {
            font-size: 15px;
            line-height: 1.9;
            margin: 0 0 24px;
        }

        .process-list {
            display: grid;
            gap: 14px;
        }

        .process-item {
            display: grid;
            grid-template-columns: 58px 1fr;
            gap: 16px;
            padding: 20px 22px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.24s ease, transform 0.24s ease;
        }

        .process-item:hover {
            background: rgba(255, 255, 255, 0.09);
            transform: translateX(3px);
        }

        .step-num {
            display: inline-grid;
            place-items: center;
            width: 46px;
            height: 46px;
            border-radius: 15px;
            background: rgba(225, 87, 42, 0.16);
            color: #FFB596;
            font-weight: 800;
            font-size: 17px;
            font-variant-numeric: tabular-nums;
        }

        .process-item h3 {
            margin: 0 0 7px;
            font-size: 17px;
            color: #fff;
        }

        .process-item p {
            margin: 0;
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.62);
        }

        .audience-section {
            background: var(--surface-2);
        }

        .audience-wrap {
            display: grid;
            grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
            gap: clamp(30px, 6vw, 76px);
            align-items: center;
        }

        .audience-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 20px;
            overflow: hidden;
        }

        .audience-card {
            background: var(--surface);
            padding: 24px;
            min-height: 190px;
            display: flex;
            flex-direction: column;
            transition: background 0.2s ease;
        }

        .audience-card:hover {
            background: #FDFAF4;
        }

        .audience-icon {
            width: 40px;
            height: 40px;
            display: inline-grid;
            place-items: center;
            border-radius: 12px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 16px;
            margin-bottom: 16px;
        }

        .audience-card h3 {
            margin: 0 0 8px;
            font-size: 16px;
            color: var(--ink);
        }

        .audience-card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-section {
            background: var(--surface);
        }

        .faq-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
            gap: clamp(30px, 6vw, 76px);
            align-items: start;
        }

        .faq-layout__left {
            position: sticky;
            top: 140px;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            box-shadow: 0 8px 18px -26px rgba(21, 30, 38, 0.3);
            overflow: hidden;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .faq-item:hover {
            border-color: #C9BFAF;
            box-shadow: 0 8px 20px -22px rgba(21, 30, 38, 0.4);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-align: left;
            background: transparent;
            border: 0;
            padding: 18px 20px;
            color: var(--ink);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: var(--brand-deep);
        }

        .faq-arrow {
            flex-shrink: 0;
            display: inline-grid;
            place-items: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--surface-2);
            color: var(--ink);
            font-size: 13px;
            transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            background: var(--brand);
            color: #fff;
        }

        .faq-answer {
            display: none;
            padding: 0 20px 18px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .faq-item.open {
            border-color: rgba(225, 87, 42, 0.3);
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .cta-panel {
            scroll-margin-top: 110px;
        }

        .cta-card {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            border-radius: 26px;
            background: var(--dark);
            color: #fff;
            overflow: hidden;
            box-shadow: 0 18px 40px -28px rgba(21, 30, 38, 0.52);
        }

        .cta-content {
            padding: clamp(28px, 5vw, 52px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-content .section-kicker {
            color: #FFB596;
        }

        .cta-content h2 {
            margin: 0 0 16px;
            font-size: clamp(27px, 3.6vw, 40px);
            line-height: 1.28;
            color: #fff;
            text-wrap: balance;
        }

        .cta-content p {
            margin: 0 0 26px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.85;
            max-width: 46ch;
        }

        .cta-feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .cta-feature-row div {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 11px 13px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
        }

        .cta-feature-row i {
            color: #FFB596;
        }

        .cta-form-panel {
            background: #fff;
            padding: clamp(24px, 5vw, 48px);
            color: var(--ink);
            display: flex;
            flex-direction: column;
        }

        .cta-form-panel h3 {
            margin: 0 0 6px;
            font-size: 23px;
        }

        .cta-form-panel .form-desc {
            margin: 0 0 24px;
            color: var(--muted);
            font-size: 14px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 14px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-field--full {
            grid-column: 1 / -1;
        }

        .form-field label {
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .form-field label .req {
            color: var(--brand);
            font-size: 14px;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            height: 48px;
            border: 1px solid var(--line);
            border-radius: 11px;
            padding: 0 14px;
            font-size: 14px;
            color: var(--ink);
            background: #FFFCF8;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-field textarea {
            height: 88px;
            padding: 12px 14px;
            resize: vertical;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(225, 87, 42, 0.12);
        }

        .form-submit {
            margin-top: 22px;
        }

        .form-submit .btn-primary {
            width: 100%;
            height: 50px;
        }

        .form-privacy {
            margin-top: 12px;
            font-size: 12px;
            color: var(--muted);
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
            gap: 6px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 36px 18px;
        }

        .form-success.show {
            display: block;
        }

        .form-success .success-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
            display: grid;
            place-items: center;
            border-radius: 20px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 28px;
        }

        .form-success h4 {
            margin: 0 0 8px;
            font-size: 20px;
        }

        .form-success p {
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
        }

        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            margin-top: 40px;
            padding: 76px 0 0;
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            top: -180px;
            left: -160px;
            background: rgba(10, 121, 97, 0.13);
            border-radius: 50%;
            filter: blur(16px);
        }

        .site-footer .container__main {
            position: relative;
            z-index: 2;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.45fr 0.8fr 1.25fr;
            gap: clamp(28px, 4vw, 56px);
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            margin-bottom: 16px;
        }

        .ft-logo-text {
            color: #fff;
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .footer-brand-desc {
            margin: 0 0 18px;
            max-width: 44ch;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.85;
        }

        .footer-contact-info {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-contact-info i {
            color: #FFB596;
            margin-top: 3px;
        }

        .footer-col-title {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-list li {
            margin-bottom: 9px;
            font-size: 14px;
        }

        .footer-list a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.55);
            transition: color 0.2s ease, gap 0.2s ease;
        }

        .footer-list a i {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.25);
        }

        .footer-list a:hover {
            color: #fff;
            gap: 12px;
        }

        .footer-contact-col {
            font-size: 14px;
        }

        .footer-contact-col .footer-list {
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-service-note {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 12px;
        }

        .service-chips {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.62);
            font-size: 12px;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 18px 0 26px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-bottom .legal-domain {
            color: rgba(255, 255, 255, 0.55);
            font-variant-numeric: tabular-nums;
        }

        .footer-bottom-menu {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .footer-bottom-menu span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        @media (max-width: 1024px) {
            .category-hero__inner {
                grid-template-columns: 1fr;
            }

            .hero-panel {
                max-width: 560px;
            }

            .faq-layout {
                grid-template-columns: 1fr;
            }

            .faq-layout__left {
                position: static;
            }

            .audience-wrap {
                grid-template-columns: 1fr;
            }

            .process-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 920px) {
            main {
                padding-top: 82px;
            }

            .header-category,
            .header-btn {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .site-logo .logo-text {
                font-size: 17px;
            }

            .category-hero h1 {
                font-size: clamp(38px, 8vw, 56px);
            }
        }

        @media (max-width: 768px) {
            .section-shell {
                padding-block: 54px;
            }

            .section-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                margin-bottom: 28px;
            }

            .directory-card,
            .directory-card:nth-child(even) {
                grid-template-columns: 1fr;
            }

            .directory-card__media {
                min-height: 220px;
            }

            .directory-card:nth-child(even) .directory-card__media {
                order: 0;
            }

            .directory-card:nth-child(even) .card-media-tag {
                left: 16px;
                right: auto;
            }

            .cta-card {
                grid-template-columns: 1fr;
            }

            .audience-list {
                grid-template-columns: 1fr;
            }

            .audience-card {
                min-height: 0;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 26px;
                padding-bottom: 34px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-bottom-strip__inner {
                gap: 10px;
            }
        }

        @media (max-width: 560px) {
            body {
                font-size: 15px;
            }

            main {
                padding-top: 76px;
            }

            .nav-card {
                padding: 8px;
                border-radius: 18px;
                gap: 8px;
            }

            .logo-mark {
                width: 38px;
                height: 38px;
                border-radius: 12px;
                font-size: 18px;
            }

            .logo-text {
                font-size: 15px;
            }

            .logo-text small {
                font-size: 11px;
            }

            .menu-toggle {
                width: 40px;
                height: 40px;
                border-radius: 12px;
            }

            .category-hero {
                border-radius: 0 0 24px 24px;
            }

            .category-hero__inner {
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-field--full {
                grid-column: auto;
            }

            .cta-feature-row {
                grid-template-columns: 1fr;
            }

            .process-item {
                grid-template-columns: 1fr;
                padding: 18px;
            }

            .step-num {
                width: 40px;
                height: 40px;
            }
        }

/* roulang page: category2 */
:root {
            --page-bg: #f4f0e8;
            --surface: #ffffff;
            --surface-2: #ece7dc;
            --ink: #17222b;
            --muted: #5e6870;
            --brand: #e1572a;
            --brand-deep: #b83b18;
            --accent: #0a7961;
            --accent-soft: #e4f1ec;
            --dark: #151e26;
            --line: #dcd4c5;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-pill: 999px;
            --shadow-card: 0 1px 0 rgba(21, 30, 38, 0.04), 0 12px 28px -24px rgba(21, 30, 38, 0.18);
            --shadow-hover: 0 2px 0 rgba(21, 30, 38, 0.04), 0 24px 44px -28px rgba(21, 30, 38, 0.24);
            --container: 1240px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--page-bg);
            color: var(--ink);
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: 1rem;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
        }

        .container__main {
            width: min(var(--container), 100%);
            margin-inline: auto;
            padding-inline: clamp(16px, 4vw, 32px);
        }

        section {
            padding-block: clamp(64px, 8vw, 100px);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(244, 240, 232, 0.78);
            backdrop-filter: blur(16px);
            padding: 14px 0 10px;
        }

        .nav-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(220, 212, 197, 0.7);
            box-shadow: var(--shadow-card);
            border-radius: var(--radius-lg);
            padding: 10px 14px 10px 18px;
            min-height: 70px;
        }

        .site-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--dark);
            color: #fff;
            border-radius: 13px;
            font-weight: 800;
            font-size: 19px;
            letter-spacing: 0;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            font-weight: 800;
            font-size: 18px;
            color: var(--ink);
            letter-spacing: 0.02em;
        }

        .logo-text small {
            font-size: 12px;
            color: var(--muted);
            font-weight: 400;
            margin-top: 3px;
            letter-spacing: 0.06em;
        }

        .header-category {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: auto;
            background: var(--surface-2);
            padding: 5px;
            border-radius: 999px;
        }

        .header-category a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 15px;
            border-radius: 999px;
            color: var(--ink);
            font-weight: 500;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .header-category a i {
            color: var(--muted);
            font-size: 13px;
            transition: color 0.2s ease;
        }

        .header-category a:hover {
            background: rgba(255, 255, 255, 0.88);
            color: var(--brand-deep);
        }

        .header-category a:hover i {
            color: var(--brand-deep);
        }

        .header-category a.active {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 8px 16px -12px rgba(225, 87, 42, 0.7);
        }

        .header-category a.active i {
            color: #fff;
        }

        .header-btn {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: var(--brand);
            border: 1px solid var(--brand);
            color: #fff;
            font-weight: 600;
            padding: 11px 22px;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            box-shadow: 0 10px 24px -14px rgba(225, 87, 42, 0.7);
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--brand-deep);
            border-color: var(--brand-deep);
            transform: translateY(-2px);
            box-shadow: 0 16px 30px -18px rgba(184, 59, 24, 0.66);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
        }

        .btn-primary.btn-dark {
            background: var(--dark);
            border-color: var(--dark);
            box-shadow: 0 12px 26px -16px rgba(21, 30, 38, 0.8);
        }

        .btn-primary.btn-dark:hover {
            background: #22303d;
            border-color: #22303d;
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.34);
            color: #fff;
            font-weight: 600;
            padding: 12px 22px;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-1px);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
            background: var(--dark);
            color: #fff;
            border: 0;
            border-radius: 14px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .menu-toggle:hover {
            background: var(--brand-deep);
        }

        .mobile-menu {
            display: none;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            border-radius: 18px;
            margin-top: 10px;
            padding: 10px;
        }

        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 13px;
            color: var(--ink);
            font-weight: 600;
            background: var(--surface);
            margin-bottom: 6px;
        }

        .mobile-menu a:last-child {
            margin-bottom: 0;
        }

        .mobile-menu a i {
            width: 20px;
            color: var(--brand-deep);
        }

        .mobile-menu a.active {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .site-header.menu-opened .mobile-menu {
            display: block;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--brand-deep);
            background: rgba(225, 87, 42, 0.1);
            border: 1px solid rgba(225, 87, 42, 0.16);
            padding: 7px 14px;
            border-radius: 999px;
        }

        .eyebrow.on-dark {
            color: #f7d9b8;
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.22);
        }

        .service-hero {
            background: var(--dark);
            color: #fff;
            position: relative;
            overflow: hidden;
            border-radius: 0 0 36px 36px;
            padding-block: clamp(56px, 7vw, 92px);
        }

        .service-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(95deg, rgba(21, 30, 38, 0.97) 20%, rgba(21, 30, 38, 0.72) 63%, rgba(21, 30, 38, 0.44) 100%),
                url("/assets/images/backpic/back-1.webp") center/cover no-repeat,
                var(--dark);
        }

        .service-hero::after {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            right: -90px;
            bottom: -120px;
            background: radial-gradient(circle, rgba(225, 87, 42, 0.38), transparent 68%);
            border-radius: 50%;
            pointer-events: none;
        }

        .service-hero .container__main {
            position: relative;
            z-index: 2;
        }

        .service-hero-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.9fr;
            gap: clamp(28px, 5vw, 68px);
            align-items: end;
        }

        .hero-service-copy {
            max-width: 820px;
        }

        .hero-service-copy h1 {
            margin: 22px 0 18px;
            font-size: clamp(38px, 5.2vw, 62px);
            line-height: 1.12;
            font-weight: 800;
            text-wrap: balance;
            letter-spacing: -0.01em;
        }

        .hero-service-copy .lead {
            font-size: clamp(16px, 1.6vw, 18px);
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.82);
            max-width: 720px;
            margin: 0 0 30px;
        }

        .hero-service-panel {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 22px;
            padding: 24px;
            backdrop-filter: blur(6px);
        }

        .hero-service-panel .panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .hero-service-panel .panel-head span {
            font-weight: 700;
            font-size: 16px;
        }

        .hero-service-panel .panel-head small {
            color: rgba(255, 255, 255, 0.58);
            font-size: 12px;
        }

        .service-state-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            position: relative;
        }

        .service-state-item:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 16px;
            bottom: -8px;
            width: 1px;
            height: 16px;
            background: rgba(255, 255, 255, 0.16);
        }

        .state-dot {
            position: relative;
            width: 33px;
            height: 33px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
        }

        .state-dot.doing {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            box-shadow: 0 0 0 4px rgba(225, 87, 42, 0.18);
        }

        .service-state-item .state-copy {
            flex: 1;
        }

        .service-state-item .state-copy p {
            margin: 0;
            font-weight: 600;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.94);
        }

        .service-state-item .state-copy small {
            color: rgba(255, 255, 255, 0.56);
            font-size: 13px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 10px;
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            margin-bottom: 46px;
            flex-wrap: wrap;
        }

        .section-head .section-head-left {
            max-width: 680px;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--accent);
            text-transform: none;
        }

        .section-eyebrow::before {
            content: "";
            width: 20px;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(27px, 3.2vw, 42px);
            line-height: 1.22;
            font-weight: 800;
            margin: 14px 0 10px;
            text-wrap: balance;
            color: var(--ink);
        }

        .section-desc {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .text-link-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--brand-deep);
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: gap 0.2s ease;
            padding: 10px 0;
        }

        .text-link-more:hover {
            gap: 14px;
        }

        .catalog-section {
            background: var(--surface);
        }

        .service-list {
            display: flex;
            flex-direction: column;
            border-top: 1px solid var(--line);
        }

        .service-row {
            display: grid;
            grid-template-columns: 0.45fr 1.7fr 1.25fr 0.8fr;
            align-items: center;
            gap: 24px;
            padding: 30px 12px;
            border-bottom: 1px solid var(--line);
            transition: background 0.2s ease, transform 0.2s ease;
            border-radius: 8px;
        }

        .service-row:hover {
            background: rgba(244, 240, 232, 0.5);
            transform: translateX(4px);
        }

        .service-row-num {
            font-size: 14px;
            font-weight: 800;
            color: var(--brand);
            letter-spacing: 0.04em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .service-row-num span {
            display: inline-flex;
            min-width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            background: var(--surface);
            border-radius: 12px;
            color: var(--ink);
            font-size: 16px;
        }

        .service-row h3 {
            font-size: clamp(19px, 2vw, 24px);
            margin: 0 0 6px;
            font-weight: 800;
            color: var(--ink);
        }

        .service-row .row-desc {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0;
            max-width: 520px;
        }

        .service-row .row-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: flex-end;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(10, 121, 97, 0.1);
        }

        .tag-pill.orange {
            background: rgba(225, 87, 42, 0.1);
            color: var(--brand-deep);
            border-color: rgba(225, 87, 42, 0.12);
        }

        .tag-pill.neutral {
            background: var(--surface-2);
            color: var(--muted);
            border-color: rgba(94, 104, 112, 0.12);
        }

        .service-catalog-extra {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 34px;
            background: var(--surface-2);
            border: 1px solid rgba(220, 212, 197, 0.6);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .extra-info {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 22px 26px;
        }

        .extra-info .extra-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            background: var(--dark);
            border-radius: 14px;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .extra-info .extra-icon.green {
            background: var(--accent);
        }

        .extra-info p {
            margin: 0;
            font-size: 15px;
            color: var(--ink);
            font-weight: 600;
            line-height: 1.5;
        }

        .extra-info small {
            color: var(--muted);
            font-size: 13px;
            font-weight: 400;
        }

        .workflow-section {
            background: var(--dark);
        }

        .workflow-section .section-title {
            color: #fff;
        }

        .workflow-section .section-desc {
            color: rgba(255, 255, 255, 0.68);
        }

        .step-progress {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 48px;
            counter-reset: flowIndex;
            position: relative;
        }

        .step-progress::after {
            content: "";
            position: absolute;
            top: 41px;
            left: 8%;
            right: 8%;
            height: 1px;
            background: rgba(255, 255, 255, 0.14);
            z-index: 1;
        }

        .step-block {
            position: relative;
            z-index: 2;
        }

        .step-dot {
            width: 84px;
            height: 84px;
            background: var(--dark);
            border: 2px solid var(--brand);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 26px;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 22px;
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
        }

        .step-number {
            font-variant-numeric: tabular-nums;
        }

        .step-block h3 {
            color: #fff;
            font-size: 19px;
            margin: 0 0 10px;
            font-weight: 700;
        }

        .step-block p {
            color: rgba(255, 255, 255, 0.58);
            font-size: 14px;
            line-height: 1.8;
            margin: 0;
            max-width: 200px;
        }

        .document-section {
            background: var(--surface-2);
            background-image: radial-gradient(rgba(21, 30, 38, 0.06) 1px, transparent 1px);
            background-size: 22px 22px;
        }

        .document-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(32px, 6vw, 76px);
            align-items: center;
        }

        .document-image-wrap {
            position: relative;
            min-height: 340px;
            border-radius: 24px;
            overflow: hidden;
            background: var(--surface);
            box-shadow: var(--shadow-card);
        }

        .document-image-wrap img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .document-image-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(21, 30, 38, 0.3), transparent 55%);
            pointer-events: none;
        }

        .document-badge {
            position: absolute;
            left: 18px;
            bottom: 18px;
            z-index: 2;
            background: rgba(21, 30, 38, 0.84);
            color: #fff;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            padding: 8px 15px;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .file-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .file-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px 18px 15px;
            transition: all 0.22s ease;
            box-shadow: var(--shadow-card);
            display: block;
        }

        .file-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(225, 87, 42, 0.34);
        }

        .file-card .file-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--accent-soft);
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            margin-bottom: 16px;
        }

        .file-card h3 {
            font-size: 16px;
            margin: 0 0 6px;
            color: var(--ink);
            font-weight: 700;
        }

        .file-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            margin: 0;
        }

        .file-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--muted);
            margin-top: 12px;
            font-weight: 600;
        }

        .file-status i {
            color: var(--accent);
        }

        .commit-band {
            background: var(--surface);
        }

        .commit-layout {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 48px;
            align-items: center;
        }

        .commit-copy .section-title {
            margin-top: 10px;
        }

        .commit-stat {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid var(--line);
        }

        .commit-stat:last-child {
            border-bottom: 0;
        }

        .commit-stat-icon {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            background: var(--brand);
            color: #fff;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-top: 4px;
        }

        .commit-stat-icon.accent {
            background: var(--accent);
        }

        .commit-stat-icon.dark {
            background: var(--dark);
        }

        .commit-stat h3 {
            margin: 0 0 5px;
            font-size: 20px;
            color: var(--ink);
            font-weight: 800;
            line-height: 1.3;
        }

        .commit-stat h3 em {
            font-style: normal;
            color: var(--brand-deep);
            font-weight: 800;
        }

        .commit-stat p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-section {
            background: var(--surface-2);
            background-image: linear-gradient(rgba(21, 30, 38, 0.03) 1px, transparent 1px);
            background-size: 100% 62px;
        }

        .faq-layout {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 26px;
        }

        .faq-row {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.18s ease, box-shadow 0.18s ease;
        }

        .faq-row.open {
            box-shadow: var(--shadow-card);
            border-color: rgba(10, 121, 97, 0.30);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 19px 22px;
            border: 0;
            background: transparent;
            cursor: pointer;
            text-align: left;
            color: var(--ink);
            font-weight: 600;
            font-size: 16px;
            line-height: 1.5;
        }

        .faq-q-mark {
            width: 30px;
            height: 30px;
            color: var(--brand-deep);
            border: 1px solid rgba(225, 87, 42, 0.24);
            background: rgba(225, 87, 42, 0.08);
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            flex-shrink: 0;
            font-weight: 800;
        }

        .faq-answer {
            display: none;
            padding: 0 22px 22px 68px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .faq-row.open .faq-answer {
            display: block;
        }

        .faq-arrow {
            margin-left: auto;
            color: var(--muted);
            transition: transform 0.25s ease, color 0.2s ease;
            flex-shrink: 0;
        }

        .faq-row.open .faq-arrow {
            color: var(--accent);
            transform: rotate(180deg);
        }

        .cta-panel {
            position: relative;
            background: linear-gradient(130deg, #1b252f 0%, #101820 62%, #1f2c36 100%);
            overflow: hidden;
            color: #fff;
        }

        .cta-panel::before {
            content: "";
            position: absolute;
            top: -150px;
            right: -60px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(10, 121, 97, 0.35), transparent 68%);
        }

        .cta-layout {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            gap: clamp(28px, 5vw, 60px);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .cta-copy .eyebrow {
            color: #94dbc7;
            border-color: rgba(10, 121, 97, 0.3);
            background: rgba(10, 121, 97, 0.16);
        }

        .cta-copy h2 {
            font-size: clamp(28px, 3.7vw, 46px);
            line-height: 1.2;
            margin: 18px 0 16px;
            color: #fff;
            font-weight: 800;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.85;
            max-width: 490px;
        }

        .contact-note {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 22px;
            margin-top: 26px;
        }

        .contact-note span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
        }

        .contact-note i {
            color: #ffb28f;
        }

        .apply-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 22px;
            padding: clamp(22px, 3vw, 34px);
            backdrop-filter: blur(8px);
        }

        .apply-card h3 {
            color: #fff;
            font-size: 21px;
            margin: 0 0 4px;
            font-weight: 700;
        }

        .apply-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin: 0 0 24px;
        }

        .form-item {
            margin-bottom: 18px;
        }

        .form-item label {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 14px;
            margin-bottom: 7px;
            font-weight: 500;
        }

        .form-item label .must {
            color: #ff8a7a;
            font-weight: 700;
        }

        .form-item input,
        .form-item select {
            width: 100%;
            height: 50px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 0 14px;
            outline: none;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .form-item input::placeholder {
            color: rgba(255, 255, 255, 0.38);
        }

        .form-item input:focus,
        .form-item select:focus {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(10, 121, 97, 0.65);
        }

        .form-item select option {
            color: var(--ink);
        }

        .form-submit-success {
            display: none;
            padding: 18px;
            background: rgba(10, 121, 97, 0.14);
            border: 1px solid rgba(10, 121, 97, 0.45);
            border-radius: 14px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            gap: 8px;
        }

        .form-submit-success i {
            color: #50d6b1;
        }

        .form-item-btn {
            margin-top: 24px;
        }

        .footer-contact-note {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            line-height: 1.9;
        }

        .footer-contact-note a {
            color: #f8b493;
            font-weight: 500;
        }

        .footer-contact-note a:hover {
            color: #fff;
        }

        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.76);
            padding-top: clamp(48px, 7vw, 76px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 0.8fr 1.2fr;
            gap: 30px;
            padding-bottom: 42px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ft-logo-text {
            font-size: 21px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.02em;
        }

        .footer-brand-desc {
            font-size: 15px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.56);
            max-width: 420px;
            margin: 18px 0 20px;
        }

        .footer-contact-info {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 13px;
            padding: 13px 15px;
            width: fit-content;
            max-width: 100%;
        }

        .footer-contact-info i {
            color: #f8b493;
            margin-top: 4px;
        }

        .footer-contact-info span {
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-link-group {
            display: grid;
            grid-template-columns: 1fr;
            align-content: start;
            gap: 20px;
        }

        .footer-col-title {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            padding-bottom: 11px;
            margin-bottom: 4px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            letter-spacing: 0.05em;
        }

        .footer-list {
            list-style: none;
            margin: 12px 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .footer-list li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.7;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .footer-list a i {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .footer-list a:hover {
            color: #fff;
        }

        .footer-list a:hover i {
            transform: translateX(3px);
            color: #f8b493;
        }

        .footer-contact-col {
            display: flex;
            flex-direction: column;
        }

        .footer-service-note {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .service-chips {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 999px;
            font-weight: 500;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            display: flex;
            gap: 18px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.42);
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-bottom .legal-domain {
            color: rgba(255, 255, 255, 0.46);
        }

        .footer-bottom-menu {
            display: flex;
            gap: 14px;
            align-items: center;
            margin-left: auto;
            flex-wrap: wrap;
        }

        .footer-bottom-menu span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .footer-bottom-menu i {
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 1024px) {
            .header-category {
                display: none;
            }
            .menu-toggle {
                display: inline-flex;
            }
            .header-btn {
                margin-left: auto;
            }
            .nav-card {
                gap: 12px;
            }
            .service-hero-grid {
                grid-template-columns: 1fr;
            }
            .service-row {
                grid-template-columns: 0.4fr 1.4fr 1fr;
            }
            .service-row .row-tags {
                grid-column: 3 / 4;
                justify-content: flex-start;
            }
            .document-layout {
                grid-template-columns: 1fr;
            }
            .commit-layout {
                grid-template-columns: 1fr;
            }
            .step-progress {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .step-progress::after {
                display: none;
            }
            .footer-top {
                grid-template-columns: 1.4fr 0.7fr 1.1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-card {
                border-radius: 18px;
                padding-left: 12px;
            }
            .site-logo small {
                display: none;
            }
            .header-btn .btn-primary {
                padding: 10px 15px;
                font-size: 13px;
                gap: 6px;
            }
            .service-hero {
                border-radius: 0 0 24px 24px;
            }
            .hero-service-copy h1 {
                font-size: clamp(34px, 8vw, 48px);
            }
            .service-row {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 24px 0;
            }
            .service-row-num {
                margin-bottom: 2px;
            }
            .service-row .row-tags {
                grid-column: auto;
                justify-content: flex-start;
            }
            .service-catalog-extra,
            .file-group {
                grid-template-columns: 1fr;
            }
            .cta-layout {
                grid-template-columns: 1fr;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }
            .footer-bottom-menu {
                margin-left: 0;
            }
        }

        @media (max-width: 600px) {
            .header-btn .btn-primary span {
                display: none;
            }
            .step-progress {
                grid-template-columns: 1fr;
            }
            .step-block p {
                max-width: 90%;
            }
            .logo-text {
                font-size: 16px;
            }
            .logo-mark {
                width: 37px;
                height: 37px;
            }
            .faq-question {
                padding: 15px 16px;
                font-size: 15px;
            }
            .faq-answer {
                padding: 0 16px 18px 50px;
            }
            .faq-q-mark {
                display: none;
            }
            .faq-answer {
                padding-left: 16px;
            }
            .commit-layout {
                gap: 0;
            }
            .commit-stat h3 {
                font-size: 18px;
            }
            .document-image-wrap {
                min-height: 240px;
            }
        }

        @media (max-width: 480px) {
            .header-btn {
                display: none;
            }
            .mobile-menu a:hover {
                background: var(--accent-soft);
            }
            .service-hero .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-outline-light {
                width: 100%;
            }
            .footer-brand-desc {
                max-width: 100%;
            }
            .file-card p {
                font-size: 13px;
            }
        }
