/* roulang page: index */
:root{
      --shell-width: 236px;
      --bg: #fffaf5;
      --paper: rgba(255,255,255,.82);
      --paper-strong: #ffffff;
      --text: #1c1917;
      --muted: #78716c;
      --line: rgba(214, 211, 209, .78);
      --accent: #f97316;
      --accent-2: #fb7185;
      --accent-soft: #ffedd5;
      --radius-xl: 24px;
      --radius-2xl: 30px;
      --shadow-warm: 0 18px 50px rgba(249,115,22,.12);
      --shadow-soft: 0 12px 32px rgba(41,37,36,.08);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 16% 10%, rgba(251,113,133,.18), transparent 32%),
        radial-gradient(circle at 86% 8%, rgba(249,115,22,.16), transparent 30%),
        radial-gradient(circle at 52% 86%, rgba(245,158,11,.12), transparent 36%),
        linear-gradient(135deg,#fffaf5 0%,#fff7ed 46%,#fdf2f8 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.38;
      background-image:linear-gradient(rgba(120,113,108,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(120,113,108,.045) 1px,transparent 1px);
      background-size:28px 28px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),rgba(0,0,0,.08));
    }
    a{color:inherit;text-decoration:none}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    .app-shell{min-height:100vh}
    .sidebar{
      width:var(--shell-width);
      position:fixed;
      inset:18px auto 18px 18px;
      z-index:40;
      border:1px solid rgba(251,146,60,.18);
      border-radius:28px;
      background:rgba(255,255,255,.72);
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow-soft);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .brand-mark{
      width:44px;height:44px;border-radius:16px;
      background:linear-gradient(135deg,#f97316,#fb7185);
      box-shadow:0 12px 24px rgba(249,115,22,.22);
      display:grid;place-items:center;color:#fff;font-weight:900;
      position:relative;overflow:hidden;flex:none;
    }
    .brand-mark:after{
      content:"";position:absolute;width:36px;height:36px;border:2px solid rgba(255,255,255,.38);border-radius:14px;transform:rotate(12deg);
    }
    .nav-link{
      position:relative;
      display:flex;
      align-items:center;
      gap:12px;
      min-height:46px;
      padding:10px 12px;
      border-radius:16px;
      color:#57534e;
      font-weight:700;
      transition:.22s ease;
      outline:none;
    }
    .nav-link .nav-dot{
      width:28px;height:28px;border-radius:11px;background:#fff7ed;
      display:grid;place-items:center;color:#f97316;border:1px solid #ffedd5;
      transition:.22s ease;
    }
    .nav-link:hover,.nav-link:focus-visible{
      background:#fff7ed;
      color:#1c1917;
      transform:translateX(2px);
    }
    .nav-link.active{
      background:linear-gradient(135deg,rgba(249,115,22,.16),rgba(251,113,133,.13));
      color:#1c1917;
      box-shadow:inset 3px 0 0 #f97316;
    }
    .nav-link.active .nav-dot{background:#f97316;color:#fff;border-color:#f97316}
    .main-wrap{
      padding-left:calc(var(--shell-width) + 42px);
      position:relative;
      z-index:1;
    }
    .page-container{width:min(1240px,calc(100% - 42px));margin:0 auto;padding:28px 0 0}
    .mobile-bar{
      display:none;
      position:sticky;top:0;z-index:50;
      border-bottom:1px solid rgba(251,146,60,.2);
      background:rgba(255,250,245,.88);
      backdrop-filter:blur(16px);
    }
    .mobile-menu{
      display:none;
      border-bottom:1px solid rgba(251,146,60,.18);
      background:rgba(255,255,255,.94);
      padding:12px 16px 16px;
    }
    .section{margin-top:24px}
    .section-pad{padding:28px}
    .card{
      border:1px solid rgba(231,229,228,.88);
      background:rgba(255,255,255,.78);
      border-radius:var(--radius-xl);
      box-shadow:0 8px 28px rgba(41,37,36,.055);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-warm);
      border-color:rgba(249,115,22,.25);
      background:rgba(255,255,255,.92);
    }
    .hero-card{
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.88),rgba(255,247,237,.88)),
        radial-gradient(circle at 80% 10%,rgba(251,113,133,.22),transparent 32%);
      border:1px solid rgba(251,146,60,.22);
      box-shadow:var(--shadow-warm);
      overflow:hidden;
      position:relative;
    }
    .hero-card:before{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(90deg,rgba(249,115,22,.08),transparent 34%,rgba(251,113,133,.08));
      pointer-events:none;
    }
    .badge{
      display:inline-flex;align-items:center;gap:7px;
      min-height:30px;
      padding:5px 11px;
      border-radius:999px;
      border:1px solid rgba(251,146,60,.22);
      background:#fff7ed;
      color:#9a3412;
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .badge-rose{background:#fff1f2;border-color:#fecdd3;color:#be123c}
    .badge-stone{background:#fafaf9;border-color:#e7e5e4;color:#57534e}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:900;
      transition:.22s ease;
      outline:none;
      border:1px solid transparent;
    }
    .btn-primary{
      color:white;
      background:linear-gradient(135deg,#f97316,#fb7185);
      box-shadow:0 14px 30px rgba(249,115,22,.24);
    }
    .btn-primary:hover,.btn-primary:focus-visible{transform:translateY(-1px);box-shadow:0 18px 42px rgba(249,115,22,.30)}
    .btn-secondary{
      color:#7c2d12;
      background:rgba(255,255,255,.82);
      border-color:#fed7aa;
    }
    .btn-secondary:hover,.btn-secondary:focus-visible{background:#fff7ed;border-color:#fb923c;transform:translateY(-1px)}
    .btn:active{transform:translateY(0);box-shadow:none}
    .metric-card{
      border-radius:22px;
      padding:18px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(255,237,213,.95);
      position:relative;
      overflow:hidden;
    }
    .metric-card:before{
      content:"";position:absolute;left:0;right:0;top:0;height:4px;
      background:linear-gradient(90deg,#f97316,#fb7185);
    }
    .avatar{
      width:34px;height:34px;border-radius:999px;
      display:grid;place-items:center;
      color:#fff;font-weight:900;
      border:3px solid #fff;
      margin-left:-9px;
      box-shadow:0 6px 18px rgba(41,37,36,.10);
    }
    .avatar:first-child{margin-left:0}
    .bubble{
      position:relative;
      border-radius:20px;
      background:#fff7ed;
      border:1px solid #ffedd5;
      padding:12px 14px;
      color:#57534e;
      font-size:14px;
      line-height:1.65;
    }
    .bubble:before{
      content:"";position:absolute;left:18px;bottom:-7px;
      width:14px;height:14px;background:#fff7ed;
      border-right:1px solid #ffedd5;border-bottom:1px solid #ffedd5;
      transform:rotate(45deg);
    }
    .option-card{
      border-radius:26px;
      border:1px solid rgba(231,229,228,.85);
      background:rgba(255,255,255,.72);
      padding:20px;
      transition:.22s ease;
    }
    .option-card.recommend{
      background:linear-gradient(135deg,#fff7ed,#fff1f2);
      border-color:rgba(249,115,22,.32);
      box-shadow:0 16px 38px rgba(249,115,22,.13);
      transform:translateY(-4px);
    }
    .option-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-warm)}
    .option-card.recommend:hover{transform:translateY(-6px)}
    .info-list a{
      display:flex;justify-content:space-between;gap:18px;
      padding:15px 0;
      border-bottom:1px dashed rgba(214,211,209,.9);
      transition:.2s ease;
    }
    .info-list a:hover{color:#ea580c;padding-left:6px}
    .progress-line{height:10px;border-radius:999px;background:#ffedd5;overflow:hidden}
    .progress-line span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#f97316,#fb7185)}
    .compare-row{
      display:grid;grid-template-columns:1fr auto 1fr;gap:16px;align-items:center;
      padding:16px 0;border-bottom:1px solid rgba(231,229,228,.82);
    }
    .compare-row:last-child{border-bottom:0}
    .faq-item{
      border:1px solid rgba(231,229,228,.9);
      border-radius:22px;
      background:rgba(255,255,255,.78);
      overflow:hidden;
      transition:.22s ease;
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      font-weight:900;
      color:#292524;
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
      color:#57534e;
      padding:0 20px;
    }
    .faq-item.open{background:#fffaf5;border-color:#fed7aa;box-shadow:0 12px 30px rgba(249,115,22,.08)}
    .faq-item.open .faq-a{max-height:260px;padding:0 20px 18px}
    .faq-item.open .faq-icon{transform:rotate(45deg);background:#f97316;color:#fff}
    .faq-icon{
      width:30px;height:30px;border-radius:12px;background:#fff7ed;color:#f97316;
      display:grid;place-items:center;transition:.22s ease;flex:none;
    }
    .form-control{
      width:100%;
      border:1px solid #e7e5e4;
      background:rgba(255,255,255,.86);
      border-radius:16px;
      padding:12px 14px;
      color:#292524;
      outline:none;
      transition:.2s ease;
    }
    .form-control:focus{
      border-color:#fb923c;
      box-shadow:0 0 0 4px rgba(251,146,60,.18);
      background:#fff;
    }
    .footer{
      margin-top:28px;
      border-top:1px solid rgba(251,146,60,.18);
      background:rgba(255,247,237,.62);
      border-radius:28px 28px 0 0;
    }
    .floating-cta{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:35;
      display:flex;
      gap:10px;
      align-items:center;
      padding:10px;
      border:1px solid rgba(251,146,60,.24);
      background:rgba(255,255,255,.86);
      backdrop-filter:blur(14px);
      border-radius:999px;
      box-shadow:var(--shadow-soft);
    }
    @media (max-width:1024px){
      :root{--shell-width:0px}
      .sidebar{display:none}
      .mobile-bar{display:block}
      .mobile-menu.show{display:block}
      .main-wrap{padding-left:0}
      .page-container{width:min(100% - 32px, 980px);padding-top:18px}
      .section-pad{padding:22px}
      .compare-row{grid-template-columns:1fr}
      .floating-cta{left:16px;right:16px;justify-content:space-between}
    }
    @media (max-width:640px){
      .page-container{width:min(100% - 24px, 620px)}
      .hero-card{border-radius:26px}
      .section{margin-top:18px}
      .section-pad{padding:18px}
      .btn{width:100%}
      .info-list a{flex-direction:column;gap:5px}
      h1{word-break:break-word}
      .floating-cta{display:none}
    }

/* roulang page: category1 */
:root{
      --shell-width: 236px;
      --warm:#f97316;
      --warm-2:#fb7185;
      --amber:#f59e0b;
      --cream:#fff7ed;
      --paper:#fffaf5;
      --rose-soft:#ffe4e6;
      --text:#1c1917;
      --muted:#78716c;
      --line:#fed7aa;
      --card:#ffffff;
      --shadow:0 18px 55px rgba(249,115,22,.12);
      --shadow-soft:0 10px 30px rgba(68,64,60,.08);
      --radius-xl:24px;
      --radius-2xl:30px;
      --focus:0 0 0 4px rgba(251,146,60,.24);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 8%, rgba(251,113,133,.18), transparent 32%),
        radial-gradient(circle at 88% 15%, rgba(249,115,22,.16), transparent 30%),
        radial-gradient(circle at 70% 82%, rgba(245,158,11,.14), transparent 32%),
        linear-gradient(135deg,#fffaf5 0%,#fff7ed 45%,#fff1f2 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.32;
      background-image:
        linear-gradient(rgba(120,113,108,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120,113,108,.05) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.2));
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    input,select,textarea{width:100%}
    .app-shell{min-height:100vh}
    .sidebar{
      position:fixed;
      left:0;
      top:0;
      bottom:0;
      width:var(--shell-width);
      z-index:40;
      padding:20px 16px;
      background:rgba(255,250,245,.88);
      border-right:1px solid rgba(254,215,170,.75);
      box-shadow:8px 0 34px rgba(68,64,60,.06);
      backdrop-filter:blur(14px);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px 8px 18px;
      border-bottom:1px solid rgba(254,215,170,.7);
    }
    .brand-mark{
      display:inline-flex;
      width:42px;
      height:42px;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      color:#fff;
      font-weight:900;
      border-radius:16px;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.45), transparent 28%),
        linear-gradient(135deg,var(--warm),var(--warm-2));
      box-shadow:0 12px 28px rgba(249,115,22,.28);
    }
    .brand-title{font-weight:850;font-size:15px;line-height:1.35;color:#1c1917}
    .brand-sub{font-size:12px;color:#78716c;margin-top:2px}
    .nav-link{
      position:relative;
      display:flex;
      align-items:center;
      gap:10px;
      min-height:46px;
      padding:10px 12px;
      border-radius:18px;
      color:#57534e;
      font-weight:750;
      transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
      outline:none;
    }
    .nav-link:hover{
      color:#9a3412;
      background:#ffedd5;
      transform:translateX(2px);
    }
    .nav-link:focus-visible{box-shadow:var(--focus)}
    .nav-link.active{
      color:#7c2d12;
      background:linear-gradient(135deg,#fed7aa,#ffe4e6);
      box-shadow:0 12px 24px rgba(249,115,22,.15);
    }
    .nav-link.active:before{
      content:"";
      position:absolute;
      left:-7px;
      top:12px;
      bottom:12px;
      width:3px;
      border-radius:999px;
      background:linear-gradient(var(--warm),var(--warm-2));
    }
    .nav-dot{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:28px;
      height:28px;
      border-radius:11px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(254,215,170,.8);
      color:#ea580c;
      font-weight:900;
    }
    .side-note{
      margin-top:18px;
      padding:14px;
      border-radius:20px;
      background:#fff7ed;
      border:1px solid #fed7aa;
      color:#78716c;
      font-size:12px;
      line-height:1.65;
    }
    .mobile-bar{
      display:none;
      position:sticky;
      top:0;
      z-index:50;
      padding:12px 16px;
      background:rgba(255,250,245,.92);
      border-bottom:1px solid rgba(254,215,170,.8);
      backdrop-filter:blur(14px);
    }
    .mobile-menu{
      display:none;
      margin-top:12px;
      padding:10px;
      border:1px solid #fed7aa;
      border-radius:22px;
      background:#fffaf5;
      box-shadow:var(--shadow-soft);
    }
    .mobile-menu.open{display:block}
    .main{
      margin-left:var(--shell-width);
      padding:34px 34px 0;
    }
    .container{
      width:min(1220px,100%);
      margin:0 auto;
    }
    .section-pad{padding:34px 0}
    .panel{
      border:1px solid rgba(254,215,170,.85);
      background:rgba(255,255,255,.78);
      border-radius:var(--radius-2xl);
      box-shadow:var(--shadow-soft);
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      padding:34px;
      box-shadow:var(--shadow);
    }
    .hero-panel:after{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      right:-80px;
      top:-85px;
      border-radius:999px;
      background:radial-gradient(circle, rgba(251,113,133,.22), rgba(249,115,22,.05), transparent 70%);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff7ed;
      border:1px solid #fed7aa;
      color:#9a3412;
      font-size:13px;
      font-weight:800;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:#22c55e;
      box-shadow:0 0 0 4px rgba(34,197,94,.12);
    }
    .page-title{
      margin:18px 0 14px;
      font-size:clamp(32px,4vw,52px);
      line-height:1.15;
      letter-spacing:-.035em;
      font-weight:900;
      color:#1c1917;
    }
    .lead{
      max-width:760px;
      color:#57534e;
      font-size:17px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:850;
      border:1px solid transparent;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
      outline:none;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:active{transform:translateY(0);box-shadow:none}
    .btn:focus-visible{box-shadow:var(--focus)}
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--warm),var(--warm-2));
      box-shadow:0 14px 28px rgba(249,115,22,.24);
    }
    .btn-primary:hover{box-shadow:0 18px 36px rgba(249,115,22,.32)}
    .btn-secondary{
      color:#7c2d12;
      background:#fff7ed;
      border-color:#fed7aa;
    }
    .btn-secondary:hover{background:#ffedd5}
    .stat-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
    }
    .stat-card{
      position:relative;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(254,215,170,.85);
      background:rgba(255,250,245,.82);
      overflow:hidden;
    }
    .stat-card:before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:4px;
      background:linear-gradient(90deg,var(--warm),var(--warm-2));
      opacity:.72;
    }
    .stat-num{font-size:24px;font-weight:900;color:#9a3412;line-height:1}
    .stat-label{margin-top:8px;font-size:13px;color:#78716c;font-weight:750}
    .filter-bar{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:14px;
      border-radius:24px;
      background:rgba(255,247,237,.82);
      border:1px solid rgba(254,215,170,.85);
    }
    .filter-pill{
      min-height:40px;
      padding:9px 14px;
      border-radius:999px;
      border:1px solid #fed7aa;
      background:#fffaf5;
      color:#57534e;
      font-weight:800;
      font-size:14px;
      transition:all .2s ease;
    }
    .filter-pill:hover,.filter-pill.active{
      background:linear-gradient(135deg,#fb923c,#fb7185);
      color:white;
      border-color:transparent;
      box-shadow:0 10px 20px rgba(249,115,22,.18);
    }
    .board{
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:18px;
      align-items:start;
    }
    .card-list{display:grid;gap:14px}
    .guide-card{
      padding:20px;
      border-radius:26px;
      border:1px solid rgba(254,215,170,.85);
      background:rgba(255,255,255,.82);
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .guide-card:hover{
      transform:translateY(-2px);
      border-color:#fdba74;
      box-shadow:0 18px 40px rgba(249,115,22,.12);
    }
    .guide-card h3{font-size:20px;line-height:1.35;font-weight:900;color:#1c1917}
    .guide-card p{margin-top:8px;color:#57534e;font-size:15px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:5px;
      padding:6px 10px;
      border-radius:999px;
      background:#fff7ed;
      border:1px solid #fed7aa;
      color:#9a3412;
      font-size:12px;
      font-weight:850;
    }
    .status{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#78716c;
      font-size:13px;
      font-weight:750;
    }
    .status:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:#22c55e;
    }
    .side-card{
      padding:20px;
      border-radius:28px;
      background:rgba(255,250,245,.88);
      border:1px solid #fed7aa;
      box-shadow:var(--shadow-soft);
    }
    .check-list{display:grid;gap:12px;margin-top:16px}
    .check-item{
      display:flex;
      gap:10px;
      padding:12px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(254,215,170,.72);
    }
    .check-num{
      width:28px;
      height:28px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      border-radius:11px;
      color:white;
      font-size:12px;
      font-weight:900;
      background:linear-gradient(135deg,var(--warm),var(--warm-2));
    }
    .bubble{
      position:relative;
      display:inline-block;
      padding:10px 13px;
      border-radius:18px 18px 18px 6px;
      background:#fff;
      border:1px solid #fed7aa;
      color:#57534e;
      font-size:13px;
      box-shadow:0 8px 18px rgba(68,64,60,.06);
    }
    .avatar-row{display:flex;align-items:center;margin-top:14px}
    .avatar{
      width:34px;
      height:34px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-left:-8px;
      border:3px solid #fff;
      border-radius:999px;
      color:white;
      font-size:12px;
      font-weight:900;
      background:linear-gradient(135deg,#fb923c,#fb7185);
    }
    .avatar:first-child{margin-left:0}
    .matrix{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .matrix-card{
      padding:20px;
      border-radius:26px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(254,215,170,.8);
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .matrix-card:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(249,115,22,.11)}
    .matrix-card.large{grid-column:span 2;background:linear-gradient(135deg,#fff7ed,#fff1f2)}
    .icon-box{
      width:44px;
      height:44px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      color:#ea580c;
      background:#ffedd5;
      border:1px solid #fed7aa;
      font-weight:900;
    }
    .compare-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .compare-card{
      padding:22px;
      border-radius:28px;
      border:1px solid rgba(254,215,170,.85);
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow-soft);
    }
    .bar{
      height:10px;
      overflow:hidden;
      border-radius:999px;
      background:#ffedd5;
    }
    .bar span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--warm),var(--warm-2))}
    .faq-wrap{display:grid;grid-template-columns:320px minmax(0,1fr);gap:18px}
    .faq-item{
      border:1px solid rgba(254,215,170,.86);
      background:rgba(255,255,255,.82);
      border-radius:22px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .faq-q{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      min-height:58px;
      padding:16px 18px;
      color:#292524;
      font-weight:900;
      text-align:left;
      background:transparent;
      border:0;
      transition:background .2s ease,color .2s ease;
    }
    .faq-q:hover{background:#fff7ed;color:#9a3412}
    .faq-q span:last-child{transition:transform .2s ease;color:#ea580c}
    .faq-item.open .faq-q span:last-child{transform:rotate(45deg)}
    .faq-a{
      display:none;
      padding:0 18px 18px;
      color:#57534e;
      font-size:15px;
    }
    .faq-item.open .faq-a{display:block}
    .form-card{
      padding:28px;
      border-radius:32px;
      border:1px solid #fed7aa;
      background:
        radial-gradient(circle at 90% 15%, rgba(251,113,133,.18), transparent 32%),
        linear-gradient(135deg,#fff7ed,#ffffff);
      box-shadow:var(--shadow);
    }
    .field label{
      display:block;
      margin-bottom:7px;
      color:#44403c;
      font-size:14px;
      font-weight:850;
    }
    .input{
      min-height:46px;
      border-radius:16px;
      border:1px solid #fed7aa;
      background:#fffaf5;
      padding:11px 13px;
      color:#292524;
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .input:focus{
      border-color:#fb923c;
      background:#fff;
      box-shadow:var(--focus);
    }
    textarea.input{min-height:116px;resize:vertical}
    .footer{
      margin-top:34px;
      padding:28px;
      border-radius:30px 30px 0 0;
      border:1px solid rgba(254,215,170,.86);
      border-bottom:0;
      background:rgba(255,250,245,.86);
      box-shadow:0 -10px 34px rgba(68,64,60,.04);
    }
    @media (max-width:1100px){
      :root{--shell-width:210px}
      .main{padding:26px 22px 0}
      .board{grid-template-columns:1fr}
      .stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .faq-wrap{grid-template-columns:1fr}
    }
    @media (max-width:900px){
      .sidebar{display:none}
      .mobile-bar{display:block}
      .main{margin-left:0;padding:18px 16px 0}
      .hero-panel{padding:24px}
      .matrix,.compare-grid{grid-template-columns:1fr}
      .matrix-card.large{grid-column:auto}
      .footer{border-radius:26px 26px 0 0}
    }
    @media (max-width:560px){
      .main{padding:14px 12px 0}
      .section-pad{padding:24px 0}
      .hero-panel{padding:20px;border-radius:24px}
      .stat-grid{grid-template-columns:1fr}
      .guide-card,.side-card,.matrix-card,.compare-card,.form-card{border-radius:22px;padding:18px}
      .btn{width:100%}
      .filter-pill{flex:1 1 auto}
      .page-title{font-size:31px}
      .lead{font-size:15px}
    }
