:root{
      --bg0:#f6f8ff;
      --bg1:#eef4ff;
      --card:#ffffff;
      --text:#0b1324;
      --muted:#5b6a85;
      --muted2:#7b88a6;
      --line:rgba(12,26,54,.12);
      --line2:rgba(12,26,54,.08);
      --blue:#1665ff;
      --blue2:#0b4de6;
      --deep:#0a1b3c;
      --sky:#7bb2ff;
      --sky2:#a6d3ff;
      --ok:#0f9d58;
      --warn:#f59e0b;
      --shadow:0 18px 50px rgba(9,34,85,.12);
      --shadow2:0 10px 30px rgba(9,34,85,.10);
      --radius:18px;
      --radius2:12px;
      --focus:0 0 0 4px rgba(22,101,255,.18);
      --container:1120px;
    }
    *{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, "Noto Sans SC", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 20% -8%, rgba(22,101,255,.18), rgba(22,101,255,0) 55%),
        radial-gradient(900px 420px at 78% -10%, rgba(125,178,255,.22), rgba(125,178,255,0) 55%),
        linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 55%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(246,248,255,.72);
      backdrop-filter:saturate(140%) blur(10px);
      border-bottom:1px solid rgba(12,26,54,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand img{
      width:34px; height:34px; object-fit:contain;
      border-radius:10px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(12,26,54,.10);
      box-shadow:0 10px 20px rgba(9,34,85,.10);
    }
    .brand .name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name strong{font-size:14px; letter-spacing:.2px}
    .brand .name span{font-size:12px; color:var(--muted)}
    .nav{
      display:flex; align-items:center; justify-content:flex-end; gap:16px; flex:1;
    }
    .nav-links{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav a{
      font-size:13px; color:rgba(11,19,36,.85);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition:transform .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(22,101,255,.08);
      border-color:rgba(22,101,255,.22);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex; gap:10px; align-items:center;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      border-radius:14px;
      padding:10px 14px;
      border:1px solid rgba(12,26,54,.12);
      background:#fff;
      color:rgba(11,19,36,.92);
      font-weight:650;
      font-size:13px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 30px rgba(9,34,85,.12);
      border-color:rgba(22,101,255,.28);
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn-primary{
      background:linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
      border-color:rgba(22,101,255,.28);
      color:#fff;
      box-shadow:0 18px 40px rgba(22,101,255,.22);
    }
    .btn-primary:hover{
      box-shadow:0 22px 55px rgba(22,101,255,.30);
      border-color:rgba(22,101,255,.38);
    }
    .btn-ghost{
      background:rgba(255,255,255,.65);
      border-color:rgba(12,26,54,.12);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }
    .menu-toggle{
      display:none;
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(12,26,54,.12);
      background:#fff;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .menu-toggle:hover{transform:translateY(-1px); box-shadow:0 16px 30px rgba(9,34,85,.12)}
    .menu-lines{
      width:18px; height:12px; margin:0 auto; position:relative;
    }
    .menu-lines span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background:rgba(11,19,36,.85);
      transition:transform .25s ease, top .25s ease, opacity .2s ease;
    }
    .menu-lines span:nth-child(1){top:0}
    .menu-lines span:nth-child(2){top:5px}
    .menu-lines span:nth-child(3){top:10px}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2){opacity:0}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3){top:5px; transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:10px 0 16px 0;
    }
    .mobile-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobile-links a{
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.70);
      border-radius:14px;
      padding:10px 12px;
      font-size:13px;
      transition:transform .18s ease, border-color .18s ease;
    }
    .mobile-links a:hover{transform:translateY(-1px); border-color:rgba(22,101,255,.28)}
    .mobile-cta{
      display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;
    }

    .hero{
      padding:26px 0 8px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:26px;
      background:
        radial-gradient(800px 360px at 18% 10%, rgba(22,101,255,.28), rgba(22,101,255,0) 58%),
        radial-gradient(700px 340px at 70% 0%, rgba(125,178,255,.20), rgba(125,178,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.58) 100%);
      border:1px solid rgba(22,101,255,.18);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:28px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(22,101,255,.24), rgba(125,178,255,.0) 40%),
        linear-gradient(300deg, rgba(125,178,255,.20), rgba(22,101,255,0) 55%);
      pointer-events:none;
      opacity:.7;
    }
    .hero-inner{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:14px;
      height:100%;
    }
    .pill-row{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(12,26,54,.10);
      font-size:12px;
      color:rgba(11,19,36,.85);
    }
    .dot{
      width:8px; height:8px; border-radius:999px;
      background:linear-gradient(135deg, var(--blue), var(--sky));
      box-shadow:0 10px 18px rgba(22,101,255,.28);
    }
    h1{
      margin:2px 0 0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.18;
    }
    .hero-sub{
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width:62ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:6px;
      align-items:center;
    }
    .quick-list{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:6px;
    }
    .quick{
      flex:1 1 160px;
      min-width:160px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.66);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .quick:hover{
      transform:translateY(-2px);
      border-color:rgba(22,101,255,.26);
      box-shadow:0 18px 40px rgba(9,34,85,.12);
    }
    .quick strong{
      display:flex; align-items:center; gap:10px;
      font-size:13px;
    }
    .kicon{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(22,101,255,.14), rgba(125,178,255,.10));
      border:1px solid rgba(22,101,255,.18);
      display:flex; align-items:center; justify-content:center;
      color:var(--blue2);
      box-shadow:0 14px 30px rgba(22,101,255,.12);
      flex:0 0 auto;
    }
    .quick p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.55;
    }

    .hero-side{
      display:flex; flex-direction:column; gap:14px;
    }
    .stat-wrap{
      border-radius:26px;
      border:1px solid rgba(12,26,54,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.54));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
      min-height:260px;
    }
    .stat-wrap:after{
      content:"";
      position:absolute; right:-60px; top:-70px;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(22,101,255,.35), rgba(22,101,255,0) 60%);
      pointer-events:none;
      opacity:.9;
    }
    .stat-head{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .stat-head .title{
      display:flex; flex-direction:column; gap:6px;
    }
    .stat-head strong{font-size:14px}
    .stat-head span{font-size:12.5px; color:var(--muted); line-height:1.4}
    .badge{
      position:relative;
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(22,101,255,.10);
      border:1px solid rgba(22,101,255,.18);
      color:rgba(11,19,36,.9);
      font-size:12px;
      white-space:nowrap;
    }
    .badge svg{color:var(--blue2)}
    .stats-grid{
      position:relative;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:6px;
    }
    .stat{
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      border-radius:18px;
      padding:12px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .stat:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(9,34,85,.12);
      border-color:rgba(22,101,255,.26);
    }
    .stat .num{
      font-size:18px;
      font-weight:850;
      letter-spacing:-.4px;
    }
    .stat .lab{
      margin-top:6px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.45;
    }

    .panel-steps{
      border-radius:26px;
      border:1px solid rgba(12,26,54,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.50));
      box-shadow: var(--shadow2);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .panel-steps:before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(90deg, rgba(22,101,255,.10), rgba(22,101,255,0) 55%),
        radial-gradient(500px 180px at 30% 0%, rgba(125,178,255,.18), rgba(125,178,255,0) 62%);
      pointer-events:none;
    }
    .panel-steps .head{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .panel-steps .head strong{font-size:14px}
    .panel-steps .head span{display:block; margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.45}
    .step-list{
      position:relative;
      display:flex; flex-direction:column; gap:10px;
      margin-top:10px;
    }
    .step{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.66);
    }
    .step .n{
      width:30px; height:30px; border-radius:12px;
      background:linear-gradient(135deg, rgba(22,101,255,.14), rgba(125,178,255,.10));
      border:1px solid rgba(22,101,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:850;
      color:var(--blue2);
      flex:0 0 auto;
    }
    .step .t strong{display:block; font-size:13px}
    .step .t span{display:block; margin-top:5px; color:var(--muted); font-size:12.5px; line-height:1.45}

    main{padding:10px 0 34px}
    section{padding:22px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width:58ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border-radius:20px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      padding:16px;
      box-shadow:0 12px 30px rgba(9,34,85,.08);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 22px 60px rgba(9,34,85,.14);
      border-color:rgba(22,101,255,.24);
    }
    .card:after{
      content:"";
      position:absolute; inset:auto -40px -60px auto;
      width:140px; height:140px;
      background:radial-gradient(circle at 30% 30%, rgba(22,101,255,.18), rgba(22,101,255,0) 60%);
      pointer-events:none;
      opacity:.8;
    }
    .card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      position:relative;
    }
    .card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .tag{
      font-size:12px;
      color:rgba(11,19,36,.86);
      border:1px solid rgba(22,101,255,.18);
      background:rgba(22,101,255,.09);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.7;
      position:relative;
    }
    .list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
      position:relative;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(12,26,54,.08);
      background:rgba(255,255,255,.62);
    }
    .check{
      width:22px; height:22px; border-radius:9px;
      background:rgba(22,101,255,.10);
      border:1px solid rgba(22,101,255,.18);
      display:flex; align-items:center; justify-content:center;
      color:var(--blue2);
      flex:0 0 auto;
      margin-top:1px;
    }
    .list strong{display:block; font-size:13px}
    .list span{display:block; margin-top:4px; color:var(--muted); font-size:12.5px; line-height:1.5}

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .compare-wrap{
      border-radius:26px;
      border:1px solid rgba(12,26,54,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 16px 12px;
      border-bottom:1px solid rgba(12,26,54,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .score{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
    }
    .score .star{
      width:52px; height:52px; border-radius:18px;
      background:linear-gradient(135deg, rgba(245,158,11,.20), rgba(22,101,255,.10));
      border:1px solid rgba(245,158,11,.30);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 18px 45px rgba(245,158,11,.15);
      color:#b45309;
      flex:0 0 auto;
    }
    .score .meta strong{
      font-size:22px; letter-spacing:-.5px;
      display:block;
    }
    .score .meta span{
      color:var(--muted);
      font-size:12.8px;
      display:block;
      margin-top:4px;
      line-height:1.4;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.2px;
      color:rgba(11,19,36,.9);
    }
    thead th{
      text-align:left;
      padding:14px 16px;
      background:rgba(22,101,255,.08);
      border-bottom:1px solid rgba(12,26,54,.08);
      font-weight:800;
      letter-spacing:.1px;
    }
    tbody td{
      padding:12px 16px;
      border-bottom:1px solid rgba(12,26,54,.07);
      vertical-align:top;
      color:rgba(11,19,36,.88);
    }
    tbody tr:last-child td{border-bottom:none}
    .cell-muted{color:var(--muted)}
    .pill2{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.66);
      font-weight:750;
      white-space:nowrap;
    }
    .pill2.ok{
      border-color:rgba(15,157,88,.25);
      background:rgba(15,157,88,.10);
      color:#0e6b3f;
    }
    .pill2.high{
      border-color:rgba(22,101,255,.28);
      background:rgba(22,101,255,.12);
      color:#0b4de6;
    }

    .timeline{
      display:flex; flex-direction:column; gap:12px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.70);
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    .time-item:hover{
      transform:translateY(-2px);
      border-color:rgba(22,101,255,.24);
      box-shadow:0 22px 60px rgba(9,34,85,.14);
    }
    .time-item .bubble{
      width:38px; height:38px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(22,101,255,.14), rgba(125,178,255,.10));
      border:1px solid rgba(22,101,255,.20);
      color:var(--blue2);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      flex:0 0 auto;
      box-shadow:0 16px 35px rgba(22,101,255,.12);
    }
    .time-item .body strong{display:block; font-size:14px}
    .time-item .body span{display:block; margin-top:6px; color:var(--muted); font-size:12.8px; line-height:1.6}

    .portfolio-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .portfolio-card{
      border-radius:22px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      padding:16px;
      box-shadow:0 12px 30px rgba(9,34,85,.08);
      position:relative;
      overflow:hidden;
    }
    .portfolio-card:after{
      content:"";
      position:absolute; inset:auto -40px -70px auto;
      width:160px; height:160px;
      background:radial-gradient(circle at 30% 30%, rgba(22,101,255,.16), rgba(22,101,255,0) 60%);
      pointer-events:none;
      opacity:.9;
    }
    .portfolio-top{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .portfolio-top h3{
      margin:0; font-size:15.5px; letter-spacing:-.2px;
    }
    .mini{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.5;
      position:relative;
    }
    .swatch-row{
      position:relative;
      display:flex; gap:8px; flex-wrap:wrap; margin-top:10px;
    }
    .sw{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.62);
      font-size:12px;
      color:rgba(11,19,36,.88);
    }
    .sw i{
      width:10px; height:10px; border-radius:999px; background:linear-gradient(135deg, var(--blue), var(--sky));
      box-shadow:0 12px 24px rgba(22,101,255,.22);
      display:inline-block;
    }
    .thumb-row{
      margin-top:12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative;
    }
    .thumb{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(12,26,54,.10);
      background:#fff;
    }
    .thumb img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
      transform:scale(1.01);
    }
    .thumb .caption{
      padding:10px 12px;
      color:var(--muted);
      font-size:12.5px;
      border-top:1px solid rgba(12,26,54,.08);
      background:rgba(255,255,255,.72);
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .article{
      border-radius:22px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
      box-shadow:0 12px 30px rgba(9,34,85,.08);
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      position:relative;
      overflow:hidden;
      display:flex; flex-direction:column; gap:10px;
      min-height:168px;
    }
    .article:hover{transform:translateY(-3px); border-color:rgba(22,101,255,.26); box-shadow:0 22px 60px rgba(9,34,85,.14)}
    .article .meta{
      display:flex; justify-content:space-between; gap:12px; align-items:center;
      color:var(--muted);
      font-size:12.6px;
    }
    .article h3{
      margin:0;
      font-size:14.8px;
      letter-spacing:-.2px;
      line-height:1.5;
    }
    .article p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.65;
    }
    .article a.link{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:10px;
      color:rgba(11,19,36,.92);
      font-weight:780;
      font-size:13px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.62);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      width:fit-content;
    }
    .article a.link:hover{
      transform:translateY(-2px);
      border-color:rgba(22,101,255,.26);
      box-shadow:0 18px 45px rgba(9,34,85,.12);
    }

    .form-card{
      border-radius:26px;
      border:1px solid rgba(12,26,54,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .form-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(600px 220px at 20% 0%, rgba(22,101,255,.22), rgba(22,101,255,0) 55%),
        radial-gradient(500px 190px at 90% 10%, rgba(125,178,255,.20), rgba(125,178,255,0) 55%);
      pointer-events:none;
      opacity:.9;
    }
    .form-inner{position:relative; display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start;}
    .form-inner .copy h3{margin:0; font-size:18px; letter-spacing:-.35px}
    .form-inner .copy p{margin:10px 0 0; color:var(--muted); font-size:13.5px; line-height:1.75}
    .form-inner .copy .hint{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .hint .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.66);
      color:rgba(11,19,36,.88);
      font-size:12.2px;
      font-weight:760;
      white-space:nowrap;
    }

    form{
      position:relative;
      border-radius:22px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
    }
    .fields{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    label{
      font-size:12.5px;
      color:rgba(11,19,36,.86);
      font-weight:720;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(12,26,54,.12);
      background:#fff;
      padding:12px 12px;
      font-size:13.5px;
      color:rgba(11,19,36,.92);
      outline:none;
      transition:box-shadow .18s ease, border-color .18s ease, transform .1s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      box-shadow:var(--focus);
      border-color:rgba(22,101,255,.35);
    }
    .fields .span2{grid-column:1 / -1}
    .form-actions{
      margin-top:12px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.2px;
      line-height:1.5;
      max-width:50ch;
    }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq{
      border-radius:22px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow:0 12px 30px rgba(9,34,85,.08);
    }
    details{
      border-top:1px solid rgba(12,26,54,.08);
      padding:0;
    }
    details:first-child{border-top:none}
    summary{
      cursor:pointer;
      padding:14px 14px;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:820;
      font-size:13.6px;
      line-height:1.45;
      color:rgba(11,19,36,.94);
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:var(--muted);
      font-weight:800;
    }
    .caret{
      width:30px; height:30px;
      border-radius:14px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease, border-color .2s ease;
    }
    details[open] .caret{
      transform:rotate(180deg);
      border-color:rgba(22,101,255,.28);
    }
    .faq-body{
      padding:0 14px 14px 14px;
      color:var(--muted);
      font-size:13.1px;
      line-height:1.75;
    }

    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .review{
      border-radius:22px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 30px rgba(9,34,85,.08);
      padding:16px;
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height:190px;
    }
    .review:hover{transform:translateY(-3px); border-color:rgba(22,101,255,.26); box-shadow:0 22px 60px rgba(9,34,85,.14)}
    .review:after{
      content:"";
      position:absolute; inset:auto -60px -80px auto;
      width:200px; height:200px;
      background:radial-gradient(circle at 30% 30%, rgba(22,101,255,.16), rgba(22,101,255,0) 60%);
      pointer-events:none; opacity:.9;
    }
    .review .top{position:relative; display:flex; justify-content:space-between; gap:12px; align-items:flex-start}
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background:linear-gradient(135deg, rgba(22,101,255,.16), rgba(125,178,255,.10));
      border:1px solid rgba(22,101,255,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:var(--blue2);
      flex:0 0 auto;
    }
    .review .role{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.4;
      margin-top:4px;
    }
    .stars{
      position:relative;
      display:flex; gap:2px; align-items:center; justify-content:flex-end;
      color:#b45309;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .review .text{
      position:relative;
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.75;
    }
    .review .bottom{
      position:relative;
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .metric{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.62);
      color:rgba(11,19,36,.88);
      font-size:12px;
      font-weight:820;
    }

    .price-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    .price-card{
      border-radius:26px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 30px rgba(9,34,85,.08);
      overflow:hidden;
    }
    .price-card .head{
      padding:16px;
      border-bottom:1px solid rgba(12,26,54,.08);
      background:linear-gradient(180deg, rgba(22,101,255,.10), rgba(22,101,255,0));
    }
    .price-card .head strong{
      font-size:16px;
      letter-spacing:-.2px;
    }
    .price-card .head span{
      display:block;
      margin-top:8px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .price-card .body{padding:14px 16px 16px}
    .price-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:18px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.66);
    }
    .price-table th, .price-table td{
      padding:12px 12px;
      font-size:13px;
      border-bottom:1px solid rgba(12,26,54,.07);
      text-align:left;
    }
    .price-table th{
      background:rgba(22,101,255,.08);
      font-weight:900;
      color:rgba(11,19,36,.94);
    }
    .price-table tr:last-child td{border-bottom:none}
    .price-table td .muted{color:var(--muted); font-weight:700}
    .price-note{
      margin-top:12px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.7;
    }

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tag-cloud a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.66);
      font-size:12.8px;
      color:rgba(11,19,36,.88);
      font-weight:780;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .tag-cloud a:hover{
      transform:translateY(-2px);
      border-color:rgba(22,101,255,.26);
      box-shadow:0 18px 45px rgba(9,34,85,.12);
    }

    .footer{
      padding:24px 0 28px;
      border-top:1px solid rgba(12,26,54,.08);
      background:linear-gradient(180deg, rgba(246,248,255,.60), rgba(246,248,255,.95));
    }
    .footer .foot-inner{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-block{
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.68);
      border-radius:22px;
      padding:16px;
    }
    .foot-block h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .foot-block p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .foot-links{
      margin-top:10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .foot-links a{
      color:rgba(11,19,36,.92);
      font-weight:780;
      font-size:13px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.62);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      width:fit-content;
      max-width:100%;
    }
    .foot-links a:hover{
      transform:translateY(-2px);
      border-color:rgba(22,101,255,.26);
      box-shadow:0 18px 45px rgba(9,34,85,.12);
    }
    .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;
    }
    .backtop{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(12,26,54,.12);
      background:rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow:0 18px 50px rgba(9,34,85,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transform:translateY(18px);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .backtop.show{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .floating-kefu{
      position:fixed;
      right:16px;
      bottom:74px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .kefu-btn{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(12,26,54,.12);
      background:rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow:0 18px 50px rgba(9,34,85,.12);
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
    }
    .kefu-btn:hover{transform:translateY(-2px); border-color:rgba(22,101,255,.26); box-shadow:0 22px 60px rgba(9,34,85,.14)}
    .kefu-btn .t{
      display:flex; flex-direction:column; line-height:1.2;
    }
    .kefu-btn strong{font-size:13px}
    .kefu-btn span{font-size:12px; color:var(--muted)}
    .qr-pop{
      display:none;
      width:200px;
      border-radius:22px;
      border:1px solid rgba(12,26,54,.12);
      background:rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      box-shadow:0 22px 70px rgba(9,34,85,.18);
      overflow:hidden;
      transform-origin: bottom right;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{opacity:0; transform:translateY(8px) scale(.98)}
      to{opacity:1; transform:translateY(0) scale(1)}
    }
    .qr-pop .qr-head{
      padding:12px 12px 10px;
      border-bottom:1px solid rgba(12,26,54,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .qr-pop .qr-head strong{font-size:13px}
    .qr-pop .qr-head button{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(12,26,54,.10);
      background:rgba(255,255,255,.70);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s ease, border-color .18s ease;
    }
    .qr-pop .qr-head button:hover{transform:translateY(-1px); border-color:rgba(22,101,255,.26)}
    .qr-pop img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
      background:#fff;
    }
    .qr-pop .qr-foot{
      padding:10px 12px 12px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .hero-side{flex-direction:column}
      .grid-3{grid-template-columns:1fr; }
      .two-col{grid-template-columns:1fr}
      .portfolio-grid{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .reviews-grid{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .price-grid{grid-template-columns:1fr}
      .form-inner{grid-template-columns:1fr}
      .footer .foot-inner{grid-template-columns:1fr}
      .nav-links{display:none}
      .nav-cta{display:none}
      .menu-toggle{display:block}
      .mobile-panel{display:block}
      .mobile-panel.hide{display:none}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .backtop, .qr-pop{animation:none}
      .card, .btn, .stat, .step, .article, .review, .time-item, .quick{transition:none}
    }