:root{
      --bg0:#fff7f4;
      --bg1:#fff;
      --text:#1f2328;
      --muted:#5b616b;
      --muted2:#7b828e;
      --line:rgba(25, 29, 35, .10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow: 0 18px 45px rgba(18, 18, 18, .08);
      --shadow2: 0 10px 28px rgba(18, 18, 18, .10);
      --r16:16px;
      --r20:20px;
      --r24:24px;
      --accent:#ff4d2e;
      --accent2:#ff7a18;
      --accent3:#ff2a5f;
      --accentInk:#2a140f;
      --btnText:#121212;
      --focus: rgba(255, 77, 46, .35);
      --good:#17b26a;
      --warn:#f79009;
      --hot:#e11d48;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% -10%, rgba(255,77,46,.18), transparent 55%),
        radial-gradient(900px 520px at 88% 18%, rgba(255,122,24,.15), transparent 52%),
        radial-gradient(700px 420px at 55% 0%, rgba(255,42,95,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 38%, #fff 100%);
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:1120px;
      margin:0 auto;
      padding:0 18px;
    }

    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:18px; top:14px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow: var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255, 247, 244, .72);
      border-bottom:1px solid rgba(30, 35, 40, .08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width: 190px;
    }
    .brand img{
      width:44px; height:44px; object-fit:contain;
      border-radius:12px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(255, 77, 46, .18);
      box-shadow: 0 8px 22px rgba(255, 77, 46, .12);
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand .name{
      font-weight:850; letter-spacing:.2px; font-size:14px;
    }
    .brand .sub{
      color:var(--muted2); font-size:12px; margin-top:4px;
    }

    nav .menu{
      display:flex; align-items:center; gap:18px;
      padding:0; margin:0; list-style:none;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    nav .menu a{
      text-decoration:none;
      font-size:13px;
      color:rgba(31,35,40,.86);
      padding:8px 10px;
      border-radius:12px;
      transition: transform .18s ease, background .18s ease, color .18s ease;
      white-space:nowrap;
    }
    nav .menu a:hover{
      background:rgba(255, 77, 46, .10);
      color:#1a1a1a;
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      appearance:none; border:none; cursor:pointer;
      border-radius:14px;
      padding:10px 14px;
      font-weight:780;
      letter-spacing:.2px;
      background: transparent;
      color:var(--btnText);
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      text-decoration:none;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn-primary{
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 45%, #ffd18d 140%);
      color:#1a0c07;
      box-shadow: 0 16px 35px rgba(255, 77, 46, .22);
      border:1px solid rgba(255, 77, 46, .25);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 20px 45px rgba(255, 77, 46, .26);
    }
    .btn-ghost{
      border:1px solid rgba(30, 35, 40, .12);
      background:rgba(255,255,255,.65);
      color:rgba(31,35,40,.92);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(255, 77, 46, .25);
      background: rgba(255, 77, 46, .06);
    }
    .btn-sm{padding:9px 12px; border-radius:12px; font-weight:740; font-size:13px}
    .icon-dot{
      width:10px; height:10px; border-radius:999px;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 45%, rgba(255,255,255,0) 60%), linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 10px 22px rgba(255,77,46,.35);
      border:1px solid rgba(255, 255, 255, .45);
    }

    .nav-mobile{
      display:none;
    }
    .burger{
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(30,35,40,.14);
      background:rgba(255,255,255,.70);
      display:inline-flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .burger:hover{transform: translateY(-1px); border-color: rgba(255,77,46,.26); background: rgba(255,77,46,.06)}
    .burger svg{display:block}
    .drawer{
      position:fixed; inset:0; z-index:80; display:none;
    }
    .drawer.show{display:block}
    .drawer .overlay{
      position:absolute; inset:0;
      background: rgba(0,0,0,.38);
      backdrop-filter: blur(3px);
    }
    .drawer .panel{
      position:absolute; top:12px; left:12px; right:12px;
      background: rgba(255,255,255,.96);
      border:1px solid rgba(30,35,40,.12);
      border-radius:22px;
      box-shadow: var(--shadow2);
      padding:14px;
      transform-origin: top center;
      animation: pop .18s ease both;
      max-height: calc(100vh - 24px);
      overflow:auto;
    }
    @keyframes pop{
      from{transform: translateY(-8px) scale(.98); opacity:.65}
      to{transform: translateY(0) scale(1); opacity:1}
    }
    .drawer-head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding-bottom:10px; border-bottom:1px solid rgba(30,35,40,.08);
      margin-bottom:12px;
    }
    .drawer-head .title{
      font-weight:900; letter-spacing:.2px;
    }
    .drawer-close{
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(30,35,40,.12);
      background:rgba(255,255,255,.8);
      cursor:pointer;
    }
    .drawer-close:hover{border-color: rgba(255,77,46,.25)}
    .drawer-links{
      display:grid; gap:8px;
      grid-template-columns: 1fr;
      padding:6px 2px 14px;
    }
    .drawer-links a{
      text-decoration:none;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255, 255, 255, .75);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      font-weight:750;
      color:rgba(31,35,40,.92);
    }
    .drawer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.06);
    }
    .drawer-foot{
      display:flex; gap:10px; margin-top:8px; flex-wrap:wrap;
    }

    .hero{
      padding:26px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      padding:20px 0 8px;
      position:relative;
    }
    .hero-left:before{
      content:"";
      position:absolute; inset:-20px -10px -18px -10px;
      background:
        radial-gradient(800px 260px at 15% 15%, rgba(255,77,46,.24), transparent 60%),
        radial-gradient(520px 260px at 80% 30%, rgba(255,122,24,.18), transparent 62%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-wrap{
      position:relative;
      z-index:1;
    }
    .pill-row{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
      margin-bottom:14px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,77,46,.25);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(255,77,46,.10);
      font-weight:760;
      font-size:13px;
      color:rgba(31,35,40,.92);
    }
    .pill .spark{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #ffd89a 120%);
      transform: rotate(12deg);
      box-shadow: 0 12px 26px rgba(255,77,46,.25);
      border:1px solid rgba(255,255,255,.55);
    }

    h1{
      margin:0;
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.6px;
      font-weight:950;
    }
    .hero-desc{
      margin:14px 0 18px;
      color:rgba(31,35,40,.82);
      font-size:15.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin:12px 0 10px;
    }
    .fineprint{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top:10px;
      color:var(--muted2);
      font-size:12.5px;
    }
    .fineprint span{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px dashed rgba(30,35,40,.14);
      background: rgba(255,255,255,.55);
    }
    .check{
      width:18px; height:18px; border-radius:6px;
      background: rgba(23,178,106,.12);
      border:1px solid rgba(23,178,106,.30);
      display:inline-flex; align-items:center; justify-content:center;
    }
    .check svg{width:12px; height:12px; fill: var(--good)}

    .hero-right{
      padding:10px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .panel{
      background: rgba(255,255,255,.74);
      border:1px solid rgba(30,35,40,.12);
      border-radius: var(--r24);
      box-shadow: 0 18px 45px rgba(18, 18, 18, .08);
      overflow:hidden;
      position:relative;
    }
    .panel:after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 160px at 12% 0%, rgba(255,77,46,.20), transparent 62%),
        radial-gradient(380px 180px at 95% 18%, rgba(255,122,24,.17), transparent 58%);
      pointer-events:none;
      opacity:.9;
    }
    .panel .panel-inner{position:relative; z-index:1; padding:14px}
    .mini-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .mini-title h2{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
      font-weight:900;
      color:rgba(31,35,40,.92);
    }
    .badge{
      font-size:12px; font-weight:900;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,77,46,.25);
      background: rgba(255,77,46,.10);
      color:#7a140b;
      white-space:nowrap;
    }

    .metrics{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .metric{
      border-radius:18px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.80);
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(18,18,18,.10);
      border-color: rgba(255,77,46,.22);
    }
    .metric .k{
      font-size:20px;
      font-weight:950;
      letter-spacing:-.4px;
    }
    .metric .t{
      margin-top:6px;
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.35;
    }

    .flowbar{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:8px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:9px;
      border-radius:999px;
      padding:9px 12px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.78);
      font-weight:800;
      font-size:12.8px;
      color:rgba(31,35,40,.92);
    }
    .chip .mark{
      width:26px; height:26px; border-radius:12px;
      border:1px solid rgba(255,77,46,.20);
      background: linear-gradient(135deg, rgba(255,77,46,.18), rgba(255,122,24,.10));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 12px 26px rgba(255,77,46,.10);
    }
    .chip svg{width:14px; height:14px; fill: rgba(31,35,40,.88)}
    .quick-actions{
      display:grid; grid-template-columns: 1fr;
      gap:10px;
    }
    .quick-card{
      padding:12px;
      border-radius:20px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.82);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .quick-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.05);
    }
    .quick-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:6px;
    }
    .quick-top .label{
      font-weight:950; letter-spacing:.2px;
      font-size:13px;
    }
    .quick-top .tag{
      font-size:12px; font-weight:900;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(255,77,46,.25);
      background: rgba(255,77,46,.10);
      color:#7a140b;
      white-space:nowrap;
    }
    .quick-desc{
      margin:0;
      color:var(--muted2);
      font-size:12.8px; line-height:1.55;
    }
    .quick-link-row{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-start;
    }

    main{padding:10px 0 40px}
    section{padding:26px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:16px; margin-bottom:14px; flex-wrap:wrap;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
      font-weight:950;
    }
    .section-head p{
      margin:0;
      color:var(--muted2);
      max-width:70ch;
      line-height:1.6;
      font-size:13.8px;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .card{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(30,35,40,.12);
      border-radius: var(--r20);
      padding:14px;
      box-shadow: 0 10px 28px rgba(18,18,18,.06);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      position:relative;
      overflow:hidden;
    }
    .card:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(500px 120px at 0% 0%, rgba(255,77,46,.16), transparent 55%);
      opacity:.75;
      pointer-events:none;
    }
    .card > *{position:relative; z-index:1}
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 44px rgba(18,18,18,.10);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      font-weight:950;
      letter-spacing:.1px;
    }
    .card p{
      margin:0;
      color:var(--muted2);
      font-size:13.3px;
      line-height:1.65;
    }
    .card .top{
      display:flex; align-items:center; gap:10px;
      justify-content:space-between;
    }
    .ico{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(255,77,46,.22);
      background: linear-gradient(135deg, rgba(255,77,46,.14), rgba(255,122,24,.08));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 36px rgba(255,77,46,.10);
    }
    .ico svg{width:18px; height:18px; fill: rgba(31,35,40,.92)}
    .small-underline{
      position:relative;
      display:inline-block;
      padding-bottom:2px;
    }
    .small-underline:after{
      content:"";
      position:absolute; left:0; bottom:0;
      width:100%; height:2px;
      background: linear-gradient(90deg, rgba(255,77,46,.0), rgba(255,77,46,.65), rgba(255,122,24,.0));
      opacity:.9;
    }

    .two-col{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }

    .list{
      margin:10px 0 0; padding:0;
      list-style:none;
      display:grid; gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.72);
    }
    .li .dot{
      width:22px; height:22px; border-radius:10px;
      border:1px solid rgba(255,77,46,.26);
      background: rgba(255,77,46,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .li .dot svg{width:14px; height:14px; fill: rgba(31,35,40,.92)}
    .li .text strong{
      display:block; font-size:13.7px; letter-spacing:.1px;
      margin-bottom:4px;
    }
    .li .text span{
      color:var(--muted2);
      font-size:13.1px; line-height:1.55;
      display:block;
    }

    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height: 132px;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 44px rgba(18,18,18,.10);
    }
    .step:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(420px 140px at 0% 0%, rgba(255,77,46,.18), transparent 55%),
        radial-gradient(380px 160px at 100% 20%, rgba(255,122,24,.12), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .step > *{position:relative; z-index:1}
    .step .num{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(255,77,46,.18), rgba(255,122,24,.10));
      border:1px solid rgba(255,77,46,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      letter-spacing:-.4px;
    }
    .step h3{
      margin:10px 0 6px;
      font-size:14.5px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .step p{
      margin:0;
      color:var(--muted2);
      font-size:13.1px;
      line-height:1.6;
    }

    .compare-wrap{
      border-radius:26px;
      border:1px solid rgba(30,35,40,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .compare-top{
      padding:16px 16px 10px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      border-bottom:1px solid rgba(30,35,40,.08);
      background:
        radial-gradient(600px 220px at 15% 0%, rgba(255,77,46,.20), transparent 60%),
        radial-gradient(520px 220px at 88% 20%, rgba(255,122,24,.16), transparent 58%);
    }
    .rating{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      padding:10px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(30,35,40,.10);
    }
    .stars svg{width:18px; height:18px; fill: rgba(255, 147, 24, .95)}
    .rating .score{
      font-size:18px; font-weight:980; letter-spacing:-.2px;
      background: linear-gradient(135deg, rgba(255,77,46,.95), rgba(255,122,24,.95));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .rating .meta{
      color:var(--muted2);
      font-size:13px; line-height:1.4;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:auto;
    }
    .table-wrap{
      overflow:auto;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(30,35,40,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.2px;
      line-height:1.5;
      min-width: 140px;
      white-space:normal;
    }
    th{
      font-weight:950;
      color:rgba(31,35,40,.92);
      background: rgba(255,255,255,.55);
      position:sticky; top:0;
      backdrop-filter: blur(6px);
      z-index:1;
    }
    tr:last-child td{border-bottom:none}
    .yes{
      display:inline-flex; align-items:center; gap:8px; font-weight:850;
    }
    .yes .tick{
      width:20px; height:20px; border-radius:8px;
      border:1px solid rgba(23,178,106,.30);
      background: rgba(23,178,106,.10);
      display:flex; align-items:center; justify-content:center;
    }
    .no{
      display:inline-flex; align-items:center; gap:8px; font-weight:850; color:rgba(31,35,40,.70);
    }
    .no .x{
      width:20px; height:20px; border-radius:8px;
      border:1px solid rgba(225,29,72,.22);
      background: rgba(225,29,72,.08);
      display:flex; align-items:center; justify-content:center;
    }

    .gallery{
      display:grid; grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:stretch;
    }
    .gallery .left{
      display:grid; gap:12px;
    }
    .poster-card{
      padding:14px;
      border-radius:26px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 28px rgba(18,18,18,.06);
      overflow:hidden;
    }
    .poster-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .imgbox{
      border-radius:20px;
      border:1px solid rgba(30,35,40,.10);
      overflow:hidden;
      background: rgba(255,255,255,.6);
    }
    .imgbox img{
      width:100%;
      height: auto;
      display:block;
      object-fit:cover;
      aspect-ratio: 4 / 3;
    }
    .poster-card h3{
      margin:0;
      font-size:15px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .poster-card p{
      margin:8px 0 0;
      color:var(--muted2);
      font-size:13.2px;
      line-height:1.65;
    }
    .case-list{
      display:grid; gap:10px;
    }
    .case{
      padding:12px;
      border-radius:20px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .case:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 16px 34px rgba(18,18,18,.08);
    }
    .case .row{
      display:flex; justify-content:space-between; gap:10px; align-items:flex-start; flex-wrap:wrap;
    }
    .case strong{
      font-weight:980;
      letter-spacing:.1px;
      font-size:13.8px;
    }
    .case .pill2{
      font-size:12px;
      font-weight:950;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,77,46,.24);
      background: rgba(255,77,46,.10);
      color:#7a140b;
      white-space:nowrap;
    }
    .case p{
      margin:8px 0 0;
      color:var(--muted2);
      font-size:13.1px;
      line-height:1.6;
    }

    .article-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .article{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.76);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .article:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(520px 140px at 0% 0%, rgba(255,77,46,.16), transparent 55%);
      opacity:.8;
      pointer-events:none;
    }
    .article > *{position:relative; z-index:1}
    .article:hover{
      transform: translateY(-3px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 44px rgba(18,18,18,.10);
    }
    .article .meta{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-bottom:8px;
      color:var(--muted2);
      font-size:12.5px;
    }
    .article h3{
      margin:0 0 8px;
      font-size:14.7px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .article p{
      margin:0;
      color:var(--muted2);
      font-size:13.1px; line-height:1.65;
    }
    .article a.read{
      display:inline-flex; align-items:center; gap:10px; margin-top:12px;
      text-decoration:none;
      font-weight:900;
      color:rgba(31,35,40,.92);
      padding:10px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(30,35,40,.10);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .article a.read:hover{
      transform: translateY(-1px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.06);
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      padding:14px;
      border-radius:24px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .review:hover{
      transform: translateY(-3px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 44px rgba(18,18,18,.10);
    }
    .review:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(520px 160px at 0% 0%, rgba(255,77,46,.15), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .review > *{position:relative; z-index:1}
    .review .who{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .avatar{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(255,77,46,.22);
      background: linear-gradient(135deg, rgba(255,77,46,.12), rgba(255,122,24,.06));
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      letter-spacing:-.2px;
      color:rgba(31,35,40,.92);
      box-shadow: 0 16px 36px rgba(255,77,46,.08);
      flex:0 0 auto;
    }
    .review .role{
      font-weight:950; letter-spacing:.1px;
      font-size:13.7px;
    }
    .review .biz{
      color:var(--muted2);
      font-size:12.6px; margin-top:5px; line-height:1.4;
    }
    .review .stars2{
      display:flex; gap:2px; align-items:center; margin-top:2px;
    }
    .review .stars2 svg{width:16px; height:16px; fill: rgba(255, 147, 24, .95)}
    .review p{
      margin:0;
      color:var(--muted2);
      font-size:13.1px; line-height:1.7;
    }

    .form-card{
      padding:16px;
      border-radius:26px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .form-card:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(620px 220px at 0% 0%, rgba(255,77,46,.18), transparent 58%),
        radial-gradient(520px 220px at 100% 30%, rgba(255,122,24,.14), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .form-card > *{position:relative; z-index:1}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:12.8px;
      color:rgba(31,35,40,.86);
      font-weight:900;
      letter-spacing:.1px;
    }
    .input, select, textarea{
      border:1px solid rgba(30,35,40,.14);
      background: rgba(255,255,255,.88);
      border-radius:16px;
      padding:12px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease;
      color:rgba(31,35,40,.95);
    }
    textarea{min-height:120px; resize:vertical}
    .input:focus, select:focus, textarea:focus{
      border-color: rgba(255,77,46,.32);
      box-shadow: 0 0 0 4px var(--focus);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
    }
    .hint{
      color:var(--muted2);
      font-size:12.6px;
      line-height:1.5;
      max-width:60ch;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    details.faq-item{
      border-radius:22px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
      padding:12px 14px;
      box-shadow: 0 10px 28px rgba(18,18,18,.06);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details.faq-item[open]{
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 44px rgba(18,18,18,.10);
      transform: translateY(-2px);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      letter-spacing:.1px;
      font-size:13.8px;
      padding:4px 0;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .chev{
      width:36px; height:36px; border-radius:14px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(255,77,46,.22)}
    .faq-body{
      color:var(--muted2);
      font-size:13.1px;
      line-height:1.7;
      padding:10px 2px 4px;
    }

    .tag-cloud{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }
    .tagx{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.72);
      color:rgba(31,35,40,.88);
      font-weight:850;
      font-size:12.8px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .tagx:hover{
      transform: translateY(-1px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.06);
    }

    .timeline{
      display:grid;
      gap:12px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:24px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.76);
    }
    .time-dot{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(255,77,46,.22);
      background: linear-gradient(135deg, rgba(255,77,46,.14), rgba(255,122,24,.08));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 36px rgba(255,77,46,.08);
      flex:0 0 auto;
      margin-top:2px;
    }
    .time-dot svg{width:18px; height:18px; fill: rgba(31,35,40,.92)}
    .time-item h3{margin:0; font-size:14.5px; font-weight:980}
    .time-item p{
      margin:6px 0 0; color:var(--muted2);
      font-size:13.1px; line-height:1.65;
    }

    .contact-grid{
      display:grid; grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:stretch;
    }
    .contact-side{
      padding:16px;
      border-radius:26px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 28px rgba(18,18,18,.06);
      overflow:hidden;
      position:relative;
    }
    .contact-side:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(640px 240px at 0% 0%, rgba(255,77,46,.18), transparent 58%);
      opacity:.9; pointer-events:none;
    }
    .contact-side > *{position:relative; z-index:1}
    .contact-side h3{margin:0; font-size:16px; font-weight:980; letter-spacing:.1px}
    .kv{
      display:grid; grid-template-columns: 1fr;
      gap:10px;
      margin-top:12px;
    }
    .kv .row{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
      border-radius:20px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.74);
      padding:12px;
    }
    .kv .k{color:var(--muted2); font-size:12.7px; font-weight:900; letter-spacing:.1px}
    .kv .v{font-size:13.2px; font-weight:950; color:rgba(31,35,40,.92); text-align:right}
    .qr-wrap{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:22px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.74);
      flex-wrap:wrap;
    }
    .qr-wrap .qr{
      width:96px; height:96px; border-radius:18px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.9);
      overflow:hidden;
      flex:0 0 auto;
    }
    .qr-wrap .qr img{width:100%; height:auto; display:block}
    .qr-wrap .qr-meta{
      flex:1 1 200px;
      min-width: 200px;
    }
    .qr-wrap .qr-meta strong{display:block; font-weight:980; margin-bottom:6px}
    .qr-wrap .qr-meta span{color:var(--muted2); font-size:12.9px; line-height:1.6; display:block}
    .links-row{
      margin-top:10px; display:flex; gap:10px; flex-wrap:wrap;
    }
    .link-pill{
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      color:rgba(31,35,40,.92);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .link-pill:hover{
      transform: translateY(-1px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.06);
    }

    .partner-grid{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap:10px;
    }
    .partner{
      padding:12px 10px;
      border-radius:18px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.72);
      text-align:center;
      font-weight:950;
      color:rgba(31,35,40,.86);
      font-size:12.6px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .partner:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.05);
    }

    footer{
      border-top:1px solid rgba(30,35,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.86));
      padding:18px 0 24px;
      color:#1f2328;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:start;
    }
    .footer-left{
      padding:14px;
      border-radius:24px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
    }
    .footer-left .top{
      display:flex; align-items:center; gap:12px; justify-content:space-between; flex-wrap:wrap;
    }
    .foot-brand{
      display:flex; align-items:center; gap:10px;
      flex: 1 1 auto;
    }
    .foot-brand img{
      width:40px; height:40px; object-fit:contain;
      border-radius:14px;
      border:1px solid rgba(255,77,46,.22);
      background: rgba(255,255,255,.8);
    }
    .footer-left h3{
      margin:0;
      font-size:14.5px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .footer-left p{
      margin:10px 0 0;
      color:var(--muted2);
      font-size:13.1px;
      line-height:1.7;
      max-width:70ch;
    }
    .footer-right{
      padding:14px;
      border-radius:24px;
      border:1px solid rgba(30,35,40,.12);
      background: rgba(255,255,255,.78);
    }
    .footer-right h4{
      margin:0;
      font-size:14px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .footer-links{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .footer-links a{
      text-decoration:none;
      padding:9px 12px;
      border-radius:16px;
      border:1px solid rgba(30,35,40,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      font-size:12.8px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(255,77,46,.22);
      background: rgba(255,77,46,.06);
    }
    .copyright{
      margin-top:14px;
      color:var(--muted2);
      font-size:12.5px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:0 4px;
    }

    .backtop{
      position:fixed;
      right:16px; bottom:16px;
      z-index:70;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(30,35,40,.14);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 36px rgba(18,18,18,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      opacity:0; transform: translateY(10px);
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .backtop.show{
      opacity:1; transform: translateY(0);
      pointer-events:auto;
    }
    .backtop:hover{
      border-color: rgba(255,77,46,.25);
      background: rgba(255,77,46,.06);
    }

    .floating-kefu{
      position:fixed;
      left:16px; bottom:16px;
      z-index:70;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-start;
    }
    .kefu-btn{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(30,35,40,.14);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 36px rgba(18,18,18,.12);
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .kefu-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,46,.25);
      background: rgba(255,77,46,.06);
    }
    .kefu-btn .bubble{
      width:36px; height:36px; border-radius:14px;
      border:1px solid rgba(255,77,46,.22);
      background: linear-gradient(135deg, rgba(255,77,46,.14), rgba(255,122,24,.08));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 36px rgba(255,77,46,.10);
    }
    .kefu-btn svg{width:18px; height:18px; fill: rgba(31,35,40,.92)}
    .kefu-btn span{
      font-weight:950; font-size:13.2px; color:rgba(31,35,40,.92);
    }
    .kefu-pop{
      display:none;
      padding:12px;
      border-radius:24px;
      border:1px solid rgba(30,35,40,.14);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow2);
      width: 220px;
      backdrop-filter: blur(8px);
    }
    .kefu-pop.show{display:block}
    .kefu-pop .row{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .kefu-pop h4{
      margin:0;
      font-size:13.8px;
      font-weight:980;
    }
    .kefu-pop p{
      margin:8px 0 10px;
      color:var(--muted2);
      font-size:12.7px;
      line-height:1.55;
    }
    .kefu-pop img{
      width:196px; height:auto; display:block;
      border-radius:18px;
      border:1px solid rgba(30,35,40,.12);
      background:#fff;
    }

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      h1{font-size:34px}
      nav .menu{display:none}
      .nav-mobile{display:flex; gap:10px; align-items:center}
      .nav-cta .btn-ghost{display:none}
      .hero-right{padding:0}
      .grid-3{grid-template-columns: 1fr 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .two-col{grid-template-columns: 1fr}
      .gallery{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .partner-grid{grid-template-columns: 1fr 1fr 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .floating-kefu{left:12px}
      .floating-kefu .kefu-pop{width: 205px}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .drawer .panel{animation:none}
    }