:root{
      --bg0:#fff7ed;
      --bg1:#ffffff;
      --text:#141414;
      --muted:#505a66;
      --muted2:#6a7482;
      --card:#ffffff;
      --border:rgba(20,20,20,.10);
      --shadow:0 18px 50px rgba(20,20,20,.08);
      --shadow2:0 10px 30px rgba(20,20,20,.08);
      --brand1:#ff3d7f;
      --brand2:#ff7a18;
      --brand3:#24c6ff;
      --brand4:#7c5cff;
      --good:#12b76a;
      --warn:#f59e0b;
      --ring:rgba(255,61,127,.35);
      --radius:18px;
      --radius2:26px;
      --max:1160px;
      --pad:18px;
      --navH:72px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 8% -10%, rgba(124,92,255,.20), transparent 55%),
        radial-gradient(900px 520px at 95% 0%, rgba(36,198,255,.20), transparent 50%),
        radial-gradient(760px 460px at 80% 55%, rgba(255,61,127,.15), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 40%, #ffffff 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    button, input, select, textarea{font:inherit}
    :focus-visible{outline:3px solid var(--ring); outline-offset:3px}

    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .skip{
      position:absolute; left:10px; top:-60px;
      background:#111; color:#fff; padding:10px 12px;
      border-radius:12px; z-index:9999;
      transition:top .2s ease;
    }
    .skip:focus{top:10px}

    header{
      position:sticky; top:0; z-index:100;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,20,20,.08);
    }

    .navwrap{
      height:var(--navH);
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
    }

    .brand{
      display:flex; align-items:center; gap:10px; min-width:220px;
    }
    .brand .logo{
      width:42px; height:42px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(255,61,127,.18), rgba(36,198,255,.18));
      border:1px solid rgba(20,20,20,.10);
      display:flex; align-items:center; justify-content:center;
      padding:6px;
      overflow:hidden;
    }
    .brand .logo img{width:100%; height:100%; object-fit:contain}
    .brand .title{
      line-height:1.05;
      display:flex; flex-direction:column;
    }
    .brand .title strong{font-size:14.5px; letter-spacing:.2px}
    .brand .title span{font-size:12px; color:var(--muted2); margin-top:2px}

    .navlinks{
      display:flex; align-items:center; justify-content:flex-end;
      gap:16px;
      flex-wrap:nowrap;
    }
    .navlinks a{
      font-size:13.5px;
      color:#1a1a1a;
      opacity:.86;
      padding:10px 10px;
      border-radius:12px;
      transition:background .2s ease, opacity .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(124,92,255,.10);
      opacity:1;
      transform:translateY(-1px);
    }

    .navcta{
      display:flex; align-items:center; gap:10px;
    }

    .btn{
      border:none; cursor:pointer;
      border-radius:14px;
      padding:11px 14px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background:linear-gradient(135deg, var(--brand1), var(--brand2));
      color:#fff;
      box-shadow: 0 14px 34px rgba(255,61,127,.24);
    }
    .btn-primary:hover{box-shadow: 0 18px 42px rgba(255,61,127,.30)}
    .btn-ghost{
      background:rgba(255,255,255,.7);
      border:1px solid rgba(20,20,20,.12);
      color:#151515;
    }
    .btn-ghost:hover{background:rgba(255,255,255,.92); border-color:rgba(20,20,20,.18)}
    .btn-subtle{
      background:rgba(124,92,255,.10);
      border:1px solid rgba(124,92,255,.20);
      color:#2b1f5d;
    }
    .btn-subtle:hover{background:rgba(124,92,255,.14); border-color:rgba(124,92,255,.28)}
    .btn-small{padding:9px 12px; border-radius:12px; font-size:13.5px}

    .hamburger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.12);
      background:rgba(255,255,255,.7);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition:background .2s ease, transform .15s ease;
    }
    .hamburger:hover{background:rgba(255,255,255,.92)}
    .hamburger:active{transform:translateY(1px)}
    .hamburger svg{opacity:.85}

    .mobilePanel{
      display:none;
      border-top:1px solid rgba(20,20,20,.08);
      padding:14px 0 18px;
    }
    .mobilePanel .grid{
      display:grid; grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobilePanel a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.75);
      font-size:13.5px;
      opacity:.9;
      transition:transform .15s ease, box-shadow .2s ease;
    }
    .mobilePanel a:hover{transform:translateY(-1px); box-shadow: 0 10px 26px rgba(20,20,20,.08)}
    .mobilePanel .actions{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .mobilePanel .actions .btn{flex:1; min-width:140px}

    main{padding-bottom:20px}

    .hero{
      padding:28px 0 8px;
    }

    .heroGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:18px;
      align-items:stretch;
    }

    .heroLeft{
      padding:22px 22px 22px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:
        radial-gradient(1200px 500px at 0% 0%, rgba(255,61,127,.16), transparent 45%),
        radial-gradient(900px 420px at 100% 20%, rgba(36,198,255,.16), transparent 45%),
        radial-gradient(820px 360px at 55% 120%, rgba(124,92,255,.14), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.64));
      box-shadow: 0 24px 70px rgba(20,20,20,.06);
      overflow:hidden;
      position:relative;
    }

    .heroLeft:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(90deg, rgba(255,61,127,.26), rgba(36,198,255,.24), rgba(124,92,255,.20));
      opacity:.22;
      filter: blur(24px);
      pointer-events:none;
    }

    .heroLeftInner{
      position:relative;
      display:flex; flex-direction:column;
      height:100%;
      gap:14px;
    }

    .pillRow{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .pill{
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      padding:8px 10px;
      border-radius:999px;
      font-size:12.8px;
      color:#1b1b1b;
      display:inline-flex; align-items:center; gap:8px;
    }
    .dot{
      width:9px; height:9px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 0 0 5px rgba(255,61,127,.12);
      flex:0 0 auto;
    }

    h1{
      font-size:34px;
      line-height:1.12;
      margin:0;
      letter-spacing:-.6px;
    }

    .heroSub{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width:62ch;
    }

    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
      margin-top:4px;
    }
    .heroActions .btn{min-width:168px}

    .miniTrust{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:8px;
    }
    .trustItem{
      display:flex; align-items:flex-start; gap:10px;
      min-width:190px;
    }
    .iconBadge{
      width:40px; height:40px;
      border-radius:14px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,20,20,.10);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 10px 24px rgba(20,20,20,.06);
      flex:0 0 auto;
    }
    .trustItem strong{
      display:block;
      font-size:13.8px;
      margin-top:1px;
    }
    .trustItem span{
      display:block;
      font-size:12.8px;
      color:var(--muted2);
      margin-top:2px;
      line-height:1.35;
    }

    .heroRight{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
      box-shadow: 0 18px 52px rgba(20,20,20,.06);
      position:relative;
      overflow:hidden;
    }
    .heroRight:after{
      content:"";
      position:absolute; right:-80px; top:-90px;
      width:220px; height:220px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,122,24,.45), transparent 58%);
      filter: blur(8px);
      opacity:.9;
      pointer-events:none;
    }

    .rightInner{
      position:relative;
      display:flex; flex-direction:column; gap:12px;
      height:100%;
    }

    .formCard{
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
    }
    .formCard h2{
      font-size:15.5px;
      margin:0 0 8px;
      letter-spacing:-.2px;
    }
    .formRow{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
      margin-top:10px;
    }
    .field{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .field label{
      font-size:12.6px;
      color:var(--muted2);
      white-space:nowrap;
    }
    .input, select, textarea{
      width:100%;
      border-radius:14px;
      padding:11px 12px;
      border:1px solid rgba(20,20,20,.12);
      background:rgba(255,255,255,.9);
      color:#111;
      transition:border-color .2s ease, box-shadow .2s ease, transform .15s ease;
    }
    textarea{min-height:96px; resize:vertical}
    .input:focus, select:focus, textarea:focus{
      border-color:rgba(255,61,127,.40);
      box-shadow:0 0 0 4px rgba(255,61,127,.14);
      outline:none;
    }

    .formCard .submitRow{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .hint{
      font-size:12.5px; color:var(--muted2);
      display:flex; align-items:center; gap:8px;
    }
    .hint svg{opacity:.8}
    .kbd{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size:12px; padding:3px 8px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.75);
      color:#2a2a2a;
    }

    .scorePanel{
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      padding:14px;
    }
    .scoreTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .scoreTitle{
      display:flex; flex-direction:column; gap:6px;
    }
    .scoreTitle strong{font-size:15.2px}
    .scoreTitle span{font-size:12.8px; color:var(--muted2); line-height:1.35}
    .stars{
      display:flex; gap:4px;
      align-items:center;
      margin-top:2px;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
      background:conic-gradient(from 180deg, rgba(255,215,0,.0), rgba(255,215,0,.0));
    }
    .star svg{fill:#fbbf24}
    .rating{
      font-size:12.8px; color:var(--muted2);
      margin-top:6px;
    }

    .scoreGrid{
      display:grid; grid-template-columns:1fr 1fr;
      gap:10px; margin-top:12px;
    }
    .metric{
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.78);
      padding:10px 10px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform:translateY(-2px);
      box-shadow: 0 16px 34px rgba(20,20,20,.08);
      border-color:rgba(20,20,20,.16);
    }
    .metric strong{font-size:14.4px}
    .metric span{
      font-size:12.6px; color:var(--muted2); line-height:1.3; display:block; margin-top:3px;
    }
    .metric .tag{
      font-size:12px; padding:4px 8px; border-radius:999px;
      background:rgba(124,92,255,.10);
      border:1px solid rgba(124,92,255,.18);
      color:#2b1f5d;
      white-space:nowrap;
      margin-top:2px;
    }

    section.block{
      padding:26px 0;
    }

    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .sectionHead h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.6;
      max-width:66ch;
    }

    .tagRow{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      justify-content:flex-end;
    }
    .tagChip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      font-size:12.8px;
      color:#1b1b1b;
    }

    .grid3{
      display:grid; grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .grid2{
      display:grid; grid-template-columns:repeat(2, 1fr);
      gap:14px;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.74);
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow: 0 24px 70px rgba(20,20,20,.08);
      border-color:rgba(20,20,20,.16);
    }
    .cardTitle{
      display:flex; align-items:flex-start; gap:10px;
      margin-bottom:8px;
    }
    .cardTitle h3{
      margin:0;
      font-size:15.6px;
      letter-spacing:-.2px;
    }
    .cardTitle p{
      margin:0;
      font-size:12.8px;
      color:var(--muted2);
      line-height:1.4;
    }
    .cardBody{color:var(--muted); font-size:14px; line-height:1.7}
    .badgeIcon{
      width:44px; height:44px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(255,61,127,.14), rgba(36,198,255,.12));
      border:1px solid rgba(20,20,20,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .badgeIcon svg{opacity:.92}

    .steps{
      display:grid; grid-template-columns:repeat(4, 1fr);
      gap:14px;
    }
    .step{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(20,20,20,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .step:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(360px 140px at 20% 0%, rgba(255,61,127,.16), transparent 55%),
        radial-gradient(260px 120px at 80% 20%, rgba(36,198,255,.14), transparent 55%);
      opacity:.6;
      pointer-events:none;
    }
    .stepInner{position:relative; display:flex; flex-direction:column; gap:10px}
    .stepTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .stepNum{
      width:40px; height:40px;
      border-radius:16px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(20,20,20,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:800;
      letter-spacing:-.5px;
    }
    .stepIcon{
      width:38px; height:38px;
      border-radius:14px;
      background:rgba(124,92,255,.10);
      border:1px solid rgba(124,92,255,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .step h3{margin:0; font-size:15.2px}
    .step p{margin:0; color:var(--muted); font-size:13.8px; line-height:1.6}

    .compareWrap{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: 0 24px 70px rgba(20,20,20,.06);
      overflow:hidden;
    }
    .compareTopBar{
      padding:16px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-bottom:1px solid rgba(20,20,20,.08);
      background:
        radial-gradient(800px 250px at 10% 0%, rgba(255,61,127,.13), transparent 55%),
        radial-gradient(620px 240px at 90% 0%, rgba(36,198,255,.12), transparent 55%);
    }
    .compareTopBar strong{font-size:16px}
    .compareTopBar span{font-size:13.2px; color:var(--muted2); line-height:1.35}
    .tableWrap{
      overflow:auto;
      -webkit-overflow-scrolling:touch;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:820px;
      background:transparent;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(20,20,20,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.8px;
    }
    th{
      color:#1c1c1c;
      background:rgba(255,255,255,.6);
      position:sticky; top:0; z-index:1;
      backdrop-filter: blur(6px);
      font-weight:800;
      border-bottom:1px solid rgba(20,20,20,.10);
    }
    tr:hover td{background:rgba(124,92,255,.06)}
    .scoreCell{
      display:flex; align-items:center; justify-content:space-between; gap:10px; min-width:220px;
    }
    .scorePill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      white-space:nowrap;
    }
    .scorePill b{font-size:14.2px}
    .starLine{
      display:flex; gap:3px; align-items:center;
    }
    .mutedCell{color:var(--muted); line-height:1.55}

    .twoCol{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px; align-items:start;
    }
    .list{
      margin:0; padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
    }
    .check{
      width:22px; height:22px;
      border-radius:9px;
      background:rgba(18,183,106,.12);
      border:1px solid rgba(18,183,106,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .list strong{font-size:13.8px}
    .list span{display:block; margin-top:4px; color:var(--muted2); font-size:13px; line-height:1.45}

    .caseGrid{
      display:grid; grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .thumb{
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      overflow:hidden;
      background:rgba(255,255,255,.7);
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-width:0;
    }
    .thumb:hover{
      transform:translateY(-3px);
      box-shadow: 0 26px 70px rgba(20,20,20,.08);
      border-color:rgba(20,20,20,.16);
    }
    .thumb .imgBox{
      padding:12px;
      background:
        radial-gradient(520px 180px at 15% 0%, rgba(255,61,127,.16), transparent 55%),
        radial-gradient(420px 180px at 85% 10%, rgba(36,198,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.65));
      border-bottom:1px solid rgba(20,20,20,.08);
    }
    .thumb .imgBox img{
      width:100%;
      height:auto;
      aspect-ratio: 16 / 10;
      object-fit:cover;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:#fff;
    }
    .thumb .content{
      padding:14px 14px 16px;
      display:flex; flex-direction:column; gap:8px;
    }
    .thumb h3{
      margin:0;
      font-size:15.2px;
      letter-spacing:-.2px;
    }
    .thumb p{
      margin:0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.6;
    }
    .metaRow{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:2px;
    }
    .metaTag{
      font-size:12.4px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      color:#1c1c1c;
    }

    .articleList{
      display:grid; grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .articles{
      display:flex; flex-direction:column; gap:10px;
    }
    .articleItem{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.74);
      box-shadow: 0 14px 34px rgba(20,20,20,.04);
      display:flex; gap:12px; align-items:flex-start;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .articleItem:hover{
      transform:translateY(-2px);
      box-shadow: 0 22px 55px rgba(20,20,20,.08);
      border-color:rgba(20,20,20,.16);
    }
    .articleItem .leftMark{
      width:44px; height:44px;
      border-radius:16px;
      background:rgba(255,61,127,.10);
      border:1px solid rgba(255,61,127,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .articleItem .text{min-width:0}
    .articleItem h3{
      margin:0;
      font-size:15.1px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .articleItem p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.55;
    }
    .articleItem a{
      display:inline-flex; align-items:center; gap:8px;
      color:rgba(20,20,20,.86);
      margin-top:8px;
      font-size:13.2px;
      font-weight:700;
    }
    .sidePanel{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      padding:16px;
      position:sticky;
      top: calc(var(--navH) + 16px);
    }
    .sidePanel h3{margin:0; font-size:15.8px}
    .sidePanel p{margin:8px 0 0; color:var(--muted); font-size:13.8px; line-height:1.65}
    .tagCloud{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .cloudTag{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(124,92,255,.10);
      border:1px solid rgba(124,92,255,.18);
      color:#2b1f5d;
      transition:transform .15s ease, background .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloudTag:hover{transform:translateY(-1px); background:rgba(124,92,255,.14)}
    .miniTimeline{
      margin-top:12px;
      border-top:1px solid rgba(20,20,20,.08);
      padding-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .timeItem{
      display:flex; gap:10px; align-items:flex-start;
    }
    .timeBullet{
      width:36px; height:36px;
      border-radius:14px;
      background:rgba(36,198,255,.10);
      border:1px solid rgba(36,198,255,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .timeItem strong{font-size:13.6px}
    .timeItem span{display:block; color:var(--muted2); font-size:13px; margin-top:4px; line-height:1.45}

    .faqWrap{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .accordion{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      overflow:hidden;
    }
    .accItem{
      border-bottom:1px solid rgba(20,20,20,.08);
    }
    .accItem:last-child{border-bottom:none}
    .accBtn{
      width:100%;
      padding:14px 14px;
      background:transparent;
      border:none;
      text-align:left;
      cursor:pointer;
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
    }
    .accBtn strong{
      font-size:14.4px;
      letter-spacing:-.2px;
      line-height:1.45;
    }
    .accBtn span{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition:transform .2s ease;
      margin-top:2px;
    }
    .accPanel{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .accPanelInner{
      padding:0 14px 14px 14px;
      color:var(--muted);
      font-size:13.8px;
      line-height:1.75;
    }
    .accItem[data-open="true"] .accPanel{max-height:240px}
    .accItem[data-open="true"] .accBtn span{transform:rotate(45deg)}
    .accBtn:active{transform:translateY(1px)}

    .reviewsGrid{
      display:grid; grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .review{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.74);
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      display:flex; flex-direction:column; gap:10px;
      min-width:0;
      position:relative;
      overflow:hidden;
    }
    .review:before{
      content:"";
      position:absolute; inset:-2px;
      background:radial-gradient(460px 160px at 15% 0%, rgba(255,61,127,.14), transparent 55%);
      opacity:.7;
      pointer-events:none;
    }
    .reviewInner{position:relative}
    .reviewTop{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
    }
    .reviewPerson{
      display:flex; gap:10px; align-items:flex-start;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background:linear-gradient(135deg, rgba(36,198,255,.14), rgba(124,92,255,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      letter-spacing:-.5px;
      flex:0 0 auto;
    }
    .reviewPerson strong{display:block; font-size:14.2px}
    .reviewPerson span{display:block; color:var(--muted2); font-size:13px; margin-top:4px; line-height:1.35}
    .reviewText{
      color:var(--muted);
      font-size:13.8px;
      line-height:1.75;
      margin:0;
    }

    .networkGrid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .networkMap{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:
        radial-gradient(700px 250px at 10% 0%, rgba(36,198,255,.14), transparent 55%),
        radial-gradient(620px 240px at 90% 0%, rgba(255,61,127,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .mapHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .mapHeader h3{margin:0; font-size:16px}
    .mapHeader p{margin:6px 0 0; color:var(--muted); font-size:13.6px; line-height:1.55; max-width:48ch}
    .cityGrid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:10px;
      margin-top:12px;
    }
    .city{
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      padding:10px 10px;
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .city strong{font-size:13.8px}
    .city span{font-size:12.8px; color:var(--muted2); line-height:1.35}
    .city i{
      font-style:normal;
      width:100%;
      height:8px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(255,61,127,.25), rgba(36,198,255,.25));
      border:1px solid rgba(20,20,20,.08);
    }

    .contactGrid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px; align-items:start;
    }
    .contactCard{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(20,20,20,.05);
      padding:16px;
    }
    .contactCard h3{margin:0; font-size:16px}
    .contactCard p{margin:8px 0 0; color:var(--muted); font-size:13.8px; line-height:1.7}
    .contactInfo{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .infoBlock{
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.78);
      padding:12px 12px;
      min-width:0;
    }
    .infoBlock strong{display:block; font-size:13.8px}
    .infoBlock a{display:inline-flex; margin-top:6px; font-size:13.6px; font-weight:750}
    .kefuRow{
      display:flex; gap:12px; align-items:flex-start; margin-top:12px; flex-wrap:wrap;
    }
    .qr{
      width:96px; height:96px;
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.9);
      padding:8px;
    }

    .footer{
      margin-top:10px;
      border-top:1px solid rgba(20,20,20,.10);
      background:
        radial-gradient(900px 260px at 10% 0%, rgba(124,92,255,.16), transparent 55%),
        radial-gradient(700px 260px at 95% 0%, rgba(255,61,127,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.92));
    }
    .footerInner{
      padding:20px 0 26px;
      display:flex; flex-direction:column; gap:14px;
    }
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
      min-width:260px;
    }
    .footLogo{
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.75);
      padding:8px;
      overflow:hidden;
    }
    .footLogo img{width:100%; height:100%; object-fit:contain}
    .footBrand strong{display:block; font-size:15.8px}
    .footBrand span{display:block; margin-top:5px; color:var(--muted); font-size:13.8px; line-height:1.6}
    .friendLinks{
      display:flex; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
      max-width:650px;
    }
    .friendLinks a{
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.75);
      transition:transform .15s ease, background .2s ease;
      opacity:.95;
      white-space:nowrap;
    }
    .friendLinks a:hover{transform:translateY(-1px); background:rgba(255,255,255,.95)}
    .footerBottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding-top:14px;
      border-top:1px solid rgba(20,20,20,.08);
    }
    .copyright{
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.6;
    }
    .footLinks{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:flex-end;
    }
    .footLinks a{
      color:rgba(20,20,20,.86);
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.70);
    }
    .footLinks a:hover{background:rgba(255,255,255,.95)}

    .floatKefu{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:200;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(20,20,20,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .2s ease, background .2s ease;
    }
    .floatBtn:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.96);
      box-shadow: 0 24px 70px rgba(20,20,20,.14);
    }
    .floatPopover{
      width:260px;
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 24px 70px rgba(20,20,20,.16);
      overflow:hidden;
      display:none;
    }
    .floatPopover .popHead{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(20,20,20,.08);
      background:linear-gradient(135deg, rgba(255,61,127,.12), rgba(36,198,255,.10));
    }
    .floatPopover .popHead strong{font-size:13.8px}
    .floatPopover .popHead button{
      border:none; background:transparent; cursor:pointer; padding:6px; border-radius:12px;
      border:1px solid rgba(20,20,20,.10); background:rgba(255,255,255,.75);
    }
    .floatPopover .popBody{
      padding:12px 12px 14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .floatPopover .popBody p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.55}
    .floatPopover .popBody .links{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .floatPopover .popBody .links a{
      font-size:13px;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.75);
      font-weight:800;
    }
    .floatPopover .popBody .links a:hover{background:rgba(255,255,255,.95)}
    .toTop{
      display:flex; align-items:center; justify-content:center;
      width:52px; height:52px;
    }

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

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .accPanel{transition:none}
      .accItem[data-open="true"] .accPanel{max-height:none}
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      .navlinks{display:none}
      .hamburger{display:flex}
      .mobilePanel{display:block}
      .mobilePanel[data-open="false"]{display:none}
      .steps{grid-template-columns:repeat(2, 1fr)}
      .grid3{grid-template-columns:repeat(2, 1fr)}
      .grid2{grid-template-columns:1fr}
      .caseGrid{grid-template-columns:repeat(2, 1fr)}
      .articleList{grid-template-columns:1fr}
      .sidePanel{position:relative; top:auto}
      .faqWrap{grid-template-columns:1fr}
      .reviewsGrid{grid-template-columns:repeat(2, 1fr)}
      .contactGrid{grid-template-columns:1fr}
      .networkGrid{grid-template-columns:1fr}
      .friendLinks{justify-content:flex-start}
      .cityGrid{grid-template-columns:repeat(2, 1fr)}
      .footerTop{flex-direction:column; align-items:flex-start}
    }
    @media (max-width: 520px){
      h1{font-size:26px}
      .trustItem{min-width:0; width:100%}
      .grid3{grid-template-columns:1fr}
      .caseGrid{grid-template-columns:1fr}
      .reviewsGrid{grid-template-columns:1fr}
      .formRow{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .cityGrid{grid-template-columns:1fr 1fr}
      .contactInfo{grid-template-columns:1fr}
    }