/* roulang page: index */
:root {
      --ink: #17191a;
      --charcoal: #242728;
      --paper: #f5f4f0;
      --white: #fffefa;
      --muted: #747875;
      --line: #d9d9d2;
      --coral: #e86e55;
      --coral-dark: #b84c39;
      --cyan: #8fd8d0;
      --soft-cyan: #dcefeb;
      --radius: 4px;
      --shadow: 0 14px 34px rgba(23, 25, 26, .08);
      --ease: 180ms ease;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      font-size: 16px;
      line-height: 1.7;
    }
    a { color: inherit; text-decoration: none; transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease); }
    a:hover { color: var(--coral-dark); }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font: inherit; }
    button, .button { cursor: pointer; }
    :focus-visible { outline: 3px solid rgba(232, 110, 85, .42); outline-offset: 3px; }
    .container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--coral-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0;
    }
    .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--coral); }
    .section { padding: 104px 0; }
    .section-head { max-width: 650px; margin-bottom: 42px; }
    .section-head h2 { margin: 12px 0 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1.15; letter-spacing: 0; }
    .section-head p { margin: 0; color: var(--muted); max-width: 620px; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border: 1px solid var(--coral);
      border-radius: var(--radius);
      background: var(--coral);
      color: #fff;
      font-weight: 700;
      line-height: 1;
      transition: all var(--ease);
    }
    .button:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }
    .button.secondary {
      border-color: var(--line);
      background: transparent;
      color: var(--ink);
    }
    .button.secondary:hover { border-color: var(--ink); background: var(--white); color: var(--ink); }
    .tag {
      display: inline-block;
      padding: 3px 9px;
      border: 1px solid var(--line);
      border-radius: 2px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }
    .tag.coral { border-color: rgba(232,110,85,.45); color: var(--coral-dark); background: #fff2ed; }
    .tag.cyan { border-color: #b1dcd7; color: #34736d; background: var(--soft-cyan); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(217,217,210,.8);
      background: rgba(245,244,240,.96);
      backdrop-filter: blur(10px);
    }
    .nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; font-weight: 800; font-size: 18px; }
    .brand-mark {
      width: 30px; height: 30px; display: grid; place-items: center;
      border-radius: 50%; background: var(--ink); color: var(--cyan); font-size: 15px;
    }
    .brand-text { white-space: nowrap; }
    .main-nav { display: flex; align-items: center; gap: 8px; }
    .main-nav a { padding: 9px 13px; color: var(--muted); font-size: 14px; border-bottom: 2px solid transparent; }
    .main-nav a:hover, .main-nav a.active { color: var(--ink); border-color: var(--coral); }
    .menu-toggle { display: none; border: 1px solid var(--line); background: transparent; padding: 8px 12px; color: var(--ink); }
    .progress-nav { border-top: 1px solid rgba(217,217,210,.7); background: var(--white); }
    .steps { display: flex; align-items: center; justify-content: space-between; min-height: 53px; gap: 12px; }
    .step { display: flex; align-items: center; gap: 9px; color: #a0a39f; font-size: 12px; white-space: nowrap; }
    .step i {
      width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid currentColor;
      border-radius: 50%; font-style: normal; font-size: 11px;
    }
    .step.active { color: var(--coral-dark); font-weight: 700; }
    .step.active i { background: var(--coral); border-color: var(--coral); color: #fff; }
    .step-line { height: 1px; flex: 1; background: var(--line); }

    .hero { padding: 72px 0 76px; background: var(--paper); }
    .hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items: center; }
    .hero h1 { max-width: 700px; margin: 18px 0 20px; font-size: clamp(42px, 6vw, 76px); line-height: 1.05; letter-spacing: 0; }
    .hero-copy { max-width: 620px; color: var(--muted); font-size: 18px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: var(--muted); font-size: 12px; }
    .hero-notes strong { display: block; color: var(--ink); font-size: 22px; line-height: 1.2; }
    .bento { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 178px 178px; gap: 10px; }
    .bento-card { position: relative; overflow: hidden; padding: 22px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
    .bento-card.primary { grid-row: span 2; background: var(--ink); color: #fff; }
    .bento-card.primary::after { content: ""; position: absolute; right: -26px; bottom: -38px; width: 170px; height: 170px; border: 28px solid var(--coral); border-radius: 50%; opacity: .9; }
    .bento-card h3 { margin: 10px 0 4px; font-size: 24px; line-height: 1.2; }
    .bento-card p { margin: 0; color: var(--muted); font-size: 13px; }
    .primary p { color: #b9c0bc; }
    .bento-index { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 25px; max-width: 210px; }
    .primary .tag { border-color: #4d5552; color: #cbd0cc; }
    .bento-bar { position: absolute; right: 18px; bottom: 22px; left: 22px; height: 5px; background: #3d4542; }
    .bento-bar span { display: block; width: 72%; height: 100%; background: var(--cyan); }
    .mini-stat { font-size: 34px; font-weight: 800; line-height: 1.1; }
    .mini-label { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

    .story { background: var(--white); }
    .story-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
    .story-title { font-size: 42px; line-height: 1.15; margin: 12px 0 0; }
    .story-copy { columns: 2; column-gap: 40px; color: var(--muted); }
    .story-copy p { margin-top: 0; }
    .story-rule { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 18px; color: var(--ink); font-size: 14px; }

    .content-section { background: var(--paper); }
    .content-layout { display: grid; grid-template-columns: 1fr 310px; gap: 32px; }
    .content-list { display: grid; gap: 10px; }
    .content-item { display: grid; grid-template-columns: 125px 1fr auto; gap: 20px; align-items: center; padding: 16px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); transition: all var(--ease); }
    .content-item:hover { border-color: var(--coral); transform: translateX(3px); box-shadow: var(--shadow); }
    .thumb { height: 82px; border-radius: 2px; background: var(--charcoal); position: relative; overflow: hidden; }
    .thumb::before { content: ""; position: absolute; inset: 17px 22px; border: 1px solid var(--cyan); transform: rotate(-8deg); }
    .thumb::after { content: ""; position: absolute; width: 45px; height: 45px; right: 13px; bottom: -16px; border: 10px solid var(--coral); border-radius: 50%; }
    .content-item h3 { margin: 7px 0 4px; font-size: 18px; line-height: 1.3; }
    .content-item p { margin: 0; color: var(--muted); font-size: 13px; }
    .item-meta { display: flex; gap: 7px; flex-wrap: wrap; }
    .item-action { color: var(--coral-dark); font-size: 13px; font-weight: 700; white-space: nowrap; }
    .side-index { padding: 24px; border-top: 3px solid var(--ink); background: var(--white); }
    .side-index h3 { margin: 0 0 16px; font-size: 20px; }
    .index-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
    .index-row span:last-child { color: var(--muted); font-size: 12px; }

    .proof { background: var(--charcoal); color: #fff; }
    .proof .section-head p { color: #b8bfbb; }
    .proof-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
    .score { font-size: clamp(58px, 8vw, 96px); font-weight: 800; line-height: 1; color: var(--cyan); }
    .score-label { color: #b8bfbb; font-size: 14px; }
    .quote-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .quote { padding: 22px; border: 1px solid #47504c; background: #2c302f; border-radius: var(--radius); }
    .quote p { margin: 0 0 15px; color: #e4e7e3; font-size: 14px; }
    .quote small { color: var(--cyan); }

    .updates { background: var(--white); }
    .updates-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; }
    .update-row { display: grid; grid-template-columns: 100px 1fr 82px; gap: 18px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
    .update-date { color: var(--muted); font-size: 12px; }
    .update-row h3 { margin: 0; font-size: 16px; line-height: 1.4; }
    .update-status { justify-self: end; color: #397d75; font-size: 12px; }
    .news-note { padding: 28px; background: var(--soft-cyan); border-left: 4px solid var(--cyan); }
    .news-note h3 { margin-top: 0; font-size: 24px; }
    .news-note p { color: #4d6864; font-size: 14px; }

    .path { background: var(--paper); }
    .path-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .path-step { position: relative; min-height: 174px; padding: 24px 24px 20px 0; margin-right: 24px; border-right: 1px solid var(--line); }
    .path-step:last-child { border-right: 0; margin-right: 0; }
    .path-number { color: var(--coral); font-size: 13px; font-weight: 800; }
    .path-step h3 { margin: 22px 0 7px; font-size: 20px; }
    .path-step p { margin: 0; color: var(--muted); font-size: 13px; }

    .faq-section { background: var(--white); }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 22px 0; border: 0; background: transparent; text-align: left; font-weight: 700; }
    .faq-question span:last-child { color: var(--coral); font-size: 24px; font-weight: 400; transition: transform var(--ease); }
    .faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
    .faq-answer { display: none; max-width: 760px; padding: 0 40px 22px 0; color: var(--muted); font-size: 14px; }
    .faq-answer.open { display: block; }

    .contact { background: var(--coral); color: #fff; }
    .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
    .contact h2 { margin: 12px 0; font-size: 44px; line-height: 1.15; }
    .contact p { color: #fff2ed; }
    .contact-form { padding: 28px; background: var(--white); color: var(--ink); border-radius: var(--radius); }
    .contact-form label { display: block; margin-bottom: 16px; color: var(--ink); font-size: 13px; font-weight: 700; }
    .contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin: 6px 0 0; border: 1px solid var(--line); border-radius: 2px; background: #fff; box-shadow: none; }
    .contact-form textarea { min-height: 105px; resize: vertical; }
    .contact-form .button { margin: 0; }
    .form-status { display: none; margin-top: 12px; color: #397d75; font-size: 13px; }

    footer { padding: 34px 0 24px; background: var(--ink); color: #fff; }
    .footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-bottom: 30px; }
    .footer-brand { font-weight: 800; font-size: 18px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: #b8bfbb; font-size: 13px; }
    .footer-links a:hover { color: var(--cyan); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid #3c4340; color: #858c88; font-size: 12px; }
    .compliance { max-width: 560px; }

    @media (max-width: 900px) {
      .hero-grid, .story-grid, .proof-grid, .updates-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .content-layout { grid-template-columns: 1fr; }
      .path-grid { grid-template-columns: repeat(2, 1fr); }
      .path-step:nth-child(2) { border-right: 0; }
      .path-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    }
    @media (max-width: 640px) {
      .container { width: min(100% - 32px, 560px); }
      .nav-row { min-height: 66px; }
      .brand-text { max-width: 205px; white-space: normal; line-height: 1.25; font-size: 15px; }
      .menu-toggle { display: block; }
      .main-nav { display: none; position: absolute; top: 66px; right: 16px; left: 16px; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
      .main-nav.is-open { display: flex; }
      .main-nav a { border-bottom: 0; }
      .steps { overflow-x: auto; justify-content: flex-start; padding: 0 2px; }
      .step-line { min-width: 22px; flex: 0 0 22px; }
      .hero { padding: 54px 0 60px; }
      .hero h1 { font-size: 45px; }
      .hero-copy { font-size: 16px; }
      .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px; }
      .bento-card { padding: 16px; }
      .bento-card h3 { font-size: 18px; }
      .story-copy { columns: 1; }
      .section { padding: 72px 0; }
      .content-item { grid-template-columns: 86px 1fr; gap: 12px; }
      .thumb { height: 70px; }
      .item-action { grid-column: 2; }
      .quote-list { grid-template-columns: 1fr; }
      .update-row { grid-template-columns: 72px 1fr; gap: 10px; }
      .update-status { grid-column: 2; justify-self: start; }
      .path-grid { grid-template-columns: 1fr; }
      .path-step, .path-step:nth-child(2) { margin: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .path-step:last-child { border-bottom: 0; }
      .footer-top, .footer-bottom { flex-direction: column; }
      .contact h2 { font-size: 36px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
    }

/* roulang page: category1 */
:root {
            --ink: #17191a;
            --charcoal: #242728;
            --paper: #f5f4f0;
            --white: #fffefa;
            --muted: #747875;
            --line: #d9d9d2;
            --coral: #e86e55;
            --coral-dark: #b84c39;
            --cyan: #8fd8d0;
            --soft-cyan: #dcefeb;
            --yellow: #e8c86e;
            --radius: 4px;
            --shadow: 0 14px 34px rgba(23,25,26,.08);
            --ease: 180ms ease;
        }

        html { scroll-behavior: smooth; }
        *, *::before, *::after { box-sizing: border-box; }
        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.7;
        }
        a { color: inherit; text-decoration: none; transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease); }
        a:hover { color: var(--coral-dark); }
        img { max-width: 100%; display: block; }
        button, input, textarea, select { font: inherit; }
        button, .button { cursor: pointer; }
        .container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--coral-dark);
            font-size: 12px;
            font-weight: 700;
        }
        .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--coral); }
        .section { padding: 92px 0; }
        .section-head { max-width: 720px; margin-bottom: 38px; }
        .section-head h2 { margin: 12px 0 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1.15; }
        .section-head p { margin: 0; color: var(--muted); max-width: 650px; }
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 22px;
            border: 1px solid var(--coral);
            border-radius: var(--radius);
            background: var(--coral);
            color: #fff;
            font-weight: 700;
            line-height: 1;
            transition: all var(--ease);
        }
        .button:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }
        .button.secondary { border-color: var(--line); background: transparent; color: var(--ink); }
        .button.secondary:hover { border-color: var(--ink); background: var(--white); color: var(--ink); }
        .tag {
            display: inline-block;
            padding: 3px 9px;
            border: 1px solid var(--line);
            border-radius: 2px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.5;
        }
        .tag.coral { border-color: rgba(232,110,85,.45); color: var(--coral-dark); background: #fff2ed; }
        .tag.cyan { border-color: #b1dcd7; color: #34736d; background: var(--soft-cyan); }
        .tag.yellow { border-color: #dbc67f; color: #80651d; background: #fff8db; }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid rgba(217,217,210,.8);
            background: rgba(245,244,240,.96);
            backdrop-filter: blur(10px);
        }
        .nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
        .brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; font-weight: 800; font-size: 18px; }
        .brand-mark {
            width: 30px; height: 30px; display: grid; place-items: center;
            border-radius: 50%; background: var(--ink); color: var(--cyan); font-size: 15px;
        }
        .brand-text { white-space: nowrap; }
        .main-nav { display: flex; align-items: center; gap: 8px; }
        .main-nav a { padding: 9px 13px; color: var(--muted); font-size: 14px; border-bottom: 2px solid transparent; }
        .main-nav a:hover, .main-nav a.active { color: var(--ink); border-color: var(--coral); }
        .menu-toggle { display: none; border: 1px solid var(--line); background: transparent; padding: 8px 12px; color: var(--ink); }
        .progress-nav { border-top: 1px solid rgba(217,217,210,.7); background: var(--white); }
        .progress-list { display: flex; align-items: center; justify-content: space-between; min-height: 62px; margin: 0; padding: 0; list-style: none; }
        .progress-list li { position: relative; display: flex; align-items: center; gap: 10px; flex: 1; color: var(--muted); font-size: 13px; }
        .progress-list li:not(:last-child)::after { content: ""; height: 1px; flex: 1; margin: 0 18px; background: var(--line); }
        .step-number { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; }
        .progress-list li.active { color: var(--ink); font-weight: 700; }
        .progress-list li.active .step-number { border-color: var(--coral); background: var(--coral); color: #fff; }

        .page-hero { padding: 74px 0 64px; border-bottom: 1px solid var(--line); }
        .page-hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 76px; align-items: end; }
        .page-hero h1 { max-width: 820px; margin: 16px 0 18px; font-size: clamp(40px, 6vw, 72px); line-height: 1.08; }
        .page-hero p { max-width: 680px; margin: 0; color: var(--muted); font-size: 18px; }
        .hero-aside { border-left: 3px solid var(--coral); padding: 8px 0 8px 22px; }
        .hero-aside strong { display: block; font-size: 34px; line-height: 1.1; }
        .hero-aside span { color: var(--muted); font-size: 13px; }

        .filter-band { padding: 28px 0; background: var(--charcoal); color: #fff; }
        .filter-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
        .filter-field label { display: block; margin-bottom: 6px; color: #aeb6b2; font-size: 12px; }
        .filter-field select, .filter-field input {
            width: 100%; height: 44px; margin: 0; border: 1px solid #4c5551; border-radius: var(--radius);
            background: #303535; color: #fff; outline: none;
        }
        .filter-field select:focus, .filter-field input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(143,216,208,.2); }
        .filter-button { min-height: 44px; padding: 0 18px; border: 1px solid var(--cyan); border-radius: var(--radius); background: var(--cyan); color: var(--ink); font-weight: 700; }
        .filter-button:hover { background: #b7ebe5; }
        .filter-note { margin: 12px 0 0; color: #aeb6b2; font-size: 12px; }

        .index-section { padding: 82px 0; }
        .index-layout { display: grid; grid-template-columns: 1fr 285px; gap: 62px; align-items: start; }
        .index-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 18px; }
        .index-toolbar h2 { margin: 0; font-size: 24px; }
        .result-count { color: var(--muted); font-size: 13px; }
        .content-list { display: grid; gap: 10px; }
        .content-item {
            display: grid; grid-template-columns: 138px 1fr auto; gap: 20px; align-items: center;
            padding: 16px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
            transition: all var(--ease);
        }
        .content-item:hover { border-color: var(--coral); transform: translateX(3px); box-shadow: var(--shadow); }
        .thumb {
            position: relative; overflow: hidden; aspect-ratio: 16 / 10; border: 1px solid rgba(23,25,26,.1);
            background: var(--ink); color: var(--cyan); display: flex; align-items: flex-end; padding: 10px;
        }
        .thumb::before { content: ""; position: absolute; top: 18px; left: 18px; width: 62px; height: 62px; border: 2px solid var(--coral); transform: rotate(45deg); }
        .thumb::after { content: ""; position: absolute; right: -18px; bottom: -22px; width: 92px; height: 92px; border: 14px solid var(--cyan); border-radius: 50%; opacity: .8; }
        .thumb span { position: relative; z-index: 1; font-size: 11px; }
        .content-item h3 { margin: 8px 0 5px; font-size: 18px; line-height: 1.35; }
        .content-item p { margin: 0; color: var(--muted); font-size: 13px; }
        .item-meta { display: flex; flex-wrap: wrap; gap: 7px; }
        .item-action { color: var(--coral-dark); font-size: 13px; font-weight: 700; white-space: nowrap; }
        .item-action::after { content: "  →"; }
        .side-index { border-top: 3px solid var(--ink); }
        .side-index h3 { margin: 15px 0 5px; font-size: 20px; }
        .side-index p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
        .index-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
        .index-row span:last-child { color: var(--muted); font-size: 12px; }

        .timeline-band { padding: 78px 0; background: var(--soft-cyan); }
        .timeline { border-left: 1px solid #79bdb6; }
        .timeline-row { display: grid; grid-template-columns: 128px 1fr auto; gap: 24px; align-items: center; padding: 17px 0 17px 22px; border-bottom: 1px solid rgba(52,115,109,.2); }
        .timeline-row time { color: #34736d; font-size: 13px; font-weight: 700; }
        .timeline-row strong { font-size: 16px; }
        .timeline-row small { color: #34736d; }

        .pagination-wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; }
        .pagination { display: flex; gap: 6px; margin: 0; }
        .pagination a { display: grid; place-items: center; min-width: 36px; height: 36px; border: 1px solid var(--line); background: var(--white); font-size: 13px; }
        .pagination a:hover, .pagination a.current { border-color: var(--coral); background: var(--coral); color: #fff; }

        .faq-section { padding: 84px 0; }
        .faq-list { max-width: 900px; border-top: 1px solid var(--line); }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 700; }
        .faq-question::after { content: "+"; color: var(--coral-dark); font-size: 22px; font-weight: 400; }
        .faq-question[aria-expanded="true"] { color: var(--coral-dark); }
        .faq-question[aria-expanded="true"]::after { content: "−"; }
        .faq-answer { display: none; max-width: 760px; padding: 0 42px 20px 0; color: var(--muted); font-size: 14px; }
        .faq-answer.open { display: block; }

        .feedback-section { padding: 78px 0; background: var(--ink); color: #fff; }
        .feedback-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
        .feedback-section .section-head p { color: #b8bfbb; }
        .feedback-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .feedback-form .full { grid-column: 1 / -1; }
        .feedback-form label { display: block; margin-bottom: 6px; color: #c7ceca; font-size: 13px; }
        .feedback-form input, .feedback-form textarea {
            width: 100%; border: 1px solid #4c5551; border-radius: var(--radius); background: #242a29; color: #fff;
        }
        .feedback-form input { height: 46px; }
        .feedback-form textarea { min-height: 118px; resize: vertical; }
        .feedback-form input:focus, .feedback-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(143,216,208,.2); outline: none; }
        .form-hint { margin: 0 0 16px; color: #9fa8a3; font-size: 12px; }
        .form-status { grid-column: 1 / -1; min-height: 22px; color: var(--cyan); font-size: 13px; }

        footer { padding: 30px 0 24px; background: #101212; color: #fff; }
        .footer-top { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-bottom: 24px; border-bottom: 1px solid #343a38; }
        .footer-brand { font-weight: 800; font-size: 17px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
        .footer-links a { color: #b6bdb9; font-size: 13px; }
        .footer-links a:hover { color: var(--cyan); }
        .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: #8f9792; font-size: 12px; }
        .compliance { text-align: right; }

        @media (max-width: 1024px) {
            .page-hero-grid, .index-layout, .feedback-grid { gap: 36px; }
            .filter-row { grid-template-columns: repeat(2, 1fr); }
            .filter-button { width: 100%; }
        }
        @media (max-width: 768px) {
            .container { width: min(100% - 32px, 620px); }
            .nav-row { min-height: 68px; }
            .menu-toggle { display: block; }
            .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 61px; padding: 8px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
            .main-nav.is-open { display: grid; }
            .main-nav a { padding: 11px 12px; border-bottom: 0; border-left: 2px solid transparent; }
            .main-nav a:hover, .main-nav a.active { border-left-color: var(--coral); }
            .brand-text { max-width: 245px; white-space: normal; line-height: 1.25; }
            .progress-nav { overflow-x: auto; }
            .progress-list { width: 610px; justify-content: flex-start; }
            .progress-list li { flex: 0 0 auto; }
            .page-hero { padding: 56px 0 48px; }
            .page-hero-grid, .index-layout, .feedback-grid { grid-template-columns: 1fr; }
            .hero-aside { max-width: 360px; }
            .index-section, .faq-section { padding: 62px 0; }
            .content-item { grid-template-columns: 105px 1fr; }
            .item-action { grid-column: 2; }
            .timeline-row { grid-template-columns: 92px 1fr; }
            .timeline-row small { grid-column: 2; }
            .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
            .compliance { text-align: left; }
        }
        @media (max-width: 520px) {
            .container { width: calc(100% - 28px); }
            .page-hero h1 { font-size: 40px; }
            .page-hero p { font-size: 16px; }
            .filter-row { grid-template-columns: 1fr; }
            .content-item { grid-template-columns: 1fr; gap: 12px; }
            .thumb { width: 100%; }
            .item-action { grid-column: auto; }
            .feedback-form { grid-template-columns: 1fr; }
            .feedback-form .full, .form-status { grid-column: auto; }
            .pagination-wrap { align-items: flex-start; flex-direction: column; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
        }
