/* roulang page: index */
:root{
      --ink:#241426;
      --ink-2:#331b37;
      --plum:#5b2b62;
      --plum-soft:#efe6f1;
      --accent:#ff6b5f;
      --accent-dark:#e9544b;
      --amber:#ffb85c;
      --mint:#54c6a3;
      --bg:#fbf6f1;
      --bg-2:#f6eee8;
      --surface:#fffaf6;
      --surface-2:#ffffff;
      --text:#281f29;
      --muted:#776c75;
      --light:#f1e5df;
      --border:#e6d8d5;
      --border-dark:rgba(255,255,255,.14);
      --shadow:0 22px 55px rgba(56, 35, 49, .12);
      --shadow-soft:0 14px 36px rgba(56, 35, 49, .08);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:18px;
      --radius-sm:14px;
      --side:248px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 86% 8%, rgba(255,107,95,.12), transparent 32%),
        radial-gradient(circle at 16% 28%, rgba(91,43,98,.08), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%,#fffaf6 52%,var(--bg-2) 100%);
      line-height:1.75;
      font-size:16px;
      padding-bottom:96px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--accent)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
      outline:3px solid rgba(255,107,95,.35);
      outline-offset:3px;
      border-radius:14px;
    }
    ::selection{background:rgba(255,107,95,.24)}
    .site-shell{min-height:100vh}
    .side-nav{
      position:fixed;
      inset:18px auto 18px 18px;
      width:var(--side);
      z-index:1030;
      border-radius:30px;
      background:
        linear-gradient(155deg,rgba(255,255,255,.08),rgba(255,255,255,0) 42%),
        linear-gradient(180deg,#2c1730 0%,#1e111f 100%);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 24px 60px rgba(36,20,38,.24);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:18px;
      color:#fff6f0;
    }
    .brand-lockup{
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px 8px 18px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      color:#241426;
      font-weight:900;
      background:linear-gradient(135deg,#ffb85c,#ff6b5f);
      box-shadow:0 12px 28px rgba(255,107,95,.35);
    }
    .brand-text{min-width:0}
    .brand-title{
      font-size:16px;
      font-weight:900;
      line-height:1.25;
      letter-spacing:.01em;
    }
    .brand-sub{
      font-size:12px;
      color:rgba(255,246,240,.68);
      margin-top:4px;
    }
    .nav-list{
      display:grid;
      gap:9px;
      padding:4px 0;
    }
    .nav-link-custom{
      position:relative;
      display:flex;
      align-items:center;
      gap:12px;
      padding:13px 14px;
      border-radius:18px;
      color:rgba(255,246,240,.76);
      font-size:15px;
      font-weight:700;
      border:1px solid transparent;
    }
    .nav-link-custom .nav-icon{
      width:28px;
      height:28px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.08);
      color:#ffdbbc;
      font-size:14px;
      transition:var(--ease);
    }
    .nav-link-custom:hover{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.1);
      transform:translateX(2px);
    }
    .nav-link-custom.active{
      color:#fff;
      background:rgba(255,107,95,.16);
      border-color:rgba(255,107,95,.38);
      box-shadow:inset 4px 0 0 var(--accent),0 14px 28px rgba(0,0,0,.12);
    }
    .nav-link-custom.active .nav-icon{
      background:var(--accent);
      color:#fff;
    }
    .side-status{
      margin-top:auto;
      padding:16px;
      border-radius:22px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .status-dot{
      display:inline-flex;
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--mint);
      box-shadow:0 0 0 6px rgba(84,198,163,.12);
      margin-right:8px;
      vertical-align:middle;
    }
    .side-status strong{display:block;font-size:14px;margin-bottom:4px}
    .side-status span{display:block;color:rgba(255,246,240,.68);font-size:12px;line-height:1.6}
    .mobile-topbar{
      display:none;
      position:sticky;
      top:0;
      z-index:1040;
      padding:12px 14px;
      background:rgba(251,246,241,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(230,216,213,.7);
    }
    .mobile-topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 12px;
      border-radius:22px;
      background:rgba(255,250,246,.9);
      box-shadow:var(--shadow-soft);
      border:1px solid var(--border);
    }
    .mobile-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      font-size:15px;
      color:var(--ink);
      min-width:0;
    }
    .mobile-brand .brand-mark{width:38px;height:38px;border-radius:14px}
    .menu-btn{
      border:0;
      border-radius:999px;
      width:44px;
      height:44px;
      background:var(--ink);
      color:#fff;
      display:grid;
      place-items:center;
      transition:var(--ease);
    }
    .menu-btn:hover{background:var(--plum);transform:translateY(-1px)}
    .offcanvas-custom{
      background:linear-gradient(180deg,#2c1730,#1e111f);
      color:#fff6f0;
      border-radius:0 28px 28px 0;
      border:0;
    }
    .offcanvas-custom .btn-close{
      filter:invert(1);
      opacity:.8;
      border-radius:999px;
    }
    .main-content{
      margin-left:calc(var(--side) + 36px);
      padding:34px 30px 0;
    }
    .content-wrap{
      max-width:1220px;
      margin:0 auto;
    }
    .section{
      padding:84px 0;
    }
    .section-tight{padding:58px 0}
    .section-head{
      max-width:760px;
      margin-bottom:34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:var(--plum-soft);
      color:var(--plum);
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
      border:1px solid rgba(91,43,98,.12);
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,107,95,.13);
    }
    h1,h2,h3{color:var(--ink);letter-spacing:-.02em}
    h1{
      font-size:clamp(32px,5vw,56px);
      line-height:1.16;
      font-weight:950;
      margin:0 0 18px;
    }
    h2{
      font-size:clamp(27px,3.2vw,38px);
      line-height:1.25;
      font-weight:920;
      margin:0 0 14px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:860;
      margin:0 0 10px;
    }
    p{margin:0;color:var(--muted)}
    .lead{
      font-size:18px;
      line-height:1.85;
      color:#5f535d;
      max-width:720px;
    }
    .btn-brand,.btn-ghost,.btn-soft{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 20px;
      font-weight:850;
      border:1px solid transparent;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-brand{
      background:var(--accent);
      color:#fff;
      box-shadow:0 14px 26px rgba(255,107,95,.28);
    }
    .btn-brand:hover{
      color:#fff;
      background:var(--accent-dark);
      transform:translateY(-2px);
      box-shadow:0 18px 36px rgba(255,107,95,.34);
    }
    .btn-ghost{
      color:var(--ink);
      background:rgba(255,255,255,.62);
      border-color:var(--border);
    }
    .btn-ghost:hover{
      color:var(--ink);
      background:#fff;
      transform:translateY(-2px);
      box-shadow:var(--shadow-soft);
    }
    .btn-soft{
      min-height:42px;
      padding:9px 15px;
      background:rgba(91,43,98,.08);
      color:var(--plum);
      border-color:rgba(91,43,98,.1);
      font-size:14px;
    }
    .btn-soft:hover{background:var(--plum);color:#fff}
    .hero{
      min-height:690px;
      display:grid;
      align-items:center;
      padding:36px 0 26px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(115deg,rgba(255,255,255,.92),rgba(255,250,246,.74)),
        radial-gradient(circle at 92% 18%,rgba(255,107,95,.18),transparent 26%);
      border:1px solid rgba(230,216,213,.92);
      box-shadow:var(--shadow);
      padding:44px;
    }
    .hero-card::after{
      content:"";
      position:absolute;
      right:-110px;
      top:-130px;
      width:360px;
      height:360px;
      border-radius:50%;
      background:rgba(255,184,92,.15);
      pointer-events:none;
    }
    .hero-copy{position:relative;z-index:2}
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin:28px 0 22px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .trust-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:8px 12px;
      background:#fff;
      border:1px solid var(--border);
      color:#5f535d;
      font-size:13px;
      font-weight:750;
    }
    .hero-panel{
      position:relative;
      z-index:2;
      background:linear-gradient(180deg,#311936,#211223);
      border-radius:30px;
      padding:22px;
      color:#fff6f0;
      box-shadow:0 28px 52px rgba(36,20,38,.26);
      border:1px solid rgba(255,255,255,.12);
    }
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
    }
    .window-dots{display:flex;gap:7px}
    .window-dots i{
      width:9px;height:9px;border-radius:50%;display:block;background:rgba(255,255,255,.28)
    }
    .window-dots i:nth-child(1){background:var(--accent)}
    .window-dots i:nth-child(2){background:var(--amber)}
    .window-dots i:nth-child(3){background:var(--mint)}
    .panel-badge{
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(84,198,163,.14);
      color:#bcffe8;
      border:1px solid rgba(84,198,163,.22);
    }
    .metric-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:12px;
      margin-bottom:14px;
    }
    .metric{
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
      padding:16px;
    }
    .metric strong{display:block;font-size:26px;line-height:1;color:#fff}
    .metric span{font-size:12px;color:rgba(255,246,240,.66)}
    .index-list{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .index-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:10px;
      padding:11px;
      border-radius:16px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.09);
    }
    .index-no{
      width:30px;height:30px;border-radius:11px;display:grid;place-items:center;
      background:rgba(255,107,95,.18);color:#ffd0ca;font-weight:900;font-size:13px;
    }
    .index-row b{font-size:14px;color:#fff;font-weight:850}
    .index-row small{display:block;color:rgba(255,246,240,.55);font-size:12px}
    .state{
      font-size:12px;
      color:#c9ffe8;
      background:rgba(84,198,163,.12);
      border:1px solid rgba(84,198,163,.18);
      border-radius:999px;
      padding:4px 8px;
    }
    .feature-layout{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:22px;
      align-items:stretch;
    }
    .feature-main,.feature-small,.preview-card,.quote-card,.category-entry,.faq-wrap,.contact-card{
      background:rgba(255,250,246,.86);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .feature-main:hover,.feature-small:hover,.preview-card:hover,.quote-card:hover,.category-entry:hover{
      transform:translateY(-4px);
      border-color:rgba(255,107,95,.32);
      box-shadow:var(--shadow);
    }
    .feature-main{
      padding:34px;
      min-height:310px;
      display:grid;
      grid-template-columns:1fr .7fr;
      gap:28px;
      overflow:hidden;
      position:relative;
    }
    .feature-main::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;width:6px;
      background:linear-gradient(180deg,var(--accent),var(--amber));
    }
    .feature-stack{display:grid;gap:18px}
    .feature-small{padding:26px}
    .feature-icon{
      width:48px;
      height:48px;
      border-radius:17px;
      display:grid;
      place-items:center;
      background:var(--plum-soft);
      color:var(--plum);
      font-weight:950;
      margin-bottom:18px;
    }
    .mini-flow{
      align-self:center;
      display:grid;
      gap:10px;
    }
    .flow-step{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--border);
    }
    .flow-step em{
      width:28px;height:28px;border-radius:10px;display:grid;place-items:center;
      background:var(--accent);color:#fff;font-style:normal;font-weight:900;font-size:13px;
    }
    .flow-step span{font-weight:800;color:var(--ink)}
    .demo-panel{
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg,#fffaf6,#f8eee8);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:28px;
      overflow:hidden;
    }
    .toolbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      padding-bottom:18px;
      border-bottom:1px solid var(--border);
    }
    .search-box{
      flex:1 1 280px;
      display:flex;
      align-items:center;
      gap:10px;
      min-height:48px;
      padding:0 15px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--muted);
    }
    .filter-tags{display:flex;flex-wrap:wrap;gap:8px}
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:7px 11px;
      background:#fff;
      color:#6b5d66;
      border:1px solid var(--border);
      font-size:13px;
      font-weight:750;
    }
    .tag.hot{background:rgba(255,107,95,.1);border-color:rgba(255,107,95,.24);color:var(--accent-dark)}
    .demo-grid{
      display:grid;
      grid-template-columns:1fr .8fr;
      gap:18px;
      margin-top:22px;
    }
    .preview-card{padding:22px;background:#fff}
    .line-list{display:grid;gap:12px;margin-top:16px}
    .content-line{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:12px;
      align-items:center;
      padding:12px;
      border-radius:16px;
      background:#fffaf6;
      border:1px solid var(--border);
    }
    .content-line .bar{
      width:42px;height:42px;border-radius:15px;background:linear-gradient(135deg,var(--plum-soft),#fff);
      border:1px solid var(--border);
    }
    .content-line b{display:block;font-size:14px;color:var(--ink)}
    .content-line span{display:block;font-size:12px;color:var(--muted)}
    .stats-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .stat-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .stat-card strong{
      display:block;
      color:var(--ink);
      font-size:30px;
      line-height:1;
      font-weight:950;
      margin-bottom:8px;
    }
    .stat-card span{font-size:13px;color:var(--muted)}
    .quote-grid{
      display:grid;
      grid-template-columns:1fr 1.1fr;
      gap:18px;
      margin-top:22px;
    }
    .quote-card{padding:26px}
    .quote-card p{color:#4f444d}
    .quote-person{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid var(--border);
    }
    .avatar{
      width:40px;height:40px;border-radius:15px;
      background:linear-gradient(135deg,var(--accent),var(--amber));
      display:grid;place-items:center;color:#fff;font-weight:950;
    }
    .quote-person b{display:block;color:var(--ink)}
    .quote-person span{font-size:12px;color:var(--muted)}
    .category-entry{
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:22px;
      padding:32px;
      background:
        linear-gradient(120deg,rgba(255,255,255,.94),rgba(255,250,246,.82)),
        radial-gradient(circle at 92% 20%,rgba(255,107,95,.14),transparent 28%);
      overflow:hidden;
      position:relative;
    }
    .category-entry::before{
      content:"分区";
      position:absolute;
      right:34px;
      bottom:-18px;
      color:rgba(91,43,98,.06);
      font-weight:950;
      font-size:110px;
      line-height:1;
      pointer-events:none;
    }
    .category-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin:14px 0 0;
    }
    .faq-wrap{
      padding:14px;
      background:rgba(255,250,246,.9);
    }
    .accordion-custom .accordion-item{
      border:0;
      background:transparent;
      margin:10px 0;
    }
    .accordion-custom .accordion-button{
      border-radius:20px!important;
      background:#fff;
      color:var(--ink);
      font-weight:850;
      box-shadow:none;
      padding:18px 20px;
      border:1px solid var(--border);
    }
    .accordion-custom .accordion-button:not(.collapsed){
      background:var(--ink);
      color:#fff;
      border-color:var(--ink);
    }
    .accordion-custom .accordion-button::after{
      width:24px;height:24px;border-radius:50%;
      background-color:var(--plum-soft);
      background-size:14px;
      background-position:center;
      padding:6px;
    }
    .accordion-custom .accordion-body{
      padding:18px 20px 6px;
      color:var(--muted);
      line-height:1.85;
    }
    .contact-card{
      padding:34px;
      background:linear-gradient(135deg,#2c1730,#211223);
      color:#fff6f0;
      border-color:rgba(255,255,255,.12);
      overflow:hidden;
      position:relative;
    }
    .contact-card h2{color:#fff}
    .contact-card p{color:rgba(255,246,240,.72)}
    .contact-form{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:24px;
    }
    .form-field{display:grid;gap:7px}
    .form-field.full{grid-column:1/-1}
    .form-field label{font-size:13px;color:rgba(255,246,240,.76);font-weight:800}
    .form-field input,.form-field select,.form-field textarea{
      width:100%;
      border:1px solid rgba(255,255,255,.15);
      background:rgba(255,255,255,.08);
      color:#fff;
      border-radius:16px;
      min-height:48px;
      padding:12px 14px;
      transition:var(--ease);
    }
    .form-field textarea{min-height:94px;resize:vertical}
    .form-field input::placeholder,.form-field textarea::placeholder{color:rgba(255,246,240,.45)}
    .form-field select option{color:var(--ink)}
    .form-field input:focus,.form-field select:focus,.form-field textarea:focus{
      border-color:rgba(255,107,95,.75);
      box-shadow:0 0 0 4px rgba(255,107,95,.14);
      outline:none;
    }
    .footer{
      margin-top:40px;
      padding:46px 0 24px;
      border-top:1px solid var(--border);
      color:#6b5f67;
    }
    .footer-card{
      border-radius:30px;
      background:#fffaf6;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
      padding:30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .8fr .9fr;
      gap:26px;
    }
    .footer h3,.footer h4{color:var(--ink);font-weight:900}
    .footer h4{font-size:16px;margin-bottom:12px}
    .footer-links{display:grid;gap:8px}
    .footer-links a{
      color:#6b5f67;
      font-weight:700;
      width:max-content;
      border-bottom:1px solid transparent;
    }
    .footer-links a:hover{
      color:var(--accent-dark);
      border-bottom-color:var(--accent-dark);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-top:26px;
      padding-top:18px;
      border-top:1px solid var(--border);
      font-size:13px;
      color:#887b82;
    }
    .fixed-cta{
      position:fixed;
      z-index:1050;
      right:24px;
      bottom:22px;
      width:min(680px,calc(100% - 48px));
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 14px 12px 18px;
      border-radius:999px;
      background:rgba(36,20,38,.94);
      color:#fff6f0;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 18px 46px rgba(36,20,38,.28);
      backdrop-filter:blur(14px);
    }
    .fixed-cta strong{font-size:14px}
    .fixed-cta span{font-size:12px;color:rgba(255,246,240,.66);margin-left:8px}
    .fixed-cta-actions{display:flex;gap:8px;align-items:center}
    .fixed-cta .btn-brand,.fixed-cta .btn-ghost{min-height:40px;padding:8px 14px;font-size:14px}
    .fixed-cta .btn-ghost{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      color:#fff;
    }
    @media (max-width:1199.98px){
      :root{--side:220px}
      .side-nav{padding:15px}
      .brand-title{font-size:15px}
      .main-content{padding-left:24px;padding-right:24px}
      .hero-card{padding:34px}
      .feature-main{grid-template-columns:1fr}
      .stats-strip{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      body{padding-bottom:92px}
      .side-nav{display:none}
      .mobile-topbar{display:block}
      .main-content{margin-left:0;padding:22px 16px 0}
      .hero{min-height:auto;padding-top:10px}
      .hero-card{padding:28px;border-radius:28px}
      .hero-panel{margin-top:24px}
      .section{padding:62px 0}
      .feature-layout,.demo-grid,.quote-grid{grid-template-columns:1fr}
      .category-entry{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:767.98px){
      body{font-size:15px}
      .lead{font-size:16px}
      .hero-card{padding:24px}
      .hero-actions{flex-direction:column;align-items:stretch}
      .btn-brand,.btn-ghost{width:100%}
      .metric-grid,.stats-strip{grid-template-columns:1fr}
      .feature-layout{gap:16px}
      .feature-main,.feature-small,.demo-panel,.category-entry,.contact-card{padding:22px}
      .content-line{grid-template-columns:auto 1fr}
      .content-line .state{grid-column:2}
      .contact-form{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .fixed-cta{
        left:10px;
        right:10px;
        bottom:10px;
        width:auto;
        border-radius:22px;
        padding:12px;
      }
      .fixed-cta span,.fixed-cta .btn-ghost{display:none}
      .fixed-cta strong{font-size:13px}
      .fixed-cta .btn-brand{width:auto;min-width:112px}
    }
    @media (max-width:520px){
      .mobile-brand span{
        max-width:178px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }
      .section-head{margin-bottom:24px}
      .toolbar{align-items:stretch}
      .filter-tags .tag{font-size:12px}
      .quote-card,.preview-card,.stat-card{padding:20px}
      .category-entry::before{font-size:72px;right:18px}
      .copyright{display:block}
    }

/* roulang page: category1 */
:root {
      --ink: #211524;
      --ink-2: #332238;
      --plum: #5b284f;
      --plum-soft: #7d4c73;
      --accent: #ff6f61;
      --accent-dark: #e85b4f;
      --amber: #f7b955;
      --mint: #2fbf8f;
      --bg: #faf6f2;
      --bg-2: #f3ece8;
      --surface: #fffaf7;
      --surface-2: #fff3ee;
      --text: #2b2430;
      --muted: #786f7c;
      --light: #f8eff0;
      --border: #e8dad7;
      --border-strong: #d9c6c4;
      --white: #ffffff;
      --shadow: 0 22px 60px rgba(70, 42, 58, .12);
      --shadow-soft: 0 14px 38px rgba(70, 42, 58, .08);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 32px;
      --sidebar: 252px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 85% 10%, rgba(255, 111, 97, .12), transparent 28%),
        linear-gradient(135deg, #fbf6f2 0%, #f6eeee 48%, #faf7f0 100%);
      line-height: 1.75;
      padding-bottom: 98px;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover {
      color: var(--accent-dark);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(255, 111, 97, .34);
      outline-offset: 3px;
      border-radius: 14px;
    }

    .page-shell {
      min-height: 100vh;
    }

    .sidebar {
      position: fixed;
      inset: 0 auto 0 0;
      width: var(--sidebar);
      padding: 22px 18px;
      background:
        linear-gradient(180deg, rgba(33, 21, 36, .98), rgba(54, 31, 57, .98)),
        radial-gradient(circle at 20% 10%, rgba(255, 111, 97, .18), transparent 30%);
      color: #f8efee;
      border-right: 1px solid rgba(255, 255, 255, .08);
      z-index: 1030;
      display: flex;
      flex-direction: column;
      box-shadow: 18px 0 60px rgba(42, 21, 38, .18);
    }

    .brand-block {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 10px 22px;
      border-bottom: 1px solid rgba(255, 255, 255, .10);
      margin-bottom: 18px;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), #ff9a72);
      color: var(--ink);
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(255, 111, 97, .28);
      flex: 0 0 auto;
    }

    .brand-name {
      display: block;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: .02em;
    }

    .brand-sub {
      display: block;
      color: rgba(255, 255, 255, .62);
      font-size: 12px;
      margin-top: 2px;
    }

    .nav-list {
      display: grid;
      gap: 10px;
      margin-top: 8px;
    }

    .nav-link-custom {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 12px;
      border-radius: 18px;
      color: rgba(255, 255, 255, .78);
      font-weight: 700;
      border: 1px solid transparent;
    }

    .nav-link-custom .nav-icon {
      width: 34px;
      height: 34px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .90);
      font-size: 14px;
      flex: 0 0 auto;
    }

    .nav-link-custom:hover {
      color: #fff;
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .10);
      transform: translateX(2px);
    }

    .nav-link-custom.active {
      color: #fff;
      background: rgba(255, 111, 97, .18);
      border-color: rgba(255, 111, 97, .42);
      box-shadow: inset 4px 0 0 var(--accent), 0 12px 24px rgba(0, 0, 0, .12);
    }

    .nav-link-custom.active .nav-icon {
      background: var(--accent);
      color: var(--ink);
    }

    .sidebar-status {
      margin-top: auto;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .10);
    }

    .sidebar-status strong {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
    }

    .sidebar-status span {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, .64);
      line-height: 1.6;
    }

    .mobile-topbar {
      display: none;
      position: sticky;
      top: 0;
      z-index: 1040;
      padding: 12px 16px;
      background: rgba(250, 246, 242, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .mobile-topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .mobile-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--ink);
      min-width: 0;
    }

    .mobile-brand span:last-child {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .menu-button {
      border: 0;
      background: var(--ink);
      color: #fff;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 800;
      min-height: 44px;
    }

    .mobile-mini-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 9px 14px;
      border-radius: 999px;
      background: var(--accent);
      color: var(--ink);
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(255, 111, 97, .24);
    }

    .custom-offcanvas {
      background: var(--ink);
      color: #fff;
      border-radius: 0 24px 24px 0;
    }

    .custom-offcanvas .btn-close {
      filter: invert(1);
      opacity: .86;
    }

    .main-content {
      margin-left: var(--sidebar);
      min-height: 100vh;
      padding: 34px 36px 40px;
    }

    .content-wrap {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .section {
      margin-top: 56px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--plum);
      background: rgba(255, 111, 97, .10);
      border: 1px solid rgba(255, 111, 97, .20);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(255, 111, 97, .16);
    }

    h1,
    h2,
    h3,
    h4 {
      color: var(--ink);
      letter-spacing: -.02em;
      line-height: 1.22;
    }

    h1 {
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 950;
      margin: 16px 0 18px;
      max-width: 880px;
    }

    h2 {
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 930;
      margin: 0;
    }

    h3 {
      font-size: 21px;
      font-weight: 900;
      margin: 0 0 10px;
    }

    p {
      margin: 0;
    }

    .lead {
      font-size: 17px;
      color: var(--muted);
      max-width: 820px;
      line-height: 1.85;
    }

    .btn-custom {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 900;
      border: 1px solid transparent;
      transition: var(--ease);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-main {
      color: var(--ink);
      background: var(--accent);
      box-shadow: 0 14px 30px rgba(255, 111, 97, .26);
    }

    .btn-main:hover {
      color: var(--ink);
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(255, 111, 97, .34);
    }

    .btn-ghost {
      color: var(--plum);
      background: rgba(255, 255, 255, .62);
      border-color: var(--border-strong);
    }

    .btn-ghost:hover {
      color: var(--ink);
      background: var(--surface);
      border-color: rgba(255, 111, 97, .42);
      transform: translateY(-2px);
    }

    .compact-header {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(255, 250, 247, .96), rgba(255, 239, 235, .88)),
        radial-gradient(circle at 95% 8%, rgba(255, 111, 97, .22), transparent 30%);
      border: 1px solid rgba(232, 218, 215, .82);
      box-shadow: var(--shadow);
    }

    .compact-header::after {
      content: "";
      position: absolute;
      right: 28px;
      top: 32px;
      width: 180px;
      height: 180px;
      border-radius: 48px;
      transform: rotate(9deg);
      background:
        linear-gradient(135deg, rgba(33, 21, 36, .10), transparent),
        repeating-linear-gradient(0deg, rgba(91, 40, 79, .12) 0 1px, transparent 1px 18px);
      opacity: .55;
      pointer-events: none;
    }

    .breadcrumb-custom {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      position: relative;
      z-index: 1;
    }

    .breadcrumb-custom a {
      color: var(--plum);
    }

    .breadcrumb-custom a:hover {
      color: var(--accent-dark);
    }

    .header-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }

    .tag-pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--border);
      color: var(--plum);
      font-size: 13px;
      font-weight: 800;
    }

    .tag-pill.active {
      color: var(--ink);
      background: rgba(255, 111, 97, .16);
      border-color: rgba(255, 111, 97, .34);
    }

    .layout-grid {
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .side-panel {
      position: sticky;
      top: 28px;
      display: grid;
      gap: 18px;
    }

    .panel-card,
    .content-card,
    .entry-card,
    .faq-card,
    .cta-card,
    .popular-card {
      background: rgba(255, 250, 247, .88);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-soft);
    }

    .panel-card {
      padding: 24px;
    }

    .panel-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }

    .panel-title h3 {
      font-size: 19px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(47, 191, 143, .12);
      color: #16765a;
      border: 1px solid rgba(47, 191, 143, .24);
      font-size: 12px;
      font-weight: 900;
    }

    .filter-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .filter-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .66);
      border: 1px solid var(--border);
      color: var(--text);
      font-weight: 800;
      transition: var(--ease);
    }

    .filter-item:hover,
    .filter-item.active {
      background: rgba(255, 111, 97, .12);
      border-color: rgba(255, 111, 97, .34);
      transform: translateX(2px);
    }

    .filter-item small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .note-list {
      list-style: none;
      padding: 0;
      margin: 16px 0 0;
      display: grid;
      gap: 12px;
    }

    .note-list li {
      position: relative;
      padding-left: 20px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .note-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .72em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    .entry-list {
      display: grid;
      gap: 16px;
    }

    .entry-card {
      position: relative;
      overflow: hidden;
      padding: 22px;
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      transition: var(--ease);
    }

    .entry-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: transparent;
      transition: var(--ease);
    }

    .entry-card:hover {
      border-color: rgba(255, 111, 97, .42);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .entry-card:hover::before {
      background: var(--accent);
    }

    .entry-num {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #fff;
      font-weight: 950;
      letter-spacing: .04em;
      box-shadow: 0 14px 30px rgba(33, 21, 36, .16);
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }

    .entry-title {
      font-size: 21px;
      font-weight: 930;
      color: var(--ink);
      margin-bottom: 7px;
      line-height: 1.35;
    }

    .entry-desc {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(91, 40, 79, .08);
      color: var(--plum);
      border: 1px solid rgba(91, 40, 79, .14);
      font-size: 12px;
      font-weight: 900;
    }

    .status-badge.hot {
      background: rgba(255, 111, 97, .12);
      border-color: rgba(255, 111, 97, .24);
      color: var(--accent-dark);
    }

    .status-badge.ok {
      background: rgba(47, 191, 143, .12);
      border-color: rgba(47, 191, 143, .24);
      color: #16765a;
    }

    .light-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--plum);
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--border);
      font-weight: 900;
      white-space: nowrap;
    }

    .light-link:hover {
      color: var(--ink);
      background: rgba(255, 111, 97, .14);
      border-color: rgba(255, 111, 97, .36);
    }

    .popular-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .popular-card {
      padding: 22px;
      transition: var(--ease);
      min-height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .popular-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 111, 97, .40);
      box-shadow: var(--shadow);
    }

    .popular-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .popular-icon {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(255, 111, 97, .14);
      color: var(--accent-dark);
      font-weight: 950;
    }

    .popular-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .steps-panel {
      padding: 26px;
      border-radius: var(--radius-md);
      background:
        linear-gradient(135deg, rgba(33, 21, 36, .96), rgba(66, 39, 67, .96)),
        radial-gradient(circle at 90% 0%, rgba(255, 111, 97, .20), transparent 30%);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .steps-panel h2 {
      color: #fff;
    }

    .steps-panel .lead {
      color: rgba(255, 255, 255, .68);
      max-width: 760px;
    }

    .step-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .step-item {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .step-item span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: var(--accent);
      color: var(--ink);
      font-weight: 950;
      margin-bottom: 12px;
    }

    .step-item strong {
      display: block;
      color: #fff;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .step-item p {
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
      line-height: 1.7;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
    }

    .faq-card {
      overflow: hidden;
    }

    .faq-button {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--ink);
      padding: 20px 22px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-weight: 930;
      font-size: 17px;
    }

    .faq-button .plus {
      width: 30px;
      height: 30px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 111, 97, .12);
      color: var(--accent-dark);
      flex: 0 0 auto;
      transition: var(--ease);
    }

    .faq-button[aria-expanded="true"] .plus {
      transform: rotate(45deg);
      background: var(--accent);
      color: var(--ink);
    }

    .faq-body {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      background:
        linear-gradient(135deg, rgba(255, 250, 247, .98), rgba(255, 239, 235, .92));
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
    }

    .cta-card::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -58px;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: rgba(255, 111, 97, .16);
      pointer-events: none;
    }

    .cta-card h2,
    .cta-card p,
    .cta-card .cta-actions {
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      color: var(--muted);
      margin-top: 10px;
      max-width: 720px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .footer {
      margin-top: 64px;
    }

    .footer-card {
      padding: 34px;
      border-radius: var(--radius-lg);
      background: var(--ink);
      color: rgba(255, 255, 255, .76);
      box-shadow: var(--shadow);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .8fr 1fr;
      gap: 28px;
      padding-bottom: 26px;
      border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .footer h3,
    .footer h4 {
      color: #fff;
      margin-bottom: 12px;
    }

    .footer h3 {
      font-size: 23px;
      font-weight: 950;
    }

    .footer h4 {
      font-size: 16px;
      font-weight: 900;
    }

    .footer p {
      color: rgba(255, 255, 255, .62);
      font-size: 14px;
      line-height: 1.8;
      max-width: 520px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .72);
      font-weight: 700;
      font-size: 14px;
      width: fit-content;
    }

    .footer-links a:hover {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding-top: 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, .52);
    }

    .fixed-cta {
      position: fixed;
      right: 26px;
      bottom: 22px;
      z-index: 1050;
      width: min(660px, calc(100vw - var(--sidebar) - 72px));
      padding: 12px;
      border-radius: 999px;
      background: rgba(33, 21, 36, .92);
      color: #fff;
      box-shadow: 0 18px 50px rgba(33, 21, 36, .24);
      border: 1px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .fixed-cta-text {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      padding-left: 8px;
    }

    .fixed-cta-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 0 6px rgba(47, 191, 143, .18);
      flex: 0 0 auto;
    }

    .fixed-cta strong {
      display: block;
      font-size: 14px;
      white-space: nowrap;
    }

    .fixed-cta span {
      display: block;
      color: rgba(255, 255, 255, .62);
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .fixed-cta-actions {
      display: flex;
      gap: 8px;
      flex: 0 0 auto;
    }

    .fixed-cta .btn-custom {
      min-height: 40px;
      padding: 9px 14px;
      font-size: 14px;
    }

    .fixed-cta .btn-ghost {
      background: rgba(255, 255, 255, .08);
      color: #fff;
      border-color: rgba(255, 255, 255, .18);
    }

    .fixed-cta .btn-ghost:hover {
      background: rgba(255, 255, 255, .14);
      color: #fff;
    }

    @media (max-width: 1199px) {
      :root {
        --sidebar: 220px;
      }

      .main-content {
        padding: 28px 24px 36px;
      }

      .layout-grid {
        grid-template-columns: 300px minmax(0, 1fr);
      }

      .entry-card {
        grid-template-columns: 62px minmax(0, 1fr);
      }

      .entry-card .light-link {
        grid-column: 2;
        width: fit-content;
      }
    }

    @media (max-width: 991px) {
      body {
        padding-bottom: 88px;
      }

      .sidebar {
        display: none;
      }

      .mobile-topbar {
        display: block;
      }

      .main-content {
        margin-left: 0;
        padding: 22px 16px 34px;
      }

      .compact-header {
        padding: 26px 22px;
      }

      .compact-header::after {
        opacity: .28;
        right: -40px;
      }

      .layout-grid {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .popular-grid {
        grid-template-columns: 1fr 1fr;
      }

      .step-row {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .fixed-cta {
        left: 16px;
        right: 16px;
        bottom: 14px;
        width: auto;
      }
    }

    @media (max-width: 767px) {
      h1 {
        font-size: 31px;
      }

      .lead {
        font-size: 15.5px;
      }

      .section {
        margin-top: 44px;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .header-actions {
        flex-direction: column;
      }

      .header-actions .btn-custom {
        width: 100%;
      }

      .side-panel {
        grid-template-columns: 1fr;
      }

      .entry-card {
        grid-template-columns: 1fr;
        padding: 20px;
      }

      .entry-card .light-link {
        grid-column: auto;
        width: 100%;
      }

      .entry-num {
        width: 52px;
        height: 52px;
      }

      .popular-grid,
      .step-row {
        grid-template-columns: 1fr;
      }

      .cta-card {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .cta-actions {
        justify-content: stretch;
      }

      .cta-actions .btn-custom {
        width: 100%;
      }

      .footer-card {
        padding: 26px 22px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;
      }

      .fixed-cta {
        border-radius: 24px;
      }

      .fixed-cta-text span {
        display: none;
      }

      .fixed-cta-actions .btn-ghost {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .mobile-mini-cta {
        display: none;
      }

      .compact-header {
        border-radius: 26px;
      }

      .tag-row {
        gap: 8px;
      }

      .tag-pill {
        font-size: 12px;
      }

      .fixed-cta strong {
        max-width: 168px;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
