:root{
      --bg0:#fff7e6;
      --bg1:#ffffff;
      --text:#191919;
      --muted:#5c5f66;
      --muted2:#7a7f87;
      --line:rgba(25,25,25,.10);
      --line2:rgba(25,25,25,.14);
      --card:#ffffff;
      --shadow:0 18px 50px rgba(0,0,0,.08);
      --shadow2:0 10px 24px rgba(0,0,0,.08);
      --yellow:#ffcc1a;
      --yellow2:#ffb000;
      --ink:#141414;
      --blue:#165dff;
      --green:#1aa56a;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --padX:18px;
      --focus:0 0 0 4px rgba(255,176,0,.28);
    }
    *{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","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 520px at 15% -10%, rgba(255,204,26,.38), rgba(255,204,26,0) 60%),
        radial-gradient(900px 520px at 85% 0%, rgba(22,93,255,.12), rgba(22,93,255,0) 60%),
        linear-gradient(180deg, var(--bg0), #ffffff 42%, #ffffff);
      line-height:1.45;
    }
    a{color:inherit}
    .skip{
      position:absolute; left:-9999px; top:0;
      background:#111; color:#fff; padding:10px 12px; border-radius:10px;
      z-index:9999;
    }
    .skip:focus{left:12px; top:12px}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }
    header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,247,230,.72);
      backdrop-filter:saturate(1.2) blur(10px);
      border-bottom:1px solid rgba(25,25,25,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:14px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:200px;
    }
    .brand img{width:46px; height:46px; object-fit:contain}
    .brand-title{
      display:flex; flex-direction:column; gap:2px;
      min-width:0;
    }
    .brand-title strong{
      font-size:14px; letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px; color:var(--muted);
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .nav-right{
      display:flex; align-items:center; gap:10px;
    }
    .nav-links{
      display:flex; align-items:center; gap:14px;
      padding:0; margin:0; list-style:none;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px;
      color:rgba(20,20,20,.84);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition:background .15s ease, border-color .15s ease, transform .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(255,204,26,.18);
      border-color:rgba(255,176,0,.25);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:12px;
      border:1px solid rgba(25,25,25,.14);
      background:#fff;
      color:var(--ink);
      font-weight:650;
      font-size:13px;
      text-decoration:none;
      transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 10px 18px rgba(0,0,0,.10); border-color:rgba(25,25,25,.22)}
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn-primary{
      border-color:rgba(255,176,0,.35);
      background:linear-gradient(180deg, #ffdb57, #ffb000);
      box-shadow:0 14px 30px rgba(255,176,0,.22);
    }
    .btn-primary:hover{
      box-shadow:0 18px 38px rgba(255,176,0,.28);
      border-color:rgba(255,176,0,.55);
      transform:translateY(-2px);
    }
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(20,20,20,.78);
      box-shadow:0 0 0 4px rgba(255,176,0,.22);
    }
    .burger{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(25,25,25,.14);
      background:#fff;
      align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .16s ease, box-shadow .16s ease;
    }
    .burger:hover{transform:translateY(-1px); box-shadow:0 10px 18px rgba(0,0,0,.10)}
    .burger span{
      display:block; width:18px; height:2px; background:rgba(20,20,20,.88);
      position:relative;
    }
    .burger span:before,.burger span:after{
      content:""; position:absolute; left:0; width:18px; height:2px; background:rgba(20,20,20,.88);
      transition:transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .burger span:before{top:-6px}
    .burger span:after{top:6px}
    .mobile-menu{
      display:none;
      padding:12px 0 16px;
      border-top:1px solid rgba(25,25,25,.08);
    }
    .mobile-menu.open{display:block}
    .mobile-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobile-grid a{
      text-decoration:none;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.78);
      padding:10px 12px;
      border-radius:14px;
      font-size:13px;
      color:rgba(20,20,20,.88);
      transition:transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .mobile-grid a:hover{transform:translateY(-1px); border-color:rgba(255,176,0,.35); background:#fff}
    main{padding-bottom:20px}
    .hero{
      padding:28px 0 10px;
    }
    .hero-card{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:
        radial-gradient(900px 420px at 18% 0%, rgba(255,176,0,.35), rgba(255,176,0,0) 60%),
        radial-gradient(900px 420px at 82% 10%, rgba(22,93,255,.16), rgba(22,93,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
      box-shadow:0 20px 60px rgba(0,0,0,.08);
      overflow:hidden;
      position:relative;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.25fr .95fr;
      gap:18px;
      padding:26px;
      align-items:stretch;
    }
    .hero-left{
      padding:10px 6px 10px 8px;
      display:flex; flex-direction:column; gap:14px;
      min-width:0;
    }
    .pill-row{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px; border-radius:999px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.78);
      font-size:12px; color:rgba(20,20,20,.86);
      white-space:nowrap;
    }
    .pill i{
      width:9px; height:9px; border-radius:50%;
      background:linear-gradient(180deg, #ffdb57, #ffb000);
      box-shadow:0 0 0 4px rgba(255,176,0,.18);
    }
    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      max-width:58ch;
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px; align-items:center;
      margin-top:4px;
    }
    .btn-ghost{
      background:rgba(255,255,255,.75);
      border-color:rgba(25,25,25,.14);
    }
    .hero-meta{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:4px;
    }
    .stat-mini{
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.74);
      border-radius:16px;
      padding:12px 12px;
      display:flex; flex-direction:column; gap:6px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .stat-mini:hover{transform:translateY(-2px); border-color:rgba(255,176,0,.30); box-shadow:0 16px 30px rgba(0,0,0,.08)}
    .stat-mini strong{font-size:16px}
    .stat-mini span{font-size:12px; color:var(--muted2)}
    .hero-right{
      display:flex; flex-direction:column; gap:12px;
      padding:10px 6px;
    }
    .signal-card{
      border-radius:20px;
      border:1px solid rgba(25,25,25,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.94));
      padding:14px;
      position:relative;
      overflow:hidden;
      flex:1;
      min-width:0;
    }
    .signal-top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
      margin-bottom:10px;
    }
    .signal-title{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .signal-title b{
      font-size:14px;
      letter-spacing:.2px;
    }
    .signal-title small{
      color:var(--muted);
      font-size:12px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(255,176,0,.35);
      background:rgba(255,176,0,.14);
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .badge .spark{
      width:10px; height:10px;
      background:linear-gradient(180deg, #ffdb57, #ffb000);
      border-radius:3px;
      transform:rotate(18deg);
      box-shadow:0 0 0 4px rgba(255,176,0,.18);
    }
    .channel-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:8px;
    }
    .channel{
      border-radius:16px;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.72);
      padding:10px 10px;
      display:flex; flex-direction:column; gap:6px;
    }
    .channel .k{
      font-size:12px; color:var(--muted2);
    }
    .channel .v{
      font-size:13px; font-weight:700;
      display:flex; align-items:center; gap:8px;
      min-width:0;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(22,93,255,.18);
      border:1px solid rgba(22,93,255,.35);
      box-shadow:0 0 0 4px rgba(22,93,255,.10);
    }
    .dot.y{background:rgba(255,176,0,.20); border-color:rgba(255,176,0,.40); box-shadow:0 0 0 4px rgba(255,176,0,.14)}
    .dot.g{background:rgba(26,165,106,.18); border-color:rgba(26,165,106,.40); box-shadow:0 0 0 4px rgba(26,165,106,.12)}
    .dot.b{background:rgba(20,20,20,.14); border-color:rgba(20,20,20,.20); box-shadow:0 0 0 4px rgba(20,20,20,.08)}
    .micro{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:8px;
    }
    .chip{
      font-size:12px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.72);
      padding:8px 10px;
      border-radius:999px;
      color:rgba(20,20,20,.84);
      transition:transform .16s ease, border-color .16s ease;
    }
    .chip:hover{transform:translateY(-1px); border-color:rgba(255,176,0,.35)}
    .section{
      padding:28px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      max-width:58ch;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .card{
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.86);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 10px 22px rgba(0,0,0,.04);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-width:0;
    }
    .card:hover{transform:translateY(-3px); box-shadow:0 18px 30px rgba(0,0,0,.08); border-color:rgba(255,176,0,.28)}
    .card h3{
      margin:0 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{margin:0; color:var(--muted); font-size:13px}
    .icon{
      width:40px; height:40px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(25,25,25,.12);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.75));
      margin-bottom:10px;
      position:relative;
      overflow:hidden;
    }
    .icon:after{
      content:""; position:absolute; inset:-40px -40px auto auto; width:90px; height:90px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(255,176,0,.55), rgba(255,176,0,0) 60%);
      transform:translate(10px,-10px);
    }
    .icon svg{position:relative}
    .list{
      padding:0; margin:0; list-style:none; display:flex; flex-direction:column; gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.75);
    }
    .check{
      width:22px; height:22px; border-radius:8px;
      border:1px solid rgba(255,176,0,.40);
      background:rgba(255,176,0,.16);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .li b{font-size:13px}
    .li span{display:block; color:var(--muted); font-size:12px; margin-top:4px}
    .timeline{
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.80);
      border-radius:var(--radius2);
      padding:16px;
    }
    .time-row{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap:10px;
      align-items:stretch;
    }
    .step{
      border-radius:18px;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.78);
      padding:14px 14px;
      display:flex; flex-direction:column; gap:8px;
      min-width:0;
    }
    .step .num{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(180deg, rgba(255,219,87,.95), rgba(255,176,0,.85));
      border:1px solid rgba(255,176,0,.45);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      box-shadow:0 14px 30px rgba(255,176,0,.20);
    }
    .step b{font-size:14px}
    .step span{color:var(--muted); font-size:12px}
    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.96));
      box-shadow:0 16px 40px rgba(0,0,0,.06);
      overflow:hidden;
    }
    .compare-head{
      padding:16px;
      border-bottom:1px solid rgba(25,25,25,.08);
      background:
        radial-gradient(700px 240px at 10% 0%, rgba(255,176,0,.26), rgba(255,176,0,0) 60%),
        linear-gradient(180deg, rgba(255,247,230,.75), rgba(255,255,255,.9));
    }
    .score-row{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .score-left{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:16px; height:16px;
      display:inline-block;
      background:linear-gradient(180deg, #ffdb57, #ffb000);
      clip-path:polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow:0 0 0 4px rgba(255,176,0,.16);
    }
    .score{
      display:flex; flex-direction:column; gap:3px;
    }
    .score strong{font-size:22px; letter-spacing:-.4px}
    .score span{color:var(--muted); font-size:12px}
    .rec{
      display:flex; flex-direction:column; gap:6px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(255,176,0,.35);
      background:rgba(255,176,0,.12);
      min-width:260px;
    }
    .rec b{font-size:14px}
    .rec small{color:var(--muted); font-size:12px}
    .table-wrap{padding:14px}
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:18px;
      border:1px solid rgba(25,25,25,.10);
      background:#fff;
    }
    th,td{
      text-align:left;
      padding:12px 12px;
      border-bottom:1px solid rgba(25,25,25,.08);
      vertical-align:top;
      font-size:13px;
    }
    th{
      background:linear-gradient(180deg, rgba(255,247,230,.9), rgba(255,255,255,1));
      color:rgba(20,20,20,.92);
      font-weight:800;
      border-bottom:1px solid rgba(25,25,25,.10);
    }
    tr:last-child td{border-bottom:none}
    .tag-good{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(26,165,106,.40);
      background:rgba(26,165,106,.12);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .tag-mid{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(255,176,0,.40);
      background:rgba(255,176,0,.14);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .tag-bad{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(25,25,25,.14);
      background:rgba(25,25,25,.06);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .table-note{
      margin-top:10px;
      color:var(--muted2);
      font-size:12px;
    }
    .service-badges{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .service-badges .chip{background:rgba(255,255,255,.86)}
    .client-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .quote{
      display:flex; flex-direction:column; gap:10px;
    }
    .quote .top{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(25,25,25,.12);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,176,0,.35), rgba(255,176,0,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:rgba(20,20,20,.88);
      flex:0 0 auto;
    }
    .who{
      display:flex; flex-direction:column; gap:3px;
      min-width:0;
    }
    .who b{font-size:13px}
    .who span{font-size:12px; color:var(--muted2)}
    .stars-mini{
      display:flex; gap:4px;
    }
    .stars-mini i{
      width:10px; height:10px; background:linear-gradient(180deg, #ffdb57, #ffb000);
      clip-path:polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      border-radius:1px;
    }
    .quote p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .cards-compact{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .mini-card{
      border-radius:18px;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.82);
      padding:14px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-width:0;
    }
    .mini-card:hover{transform:translateY(-2px); border-color:rgba(255,176,0,.30); box-shadow:0 18px 30px rgba(0,0,0,.07)}
    .mini-card b{font-size:14px}
    .mini-card span{display:block; margin-top:6px; color:var(--muted); font-size:12px}
    .form-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    form{
      display:flex; flex-direction:column; gap:12px;
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.86);
      padding:16px;
      box-shadow:0 14px 34px rgba(0,0,0,.06);
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size:12px;
      color:rgba(20,20,20,.84);
      font-weight:700;
    }
    input,select,textarea{
      width:100%;
      border:1px solid rgba(25,25,25,.14);
      background:#fff;
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition:box-shadow .15s ease, border-color .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus,select:focus,textarea:focus{
      box-shadow:var(--focus);
      border-color:rgba(255,176,0,.55);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:2px;
    }
    .hint{
      color:var(--muted2);
      font-size:12px;
      max-width:52ch;
    }
    .side-panel{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(255,176,0,.25), rgba(255,176,0,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.94));
      padding:16px;
      box-shadow:0 14px 34px rgba(0,0,0,.06);
    }
    .side-panel h3{margin:0 0 8px; font-size:15px}
    .side-panel p{margin:0; color:var(--muted); font-size:13px}
    .side-panel .contact-row{
      margin-top:12px;
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
    }
    .qr{
      width:120px; height:120px;
      border-radius:18px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .qr img{width:100%; height:100%; object-fit:cover}
    .kv{
      display:flex; flex-direction:column; gap:8px;
      min-width:220px;
      flex:1;
    }
    .kv .row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.72);
      padding:10px 12px;
      border-radius:16px;
    }
    .kv .k{color:var(--muted2); font-size:12px; font-weight:800}
    .kv .v{font-size:13px; font-weight:800; letter-spacing:.1px}
    .links-col{
      display:flex; flex-direction:column; gap:10px; margin-top:14px;
    }
    .linkbtn{
      text-decoration:none;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.74);
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
      font-weight:800;
      font-size:13px;
    }
    .linkbtn:hover{transform:translateY(-2px); border-color:rgba(255,176,0,.35); box-shadow:0 18px 30px rgba(0,0,0,.07)}
    .linkbtn small{color:var(--muted2); font-weight:700}
    .faq{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.86);
      overflow:hidden;
      box-shadow:0 14px 34px rgba(0,0,0,.05);
    }
    details{
      border-top:1px solid rgba(25,25,25,.08);
      padding:0 12px;
      background:rgba(255,255,255,.92);
    }
    details:first-child{border-top:none}
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 6px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:850;
      color:rgba(20,20,20,.92);
      font-size:14px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      display:flex; align-items:center; gap:10px;
      color:var(--muted2);
      font-weight:800;
    }
    .chev{
      width:12px; height:12px;
      border-right:2px solid rgba(25,25,25,.55);
      border-bottom:2px solid rgba(25,25,25,.55);
      transform:rotate(45deg);
      transition:transform .18s ease;
      margin-top:-2px;
    }
    details[open] .chev{transform:rotate(-135deg); margin-top:2px}
    .faq-body{
      padding:0 6px 14px;
      color:var(--muted);
      font-size:13px;
    }
    .articles{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.86);
      overflow:hidden;
      box-shadow:0 14px 34px rgba(0,0,0,.05);
    }
    .article-head{
      padding:16px;
      border-bottom:1px solid rgba(25,25,25,.08);
      background:
        radial-gradient(700px 240px at 15% 0%, rgba(255,176,0,.24), rgba(255,176,0,0) 60%),
        linear-gradient(180deg, rgba(255,247,230,.85), rgba(255,255,255,.95));
    }
    .article-head h3{margin:0 0 6px; font-size:15px}
    .article-head p{margin:0; color:var(--muted); font-size:13px}
    .article-items{padding:10px}
    .article-item{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.78);
      margin-bottom:10px;
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    }
    .article-item:last-child{margin-bottom:0}
    .article-item:hover{transform:translateY(-2px); border-color:rgba(255,176,0,.30); box-shadow:0 18px 30px rgba(0,0,0,.06)}
    .article-item b{font-size:13px; line-height:1.35}
    .article-item small{color:var(--muted2); font-size:12px; font-weight:800}
    .article-item a{
      text-decoration:none;
      white-space:nowrap;
      border:1px solid rgba(25,25,25,.14);
      background:#fff;
      padding:10px 12px;
      border-radius:14px;
      font-weight:900;
      font-size:13px;
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    }
    .article-item a:hover{transform:translateY(-1px); border-color:rgba(255,176,0,.35); box-shadow:0 16px 30px rgba(0,0,0,.07)}
    .right-stack{
      display:flex; flex-direction:column; gap:14px;
    }
    .tagcloud{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.86);
      padding:16px;
      box-shadow:0 14px 34px rgba(0,0,0,.05);
    }
    .tagcloud h3{margin:0 0 10px; font-size:15px}
    .tagcloud .chips{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tagcloud .chips .chip{cursor:pointer}
    .network{
      border-radius:var(--radius2);
      border:1px solid rgba(25,25,25,.10);
      background:
        radial-gradient(650px 240px at 10% 0%, rgba(22,93,255,.14), rgba(22,93,255,0) 60%),
        radial-gradient(650px 240px at 90% 10%, rgba(255,176,0,.22), rgba(255,176,0,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.96));
      padding:16px;
      box-shadow:0 14px 34px rgba(0,0,0,.05);
    }
    .map-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .netcard{
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.78);
      border-radius:18px;
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      min-width:0;
    }
    .netcard b{font-size:14px}
    .netcard span{color:var(--muted); font-size:12px}
    .progress{
      display:flex; flex-direction:column; gap:8px;
    }
    .bar{
      height:10px;
      border-radius:999px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(25,25,25,.04);
      overflow:hidden;
    }
    .fill{
      height:100%;
      width:60%;
      background:linear-gradient(90deg, rgba(255,176,0,.95), rgba(22,93,255,.55));
      border-radius:999px;
      transform-origin:left;
      animation:grow 1.1s ease both;
    }
    @keyframes grow{
      from{transform:scaleX(.2); opacity:.55}
      to{transform:scaleX(1); opacity:1}
    }
    .footer{
      background:linear-gradient(180deg, rgba(255,247,230,.80), rgba(255,255,255,.98));
      border-top:1px solid rgba(25,25,25,.08);
      margin-top:10px;
    }
    .footer-inner{
      padding:22px 0;
      display:flex; flex-direction:column; gap:14px;
    }
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
    }
    .foot-left{
      display:flex; flex-direction:column; gap:10px;
      max-width:62ch;
    }
    .foot-left .row{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .foot-left img{width:38px; height:38px; object-fit:contain}
    .foot-left b{font-size:14px}
    .foot-left p{margin:0; color:var(--muted); font-size:13px}
    .friend{
      display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
      align-items:center;
      max-width:500px;
    }
    .friend a{
      text-decoration:none;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.75);
      padding:10px 12px;
      border-radius:999px;
      font-size:12px;
      color:rgba(20,20,20,.86);
      font-weight:850;
      transition:transform .16s ease, border-color .16s ease;
      white-space:nowrap;
    }
    .friend a:hover{transform:translateY(-2px); border-color:rgba(255,176,0,.35)}
    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px solid rgba(25,25,25,.08);
      padding-top:14px;
      color:var(--muted2);
      font-size:12px;
    }
    .footer-bottom a{color:rgba(20,20,20,.75); text-decoration:none; font-weight:800}
    .to-top{
      position:fixed;
      right:16px;
      bottom:90px;
      z-index:70;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.86);
      box-shadow:0 18px 40px rgba(0,0,0,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      opacity:0; transform:translateY(10px);
      pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
    }
    .to-top.show{opacity:1; transform:translateY(0); pointer-events:auto}
    .to-top:focus{outline:none; box-shadow:var(--focus)}
    .to-top svg{opacity:.9}
    .float-chat{
      position:fixed;
      right:16px;
      bottom:32px;
      z-index:80;
      width:54px; height:54px;
      border-radius:20px;
      border:1px solid rgba(255,176,0,.45);
      background:linear-gradient(180deg, rgba(255,219,87,.95), rgba(255,176,0,.88));
      box-shadow:0 24px 60px rgba(255,176,0,.25);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .16s ease, box-shadow .16s ease;
    }
    .float-chat:hover{transform:translateY(-2px); box-shadow:0 30px 70px rgba(255,176,0,.30)}
    .float-chat:focus{outline:none; box-shadow:var(--focus)}
    .chat-pop{
      position:fixed;
      right:16px;
      bottom:92px;
      z-index:90;
      width:min(320px, calc(100vw - 32px));
      border-radius:22px;
      border:1px solid rgba(25,25,25,.12);
      background:rgba(255,255,255,.92);
      backdrop-filter: blur(8px);
      box-shadow:0 24px 60px rgba(0,0,0,.14);
      overflow:hidden;
      opacity:0;
      transform:translateY(12px);
      pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
    }
    .chat-pop.show{
      opacity:1; transform:translateY(0); pointer-events:auto;
    }
    .chat-pop .head{
      padding:12px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      background:
        radial-gradient(600px 220px at 15% 0%, rgba(255,176,0,.25), rgba(255,176,0,0) 60%),
        linear-gradient(180deg, rgba(255,247,230,.95), rgba(255,255,255,.95));
      border-bottom:1px solid rgba(25,25,25,.08);
    }
    .chat-pop .head b{font-size:13px}
    .close{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(25,25,25,.12);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .chat-pop .body{padding:14px}
    .chat-pop .body p{margin:0 0 12px; color:var(--muted); font-size:13px}
    .chat-pop .row{
      display:flex; gap:12px; align-items:center;
    }
    .chat-pop .row .qr{
      width:104px; height:104px; border-radius:18px;
    }
    .chat-pop .row .kv{
      min-width:0;
      flex:1;
    }
    .kpi{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
      margin-top:12px;
    }
    .kpi .mini{
      border-radius:18px;
      border:1px solid rgba(25,25,25,.10);
      background:rgba(255,255,255,.78);
      padding:12px 12px;
    }
    .kpi .mini b{display:block; font-size:13px}
    .kpi .mini span{display:block; margin-top:6px; color:var(--muted2); font-size:12px}
    .appear{opacity:0; transform:translateY(10px)}
    .appear.show{opacity:1; transform:translateY(0); transition:opacity .55s ease, transform .55s ease}
    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; padding:20px}
      .hero-right{padding:0 6px 10px}
      h1{font-size:30px}
      .hero-meta{grid-template-columns:1fr 1fr 1fr}
      .grid3{grid-template-columns:1fr 1fr}
      .client-grid{grid-template-columns:1fr 1fr}
      .time-row{grid-template-columns:1fr 1fr}
      .form-grid{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .map-grid{grid-template-columns:1fr}
      .friend{justify-content:flex-start}
    }
    @media (max-width: 720px){
      .nav-links{display:none}
      .burger{display:flex}
      .mobile-menu{display:none}
      .hero-meta{grid-template-columns:1fr}
      .grid3{grid-template-columns:1fr}
      .grid2{grid-template-columns:1fr}
      .client-grid{grid-template-columns:1fr}
      .cards-compact{grid-template-columns:1fr}
      .fields{grid-template-columns:1fr}
      .time-row{grid-template-columns:1fr}
      .to-top{right:12px}
      .float-chat{right:12px}
      .chat-pop{right:12px; width:calc(100vw - 24px)}
    }