/* roulang page: index */
:root{
      --bg:#fbf6ee;
      --panel:#fffaf2;
      --panel-2:#f7ecda;
      --line:rgba(97,62,31,.12);
      --line-2:rgba(97,62,31,.18);
      --text:#2e2117;
      --muted:#7f6957;
      --brand:#9a5c2e;
      --brand-2:#d07a3a;
      --brand-3:#efb15c;
      --accent:#5c7c4c;
      --warn:#d58a3a;
      --shadow:0 12px 30px rgba(80,52,31,.08);
      --shadow-2:0 18px 40px rgba(80,52,31,.12);
      --radius:24px;
      --radius-sm:16px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(208,122,58,.12), transparent 32%),
        radial-gradient(circle at top right, rgba(239,177,92,.12), transparent 24%),
        linear-gradient(180deg,#fcf8f1 0%, #fbf6ee 30%, #f8f1e4 100%);
      line-height:1.7;
      letter-spacing:.2px;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    ::selection{background:rgba(208,122,58,.18)}
    .container{width:min(100% - 32px, var(--container)); margin-inline:auto}
    .glass{
      background:rgba(255,250,242,.86);
      backdrop-filter:blur(10px);
      border:1px solid rgba(97,62,31,.08);
      box-shadow:var(--shadow);
    }
    .soft-border{border:1px solid var(--line)}
    .section{padding:28px 0}
    .section-lg{padding:40px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 14px;border-radius:999px;
      background:rgba(208,122,58,.10);
      color:var(--brand);
      font-weight:700;font-size:13px;
      border:1px solid rgba(208,122,58,.16);
    }
    .eyebrow-dot{
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg,var(--brand-2),var(--brand-3));
      box-shadow:0 0 0 4px rgba(208,122,58,.10);
    }
    .title{
      font-size:clamp(28px, 4vw, 48px);
      line-height:1.08;
      letter-spacing:-.5px;
      margin:14px 0 14px;
      font-weight:900;
    }
    .title-sm{
      font-size:clamp(22px, 2.6vw, 32px);
      line-height:1.18;
      font-weight:850;
      margin:0 0 12px;
    }
    .sub{
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      border-radius:16px;
      padding:12px 18px;
      font-weight:800;
      transition:all .2s ease;
      border:1px solid transparent;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      color:#fff;
      box-shadow:0 12px 24px rgba(154,92,46,.22);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 26px rgba(154,92,46,.28)}
    .btn-secondary{
      background:#fff;
      color:var(--text);
      border-color:rgba(97,62,31,.14);
    }
    .btn-secondary:hover{transform:translateY(-2px);border-color:rgba(208,122,58,.35);box-shadow:0 10px 24px rgba(80,52,31,.08)}
    .btn-ghost{
      background:rgba(255,255,255,.45);
      color:var(--brand);
      border-color:rgba(208,122,58,.18);
    }
    .btn-ghost:hover{background:#fff;transform:translateY(-2px)}
    .chip{
      display:inline-flex;align-items:center;gap:6px;
      font-size:12px;font-weight:700;
      padding:7px 11px;border-radius:999px;
      background:rgba(97,62,31,.05);
      color:var(--muted);
      border:1px solid rgba(97,62,31,.08);
    }
    .chip.hot{background:rgba(208,122,58,.12);color:var(--brand)}
    .chip.good{background:rgba(92,124,76,.10);color:var(--accent)}
    .card{
      background:rgba(255,250,242,.9);
      border:1px solid rgba(97,62,31,.08);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:all .22s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-2);
      border-color:rgba(208,122,58,.22);
    }
    .card-pad{padding:22px}
    .card-soft{
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(247,236,218,.68));
      border:1px solid rgba(97,62,31,.08);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .grid-2{display:grid;grid-template-columns:1.1fr .9fr;gap:22px}
    .grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
    .grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
    .muted{color:var(--muted)}
    .nav-wrap{
      position:sticky;top:0;z-index:40;
      background:rgba(251,246,238,.86);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(97,62,31,.10);
    }
    .topbar{
      display:flex;align-items:center;justify-content:space-between;gap:16px;
      padding:14px 0 12px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;min-width:0;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      background:linear-gradient(135deg,var(--brand),var(--brand-3));
      box-shadow:0 12px 24px rgba(154,92,46,.22);
      position:relative;flex:none;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";position:absolute;border-radius:999px;background:rgba(255,255,255,.88);
    }
    .brand-mark:before{width:18px;height:18px;left:11px;top:12px}
    .brand-mark:after{width:6px;height:6px;right:10px;bottom:10px;opacity:.8}
    .brand-text{min-width:0}
    .brand-text strong{
      display:block;font-size:16px;line-height:1.2;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
    }
    .brand-text span{display:block;font-size:12px;color:var(--muted);margin-top:2px}
    .search-box{
      display:flex;align-items:center;gap:10px;
      min-width:280px;max-width:390px;flex:1;
      background:#fff;
      border:1px solid rgba(97,62,31,.12);
      border-radius:999px;
      padding:10px 14px;
      box-shadow:0 8px 18px rgba(80,52,31,.05);
    }
    .search-box input{
      border:none;outline:none;background:transparent;flex:1;color:var(--text)
    }
    .search-box input::placeholder{color:#a38d7d}
    .nav-tabs{
      display:flex;align-items:center;gap:10px;
      overflow:auto;
      padding:0 2px 14px;
      scrollbar-width:thin;
    }
    .nav-tabs::-webkit-scrollbar{height:8px}
    .nav-tabs::-webkit-scrollbar-thumb{background:rgba(154,92,46,.22);border-radius:999px}
    .nav-tab{
      flex:none;
      display:inline-flex;align-items:center;gap:8px;
      padding:10px 14px;border-radius:999px;
      border:1px solid rgba(97,62,31,.10);
      background:rgba(255,255,255,.54);
      color:var(--muted);
      font-weight:700;font-size:14px;
      transition:all .2s ease;
    }
    .nav-tab:hover,.nav-tab:focus-visible{color:var(--brand);border-color:rgba(208,122,58,.30);transform:translateY(-1px);background:#fff}
    .nav-tab.active{
      color:#fff;background:linear-gradient(135deg,var(--brand),var(--brand-2));
      border-color:transparent;box-shadow:0 12px 22px rgba(154,92,46,.18)
    }
    .nav-pill{
      display:inline-flex;align-items:center;gap:6px;
      padding:4px 10px;border-radius:999px;
      background:rgba(92,124,76,.10);color:var(--accent);
      font-size:12px;font-weight:800;
    }
    .hero{
      padding:28px 0 10px;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:28px;
      background:
        linear-gradient(140deg, rgba(255,255,255,.92), rgba(247,236,218,.94)),
        radial-gradient(circle at top right, rgba(239,177,92,.18), transparent 26%),
        radial-gradient(circle at bottom left, rgba(208,122,58,.14), transparent 25%);
      border:1px solid rgba(97,62,31,.08);
      box-shadow:0 24px 60px rgba(80,52,31,.10);
    }
    .hero-panel:before{
      content:"";position:absolute;inset:auto -90px -90px auto;width:240px;height:240px;
      background:radial-gradient(circle, rgba(208,122,58,.18), rgba(208,122,58,.04) 60%, transparent 68%);
      border-radius:50%;
      pointer-events:none;
    }
    .hero-panel:after{
      content:"";position:absolute;inset:18px auto auto 18px;width:72px;height:72px;
      border-radius:24px;
      background:linear-gradient(135deg, rgba(154,92,46,.10), rgba(239,177,92,.14));
      transform:rotate(18deg);
      pointer-events:none;
    }
    .hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:center;position:relative;z-index:1}
    .hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 20px}
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:22px 0 18px}
    .mini-list{
      display:grid;gap:10px;margin-top:12px
    }
    .mini-list .item{
      display:flex;align-items:flex-start;gap:10px;
      padding:11px 12px;border-radius:16px;
      background:rgba(255,255,255,.6);
      border:1px solid rgba(97,62,31,.08);
    }
    .bullet{
      width:20px;height:20px;border-radius:999px;flex:none;
      display:inline-flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,rgba(154,92,46,.15),rgba(239,177,92,.18));
      color:var(--brand);font-size:12px;font-weight:900;
    }
    .bento{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .bento .tile{
      border-radius:24px;
      padding:16px;
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,236,218,.90));
      border:1px solid rgba(97,62,31,.08);
      box-shadow:0 12px 24px rgba(80,52,31,.06);
      min-height:132px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .tile .tagline{
      display:flex;align-items:center;justify-content:space-between;gap:12px
    }
    .tile .number{
      font-size:30px;font-weight:950;letter-spacing:-1px;color:var(--brand)
    }
    .tile .caption{font-size:13px;color:var(--muted)}
    .avatar-wall{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:12px
    }
    .avatar{
      width:42px;height:42px;border-radius:50%;
      background:linear-gradient(135deg,#e8c59d,#fff);
      border:2px solid rgba(255,255,255,.92);
      box-shadow:0 8px 18px rgba(80,52,31,.08);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;color:var(--brand);
      margin-left:-6px;
    }
    .stat-strip{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .stat{
      padding:20px 18px;border-radius:24px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(97,62,31,.08);
    }
    .stat strong{
      display:block;font-size:30px;font-weight:950;line-height:1;color:var(--brand);
      letter-spacing:-.8px;
    }
    .stat span{display:block;margin-top:8px;color:var(--muted);font-size:13px}
    .section-head{
      display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:18px
    }
    .section-head p{max-width:680px;margin:0;color:var(--muted)}
    .service-card{
      padding:20px;border-radius:24px;
      background:linear-gradient(180deg,#fffdf9, #f8efdf);
      border:1px solid rgba(97,62,31,.08);
      box-shadow:var(--shadow);
    }
    .service-card .icon{
      width:48px;height:48px;border-radius:16px;
      background:linear-gradient(135deg,rgba(154,92,46,.12),rgba(239,177,92,.18));
      display:flex;align-items:center;justify-content:center;
      color:var(--brand);font-size:22px;font-weight:900;margin-bottom:14px;
    }
    .service-card h3{margin:0 0 8px;font-size:18px;line-height:1.3}
    .service-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.8}
    .service-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:14px}
    .service-meta .idx{font-size:12px;font-weight:800;color:var(--brand)}
    .progress{
      width:100%;height:8px;border-radius:999px;background:rgba(97,62,31,.08);overflow:hidden;margin-top:14px
    }
    .progress > span{
      display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--brand),var(--brand-3))
    }
    .outline-list{
      display:grid;gap:12px
    }
    .outline-item{
      display:flex;gap:14px;align-items:flex-start;
      padding:16px 16px;border-radius:20px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(97,62,31,.08);
    }
    .outline-item strong{display:block;margin-bottom:4px}
    .outline-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.8}
    .halo{
      width:40px;height:40px;border-radius:14px;
      background:linear-gradient(135deg, rgba(208,122,58,.16), rgba(239,177,92,.20));
      display:flex;align-items:center;justify-content:center;
      color:var(--brand);font-weight:900;flex:none;
    }
    .data-card{
      padding:22px;border-radius:28px;
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,236,218,.76));
      border:1px solid rgba(97,62,31,.08);
      box-shadow:var(--shadow);
    }
    .data-card strong{display:block;font-size:42px;line-height:1;color:var(--brand);font-weight:950;letter-spacing:-1.2px}
    .data-card span{display:block;margin-top:8px;color:var(--muted);font-size:14px}
    .ring{
      width:96px;height:96px;border-radius:50%;
      background:conic-gradient(var(--brand) 0 76%, rgba(97,62,31,.10) 76% 100%);
      padding:10px;
      margin-left:auto;
    }
    .ring > div{
      width:100%;height:100%;border-radius:50%;
      background:linear-gradient(180deg,#fff,#f7ecda);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;color:var(--brand)
    }
    .quote-grid{
      display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px
    }
    .quote{
      padding:20px;border-radius:24px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(97,62,31,.08);
      box-shadow:var(--shadow);
    }
    .quote-head{
      display:flex;align-items:center;gap:12px;margin-bottom:14px
    }
    .quote-head .face{
      width:46px;height:46px;border-radius:50%;
      background:linear-gradient(135deg,#e7c199,#fff3df);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;color:var(--brand);
      flex:none;
    }
    .quote-head strong{display:block;font-size:15px}
    .quote-head span{display:block;color:var(--muted);font-size:12px}
    .quote p{margin:0;color:#443225;font-size:14px;line-height:1.8}
    .star{color:#d58a3a;font-weight:900}
    .compare-grid{
      display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px
    }
    .compare{
      padding:20px;border-radius:24px;
      background:linear-gradient(180deg,#fff,#f8f1e4);
      border:1px solid rgba(97,62,31,.08);
      position:relative;
    }
    .compare.featured{
      background:linear-gradient(180deg,rgba(255,252,246,.98),rgba(247,236,218,.95));
      border-color:rgba(208,122,58,.22);
      box-shadow:0 18px 38px rgba(154,92,46,.10);
      transform:translateY(-2px);
    }
    .compare h3{margin:8px 0 10px;font-size:18px}
    .compare ul{margin:12px 0 0;padding:0;list-style:none;display:grid;gap:8px}
    .compare li{
      display:flex;gap:8px;align-items:flex-start;
      color:var(--muted);font-size:14px;line-height:1.7
    }
    .compare li:before{
      content:"•";color:var(--brand);font-weight:900;flex:none;margin-top:1px
    }
    .faq{
      display:grid;gap:12px
    }
    .faq-item{
      border-radius:20px;
      border:1px solid rgba(97,62,31,.10);
      background:rgba(255,255,255,.80);
      overflow:hidden;
      box-shadow:0 10px 22px rgba(80,52,31,.05);
    }
    .faq-q{
      width:100%;
      display:flex;align-items:center;justify-content:space-between;gap:14px;
      padding:18px 18px;
      background:transparent;border:0;color:var(--text);
      font-weight:800;text-align:left;cursor:pointer;
    }
    .faq-q span{font-size:16px;line-height:1.45}
    .faq-a{
      max-height:0;overflow:hidden;
      transition:max-height .28s ease;
      border-top:1px solid transparent;
    }
    .faq-item.open .faq-a{
      max-height:220px;
      border-top-color:rgba(97,62,31,.08);
    }
    .faq-a p{
      margin:0;padding:0 18px 18px;color:var(--muted);font-size:14px;line-height:1.86
    }
    .faq-mark{
      width:30px;height:30px;border-radius:999px;
      background:rgba(208,122,58,.12);
      color:var(--brand);
      display:flex;align-items:center;justify-content:center;
      flex:none;font-size:18px;font-weight:900;
      transition:transform .25s ease;
    }
    .faq-item.open .faq-mark{transform:rotate(45deg)}
    .contact-box{
      padding:24px;border-radius:30px;
      background:linear-gradient(135deg, rgba(154,92,46,.96), rgba(208,122,58,.95));
      color:#fff;
      box-shadow:0 22px 50px rgba(154,92,46,.22);
      position:relative;overflow:hidden;
    }
    .contact-box:after{
      content:"";position:absolute;right:-40px;top:-40px;width:180px;height:180px;border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .contact-box .sub{color:rgba(255,255,255,.85)}
    .contact-form{
      display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:18px;position:relative;z-index:1
    }
    .field{
      display:flex;flex-direction:column;gap:8px
    }
    .field label{font-size:13px;font-weight:800}
    .field input,.field textarea{
      width:100%;
      padding:13px 14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.95);
      color:var(--text);
      outline:none;
      transition:all .18s ease;
    }
    .field textarea{min-height:112px;resize:vertical;grid-column:1/-1}
    .field input:focus,.field textarea:focus{
      border-color:rgba(255,255,255,.75);
      box-shadow:0 0 0 4px rgba(255,255,255,.16);
    }
    .footer{
      padding:26px 0 34px;
      color:rgba(46,33,23,.84);
    }
    .footer-box{
      padding:22px;border-radius:28px;
      background:rgba(255,250,242,.84);
      border:1px solid rgba(97,62,31,.08);
      box-shadow:var(--shadow);
    }
    .footer-grid{
      display:grid;grid-template-columns:1.25fr .75fr .75fr;gap:20px;align-items:start
    }
    .footer h4{margin:0 0 12px;font-size:16px}
    .footer p,.footer a{color:var(--muted);font-size:14px;line-height:1.85}
    .footer-links{display:grid;gap:10px}
    .footer-links a:hover{color:var(--brand)}
    .copyright{
      margin-top:18px;padding-top:16px;border-top:1px solid rgba(97,62,31,.08);
      display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;color:var(--muted);font-size:13px
    }
    .active-line{
      color:#fff !important;
    }
    .float-cta{
      position:sticky;bottom:14px;z-index:20;
      margin-top:18px;
    }
    .float-cta-inner{
      display:flex;align-items:center;justify-content:space-between;gap:14px;
      padding:14px 16px;border-radius:20px;
      background:rgba(46,33,23,.92);
      color:#fff;
      box-shadow:0 18px 34px rgba(46,33,23,.24);
    }
    .float-cta p{margin:0;color:rgba(255,255,255,.82);font-size:14px}
    .kicker{
      display:flex;align-items:center;gap:10px;flex-wrap:wrap
    }
    .list-clean{list-style:none;padding:0;margin:0}
    .list-clean li{padding:10px 0;border-bottom:1px dashed rgba(97,62,31,.10);color:var(--muted)}
    .list-clean li:last-child{border-bottom:0}
    .badge-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
    .section-note{
      margin-top:10px;font-size:14px;color:var(--muted)
    }
    .link-card{
      display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
      padding:18px;border-radius:24px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(97,62,31,.08);
      transition:all .2s ease;
    }
    .link-card:hover{transform:translateY(-2px);border-color:rgba(208,122,58,.22);box-shadow:var(--shadow)}
    .link-card strong{display:block;font-size:16px;margin-bottom:5px}
    .link-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}
    .link-card .arrow{
      width:36px;height:36px;border-radius:12px;flex:none;
      display:flex;align-items:center;justify-content:center;
      background:rgba(208,122,58,.12);color:var(--brand);font-weight:900
    }
    .tabs-fine{
      display:flex;gap:10px;flex-wrap:wrap
    }
    .tabs-fine .chip{
      background:rgba(255,255,255,.72)
    }
    .split{
      display:grid;grid-template-columns:1fr 1fr;gap:16px
    }
    .mini-rail{
      display:grid;gap:12px
    }
    .mini-rail .rail-card{
      padding:16px;border-radius:20px;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(97,62,31,.08);
    }
    .rail-card strong{display:block;margin-bottom:6px}
    .rail-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.8}
    .badge-bar{
      display:flex;gap:10px;flex-wrap:wrap;margin-top:14px
    }
    @media (max-width: 1024px){
      .hero-grid,.grid-2,.grid-4,.compare-grid,.footer-grid,.stat-strip,.grid-3,.quote-grid,.contact-form,.split{grid-template-columns:1fr 1fr}
      .grid-3{grid-template-columns:1fr 1fr}
      .search-box{min-width:220px}
    }
    @media (max-width: 768px){
      .topbar{flex-direction:column;align-items:stretch}
      .brand{justify-content:space-between}
      .search-box{min-width:0;max-width:none}
      .hero-panel{padding:18px;border-radius:28px}
      .hero-grid,.grid-2,.grid-4,.compare-grid,.footer-grid,.stat-strip,.grid-3,.quote-grid,.contact-form,.split{grid-template-columns:1fr}
      .hero-actions{flex-direction:column}
      .btn{width:100%}
      .section{padding:22px 0}
      .section-lg{padding:30px 0}
      .title{font-size:clamp(30px, 8vw, 44px)}
      .bento{grid-template-columns:1fr 1fr}
      .float-cta-inner{flex-direction:column;align-items:flex-start}
      .nav-tabs{padding-bottom:10px}
    }
    @media (max-width: 520px){
      .container{width:min(100% - 20px, var(--container))}
      .hero-panel{padding:16px}
      .bento{grid-template-columns:1fr}
      .card-pad,.service-card,.quote,.compare,.data-card,.contact-box,.footer-box{padding:18px}
      .title-sm{font-size:22px}
      .stat strong,.data-card strong{font-size:32px}
      .faq-q{padding:16px}
      .faq-a p{padding:0 16px 16px}
      .brand-mark{width:38px;height:38px}
      .brand-text strong{font-size:15px}
    }

/* roulang page: category1 */
:root {
      --bg: #fff8ed;
      --bg-soft: #fff2dd;
      --panel: #ffffff;
      --panel-warm: #fff7ea;
      --text: #2b2118;
      --muted: #7b6655;
      --weak: #a58c78;
      --line: #ead8c0;
      --brand: #a75f23;
      --brand-dark: #734016;
      --brand-light: #f4a742;
      --accent: #d84f2a;
      --green: #5f8f55;
      --yellow: #f2c45b;
      --radius: 24px;
      --radius-sm: 16px;
      --shadow: 0 18px 55px rgba(115, 64, 22, .12);
      --shadow-sm: 0 10px 30px rgba(115, 64, 22, .08);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(244, 167, 66, .18), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(216, 79, 42, .12), transparent 24%),
        linear-gradient(180deg, #fff8ed 0%, #fffdf8 48%, #fff7eb 100%);
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, .84);
      color: var(--text);
      outline: none;
      padding: 13px 15px;
      transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

    input:focus,
    textarea:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(244, 167, 66, .38);
      outline-offset: 3px;
    }

    input:focus,
    textarea:focus {
      border-color: var(--brand-light);
      box-shadow: 0 0 0 4px rgba(244, 167, 66, .16);
      background: #fff;
    }

    ::selection {
      background: rgba(244, 167, 66, .32);
    }

    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }

    ::-webkit-scrollbar-thumb {
      background: #d9b98f;
      border-radius: 999px;
    }

    ::-webkit-scrollbar-track {
      background: #fff2dd;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 248, 237, .92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(234, 216, 192, .88);
    }

    .topbar {
      display: grid;
      grid-template-columns: auto minmax(220px, 1fr) auto;
      align-items: center;
      gap: 18px;
      padding: 15px 0 12px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: -.03em;
      color: var(--brand-dark);
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
      box-shadow: 0 12px 28px rgba(167, 95, 35, .26);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      width: 18px;
      height: 60px;
      position: absolute;
      right: 3px;
      top: -10px;
      background: rgba(255, 255, 255, .18);
      transform: rotate(30deg);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-title {
      font-size: 18px;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
      letter-spacing: 0;
    }

    .search-wrap {
      position: relative;
      max-width: 470px;
      justify-self: center;
      width: 100%;
    }

    .search-wrap span {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--weak);
    }

    .search-wrap input {
      padding-left: 42px;
      height: 44px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .74);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: -.01em;
      border: 1px solid transparent;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
      box-shadow: 0 14px 34px rgba(167, 95, 35, .24);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 42px rgba(167, 95, 35, .32);
    }

    .btn-secondary {
      color: var(--brand-dark);
      background: rgba(255, 255, 255, .82);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      border-color: rgba(244, 167, 66, .72);
      box-shadow: var(--shadow-sm);
      background: #fff;
    }

    .btn-soft {
      color: var(--brand-dark);
      background: #fff3dc;
      border-color: #f0d1a1;
    }

    .tabs-row {
      border-top: 1px solid rgba(234, 216, 192, .62);
    }

    .tabs {
      display: flex;
      gap: 10px;
      padding: 10px 0 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
      display: none;
    }

    .tab {
      flex: 0 0 auto;
      padding: 9px 15px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, .62);
      border: 1px solid rgba(234, 216, 192, .8);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .tab:hover,
    .tab.active {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      border-color: transparent;
      box-shadow: 0 10px 24px rgba(167, 95, 35, .18);
    }

    .hero {
      padding: 34px 0 56px;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      background:
        linear-gradient(120deg, rgba(73, 39, 14, .92), rgba(139, 75, 24, .86)),
        radial-gradient(circle at 78% 20%, rgba(244, 167, 66, .45), transparent 34%);
      color: #fff;
      box-shadow: var(--shadow);
      min-height: 520px;
    }

    .hero-shell::before,
    .hero-shell::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
    }

    .hero-shell::before {
      width: 380px;
      height: 380px;
      right: -110px;
      top: -120px;
      background: rgba(244, 167, 66, .22);
    }

    .hero-shell::after {
      width: 260px;
      height: 260px;
      left: 44%;
      bottom: -140px;
      background: rgba(255, 255, 255, .1);
    }

    .kv-strip {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 22px;
      background: rgba(255, 246, 225, .11);
      border-bottom: 1px solid rgba(255, 255, 255, .14);
      backdrop-filter: blur(12px);
    }

    .countdown {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ffe6bd;
      font-weight: 800;
      font-size: 14px;
    }

    .countdown b {
      display: inline-grid;
      place-items: center;
      min-width: 36px;
      height: 30px;
      padding: 0 8px;
      color: #4b2a12;
      background: #ffd47a;
      border-radius: 10px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 26px;
      align-items: center;
      padding: 48px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      color: #ffe0aa;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .eyebrow i,
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #8fee89;
      box-shadow: 0 0 0 5px rgba(143, 238, 137, .14);
    }

    h1 {
      margin: 18px 0 16px;
      font-size: clamp(34px, 5.4vw, 64px);
      line-height: 1.06;
      letter-spacing: -.06em;
      font-weight: 950;
    }

    .hero-lead {
      max-width: 650px;
      color: rgba(255, 246, 230, .86);
      font-size: 18px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-notes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 28px;
    }

    .note {
      padding: 13px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .14);
      color: #ffefd4;
      font-size: 14px;
      font-weight: 700;
    }

    .zone-board {
      display: grid;
      gap: 14px;
      padding: 18px;
      border-radius: 28px;
      background: rgba(255, 250, 240, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
    }

    .board-card {
      background: rgba(255, 255, 255, .92);
      color: var(--text);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 16px 32px rgba(44, 27, 13, .16);
      border: 1px solid rgba(255, 255, 255, .5);
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .board-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 40px rgba(44, 27, 13, .22);
    }

    .board-card.featured {
      background: linear-gradient(135deg, #fffaf0, #ffe5b3);
    }

    .board-top,
    .card-top,
    .list-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      color: var(--brand-dark);
      background: #fff0d1;
      border: 1px solid #f0cf9b;
      white-space: nowrap;
    }

    .badge.hot {
      color: #fff;
      background: linear-gradient(135deg, var(--accent), var(--brand-light));
      border-color: transparent;
    }

    .board-card h2,
    .board-card h3,
    .zone-card h3,
    .panel h3,
    .feedback-card h3,
    .step-card h3,
    .contact-card h3 {
      margin: 0;
      font-weight: 950;
      letter-spacing: -.03em;
      color: var(--text);
    }

    .progress {
      height: 9px;
      border-radius: 999px;
      background: #f1dec3;
      overflow: hidden;
      margin-top: 14px;
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    main {
      padding-bottom: 72px;
    }

    .section {
      padding: 42px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: end;
      margin-bottom: 22px;
    }

    .section-kicker {
      color: var(--brand);
      font-weight: 950;
      font-size: 13px;
      letter-spacing: .08em;
    }

    .section-title {
      margin: 8px 0 0;
      font-size: clamp(26px, 3.4vw, 42px);
      line-height: 1.18;
      letter-spacing: -.05em;
      font-weight: 950;
    }

    .section-desc {
      margin: 10px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 16px;
    }

    .filter-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      margin-bottom: 22px;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .filter-tag {
      padding: 9px 13px;
      border-radius: 999px;
      color: var(--muted);
      background: var(--panel-warm);
      border: 1px solid var(--line);
      font-weight: 800;
      font-size: 14px;
    }

    .filter-tag.active,
    .filter-tag:hover {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      border-color: transparent;
      transform: translateY(-2px);
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: start;
    }

    .zone-list {
      display: grid;
      gap: 16px;
    }

    .zone-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-radius: 28px;
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .zone-card:hover {
      transform: translateY(-3px);
      border-color: rgba(244, 167, 66, .76);
      box-shadow: var(--shadow);
    }

    .zone-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 5px;
      background: linear-gradient(180deg, var(--brand), var(--brand-light));
    }

    .rank {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      font-weight: 950;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
      box-shadow: 0 12px 25px rgba(167, 95, 35, .2);
    }

    .zone-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 10px 0;
    }

    .zone-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .heat {
      min-width: 154px;
    }

    .heat-label {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 128px;
    }

    .panel {
      padding: 20px;
      border-radius: 28px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .panel p {
      color: var(--muted);
      margin: 8px 0 0;
      font-size: 14px;
    }

    .quick-list {
      display: grid;
      gap: 10px;
      margin-top: 15px;
    }

    .quick-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 12px;
      border-radius: 16px;
      background: var(--panel-warm);
      border: 1px solid var(--line);
      color: var(--brand-dark);
      font-weight: 850;
    }

    .quick-list a:hover {
      transform: translateX(3px);
      border-color: var(--brand-light);
      background: #fff;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 16px;
    }

    .stat-card {
      padding: 24px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .74);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .stat-card strong {
      display: block;
      color: var(--brand-dark);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1;
      letter-spacing: -.06em;
    }

    .stat-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-weight: 800;
    }

    .feedback-wrap {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
    }

    .avatar-wall {
      min-height: 320px;
      padding: 24px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 20% 15%, rgba(244, 167, 66, .25), transparent 30%),
        linear-gradient(135deg, #fff, #fff0d4);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .avatars {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .avatar {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      font-weight: 950;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      border: 3px solid #fff;
      box-shadow: 0 10px 18px rgba(115, 64, 22, .16);
    }

    .bubble {
      display: inline-flex;
      margin: 18px 8px 0 0;
      padding: 9px 12px;
      border-radius: 16px 16px 16px 5px;
      color: var(--brand-dark);
      background: #fff;
      border: 1px solid var(--line);
      font-weight: 850;
      box-shadow: 0 8px 18px rgba(115, 64, 22, .08);
    }

    .feedback-list {
      display: grid;
      gap: 14px;
    }

    .feedback-card {
      padding: 18px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .84);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .stars {
      color: #e79522;
      letter-spacing: 2px;
      font-size: 13px;
      white-space: nowrap;
    }

    .feedback-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .steps {
      display: grid;
      grid-template-columns: .9fr 1.1fr .9fr;
      gap: 16px;
      align-items: stretch;
    }

    .step-card {
      position: relative;
      padding: 22px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .step-card.emphasis {
      background: linear-gradient(135deg, #fff7e7, #ffe1a4);
      transform: translateY(-10px);
    }

    .step-num {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 15px;
      border-radius: 14px;
      color: #fff;
      background: var(--brand-dark);
      font-weight: 950;
    }

    .step-card ul {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
      color: var(--muted);
      font-size: 14px;
    }

    .step-card li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .step-card li::before {
      content: "";
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      margin-top: 9px;
      border-radius: 999px;
      background: var(--brand-light);
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 920px;
    }

    .faq-item {
      border-radius: 22px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--line);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 950;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--brand-dark);
      background: #fff0d1;
      transition: transform .22s ease;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
    }

    .faq-a p {
      margin: 0;
      padding: 0 20px 18px;
      color: var(--muted);
    }

    .faq-item.open .faq-a {
      max-height: 180px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .contact-card {
      display: grid;
      grid-template-columns: 1fr .92fr;
      gap: 24px;
      align-items: center;
      padding: 30px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(115, 64, 22, .94), rgba(167, 95, 35, .9)),
        radial-gradient(circle at 85% 10%, rgba(244, 167, 66, .46), transparent 32%);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .contact-card h2,
    .contact-card h3 {
      color: #fff;
    }

    .contact-card p {
      color: rgba(255, 246, 230, .84);
    }

    .contact-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255, 255, 255, .93);
    }

    .trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .trust-line span {
      padding: 8px 11px;
      border-radius: 999px;
      color: #ffe8bf;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .15);
      font-weight: 800;
      font-size: 13px;
    }

    .footer {
      padding: 34px 0 42px;
      background: #2a1d13;
      color: #fff6e6;
    }

    .footer-box {
      padding: 28px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr;
      gap: 24px;
    }

    .footer h4 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 17px;
      font-weight: 950;
    }

    .footer p {
      margin: 0;
      color: rgba(255, 246, 230, .72);
      max-width: 520px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 246, 230, .76);
      width: fit-content;
    }

    .footer-links a:hover {
      color: #ffd27a;
      transform: translateX(2px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 246, 230, .68);
      font-size: 14px;
    }

    .copyright a {
      color: #ffd27a;
    }

    @media (max-width: 1024px) {
      .topbar {
        grid-template-columns: 1fr auto;
      }

      .search-wrap {
        grid-column: 1 / -1;
        max-width: none;
        order: 3;
      }

      .hero-content,
      .content-layout,
      .feedback-wrap,
      .contact-card {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
      }

      .stats-grid,
      .steps {
        grid-template-columns: 1fr 1fr;
      }

      .step-card.emphasis {
        transform: none;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .topbar {
        gap: 12px;
      }

      .brand-title {
        font-size: 16px;
      }

      .brand-sub {
        display: none;
      }

      .header-actions .btn-secondary {
        display: none;
      }

      .hero {
        padding-top: 22px;
      }

      .hero-shell {
        border-radius: 26px;
        min-height: auto;
      }

      .kv-strip {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero-content {
        padding: 30px 22px;
      }

      .hero-notes,
      .stats-grid,
      .steps,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 32px 0;
      }

      .section-head,
      .filter-panel {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .zone-card {
        grid-template-columns: 1fr;
      }

      .heat {
        min-width: 0;
      }

      .contact-card {
        padding: 24px;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .header-actions .btn-primary {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 13px;
      }

      .search-wrap input {
        height: 42px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn,
      .contact-form .btn {
        width: 100%;
      }

      .countdown {
        flex-wrap: wrap;
      }

      .board-top,
      .list-top,
      .card-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .filter-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .filter-tag {
        flex: 0 0 auto;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#f7efe4;
      --bg-soft:#fffaf4;
      --panel:#fff9f1;
      --panel-2:#fff3e2;
      --line:#ead8c6;
      --text:#2a1d16;
      --muted:#7a6559;
      --primary:#c56a2d;
      --primary-2:#e0a24c;
      --primary-3:#8b4c26;
      --success:#85a85d;
      --warning:#d9a13d;
      --shadow:0 18px 50px rgba(116, 69, 28, .10);
      --shadow-soft:0 10px 25px rgba(116, 69, 28, .08);
      --radius:24px;
      --radius-sm:18px;
      --radius-xs:14px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
      line-height:1.7;
      background:
        radial-gradient(circle at top left, rgba(224,162,76,.18), transparent 28%),
        radial-gradient(circle at 85% 5%, rgba(197,106,45,.12), transparent 22%),
        linear-gradient(180deg, #fbf5eb 0%, #f6ecdf 38%, #f9f1e6 100%);
    }
    ::selection{background:rgba(197,106,45,.18);color:var(--text)}
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    .container{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(180%) blur(14px);
      background:rgba(251, 245, 235, .84);
      border-bottom:1px solid rgba(234,216,198,.7);
    }
    .topbar{
      display:flex;
      align-items:center;
      gap:16px;
      padding:16px 0 12px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:1 1 auto;
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      background:linear-gradient(145deg, #c56a2d, #e0a24c);
      box-shadow:var(--shadow-soft);
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:800;
      letter-spacing:.08em;
      flex:0 0 auto;
    }
    .brand-text{
      min-width:0;
    }
    .brand-text strong{
      display:block;
      font-size:1.04rem;
      line-height:1.15;
      letter-spacing:.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:.88rem;
      margin-top:4px;
    }
    .brand-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(197,106,45,.10);
      color:var(--primary-3);
      font-size:.78rem;
      font-weight:700;
    }
    .search-wrap{
      flex:0 1 390px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border:1px solid rgba(234,216,198,.95);
      background:rgba(255,255,255,.72);
      border-radius:999px;
      box-shadow:0 8px 24px rgba(116,69,28,.05);
    }
    .search-wrap input{
      flex:1;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      min-width:0;
    }
    .search-wrap input::placeholder{color:#a38f81}
    .search-wrap button{
      border:0;
      cursor:pointer;
      padding:10px 16px;
      border-radius:999px;
      color:#fff;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow:0 10px 22px rgba(197,106,45,.20);
      transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }
    .search-wrap button:hover,
    .search-wrap button:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 12px 28px rgba(197,106,45,.28);
      filter:saturate(1.03);
    }
    .top-cta{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:12px 18px;
      border-radius:999px;
      background:#2f241c;
      color:#fff;
      font-weight:700;
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .top-cta:hover,
    .top-cta:focus-visible{
      transform:translateY(-1px);
      box-shadow:var(--shadow);
      background:#402f25;
    }
    .tabs-wrap{
      padding:0 0 14px;
    }
    .tabs{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding-bottom:6px;
      scrollbar-width:thin;
    }
    .tabs::-webkit-scrollbar{height:8px}
    .tabs::-webkit-scrollbar-thumb{background:rgba(140, 115, 96, .22);border-radius:999px}
    .tab-link{
      flex:0 0 auto;
      padding:10px 15px;
      border:1px solid rgba(234,216,198,.95);
      border-radius:999px;
      color:#6f5e51;
      background:rgba(255,255,255,.62);
      font-weight:700;
      font-size:.95rem;
      transition:all .2s ease;
      white-space:nowrap;
    }
    .tab-link:hover,
    .tab-link:focus-visible{
      color:var(--primary-3);
      border-color:rgba(197,106,45,.35);
      background:rgba(255,248,239,.95);
      transform:translateY(-1px);
      box-shadow:0 8px 18px rgba(116,69,28,.07);
    }
    .tab-link.is-active,
    .tab-link[aria-current="page"]{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow:0 12px 24px rgba(197,106,45,.22);
    }
    .section{
      padding:72px 0;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:24px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary-3);
      font-size:.82rem;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }
    .eyebrow::before{
      content:"";
      width:18px;
      height:2px;
      background:linear-gradient(90deg, var(--primary), var(--primary-2));
      border-radius:999px;
    }
    .section-title{
      margin:8px 0 0;
      font-size:clamp(1.5rem, 3vw, 2.5rem);
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .section-desc{
      margin:12px 0 0;
      color:var(--muted);
      max-width:58ch;
    }
    .hero{
      padding:24px 0 24px;
    }
    .hero-shell{
      position:relative;
      padding:28px;
      border-radius:calc(var(--radius) + 8px);
      background:
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,248,239,.94)),
        var(--bg-soft);
      border:1px solid rgba(234,216,198,.9);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-shell::before,
    .hero-shell::after{
      content:"";
      position:absolute;
      border-radius:999px;
      pointer-events:none;
      filter:blur(2px);
      opacity:.9;
    }
    .hero-shell::before{
      width:240px;height:240px;
      right:-90px;top:-70px;
      background:radial-gradient(circle, rgba(224,162,76,.18), rgba(224,162,76,0) 68%);
    }
    .hero-shell::after{
      width:200px;height:200px;
      left:-70px;bottom:-100px;
      background:radial-gradient(circle, rgba(197,106,45,.14), rgba(197,106,45,0) 68%);
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:18px;
      min-width:0;
    }
    .hero-copy h1{
      margin:0;
      font-size:clamp(2rem, 5vw, 4.15rem);
      line-height:1.05;
      letter-spacing:-.04em;
      max-width:11ch;
    }
    .hero-copy p{
      margin:0;
      color:#5f4f44;
      font-size:1.06rem;
      max-width:58ch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      box-shadow:0 16px 28px rgba(197,106,45,.22);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      transform:translateY(-2px);
      box-shadow:0 20px 34px rgba(197,106,45,.28);
    }
    .btn-ghost{
      background:rgba(255,255,255,.7);
      color:var(--primary-3);
      border-color:rgba(197,106,45,.18);
      box-shadow:0 10px 22px rgba(116,69,28,.06);
    }
    .btn-ghost:hover,
    .btn-ghost:focus-visible{
      transform:translateY(-1px);
      border-color:rgba(197,106,45,.34);
      background:#fff;
    }
    .hero-points{
      display:grid;
      gap:10px;
      margin:4px 0 0;
      padding:0;
      list-style:none;
    }
    .hero-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#5f4f44;
    }
    .hero-points li span{
      width:22px;
      height:22px;
      border-radius:50%;
      background:rgba(133,168,93,.14);
      color:var(--success);
      display:grid;
      place-items:center;
      font-size:.85rem;
      font-weight:900;
      flex:0 0 auto;
      margin-top:2px;
    }
    .hero-panel{
      display:grid;
      grid-template-rows:auto auto auto auto;
      gap:14px;
      align-content:start;
    }
    .hero-float{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:16px 18px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, #fff, #fff7ef);
      border:1px solid rgba(234,216,198,.9);
      box-shadow:var(--shadow-soft);
    }
    .hero-float strong{
      display:block;
      font-size:1.04rem;
      margin-bottom:4px;
    }
    .hero-float p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
    }
    .status-chip{
      flex:0 0 auto;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(197,106,45,.11);
      color:var(--primary-3);
      font-size:.78rem;
      font-weight:800;
    }
    .zone-matrix{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .zone-card{
      padding:14px;
      border-radius:var(--radius-sm);
      background:linear-gradient(180deg, #fff, #fff8ef);
      border:1px solid rgba(234,216,198,.9);
      box-shadow:0 10px 20px rgba(116,69,28,.05);
      min-height:136px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .zone-card.highlight{
      background:linear-gradient(180deg, rgba(255,245,232,.98), rgba(255,237,219,.96));
      border-color:rgba(197,106,45,.24);
    }
    .zone-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .zone-name{
      font-weight:900;
      font-size:1.05rem;
      letter-spacing:.01em;
    }
    .zone-tag{
      padding:6px 9px;
      border-radius:999px;
      background:rgba(133,168,93,.12);
      color:var(--success);
      font-size:.72rem;
      font-weight:800;
      white-space:nowrap;
    }
    .zone-card p{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.55;
    }
    .progress{
      height:10px;
      border-radius:999px;
      background:#f2e4d4;
      overflow:hidden;
    }
    .progress > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary), var(--primary-2));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
    }
    .bubble-strip{
      display:grid;
      gap:10px;
    }
    .bubble{
      position:relative;
      padding:13px 14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(234,216,198,.96);
      box-shadow:0 10px 20px rgba(116,69,28,.05);
      color:#5a4b41;
      font-size:.92rem;
    }
    .bubble::after{
      content:"";
      position:absolute;
      left:18px;
      bottom:-7px;
      width:12px;
      height:12px;
      transform:rotate(45deg);
      background:#fff;
      border-right:1px solid rgba(234,216,198,.96);
      border-bottom:1px solid rgba(234,216,198,.96);
    }
    .avatar-stack{
      display:flex;
      align-items:center;
      gap:0;
      padding-top:4px;
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      border:3px solid #f7efe4;
      background:linear-gradient(145deg, #e8c09b, #c56a2d);
      color:#fff;
      display:grid;
      place-items:center;
      font-size:.78rem;
      font-weight:900;
      margin-left:-10px;
      box-shadow:0 8px 20px rgba(116,69,28,.12);
    }
    .avatar:first-child{margin-left:0}
    .avatar.alt1{background:linear-gradient(145deg, #e0a24c, #d26b42)}
    .avatar.alt2{background:linear-gradient(145deg, #f0c26a, #cc7c37)}
    .avatar.alt3{background:linear-gradient(145deg, #d9a13d, #a95d2b)}
    .avatar.alt4{background:linear-gradient(145deg, #c88d68, #8f4e28)}
    .avatar.alt5{background:linear-gradient(145deg, #e6b88d, #b86f35)}
    .avatar.alt6{background:linear-gradient(145deg, #bfa07d, #7a6559)}
    .avatar-note{
      color:var(--muted);
      font-size:.86rem;
      margin-left:12px;
    }
    .service-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0, 1fr));
      gap:16px;
    }
    .service-card{
      padding:20px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.93), rgba(255,249,241,.98));
      border:1px solid rgba(234,216,198,.92);
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:100%;
    }
    .service-card:hover,
    .service-card:focus-within{
      transform:translateY(-3px);
      border-color:rgba(197,106,45,.28);
      box-shadow:var(--shadow);
    }
    .service-card .icon{
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(145deg, rgba(197,106,45,.12), rgba(224,162,76,.18));
      color:var(--primary-3);
      font-weight:900;
      margin-bottom:14px;
    }
    .service-card h3{
      margin:0 0 8px;
      font-size:1.08rem;
    }
    .service-card p{
      margin:0;
      color:var(--muted);
      line-height:1.65;
      min-height:3.3em;
    }
    .service-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:14px;
    }
    .small-tag{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(197,106,45,.10);
      color:var(--primary-3);
      font-size:.78rem;
      font-weight:800;
      white-space:nowrap;
    }
    .mini-link{
      color:var(--primary-3);
      font-weight:800;
      font-size:.9rem;
    }
    .service-wide{grid-column:span 5}
    .service-mid{grid-column:span 4}
    .service-tall{grid-column:span 3}
    .service-wide .service-card{min-height:100%}
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:16px;
    }
    .stat-card{
      padding:20px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.74);
      border:1px solid rgba(234,216,198,.9);
      box-shadow:var(--shadow-soft);
    }
    .stat-num{
      font-size:clamp(2rem, 5vw, 3.5rem);
      line-height:1;
      font-weight:900;
      letter-spacing:-.04em;
      color:var(--primary-3);
    }
    .stat-label{
      margin-top:8px;
      font-weight:800;
    }
    .stat-desc{
      margin:8px 0 0;
      color:var(--muted);
      font-size:.95rem;
    }
    .stat-bar{
      margin-top:14px;
      height:9px;
      border-radius:999px;
      background:#f1e2d3;
      overflow:hidden;
    }
    .stat-bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary), var(--primary-2));
    }
    .case-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:16px;
      align-items:start;
    }
    .case-list{
      display:grid;
      gap:14px;
    }
    .case-card{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:14px;
      align-items:start;
      padding:18px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,249,241,.98));
      border:1px solid rgba(234,216,198,.92);
      box-shadow:var(--shadow-soft);
    }
    .case-avatar{
      width:52px;
      height:52px;
      border-radius:18px;
      background:linear-gradient(145deg, #e0a24c, #c56a2d);
      color:#fff;
      font-weight:900;
      display:grid;
      place-items:center;
      box-shadow:0 12px 24px rgba(197,106,45,.18);
      flex:0 0 auto;
    }
    .case-topline{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:8px;
    }
    .case-name{
      font-weight:900;
    }
    .case-time{
      color:var(--muted);
      font-size:.86rem;
    }
    .case-card p{
      margin:0;
      color:#5f4f44;
    }
    .case-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .tag{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(133,168,93,.12);
      color:#597944;
      font-size:.78rem;
      font-weight:800;
    }
    .case-side{
      display:grid;
      gap:16px;
    }
    .mosaic{
      padding:18px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,247,238,.96));
      border:1px solid rgba(234,216,198,.92);
      box-shadow:var(--shadow-soft);
    }
    .mosaic h3{
      margin:0 0 10px;
      font-size:1.05rem;
    }
    .mosaic p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .avatar-wall{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .avatar-wall .avatar{
      margin:0;
      width:46px;
      height:46px;
      border-width:2px;
    }
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:16px;
    }
    .compare-card{
      padding:20px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,239,.98));
      border:1px solid rgba(234,216,198,.92);
      box-shadow:var(--shadow-soft);
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .compare-card.featured{
      background:linear-gradient(180deg, rgba(255,245,232,.98), rgba(255,237,219,.96));
      border-color:rgba(197,106,45,.22);
    }
    .compare-card h3{
      margin:0;
      font-size:1.08rem;
    }
    .compare-card p{
      margin:0;
      color:var(--muted);
      min-height:4.6em;
    }
    .check-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
      color:#5f4f44;
      font-size:.95rem;
    }
    .check-list li{
      display:flex;
      gap:8px;
      align-items:flex-start;
    }
    .check-list li span{
      flex:0 0 auto;
      width:20px;
      height:20px;
      border-radius:50%;
      background:rgba(133,168,93,.14);
      color:var(--success);
      display:grid;
      place-items:center;
      font-size:.74rem;
      font-weight:900;
      margin-top:2px;
    }
    .card-action{
      display:inline-flex;
      justify-content:center;
      align-items:center;
      gap:8px;
      width:100%;
      padding:12px 16px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(197,106,45,.18);
      color:var(--primary-3);
      font-weight:800;
      transition:all .2s ease;
      margin-top:auto;
    }
    .card-action:hover,
    .card-action:focus-visible{
      border-color:rgba(197,106,45,.34);
      box-shadow:0 10px 18px rgba(116,69,28,.08);
      transform:translateY(-1px);
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    details.faq-item{
      border-radius:20px;
      border:1px solid rgba(234,216,198,.92);
      background:rgba(255,255,255,.9);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color:rgba(197,106,45,.22);
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:18px 18px;
      font-weight:900;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary .arrow{
      flex:0 0 auto;
      width:30px;
      height:30px;
      border-radius:50%;
      background:rgba(197,106,45,.10);
      display:grid;
      place-items:center;
      color:var(--primary-3);
      transition:transform .22s ease;
    }
    details[open] .faq-item summary .arrow,
    details[open] summary .arrow{
      transform:rotate(180deg);
    }
    .faq-answer{
      padding:0 18px 18px;
      color:var(--muted);
    }
    .contact-grid{
      display:grid;
      grid-template-columns:1fr .95fr;
      gap:16px;
      align-items:stretch;
    }
    .contact-card,
    .form-card{
      padding:24px;
      border-radius:calc(var(--radius) + 2px);
      border:1px solid rgba(234,216,198,.92);
      box-shadow:var(--shadow);
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,248,239,.98));
    }
    .contact-card h3,
    .form-card h3{
      margin:0 0 12px;
      font-size:1.28rem;
    }
    .contact-card p{
      margin:0 0 16px;
      color:var(--muted);
    }
    .contact-points{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .contact-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#5f4f44;
    }
    .contact-points li span{
      width:22px;
      height:22px;
      border-radius:50%;
      background:rgba(197,106,45,.10);
      color:var(--primary-3);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      margin-top:2px;
      font-size:.8rem;
      font-weight:900;
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .field{
      display:grid;
      gap:7px;
    }
    .field.full{grid-column:1 / -1}
    .field label{
      font-size:.88rem;
      font-weight:800;
      color:#5f4f44;
    }
    .field input,
    .field textarea{
      width:100%;
      border:1px solid rgba(234,216,198,.95);
      background:#fff;
      border-radius:16px;
      padding:13px 14px;
      outline:0;
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
      color:var(--text);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    }
    .field input::placeholder,
    .field textarea::placeholder{color:#ad9a8c}
    .field input:focus,
    .field textarea:focus{
      border-color:rgba(197,106,45,.36);
      box-shadow:0 0 0 4px rgba(197,106,45,.10);
    }
    .form-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:14px;
    }
    .form-note{
      color:var(--muted);
      font-size:.88rem;
    }
    .footer{
      padding:18px 0 40px;
    }
    .footer-box{
      padding:22px;
      border-radius:28px;
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,248,239,.96));
      border:1px solid rgba(234,216,198,.9);
      box-shadow:var(--shadow-soft);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr .7fr;
      gap:18px;
    }
    .footer h4{
      margin:0 0 10px;
      font-size:1rem;
    }
    .footer p{
      margin:0;
      color:var(--muted);
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#5f4f44;
      font-weight:700;
      transition:color .2s ease;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      color:var(--primary-3);
    }
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding-top:18px;
      margin-top:18px;
      border-top:1px solid rgba(234,216,198,.9);
      color:var(--muted);
      font-size:.92rem;
      flex-wrap:wrap;
    }
    .copyright a{
      color:var(--primary-3);
      font-weight:700;
    }
    .section-divider{
      height:1px;
      background:linear-gradient(90deg, rgba(234,216,198,0), rgba(234,216,198,.92), rgba(234,216,198,0));
      margin:22px 0 0;
    }
    .focus-ring:focus-visible,
    a:focus-visible,
    button:focus-visible,
    summary:focus-visible,
    input:focus-visible,
    textarea:focus-visible{
      outline:3px solid rgba(197,106,45,.22);
      outline-offset:2px;
    }
    @media (max-width: 1120px){
      .hero-grid,
      .case-grid,
      .contact-grid{
        grid-template-columns:1fr;
      }
      .compare-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .stats-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
      .service-wide,
      .service-mid,
      .service-tall{
        grid-column:span 6;
      }
    }
    @media (max-width: 768px){
      .topbar{
        flex-wrap:wrap;
      }
      .brand{
        width:100%;
      }
      .search-wrap{
        width:100%;
        flex:1 1 100%;
      }
      .top-cta{
        width:100%;
      }
      .section{
        padding:60px 0;
      }
      .hero-shell{
        padding:20px;
      }
      .hero-copy h1{
        max-width:none;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .service-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .service-wide,
      .service-mid,
      .service-tall{
        grid-column:span 1;
      }
      .faq-grid,
      .compare-grid{
        grid-template-columns:1fr;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
    }
    @media (max-width: 520px){
      .container{
        width:min(100% - 20px, 1200px);
      }
      .hero-actions,
      .form-actions{
        flex-direction:column;
        align-items:stretch;
      }
      .btn,
      .top-cta,
      .search-wrap button{
        width:100%;
      }
      .zone-matrix,
      .stats-grid,
      .service-grid,
      .form-grid{
        grid-template-columns:1fr;
      }
      .hero-float,
      .case-card{
        grid-template-columns:1fr;
      }
      .case-avatar{
        width:46px;
        height:46px;
      }
      .avatar-note{
        margin-left:0;
        margin-top:10px;
        display:block;
      }
    }
