/* roulang page: index */
:root{
      --ink:#1F2328;
      --muted:#68615A;
      --weak:#8D867B;
      --paper:#FAF7EF;
      --paper-2:#FFFDF7;
      --paper-3:#F5F1E8;
      --card:#FFFFFF;
      --card-warm:#FFFCF4;
      --line:#E8E0D2;
      --line-strong:#D8CDBB;
      --yellow:#F2C94C;
      --yellow-dark:#D8AA22;
      --orange:#D85C3A;
      --green:#2E8B7C;
      --black:#151719;
      --shadow:0 12px 36px rgba(31,35,40,.08);
      --shadow-hover:0 18px 46px rgba(31,35,40,.12);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:32px;
      --container:1220px;
      --nav-h:72px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 10%, rgba(242,201,76,.20), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(46,139,124,.10), transparent 34%),
        var(--paper);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.75;
      -webkit-font-smoothing:antialiased;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--orange)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(242,201,76,.65);outline-offset:3px}
    .site-container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .section{padding:86px 0}
    .section-tight{padding:62px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,253,247,.82);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--yellow);
      box-shadow:0 0 0 4px rgba(242,201,76,.18);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,62px);
      line-height:1.1;
      letter-spacing:-.055em;
      font-weight:850;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(28px,3.5vw,42px);
      line-height:1.16;
      letter-spacing:-.035em;
      font-weight:820;
      margin-bottom:16px;
    }
    h3{
      font-size:clamp(20px,2vw,25px);
      line-height:1.28;
      font-weight:780;
      margin-bottom:10px;
    }
    .lead{font-size:18px;color:var(--muted);line-height:1.85}
    .muted{color:var(--muted)}
    .small-note{font-size:14px;color:var(--weak);line-height:1.65}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .section-head .intro{max-width:680px}
    .section-head p{margin-bottom:0;color:var(--muted);font-size:17px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:54px;
      padding:0 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:780;
      line-height:1;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--yellow);
      color:var(--black);
      box-shadow:0 10px 24px rgba(216,170,34,.25);
    }
    .btn-primary:hover{
      background:#FFD760;
      color:var(--black);
      transform:translateY(-2px);
      box-shadow:0 15px 30px rgba(216,170,34,.32);
    }
    .btn-dark{
      background:var(--black);
      color:#fff;
      box-shadow:0 12px 30px rgba(31,35,40,.18);
    }
    .btn-dark:hover{background:#2B2F33;color:#fff;transform:translateY(-2px)}
    .btn-outline{
      background:rgba(255,253,247,.7);
      border-color:var(--line-strong);
      color:var(--ink);
    }
    .btn-outline:hover{background:#fff6d7;color:var(--ink);transform:translateY(-2px)}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      line-height:1;
    }
    .tag.hot{background:rgba(242,201,76,.18);border-color:rgba(216,170,34,.35);color:#7A5D10}
    .tag.green{background:rgba(46,139,124,.10);border-color:rgba(46,139,124,.25);color:var(--green)}
    .cardx{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:var(--ease);
      overflow:hidden;
    }
    .cardx:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(242,201,76,.8);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,253,247,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(232,224,210,.88);
    }
    .nav-wrap{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:850;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--yellow),#FFE8A3 55%,#fff);
      border:1px solid rgba(216,170,34,.35);
      box-shadow:0 10px 24px rgba(216,170,34,.18);
    }
    .brand-mark span{
      width:22px;
      height:14px;
      display:block;
      border-radius:3px;
      border-bottom:4px solid var(--ink);
      border-top:2px solid var(--ink);
      position:relative;
    }
    .brand-mark span:after{
      content:"";
      position:absolute;
      left:2px;
      right:2px;
      bottom:-9px;
      height:3px;
      border-radius:999px;
      background:var(--orange);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-text strong{font-size:17px}
    .brand-text em{font-style:normal;color:var(--weak);font-size:12px;font-weight:700}
    .desktop-menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      margin:0;
      list-style:none;
      flex:1;
    }
    .desktop-menu a{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 15px;
      border-radius:999px;
      border:1px solid transparent;
      color:var(--muted);
      font-weight:760;
      font-size:15px;
    }
    .desktop-menu a:hover{
      color:var(--ink);
      background:#FFF4CD;
      transform:translateY(-1px);
    }
    .desktop-menu a.active{
      color:var(--ink);
      background:rgba(242,201,76,.20);
      border-color:rgba(216,170,34,.35);
    }
    .nav-cta{display:flex;align-items:center;gap:10px}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
    }
    .menu-toggle span{width:19px;height:2px;background:var(--ink);border-radius:2px;transition:var(--ease)}
    .mobile-panel{
      display:none;
      border-top:1px solid var(--line);
      padding:14px 0 20px;
    }
    .mobile-panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:15px 4px;
      color:var(--ink);
      font-weight:780;
      border-bottom:1px solid rgba(232,224,210,.7);
    }
    .mobile-panel a.active{color:#8A6511}
    .mobile-panel .btn{margin-top:16px;width:100%}

    .hero{padding:34px 0 76px}
    .hero-stage{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,253,247,.96),rgba(255,248,226,.92)),
        radial-gradient(circle at 80% 20%,rgba(242,201,76,.28),transparent 28%);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(31,35,40,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(31,35,40,.045) 1px,transparent 1px);
      background-size:38px 38px;
      mask-image:linear-gradient(90deg,rgba(0,0,0,.6),transparent 70%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      padding:52px;
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
      gap:38px;
      align-items:center;
    }
    .hero-copy .lead{max-width:720px;margin-bottom:26px}
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:26px}
    .hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:0}
    .hero-panel{
      display:grid;
      gap:14px;
    }
    .eligibility-card{
      border-radius:28px;
      background:var(--black);
      color:#fff;
      padding:24px;
      box-shadow:0 22px 50px rgba(31,35,40,.22);
      position:relative;
      overflow:hidden;
    }
    .eligibility-card:after{
      content:"字幕";
      position:absolute;
      right:-8px;
      bottom:-24px;
      font-size:92px;
      line-height:1;
      font-weight:900;
      color:rgba(255,255,255,.06);
      letter-spacing:-.08em;
    }
    .eligibility-card h3{color:#fff;margin-bottom:12px}
    .eligibility-card p{color:rgba(255,255,255,.72);margin-bottom:18px}
    .check-row{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
      position:relative;
    }
    .check-item{
      min-height:74px;
      padding:13px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .check-item b{display:block;color:#FFE28A;font-size:14px;margin-bottom:2px}
    .check-item span{display:block;color:rgba(255,255,255,.72);font-size:13px;line-height:1.45}
    .matrix-card{
      padding:18px;
      border-radius:24px;
      background:rgba(255,255,255,.84);
      border:1px solid var(--line);
    }
    .matrix-title{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
      font-weight:820;
    }
    .tag-wall{display:flex;flex-wrap:wrap;gap:9px}
    .trust-strip{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .trust-item{
      padding:15px;
      border-radius:20px;
      background:rgba(255,255,255,.74);
      border:1px solid var(--line);
      display:flex;
      align-items:flex-start;
      gap:10px;
    }
    .trust-icon{
      width:28px;height:28px;border-radius:10px;background:rgba(242,201,76,.28);
      display:grid;place-items:center;flex:0 0 auto;font-weight:900;color:#76560D;
    }
    .trust-item b{display:block;font-size:14px;line-height:1.25}
    .trust-item span{display:block;color:var(--weak);font-size:12px;line-height:1.35;margin-top:2px}

    .directory-track{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
    }
    .directory-main{
      min-height:310px;
      padding:28px;
      background:linear-gradient(135deg,#1F2328,#34312A);
      color:#fff;
      position:relative;
    }
    .directory-main:after{
      content:"";
      position:absolute;
      right:26px;
      top:26px;
      width:130px;
      height:88px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:22px;
      background:repeating-linear-gradient(0deg,rgba(255,255,255,.10),rgba(255,255,255,.10) 6px,transparent 6px,transparent 14px);
    }
    .directory-main .number{font-size:44px;font-weight:900;color:var(--yellow);line-height:1}
    .directory-main h3{color:#fff;font-size:30px;max-width:520px;margin-top:26px}
    .directory-main p{color:rgba(255,255,255,.72);max-width:560px;margin-bottom:22px}
    .directory-side{display:grid;gap:18px}
    .dir-card{padding:22px;min-height:145px}
    .dir-card .number{font-weight:900;color:var(--orange);font-size:24px}
    .dir-card p{color:var(--muted);margin-bottom:16px}
    .dir-tags{display:flex;flex-wrap:wrap;gap:7px}

    .featured-layout{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:20px;
      align-items:stretch;
    }
    .feature-large{padding:30px;background:var(--card-warm)}
    .feature-large .cover-lines{
      height:120px;border-radius:22px;background:
      linear-gradient(90deg,rgba(242,201,76,.55),transparent 62%),
      repeating-linear-gradient(0deg,#E8E0D2 0,#E8E0D2 2px,transparent 2px,transparent 18px);
      margin-bottom:22px;
      border:1px solid var(--line);
    }
    .feature-list{display:grid;gap:14px}
    .feature-item{
      padding:20px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:start;
    }
    .feature-item .dot{
      width:38px;height:38px;border-radius:14px;background:rgba(242,201,76,.24);
      display:grid;place-items:center;font-weight:900;color:#78580F;
    }
    .feature-item h3{font-size:19px;margin-bottom:5px}
    .feature-item p{font-size:15px;color:var(--muted);margin:0}
    .arrow{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;background:var(--paper-3);color:var(--ink);font-weight:900;
    }
    .feature-item:hover .arrow{background:var(--yellow);transform:translateX(2px)}

    .partition-row{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding-bottom:10px;
      scroll-snap-type:x mandatory;
    }
    .partition-card{
      min-width:270px;
      max-width:320px;
      flex:1;
      scroll-snap-align:start;
      padding:22px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .partition-card:nth-child(2n){background:#FFFCF4}
    .partition-card:hover{transform:translateY(-3px);border-color:var(--yellow);box-shadow:var(--shadow-hover)}
    .partition-card .folder{
      height:74px;
      border-radius:20px;
      margin-bottom:16px;
      background:
        linear-gradient(135deg,rgba(242,201,76,.45),rgba(216,92,58,.10)),
        repeating-linear-gradient(90deg,rgba(31,35,40,.11) 0,rgba(31,35,40,.11) 2px,transparent 2px,transparent 18px);
      border:1px solid var(--line);
      position:relative;
    }
    .partition-card .folder:before{
      content:"";
      position:absolute;
      left:18px;
      top:-9px;
      width:82px;
      height:20px;
      border-radius:12px 12px 0 0;
      background:#fff2bd;
      border:1px solid var(--line);
      border-bottom:0;
    }

    .info-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:22px;
    }
    .link-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .link-list li a{
      display:grid;
      grid-template-columns:1fr auto;
      gap:14px;
      padding:18px 20px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--ink);
    }
    .link-list li a:hover{
      border-color:var(--yellow);
      box-shadow:var(--shadow);
      transform:translateY(-2px);
    }
    .link-list strong{display:block;font-size:17px;line-height:1.35}
    .link-list span{display:block;font-size:14px;color:var(--muted);margin-top:4px}
    .recommend-box{
      padding:24px;
      background:var(--black);
      color:#fff;
    }
    .recommend-box h3{color:#fff}
    .recommend-box p{color:rgba(255,255,255,.74)}
    .mini-steps{display:grid;gap:10px;margin-top:18px}
    .mini-step{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .mini-step b{
      width:24px;height:24px;border-radius:50%;background:var(--yellow);color:var(--black);
      display:grid;place-items:center;flex:0 0 auto;font-size:12px;
    }
    .mini-step span{font-size:14px;color:rgba(255,255,255,.76);line-height:1.5}

    .selling-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .selling-card{
      padding:26px;
      min-height:235px;
      background:var(--black);
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .selling-card:nth-child(2){background:#2E332F}
    .selling-card:nth-child(3){background:#4A2D22}
    .selling-card:after{
      content:"";
      position:absolute;
      width:130px;height:130px;border-radius:50%;
      right:-36px;bottom:-36px;background:rgba(242,201,76,.12);
    }
    .selling-icon{
      width:46px;height:46px;border-radius:17px;background:rgba(242,201,76,.22);
      display:grid;place-items:center;font-weight:900;color:#FFE28A;margin-bottom:18px;
    }
    .selling-card h3{color:#fff}
    .selling-card p{color:rgba(255,255,255,.74);margin-bottom:0}

    .scenario-stage{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
    }
    .scenario-card{padding:28px;background:var(--card-warm)}
    .process-board{
      padding:26px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .process-line{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      counter-reset:step;
    }
    .process-node{
      padding:18px;
      border-radius:20px;
      border:1px solid var(--line);
      background:var(--paper-2);
      position:relative;
    }
    .process-node:before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      width:34px;height:34px;border-radius:50%;
      align-items:center;justify-content:center;
      background:var(--yellow);
      color:var(--ink);
      font-size:13px;
      font-weight:900;
      margin-bottom:14px;
    }
    .process-node b{display:block;margin-bottom:6px}
    .process-node span{font-size:14px;color:var(--muted);line-height:1.55}

    .accordion.faq-accordion{
      background:transparent;
    }
    .faq-accordion .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 20px rgba(31,35,40,.04);
    }
    .faq-accordion .accordion-title{
      border:0;
      color:var(--ink);
      font-weight:820;
      font-size:17px;
      padding:20px 52px 20px 20px;
      background:#fff;
    }
    .faq-accordion .accordion-title:hover,
    .faq-accordion .accordion-title:focus{
      background:#FFF6D8;
      color:var(--ink);
    }
    .faq-accordion .is-active .accordion-title{
      background:#FFF6D8;
      color:#76560D;
    }
    .faq-accordion .accordion-content{
      border:0;
      border-top:1px solid var(--line);
      background:#FFFCF4;
      color:var(--muted);
      padding:20px;
      line-height:1.8;
    }

    .cta-panel{
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:
        radial-gradient(circle at 85% 20%,rgba(242,201,76,.28),transparent 28%),
        linear-gradient(135deg,#FFFDF7,#F7EFD9);
      padding:34px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .cta-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px}
    .copy-status{display:none;margin-top:10px;color:var(--green);font-weight:700;font-size:14px}
    .copy-status.show{display:block}

    .site-footer{
      background:#EFE9DC;
      border-top:1px solid var(--line-strong);
      padding:48px 0 30px;
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:30px;
      align-items:start;
    }
    .footer-brand{display:flex;align-items:center;gap:12px;color:var(--ink);font-weight:850;margin-bottom:12px}
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .footer-links a{
      padding:9px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.48);
      border:1px solid rgba(216,205,187,.8);
      font-weight:740;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{background:#fff;color:var(--ink)}
    .copyright{
      margin-top:28px;
      padding-top:20px;
      border-top:1px solid rgba(216,205,187,.75);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
      color:#7A7368;
    }

    .fixed-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:999;
      width:min(680px,calc(100% - 28px));
      padding:10px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,253,247,.94);
      backdrop-filter:blur(16px);
      box-shadow:0 16px 42px rgba(31,35,40,.14);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .fixed-cta span{padding-left:12px;font-weight:780;color:var(--ink);font-size:14px}
    .fixed-cta .btn{min-height:46px;padding:0 18px}

    @media (max-width:1023px){
      :root{--nav-h:66px}
      .site-container{width:min(100% - 36px,var(--container))}
      .desktop-menu,.nav-cta{display:none}
      .menu-toggle{display:flex}
      .mobile-panel.open{display:block}
      .hero-inner{grid-template-columns:1fr;padding:36px;gap:26px}
      .trust-strip{grid-template-columns:repeat(2,1fr)}
      .directory-track,.featured-layout,.info-grid,.scenario-stage,.cta-panel,.footer-grid{grid-template-columns:1fr}
      .selling-grid{grid-template-columns:1fr}
      .process-line{grid-template-columns:repeat(2,1fr)}
      .cta-actions,.footer-links{justify-content:flex-start}
    }
    @media (max-width:639px){
      body{padding-bottom:84px}
      .site-container{width:calc(100% - 36px)}
      .brand-text strong{font-size:15px}
      .brand-text em{display:none}
      .hero{padding:22px 0 54px}
      .hero-inner{padding:24px;border-radius:24px}
      .hero-actions .btn{width:100%}
      .check-row{grid-template-columns:1fr}
      .trust-strip{
        display:flex;
        overflow-x:auto;
        gap:10px;
        padding-bottom:4px;
      }
      .trust-item{min-width:180px}
      .section,.section-tight{padding:54px 0}
      .section-head{display:block;margin-bottom:22px}
      .section-head .btn{margin-top:16px;width:100%}
      .directory-main{padding:22px;min-height:280px}
      .directory-main:after{display:none}
      .feature-item{grid-template-columns:auto 1fr}
      .feature-item .arrow{display:none}
      .process-line{grid-template-columns:1fr}
      .link-list li a{grid-template-columns:1fr}
      .cta-panel{padding:24px}
      .cta-actions .btn{width:100%}
      .fixed-cta{
        bottom:10px;
        border-radius:24px;
        align-items:center;
      }
      .fixed-cta span{font-size:13px;line-height:1.35;padding-left:6px}
      .fixed-cta .btn{min-width:126px}
    }

/* roulang page: category2 */
:root{
      --ink:#1F2328;
      --muted:#69635B;
      --soft:#8A8174;
      --paper:#FAF7EF;
      --paper-2:#FFFDF7;
      --card:#FFFFFF;
      --card-warm:#FFFCF4;
      --line:#E8E0D2;
      --line-strong:#D9CDB8;
      --yellow:#F2C94C;
      --yellow-dark:#E2B531;
      --orange:#D85C3A;
      --green:#2E8B7C;
      --shadow:0 12px 36px rgba(31,35,40,.08);
      --shadow-strong:0 18px 48px rgba(31,35,40,.13);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:34px;
      --container:1220px;
      --nav-h:72px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 4%, rgba(242,201,76,.23), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(46,139,124,.12), transparent 30%),
        linear-gradient(180deg,var(--paper-2),var(--paper));
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(242,201,76,.55)}
    :focus-visible{outline:3px solid rgba(242,201,76,.75);outline-offset:3px;border-radius:12px}
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,253,247,.92);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(232,224,210,.9);
    }
    .nav-wrap{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand:hover{transform:translateY(-1px)}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--ink),#3A3329);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 24px rgba(31,35,40,.16);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      inset:8px 7px auto;
      height:9px;
      border-radius:999px;
      background:var(--yellow);
      box-shadow:0 14px 0 rgba(242,201,76,.55);
    }
    .brand-mark span{
      width:18px;
      height:2px;
      border-radius:999px;
      background:#fff;
      transform:translateY(11px);
      opacity:.9;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-text strong{font-size:16px;font-weight:800;letter-spacing:-.02em}
    .brand-text em{font-size:12px;color:var(--soft);font-style:normal;margin-top:3px}
    .desktop-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      flex:1;
    }
    .desktop-menu a{
      display:inline-flex;
      align-items:center;
      height:40px;
      padding:0 16px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:14px;
      font-weight:700;
      color:#48433D;
      white-space:nowrap;
    }
    .desktop-menu a:hover{
      background:#F6EEDC;
      transform:translateY(-1px);
      color:var(--ink);
    }
    .desktop-menu a.active{
      border-color:#E5D8BE;
      background:#FFF4CE;
      color:#2B2824;
      box-shadow:inset 0 0 0 1px rgba(242,201,76,.24);
    }
    .nav-cta{display:flex;align-items:center}
    .btn{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:0 22px;
      font-weight:800;
      font-size:15px;
      border:1px solid transparent;
      line-height:1;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
      user-select:none;
    }
    .btn-primary{
      background:var(--yellow);
      color:#201A12;
      box-shadow:0 10px 24px rgba(226,181,49,.22);
    }
    .btn-primary:hover{
      background:var(--yellow-dark);
      color:#17130E;
      transform:translateY(-2px);
      box-shadow:0 16px 32px rgba(226,181,49,.32);
    }
    .btn-dark{
      background:var(--ink);
      color:#fff;
      box-shadow:0 12px 26px rgba(31,35,40,.18);
    }
    .btn-dark:hover{
      background:#0F1215;
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(31,35,40,.24);
    }
    .btn-ghost{
      background:rgba(255,255,255,.66);
      color:var(--ink);
      border-color:var(--line-strong);
    }
    .btn-ghost:hover{
      background:#FFF7DF;
      border-color:#DCC893;
      color:var(--ink);
      transform:translateY(-2px);
    }
    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
    }
    .menu-toggle span{
      width:20px;
      height:2px;
      border-radius:99px;
      background:var(--ink);
      transition:transform .2s ease,opacity .2s ease;
    }
    .menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle.is-open span:nth-child(2){opacity:0}
    .menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:4px 0 18px;
      border-top:1px solid rgba(232,224,210,.75);
    }
    .mobile-panel a:not(.btn){
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:15px 4px;
      font-weight:800;
      border-bottom:1px solid rgba(232,224,210,.7);
      color:var(--ink);
    }
    .mobile-panel a.active{
      color:#6D4F00;
      background:linear-gradient(90deg,rgba(242,201,76,.18),transparent);
      padding-left:12px;
      border-radius:14px;
    }
    .mobile-panel .btn{margin-top:16px;width:100%}

    .hero{
      padding:54px 0 34px;
    }
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin:0 0 22px;
      color:var(--soft);
      font-size:14px;
    }
    .breadcrumb a{font-weight:700;color:#4D4840}
    .breadcrumb a:hover{color:var(--orange)}
    .hero-shell{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,252,244,.9)),
        radial-gradient(circle at 80% 18%, rgba(216,92,58,.1), transparent 32%);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:7px;
      background:linear-gradient(90deg,var(--yellow),var(--orange),var(--green));
    }
    .hero-content{
      padding:42px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:18px;
      border:1px solid #E7D7A5;
      background:#FFF6D7;
      color:#6A520B;
      border-radius:999px;
      padding:7px 13px;
      font-size:13px;
      font-weight:800;
      letter-spacing:.01em;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(46,139,124,.13);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(34px,5.1vw,60px);
      line-height:1.1;
      letter-spacing:-.045em;
      font-weight:850;
      margin-bottom:20px;
      max-width:780px;
    }
    .hero-lead{
      font-size:18px;
      line-height:1.85;
      color:#514C45;
      max-width:760px;
      margin-bottom:26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:26px;
    }
    .trust-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:8px;
    }
    .trust-item{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.78);
      border-radius:999px;
      padding:9px 13px;
      color:#585149;
      font-size:13px;
      font-weight:750;
    }
    .trust-item b{
      color:var(--ink);
      font-size:14px;
    }
    .matrix-panel{
      padding:28px;
      border-left:1px solid var(--line);
      background:
        linear-gradient(180deg,rgba(250,247,239,.72),rgba(255,253,247,.96));
      height:100%;
    }
    .status-card{
      border:1px solid var(--line);
      border-radius:24px;
      background:#fff;
      padding:18px;
      box-shadow:0 10px 28px rgba(31,35,40,.06);
      margin-bottom:16px;
    }
    .status-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
      font-size:13px;
      color:var(--soft);
      font-weight:800;
    }
    .status-bar{
      display:grid;
      grid-template-columns:1.2fr .9fr .65fr;
      gap:6px;
      height:10px;
      margin:10px 0 14px;
    }
    .status-bar span{
      border-radius:99px;
      background:var(--yellow);
    }
    .status-bar span:nth-child(2){background:var(--green)}
    .status-bar span:nth-child(3){background:var(--orange)}
    .status-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .status-list li{
      display:flex;
      justify-content:space-between;
      gap:10px;
      padding:10px 0;
      border-top:1px dashed #E9DEC8;
      font-size:14px;
      color:#4D4840;
    }
    .status-list li:first-child{border-top:0}
    .status-list strong{font-weight:850}
    .tag-matrix{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
    }
    .matrix-tag{
      min-height:74px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#FFFCF4;
      padding:13px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .matrix-tag:hover{
      transform:translateY(-2px);
      border-color:#E1C45F;
      box-shadow:var(--shadow);
    }
    .matrix-tag span{font-size:12px;color:var(--soft);font-weight:800}
    .matrix-tag strong{font-size:15px;line-height:1.3}

    .section{
      padding:72px 0;
    }
    .section.tight{padding-top:44px}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-title{
      max-width:760px;
    }
    .section-title .label{
      display:inline-flex;
      margin-bottom:12px;
      color:#7A5B08;
      background:#FFF2C2;
      border:1px solid #E8D18A;
      border-radius:999px;
      padding:6px 12px;
      font-size:13px;
      font-weight:850;
    }
    h2{
      font-size:clamp(28px,3.8vw,42px);
      line-height:1.18;
      letter-spacing:-.035em;
      font-weight:830;
      margin-bottom:12px;
    }
    .section-title p{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
      margin-bottom:0;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#835C00;
      font-weight:850;
      padding:9px 13px;
      border-radius:999px;
      background:#FFF6D7;
      border:1px solid #E8D18A;
      white-space:nowrap;
    }
    .mini-link:hover{background:#FFEAA2;color:#352600;transform:translateY(-1px)}

    .scenario-scroll{
      display:grid;
      grid-template-columns:1.2fr .9fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .scenario-card{
      border:1px solid var(--line);
      border-radius:26px;
      background:var(--card);
      padding:24px;
      min-height:224px;
      position:relative;
      overflow:hidden;
      box-shadow:0 8px 26px rgba(31,35,40,.05);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .scenario-card:after{
      content:attr(data-index);
      position:absolute;
      right:18px;
      top:14px;
      font-size:44px;
      font-weight:900;
      line-height:1;
      color:rgba(242,201,76,.42);
      letter-spacing:-.06em;
    }
    .scenario-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-strong);
      border-color:#E1C45F;
    }
    .scenario-card.tall{min-height:282px;background:linear-gradient(180deg,#fff,#FFF9E8)}
    .scenario-card.green{background:linear-gradient(180deg,#fff,#F1FAF7)}
    .scenario-card.orange{background:linear-gradient(180deg,#fff,#FFF1EA)}
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
      position:relative;
      z-index:1;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.76);
      padding:5px 10px;
      font-size:12px;
      font-weight:850;
      color:#5F574E;
    }
    .badge.hot{border-color:#E7C75A;background:#FFF4C8;color:#6D5200}
    .badge.green{border-color:#B7DCD3;background:#EDF9F6;color:#236F63}
    .badge.orange{border-color:#EDC1B0;background:#FFF0E9;color:#9B4229}
    .scenario-card h3{
      font-size:23px;
      line-height:1.25;
      letter-spacing:-.02em;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .scenario-card p{
      color:var(--muted);
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-weight:850;
      color:#2C675E;
      position:relative;
      z-index:1;
    }
    .card-link:hover{color:var(--orange);gap:11px}

    .featured-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:20px;
      align-items:start;
    }
    .feature-main{
      border:1px solid var(--line);
      border-radius:30px;
      background:
        linear-gradient(145deg,#262522,#1F2328 62%,#383026);
      color:#fff;
      padding:30px;
      min-height:520px;
      position:sticky;
      top:96px;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .feature-main:before{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      border-radius:50%;
      background:rgba(242,201,76,.18);
      right:-90px;
      top:-80px;
    }
    .feature-main .badge{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#FFE89A}
    .feature-main h2{
      color:#fff;
      margin-top:20px;
      max-width:420px;
    }
    .feature-main p{color:rgba(255,255,255,.78);font-size:17px}
    .checkline{
      list-style:none;
      padding:0;
      margin:24px 0;
      display:grid;
      gap:13px;
    }
    .checkline li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.86);
    }
    .checkline li:before{
      content:"✓";
      display:inline-flex;
      width:23px;
      height:23px;
      border-radius:50%;
      align-items:center;
      justify-content:center;
      background:var(--yellow);
      color:#201A12;
      font-size:13px;
      font-weight:900;
      flex:0 0 auto;
      margin-top:3px;
    }
    .feed-list{
      display:grid;
      gap:14px;
    }
    .feed-card{
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(255,255,255,.86);
      padding:20px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:14px;
      align-items:center;
      box-shadow:0 8px 26px rgba(31,35,40,.045);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease;
    }
    .feed-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:#E0C258;
      background:#fff;
    }
    .feed-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:8px;
      color:var(--soft);
      font-size:13px;
      font-weight:800;
    }
    .feed-card h3{
      font-size:21px;
      line-height:1.32;
      margin-bottom:8px;
      letter-spacing:-.02em;
    }
    .feed-card p{
      color:var(--muted);
      margin-bottom:0;
      line-height:1.68;
    }
    .feed-action{
      width:48px;
      height:48px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#FFF4C8;
      border:1px solid #E8D18A;
      color:#5E4700;
      font-size:22px;
      font-weight:900;
    }
    .feed-card:hover .feed-action{background:var(--yellow);transform:translateX(3px)}

    .compare-box{
      border:1px solid var(--line);
      border-radius:30px;
      background:rgba(255,255,255,.8);
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .compare-head{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      background:#2A2824;
      color:#fff;
    }
    .compare-head div,.compare-row div{
      padding:18px 20px;
    }
    .compare-head div{
      font-weight:850;
      border-right:1px solid rgba(255,255,255,.12);
    }
    .compare-head div:last-child{border-right:0}
    .compare-row{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      border-top:1px solid var(--line);
      background:#fff;
    }
    .compare-row:nth-child(odd){background:#FFFCF4}
    .compare-row div{
      border-right:1px solid var(--line);
      color:#4F4942;
    }
    .compare-row div:last-child{border-right:0}
    .compare-row strong{display:block;color:var(--ink);margin-bottom:4px}

    .related-wrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }
    .related-card{
      border:1px solid var(--line);
      background:linear-gradient(180deg,#fff,#FFFDF7);
      border-radius:26px;
      padding:24px;
      box-shadow:0 8px 24px rgba(31,35,40,.045);
    }
    .related-card h3{font-size:24px;margin-bottom:10px}
    .related-card p{color:var(--muted);margin-bottom:18px}
    .topic-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .topic-list a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
      padding:13px 15px;
      font-weight:800;
    }
    .topic-list a:hover{
      background:#FFF6D7;
      border-color:#E5C75B;
      transform:translateY(-2px);
    }

    .request-card{
      border:1px solid var(--line);
      border-radius:30px;
      background:#fff;
      box-shadow:var(--shadow);
      padding:28px;
    }
    .request-card h2{font-size:32px}
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field{margin-bottom:14px}
    .field.full{grid-column:1/-1}
    .field label{
      display:block;
      font-size:13px;
      color:#5D574F;
      font-weight:850;
      margin-bottom:7px;
    }
    .field input,.field select,.field textarea{
      width:100%;
      min-height:52px;
      border:1px solid var(--line-strong);
      border-radius:16px;
      background:#FFFCF4;
      padding:12px 14px;
      color:var(--ink);
      box-shadow:none;
      margin:0;
      transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .field textarea{min-height:116px;resize:vertical}
    .field input:focus,.field select:focus,.field textarea:focus{
      outline:none;
      border-color:var(--yellow-dark);
      box-shadow:0 0 0 4px rgba(242,201,76,.22);
      background:#fff;
    }
    .form-note{
      margin:12px 0 0;
      color:var(--soft);
      font-size:13px;
    }

    .faq-area .accordion{
      background:transparent;
      margin:0;
    }
    .faq-area .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:22px;
      background:#fff;
      overflow:hidden;
      box-shadow:0 8px 22px rgba(31,35,40,.04);
    }
    .faq-area .accordion-title{
      border:0;
      color:var(--ink);
      font-size:17px;
      font-weight:850;
      line-height:1.5;
      padding:20px 54px 20px 22px;
      background:#fff;
    }
    .faq-area .accordion-title:hover,.faq-area .accordion-title:focus{
      background:#FFF8E6;
      color:#3A2A00;
    }
    .faq-area .accordion-title:before{
      right:22px;
      margin-top:-11px;
      font-size:24px;
      color:#7B5B00;
    }
    .faq-area .is-active .accordion-title{
      background:#FFF4C8;
      border-bottom:1px solid #E8D18A;
    }
    .faq-area .accordion-content{
      border:0;
      padding:18px 22px 22px;
      color:var(--muted);
      background:#FFFCF4;
      line-height:1.8;
    }

    .cta-panel{
      border:1px solid #E3D3A8;
      border-radius:34px;
      padding:34px;
      background:
        radial-gradient(circle at 85% 20%, rgba(242,201,76,.32), transparent 28%),
        linear-gradient(135deg,#FFF7D9,#FFFDF7 62%,#F3FAF8);
      box-shadow:var(--shadow);
    }
    .cta-panel h2{margin-bottom:10px}
    .cta-panel p{color:var(--muted);font-size:17px;margin-bottom:0}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
      align-items:center;
      height:100%;
    }

    .site-footer{
      background:#EFE8DA;
      border-top:1px solid #E1D6C3;
      padding:48px 0 28px;
      color:#4E4942;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:32px;
      align-items:start;
      margin-bottom:28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:18px;
      font-weight:850;
      margin-bottom:12px;
      color:var(--ink);
    }
    .site-footer p{
      max-width:620px;
      margin:0;
      color:#625B52;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .footer-links a{
      border:1px solid #D8CCB8;
      background:rgba(255,255,255,.45);
      border-radius:999px;
      padding:9px 13px;
      font-weight:750;
      font-size:14px;
    }
    .footer-links a:hover{
      background:#fff;
      border-color:#CBB98F;
      transform:translateY(-1px);
    }
    .copyright{
      border-top:1px solid #D8CCB8;
      padding-top:18px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      color:#766E63;
      font-size:13px;
      flex-wrap:wrap;
    }

    .mobile-sticky-cta{
      display:none;
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:999;
      padding:10px 16px calc(10px + env(safe-area-inset-bottom));
      background:rgba(255,253,247,.94);
      backdrop-filter:blur(12px);
      border-top:1px solid var(--line);
      box-shadow:0 -12px 28px rgba(31,35,40,.08);
    }
    .mobile-sticky-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .mobile-sticky-inner span{
      font-size:13px;
      line-height:1.35;
      color:#4E4942;
      font-weight:750;
    }
    .mobile-sticky-inner .btn{
      min-height:46px;
      padding:0 16px;
      white-space:nowrap;
      font-size:14px;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:96px;
      transform:translateX(-50%) translateY(12px);
      background:#1F2328;
      color:#fff;
      padding:10px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:750;
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease,transform .2s ease;
      z-index:1100;
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }

    @media (max-width:1023px){
      .desktop-menu,.nav-cta{display:none}
      .menu-toggle{display:inline-flex}
      .mobile-panel.is-open{display:block}
      .hero-content{padding:34px 28px}
      .matrix-panel{border-left:0;border-top:1px solid var(--line);padding:24px}
      .scenario-scroll{grid-template-columns:1fr 1fr}
      .featured-layout{grid-template-columns:1fr}
      .feature-main{position:relative;top:auto;min-height:auto}
      .related-wrap{grid-template-columns:1fr}
      .compare-head,.compare-row{grid-template-columns:1fr}
      .compare-head div,.compare-row div{border-right:0;border-top:1px solid rgba(232,224,210,.9)}
      .compare-head div:first-child,.compare-row div:first-child{border-top:0}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:639px){
      body{padding-bottom:78px}
      .site-container{width:calc(100% - 36px)}
      .brand-text strong{font-size:15px}
      .brand-text em{font-size:11px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .hero{padding:30px 0 18px}
      .breadcrumb{font-size:13px;margin-bottom:16px}
      .hero-shell{border-radius:26px}
      .hero-content{padding:28px 20px}
      h1{font-size:34px;letter-spacing:-.035em}
      .hero-lead{font-size:16px;line-height:1.78}
      .hero-actions .btn{width:100%}
      .trust-strip{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:4px;
        scrollbar-width:none;
      }
      .trust-strip::-webkit-scrollbar{display:none}
      .trust-item{white-space:nowrap}
      .matrix-panel{padding:20px}
      .tag-matrix{grid-template-columns:1fr}
      .section{padding:52px 0}
      .section.tight{padding-top:34px}
      .section-head{display:block}
      .section-head .mini-link{margin-top:16px}
      .scenario-scroll{
        display:flex;
        overflow-x:auto;
        gap:14px;
        padding-bottom:8px;
        scroll-snap-type:x mandatory;
        scrollbar-width:none;
        margin-right:-18px;
      }
      .scenario-scroll::-webkit-scrollbar{display:none}
      .scenario-card{
        min-width:82%;
        scroll-snap-align:start;
        min-height:238px;
      }
      .scenario-card.tall{min-height:250px}
      .feed-card{
        grid-template-columns:1fr;
      }
      .feed-action{
        width:auto;
        height:42px;
        border-radius:999px;
        font-size:16px;
      }
      .form-grid{grid-template-columns:1fr}
      .cta-panel{padding:26px 20px;border-radius:28px}
      .cta-actions{justify-content:flex-start;margin-top:20px}
      .cta-actions .btn{width:100%}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
      .mobile-sticky-cta{display:block}
    }

/* roulang page: category1 */
:root{
      --ink:#1F2328;
      --ink-2:#343941;
      --muted:#6F675B;
      --soft:#FAF7EF;
      --soft-2:#FFFDF7;
      --paper:#FFFCF4;
      --line:#E8E0D2;
      --line-2:#DDD1BE;
      --yellow:#F2C94C;
      --yellow-deep:#E9B936;
      --orange:#D85C3A;
      --green:#2E8B7C;
      --white:#FFFFFF;
      --shadow:0 12px 36px rgba(31,35,40,.08);
      --shadow-strong:0 18px 50px rgba(31,35,40,.12);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:12px;
      --container:1220px;
      --header-h:72px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(circle at 14% 8%, rgba(242,201,76,.22), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(46,139,124,.12), transparent 30%),
        linear-gradient(180deg,var(--soft),var(--soft-2) 38%,#fffaf0);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(242,201,76,.45)}
    :focus-visible{outline:3px solid rgba(242,201,76,.85);outline-offset:3px;border-radius:10px}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      height:var(--header-h);
      background:rgba(255,253,247,.92);
      backdrop-filter:saturate(160%) blur(18px);
      border-bottom:1px solid rgba(232,224,210,.9);
    }
    .nav-wrap{
      min-height:var(--header-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      background:var(--ink);
      display:grid;
      place-items:center;
      box-shadow:0 8px 22px rgba(31,35,40,.14);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:before,
    .brand-mark:after{
      content:"";
      position:absolute;
      left:8px;
      right:8px;
      height:5px;
      border-radius:999px;
      background:var(--yellow);
    }
    .brand-mark:before{top:12px}
    .brand-mark:after{bottom:12px;width:18px;right:auto}
    .brand-mark span{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--orange);
      position:absolute;
      right:9px;
      bottom:10px;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-text strong{font-size:16px;font-weight:850;letter-spacing:-.02em}
    .brand-text em{font-style:normal;font-size:12px;color:var(--muted);margin-top:3px}
    .desktop-menu{
      margin:0;
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      flex:1;
    }
    .desktop-menu a{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:8px 15px;
      border:1px solid transparent;
      border-radius:999px;
      font-size:14px;
      font-weight:700;
      color:var(--ink-2);
    }
    .desktop-menu a:hover{
      transform:translateY(-1px);
      background:#F6EEDC;
      border-color:#EFE2C7;
      color:var(--orange);
    }
    .desktop-menu a.active{
      background:#FFF4C8;
      border-color:#EED477;
      color:#151515;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.5);
    }
    .nav-cta{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:50px;
      padding:0 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--yellow);
      color:#171717;
      border-color:rgba(31,35,40,.08);
      box-shadow:0 10px 24px rgba(242,201,76,.28);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      background:var(--yellow-deep);
      color:#111;
      box-shadow:0 14px 30px rgba(242,201,76,.36);
    }
    .btn-dark{
      background:var(--ink);
      color:#fff;
      box-shadow:0 12px 28px rgba(31,35,40,.18);
    }
    .btn-dark:hover{transform:translateY(-2px);background:#111;color:#fff;box-shadow:0 18px 36px rgba(31,35,40,.24)}
    .btn-outline{
      background:rgba(255,255,255,.72);
      color:var(--ink);
      border-color:var(--line);
    }
    .btn-outline:hover{
      background:#FFF4D7;
      border-color:#E7C96A;
      color:#111;
      transform:translateY(-2px);
    }
    .btn-small{
      min-height:38px;
      padding:0 15px;
      font-size:13px;
    }
    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fffaf0;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
    }
    .menu-toggle span{
      width:20px;
      height:2px;
      background:var(--ink);
      border-radius:99px;
      transition:var(--ease);
    }
    .menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle.is-open span:nth-child(2){opacity:0}
    .menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    .mobile-panel{
      display:none;
      position:absolute;
      left:20px;
      right:20px;
      top:calc(var(--header-h) + 8px);
      background:rgba(255,253,247,.98);
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow-strong);
      padding:14px;
    }
    .mobile-panel a:not(.btn){
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:15px 14px;
      border-radius:16px;
      font-weight:800;
      color:var(--ink);
    }
    .mobile-panel a:not(.btn):hover,
    .mobile-panel a:not(.btn).active{
      background:#FFF4C8;
      color:#111;
    }
    .mobile-panel .btn{width:100%;margin-top:8px}

    main{position:relative}
    .section{
      padding:84px 0;
    }
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#FFF3C8;
      border:1px solid #ECD480;
      font-size:13px;
      font-weight:850;
      color:#4A3A00;
      line-height:1;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(46,139,124,.12);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      margin:18px 0 18px;
      font-size:clamp(34px,5vw,58px);
      line-height:1.1;
      letter-spacing:-.045em;
      font-weight:900;
    }
    h2{
      font-size:clamp(28px,3.4vw,40px);
      line-height:1.18;
      letter-spacing:-.035em;
      font-weight:880;
      margin-bottom:16px;
    }
    h3{
      font-size:22px;
      line-height:1.32;
      font-weight:850;
      margin-bottom:10px;
    }
    .lead{
      font-size:18px;
      color:var(--muted);
      max-width:720px;
      line-height:1.85;
      margin-bottom:0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:28px;
    }
    .section-head .lead{font-size:16px;max-width:560px}

    .category-hero{
      padding:42px 0 34px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:36px;
      background:
        linear-gradient(135deg,rgba(255,252,244,.96),rgba(250,247,239,.92)),
        repeating-linear-gradient(90deg,rgba(31,35,40,.04) 0 1px,transparent 1px 42px);
      box-shadow:var(--shadow);
      padding:34px;
    }
    .hero-shell:after{
      content:"";
      position:absolute;
      width:360px;
      height:360px;
      border-radius:50%;
      right:-120px;
      top:-160px;
      background:rgba(242,201,76,.22);
      pointer-events:none;
    }
    .breadcrumbs{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      margin-bottom:16px;
    }
    .breadcrumbs a{color:var(--ink)}
    .breadcrumbs a:hover{color:var(--orange)}
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
      gap:34px;
      align-items:stretch;
      position:relative;
      z-index:1;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .trust-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .trust-item{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:8px 12px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      border-radius:999px;
      color:var(--muted);
      font-size:13px;
      font-weight:750;
    }
    .trust-item b{
      color:var(--ink);
      font-weight:900;
    }
    .coupon-wall{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }
    .main-ticket{
      position:relative;
      padding:24px;
      border-radius:28px;
      background:var(--ink);
      color:#fff;
      box-shadow:0 20px 44px rgba(31,35,40,.2);
      overflow:hidden;
      min-height:242px;
    }
    .main-ticket:before,
    .main-ticket:after{
      content:"";
      position:absolute;
      width:34px;
      height:34px;
      border-radius:50%;
      background:var(--soft);
      top:50%;
      transform:translateY(-50%);
      z-index:1;
    }
    .main-ticket:before{left:-17px}
    .main-ticket:after{right:-17px}
    .ticket-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:18px;
    }
    .ticket-code{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(242,201,76,.16);
      color:var(--yellow);
      border:1px solid rgba(242,201,76,.28);
      font-size:12px;
      font-weight:850;
    }
    .ticket-title{
      font-size:28px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.03em;
      max-width:330px;
      margin-bottom:12px;
    }
    .ticket-desc{
      color:rgba(255,255,255,.76);
      margin-bottom:22px;
      line-height:1.75;
    }
    .ticket-lines{
      display:grid;
      gap:8px;
      margin-bottom:18px;
    }
    .ticket-line{
      height:12px;
      border-radius:99px;
      background:rgba(255,255,255,.11);
      position:relative;
      overflow:hidden;
    }
    .ticket-line span{
      display:block;
      width:62%;
      height:100%;
      border-radius:99px;
      background:rgba(242,201,76,.82);
    }
    .ticket-line:nth-child(2) span{width:45%;background:rgba(46,139,124,.8)}
    .mini-coupons{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mini-coupon{
      padding:14px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 22px rgba(31,35,40,.05);
    }
    .mini-coupon strong{
      display:block;
      font-size:14px;
      line-height:1.3;
      margin-bottom:8px;
    }
    .mini-coupon span{
      display:inline-flex;
      padding:5px 8px;
      border-radius:999px;
      background:#FFF4C8;
      color:#5C4700;
      font-size:12px;
      font-weight:850;
    }

    .filter-bar{
      border:1px solid var(--line);
      background:rgba(255,253,247,.78);
      border-radius:24px;
      padding:12px;
      box-shadow:0 8px 24px rgba(31,35,40,.04);
      overflow-x:auto;
    }
    .filter-bar .button-group{
      margin:0;
      display:flex;
      gap:10px;
      flex-wrap:nowrap;
      min-width:max-content;
    }
    .filter-bar .button{
      margin:0;
      border-radius:999px !important;
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      font-weight:850;
      padding:13px 17px;
    }
    .filter-bar .button:hover,
    .filter-bar .button.is-active{
      background:var(--yellow);
      border-color:#dfbe4a;
      color:#111;
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 342px;
      gap:28px;
      align-items:start;
    }
    .list-stack{
      display:grid;
      gap:16px;
    }
    .guide-item{
      display:grid;
      grid-template-columns:112px minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:20px;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.78);
      box-shadow:0 8px 24px rgba(31,35,40,.04);
      transition:var(--ease);
    }
    .guide-item:hover{
      transform:translateY(-3px);
      border-color:#E4BF50;
      box-shadow:var(--shadow);
      background:#fff;
    }
    .folder-badge{
      min-height:84px;
      border-radius:20px;
      background:
        linear-gradient(180deg,#FFF7D8,#FFEAA2);
      border:1px solid #EAD27C;
      padding:14px;
      position:relative;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      overflow:hidden;
    }
    .folder-badge:before{
      content:"";
      position:absolute;
      left:13px;
      top:12px;
      width:42px;
      height:12px;
      border-radius:8px 8px 0 0;
      background:#E2B946;
    }
    .folder-badge span{
      font-size:12px;
      font-weight:900;
      color:#6B5100;
      position:relative;
      z-index:1;
    }
    .guide-copy .tag-row{margin-bottom:7px}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:5px;
      padding:5px 9px;
      border-radius:999px;
      background:#F7F0E2;
      border:1px solid #E9DDC9;
      color:#64594A;
      font-size:12px;
      font-weight:850;
      line-height:1;
    }
    .tag.green{background:#EAF6F2;border-color:#CDE8E1;color:#1D7568}
    .tag.orange{background:#FFF0E9;border-color:#F3CEBE;color:#B14729}
    .guide-copy h3{font-size:20px;margin-bottom:6px}
    .guide-copy p{color:var(--muted);margin:0;font-size:15px;line-height:1.7}
    .meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:10px;
      color:#857B6E;
      font-size:13px;
      font-weight:700;
    }

    .side-card{
      position:sticky;
      top:94px;
      display:grid;
      gap:16px;
    }
    .panel{
      border:1px solid var(--line);
      background:rgba(255,255,255,.84);
      border-radius:26px;
      padding:22px;
      box-shadow:0 8px 26px rgba(31,35,40,.05);
    }
    .panel h3{font-size:20px}
    .toc-list{
      display:grid;
      gap:9px;
      margin:14px 0 0;
    }
    .toc-list a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:11px 12px;
      border-radius:14px;
      background:#FAF4E8;
      color:var(--ink);
      font-weight:800;
      font-size:14px;
    }
    .toc-list a:hover{
      background:#FFF1BF;
      transform:translateX(2px);
    }
    .request-mini{
      background:linear-gradient(180deg,#1F2328,#2B2F35);
      color:#fff;
    }
    .request-mini p{color:rgba(255,255,255,.72)}
    .request-mini .btn{width:100%;margin-top:6px}

    .feature-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
    }
    .feature-card{
      border:1px solid var(--line);
      background:#fff;
      border-radius:28px;
      padding:24px;
      box-shadow:0 9px 28px rgba(31,35,40,.05);
      transition:var(--ease);
      min-height:220px;
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{
      transform:translateY(-4px);
      border-color:#E1BD4E;
      box-shadow:var(--shadow);
    }
    .feature-card.large{
      background:
        linear-gradient(135deg,#FFFFFF,#FFF7D8);
      min-height:320px;
      padding:30px;
    }
    .feature-card.large:after{
      content:"校对";
      position:absolute;
      right:20px;
      bottom:6px;
      font-size:82px;
      line-height:1;
      font-weight:950;
      color:rgba(31,35,40,.05);
      letter-spacing:-.08em;
    }
    .subtitle-lines{
      display:grid;
      gap:10px;
      margin:22px 0;
      max-width:520px;
    }
    .subtitle-row{
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 12px;
      border-radius:14px;
      background:rgba(31,35,40,.05);
      color:#473F35;
      font-weight:750;
    }
    .subtitle-row mark{
      background:var(--yellow);
      border-radius:7px;
      padding:1px 6px;
      color:#181818;
      font-weight:900;
    }
    .feature-column{
      display:grid;
      gap:18px;
    }
    .feature-card p{color:var(--muted);margin-bottom:16px}
    .feature-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#B5482B;
      font-weight:900;
    }
    .feature-link:hover{gap:10px;color:#8D331D}

    .process-card{
      border-radius:32px;
      border:1px solid var(--line);
      background:
        linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,248,225,.9));
      padding:28px;
      box-shadow:var(--shadow);
    }
    .steps{
      counter-reset:step;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:20px;
    }
    .step{
      counter-increment:step;
      padding:18px;
      border:1px solid var(--line);
      border-radius:22px;
      background:#fff;
      min-height:176px;
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:38px;
      height:38px;
      border-radius:14px;
      background:var(--yellow);
      font-weight:950;
      margin-bottom:14px;
    }
    .step h3{font-size:18px}
    .step p{font-size:14px;color:var(--muted);margin:0;line-height:1.7}

    .form-grid{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:22px;
      align-items:stretch;
    }
    .form-note{
      border-radius:28px;
      padding:26px;
      background:var(--ink);
      color:#fff;
    }
    .form-note p{color:rgba(255,255,255,.74)}
    .check-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(255,255,255,.86);
      font-weight:700;
    }
    .check-list li:before{
      content:"✓";
      width:22px;
      height:22px;
      border-radius:50%;
      background:var(--yellow);
      color:#111;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      flex:0 0 auto;
      margin-top:3px;
    }
    .request-form{
      border:1px solid var(--line);
      border-radius:28px;
      background:#fff;
      padding:24px;
      box-shadow:0 9px 28px rgba(31,35,40,.05);
    }
    .field-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    label{
      color:var(--ink);
      font-size:14px;
      font-weight:850;
      margin-bottom:7px;
    }
    input,select,textarea{
      width:100%;
      min-height:52px;
      border:1px solid var(--line-2);
      border-radius:16px;
      background:#FFFDF7;
      color:var(--ink);
      padding:12px 14px;
      box-shadow:none;
      transition:var(--ease);
    }
    textarea{min-height:112px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      border-color:var(--yellow-deep);
      box-shadow:0 0 0 4px rgba(242,201,76,.22);
      background:#fff;
      outline:none;
    }
    .form-tip{
      margin:12px 0 0;
      color:var(--muted);
      font-size:13px;
    }

    .faq-wrap{
      border-radius:32px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.74);
      padding:14px;
      box-shadow:var(--shadow);
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:10px;
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      background:#fffdf7;
      transition:var(--ease);
    }
    .accordion-item:last-child{margin-bottom:0}
    .accordion-item.is-active{
      border-color:#E1BD4E;
      box-shadow:0 10px 24px rgba(242,201,76,.12);
    }
    .accordion-title{
      border:0 !important;
      color:var(--ink) !important;
      font-size:17px;
      font-weight:900;
      line-height:1.5;
      padding:19px 52px 19px 20px;
      background:transparent;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:#FFF4C8;
      color:var(--ink) !important;
    }
    .accordion-title:before{
      right:20px;
      margin-top:-10px;
      font-size:24px;
      color:var(--orange);
    }
    .accordion-content{
      border:0 !important;
      background:#fffdf7;
      color:var(--muted);
      padding:0 20px 20px;
      line-height:1.85;
    }

    .related-strip{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:16px;
    }
    .related-card{
      padding:22px;
      border-radius:24px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 8px 24px rgba(31,35,40,.04);
      transition:var(--ease);
    }
    .related-card:hover{
      transform:translateY(-3px);
      border-color:#E1BD4E;
      box-shadow:var(--shadow);
    }
    .related-card h3{font-size:19px}
    .related-card p{color:var(--muted);font-size:14px;margin-bottom:16px}

    .bottom-cta{
      border-radius:36px;
      border:1px solid #E8D18B;
      background:
        radial-gradient(circle at 8% 20%, rgba(242,201,76,.32), transparent 32%),
        linear-gradient(135deg,#FFF7D8,#FFFCF4);
      padding:34px;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      align-items:center;
      gap:28px;
    }
    .bottom-cta h2{margin-bottom:10px}
    .bottom-cta p{color:var(--muted);max-width:680px;margin-bottom:0}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }

    .site-footer{
      margin-top:52px;
      padding:48px 0 30px;
      background:#F1EADF;
      border-top:1px solid #E2D7C6;
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:36px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--ink);
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-brand .brand-mark{width:36px;height:36px;border-radius:14px}
    .site-footer p{
      max-width:560px;
      margin:0;
      color:var(--muted);
      line-height:1.8;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
      max-width:420px;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(232,224,210,.9);
      color:var(--ink);
      font-size:14px;
      font-weight:800;
    }
    .footer-links a:hover{
      background:#FFF4C8;
      border-color:#E1BD4E;
      transform:translateY(-1px);
    }
    .copyright{
      margin-top:32px;
      padding-top:20px;
      border-top:1px solid #DDD1BE;
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      font-size:13px;
      color:#7A7165;
    }

    .fixed-cta{
      position:fixed;
      left:16px;
      right:16px;
      bottom:14px;
      z-index:900;
      display:none;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 10px 10px 16px;
      border-radius:999px;
      border:1px solid rgba(232,224,210,.96);
      background:rgba(255,253,247,.96);
      box-shadow:0 14px 40px rgba(31,35,40,.16);
      backdrop-filter:blur(16px);
    }
    .fixed-cta span{
      color:var(--ink);
      font-weight:850;
      font-size:13px;
      line-height:1.35;
    }
    .fixed-cta .btn{
      min-height:46px;
      padding:0 16px;
      font-size:14px;
    }

    @media (max-width: 1023px){
      :root{--header-h:68px}
      .desktop-menu,.nav-cta{display:none}
      .menu-toggle{display:flex}
      .mobile-panel.is-open{display:grid;gap:4px}
      .hero-grid{grid-template-columns:1fr}
      .content-layout{grid-template-columns:1fr}
      .side-card{position:static;grid-template-columns:1fr 1fr}
      .steps{grid-template-columns:repeat(2,1fr)}
      .form-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .bottom-cta{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
    }

    @media (max-width: 760px){
      body{padding-bottom:88px}
      .site-container{width:calc(100% - 36px)}
      .brand-text strong{font-size:15px}
      .brand-text em{font-size:11px}
      .section{padding:58px 0}
      .section-tight{padding:42px 0}
      .category-hero{padding:24px 0 20px}
      .hero-shell{padding:22px;border-radius:28px}
      h1{font-size:36px;letter-spacing:-.04em}
      .lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .trust-strip{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:4px;
      }
      .trust-item{flex:0 0 auto}
      .mini-coupons{grid-template-columns:1fr}
      .section-head{
        display:block;
        margin-bottom:20px;
      }
      .section-head .lead{margin-top:8px}
      .guide-item{
        grid-template-columns:1fr;
        gap:12px;
        padding:18px;
      }
      .folder-badge{min-height:70px}
      .guide-item .btn{width:100%}
      .side-card{grid-template-columns:1fr}
      .feature-grid{grid-template-columns:1fr}
      .feature-card.large{min-height:auto}
      .steps{grid-template-columns:1fr}
      .field-grid{grid-template-columns:1fr}
      .related-strip{grid-template-columns:1fr}
      .bottom-cta{padding:24px;border-radius:28px}
      .cta-actions .btn{width:100%}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
      .fixed-cta{display:flex}
    }

    @media (max-width: 420px){
      .site-container{width:calc(100% - 28px)}
      .brand-mark{width:38px;height:38px}
      .brand-text em{display:none}
      .hero-shell{padding:18px}
      h1{font-size:32px}
      .main-ticket{padding:20px}
      .ticket-title{font-size:24px}
      .filter-bar{margin-left:-4px;margin-right:-4px}
      .accordion-title{font-size:16px}
    }
