:root{
      --bg0:#f7f8fb;
      --bg1:#ffffff;
      --text:#141826;
      --muted:#5b6477;
      --muted2:#7b859a;
      --line:rgba(20,24,38,.10);
      --card:rgba(255,255,255,.78);
      --shadow:0 14px 34px rgba(11,18,40,.08);
      --shadow2:0 10px 26px rgba(9,16,37,.10);
      --brand:#6d5efc;
      --brand2:#16c4ff;
      --brand3:#00d18f;
      --hot:#ff3d8d;
      --radius:18px;
      --radius2:26px;
      --focus:rgba(109,94,252,.22);
      --btnText:#0b1020;
      --container:1160px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 360px at 20% -10%, rgba(109,94,252,.18), transparent 55%),
        radial-gradient(760px 340px at 82% 0%, rgba(22,196,255,.16), transparent 55%),
        radial-gradient(720px 360px at 60% 30%, rgba(0,209,143,.10), transparent 55%),
        linear-gradient(180deg, #f8f9ff 0%, var(--bg0) 42%, #ffffff 100%);
    }

    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.70);
      border-bottom:1px solid var(--line);
    }
    .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:240px;
    }
    .brand-logo{
      width:40px;
      height:40px;
      border-radius:12px;
      overflow:hidden;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(109,94,252,.18), rgba(22,196,255,.14));
      border:1px solid rgba(109,94,252,.18);
      box-shadow:0 10px 26px rgba(109,94,252,.10);
      flex:0 0 auto;
    }
    .brand-logo img{
      width:100%;
      height:100%;
      object-fit:contain;
      display:block;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-text strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-text span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }

    nav{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      color:#1b2337;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(109,94,252,.08);
      border-color:rgba(109,94,252,.22);
      transform:translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:10px;
      flex:0 0 auto;
    }
    .btn{
      appearance:none;
      border:none;
      cursor:pointer;
      border-radius:14px;
      padding:11px 14px;
      font-weight:700;
      font-size:13.5px;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn-primary{
      color:#0b1020;
      background: linear-gradient(135deg, rgba(109,94,252,.95) 0%, rgba(22,196,255,.88) 56%, rgba(0,209,143,.85) 110%);
      box-shadow:0 16px 40px rgba(109,94,252,.22);
      border:1px solid rgba(109,94,252,.25);
    }
    .btn-primary:hover{transform:translateY(-1px); box-shadow:0 18px 46px rgba(109,94,252,.26)}
    .btn-ghost{
      color:#0f1730;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,24,38,.10);
      box-shadow:0 10px 24px rgba(11,18,40,.06);
    }
    .btn-ghost:hover{transform:translateY(-1px); border-color:rgba(109,94,252,.22)}
    .btn .dot{
      width:10px;height:10px;border-radius:99px;
      background:rgba(0,0,0,.12);
      box-shadow:0 0 0 3px rgba(255,255,255,.35) inset;
      position:relative;
    }
    .btn-primary .dot{
      background:rgba(11,18,40,.85);
      box-shadow:0 0 0 4px rgba(255,255,255,.34) inset, 0 0 14px rgba(22,196,255,.45);
    }

    .menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.12);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition:transform .15s ease, border-color .15s ease;
    }
    .menu-btn:hover{transform:translateY(-1px); border-color:rgba(109,94,252,.22)}
    .hamburger{width:18px;height:12px; position:relative}
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:#1b2337;
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px}
    .hamburger span:nth-child(3){top:10px}
    .menu-open .hamburger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-open .hamburger span:nth-child(2){opacity:0}
    .menu-open .hamburger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-drawer{
      display:none;
      padding-bottom:14px;
    }
    .mobile-drawer .drawer-panel{
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.80);
      border-radius:18px;
      padding:12px;
      box-shadow:0 18px 48px rgba(11,18,40,.10);
    }
    .mobile-drawer .drawer-links{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .mobile-drawer .drawer-links a{
      text-decoration:none;
      color:#1b2337;
      font-weight:650;
      font-size:14px;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.08);
      background:rgba(255,255,255,.65);
    }
    .mobile-drawer .drawer-actions{
      display:flex;
      gap:10px;
      margin-top:12px;
      flex-wrap:wrap;
    }

    header.hero{
      position:relative;
      padding:38px 0 18px;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-left{
      padding:18px 0;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(109,94,252,.18);
      box-shadow:0 12px 26px rgba(109,94,252,.10);
      color:#15203a;
      font-weight:750;
      font-size:12.5px;
      letter-spacing:.2px;
    }
    .kicker .spark{
      width:12px;height:12px;border-radius:4px;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand2) 55%, var(--brand3) 110%);
      box-shadow:0 0 0 4px rgba(109,94,252,.12);
      position:relative;
      overflow:hidden;
    }
    .kicker .spark::after{
      content:"";
      position:absolute; inset:-30%;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
      transform:translateX(-60%);
      animation:shine 2.6s ease-in-out infinite;
    }
    @keyframes shine{
      0%,55%{transform:translateX(-70%); opacity:.0}
      65%{opacity:1}
      100%{transform:translateX(70%); opacity:.0}
    }

    h1{
      margin:14px 0 10px;
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    .hero-sub{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width:58ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
      align-items:center;
    }
    .mini-notice{
      display:flex;
      align-items:center;
      gap:10px;
      margin-top:14px;
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.5;
      flex-wrap:wrap;
    }
    .mini-notice .pill{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.65);
      display:inline-flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .mini-notice .icon{
      width:18px;height:18px;border-radius:7px;
      background:linear-gradient(135deg, rgba(109,94,252,.22), rgba(22,196,255,.18));
      border:1px solid rgba(109,94,252,.24);
      display:grid;
      place-items:center;
      font-size:11px;
      color:#2b2f45;
      font-weight:900;
    }

    .hero-right{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,38,.10);
      background:
        radial-gradient(900px 380px at 20% 0%, rgba(109,94,252,.20), transparent 55%),
        radial-gradient(760px 360px at 90% 10%, rgba(22,196,255,.18), transparent 56%),
        radial-gradient(680px 320px at 55% 35%, rgba(0,209,143,.12), transparent 60%),
        rgba(255,255,255,.62);
      box-shadow: var(--shadow);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .hero-right::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        conic-gradient(from 210deg, rgba(109,94,252,.55), rgba(22,196,255,.35), rgba(0,209,143,.38), rgba(255,61,141,.28), rgba(109,94,252,.55));
      opacity:.14;
      filter: blur(14px);
      pointer-events:none;
    }
    .hero-right-inner{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      height:100%;
      gap:12px;
    }
    .data-cards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .data-card{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:14px 14px 12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height:104px;
    }
    .data-card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 44px rgba(11,18,40,.10);
      border-color:rgba(109,94,252,.22);
    }
    .data-card::after{
      content:"";
      position:absolute;
      width:180px; height:180px;
      right:-90px; top:-100px;
      background:radial-gradient(circle at 30% 30%, rgba(109,94,252,.22), transparent 62%);
      pointer-events:none;
    }
    .data-card .label{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.7);
      color:#1b2337;
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .badge i{
      width:10px;height:10px;border-radius:4px;
      background:linear-gradient(135deg, rgba(109,94,252,.95), rgba(22,196,255,.9));
      box-shadow:0 0 0 3px rgba(109,94,252,.16);
    }
    .data-card .value{
      margin-top:10px;
      font-size:24px;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .data-card .desc{
      margin-top:6px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.45;
    }

    .quick-panel{
      margin-top:auto;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.66);
      padding:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .quick-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .quick-title h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .toggle-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .chip{
      border-radius:999px;
      border:1px solid rgba(20,24,38,.12);
      background:rgba(255,255,255,.72);
      padding:8px 10px;
      font-size:12.6px;
      font-weight:750;
      cursor:pointer;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .chip:hover{transform:translateY(-1px); border-color:rgba(109,94,252,.22)}
    .chip.active{
      border-color:rgba(109,94,252,.35);
      background:rgba(109,94,252,.10);
    }
    .quick-content{
      border-top:1px solid rgba(20,24,38,.08);
      padding-top:10px;
      display:grid;
      grid-template-columns: 1fr;
      gap:8px;
    }
    .quick-item{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.08);
      background:rgba(255,255,255,.64);
    }
    .qicon{
      width:34px;height:34px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(109,94,252,.18), rgba(22,196,255,.14));
      border:1px solid rgba(109,94,252,.22);
      display:grid;
      place-items:center;
      font-weight:900;
      color:#1b2337;
      flex:0 0 auto;
    }
    .quick-item strong{
      display:block;
      font-size:13.6px;
      margin-top:1px;
      letter-spacing:-.1px;
    }
    .quick-item span{
      display:block;
      margin-top:4px;
      font-size:12.8px;
      color:var(--muted);
      line-height:1.45;
    }

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

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .card{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 44px rgba(11,18,40,.10);
      border-color:rgba(109,94,252,.22);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .card .topline{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .sparkline{
      width:48px;height:48px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(109,94,252,.18), rgba(22,196,255,.14), rgba(0,209,143,.10));
      border:1px solid rgba(109,94,252,.20);
      display:grid;
      place-items:center;
      box-shadow:0 14px 30px rgba(109,94,252,.10);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .sparkline::after{
      content:"";
      position:absolute; inset:-60%;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
      transform:translateX(-45%);
      animation:shine2 3s ease-in-out infinite;
      opacity:.7;
    }
    @keyframes shine2{
      0%,60%{transform:translateX(-55%); opacity:0}
      70%{opacity:1}
      100%{transform:translateX(55%); opacity:0}
    }
    .sparkline span{position:relative; font-weight:950; color:#111827}
    .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.08);
      background:rgba(255,255,255,.62);
    }
    .check{
      width:22px;height:22px;border-radius:9px;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.22);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      margin-top:1px;
      font-size:12px;
      font-weight:900;
      color:#2b2f45;
    }
    .list b{display:block; font-size:13.6px}
    .list small{display:block; margin-top:3px; color:var(--muted); font-size:12.8px; line-height:1.45}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .step{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      position:relative;
      overflow:hidden;
    }
    .step .num{
      width:38px;height:38px;border-radius:14px;
      background:linear-gradient(135deg, rgba(109,94,252,.22), rgba(22,196,255,.16));
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center;
      font-weight:950;
      font-size:14px;
      margin-bottom:10px;
      box-shadow:0 14px 30px rgba(109,94,252,.08);
    }
    .step h3{margin:0; font-size:15.5px; letter-spacing:-.25px}
    .step p{margin:8px 0 0; color:var(--muted); font-size:13.3px; line-height:1.65}

    .comparison{
      overflow:hidden;
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:var(--shadow2);
    }
    .comparison-top{
      padding:16px;
      background:
        radial-gradient(760px 220px at 10% 0%, rgba(109,94,252,.18), transparent 55%),
        radial-gradient(680px 240px at 86% 0%, rgba(22,196,255,.16), transparent 55%),
        rgba(255,255,255,.64);
      border-bottom:1px solid rgba(20,24,38,.08);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .rating{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      font-size:16px;
    }
    .stars .s{
      width:18px;height:18px;
      background:linear-gradient(135deg, rgba(255,61,141,.95), rgba(109,94,252,.95));
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/>') center/contain no-repeat;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/>') center/contain no-repeat;
      display:inline-block;
    }
    .scorebox{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.72);
      padding:10px 12px;
      display:flex;
      flex-direction:column;
      gap:4px;
      min-width:140px;
    }
    .scorebox strong{
      font-size:22px;
      letter-spacing:-.5px;
    }
    .scorebox span{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.2;
    }
    .comparison-body{
      padding:14px;
    }
    .table-wrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.76);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:820px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,38,.08);
      vertical-align:top;
      text-align:left;
      font-size:13.5px;
      line-height:1.6;
    }
    th{
      position:sticky;
      top:0;
      background:rgba(255,255,255,.92);
      z-index:1;
      border-bottom:1px solid rgba(20,24,38,.10);
      color:#161d2f;
      font-weight:900;
    }
    td{
      color:#1d2740;
    }
    tr:last-child td{border-bottom:none}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      font-weight:800;
      font-size:12.6px;
      white-space:nowrap;
    }
    .tag .t{
      width:10px;height:10px;border-radius:4px;
      background:linear-gradient(135deg, rgba(109,94,252,.95), rgba(22,196,255,.9));
      box-shadow:0 0 0 3px rgba(109,94,252,.16);
    }

    .client{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    blockquote{
      margin:0;
      padding:0;
    }
    .review{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height:200px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .review:hover{transform:translateY(-3px); box-shadow:0 18px 44px rgba(11,18,40,.10); border-color:rgba(109,94,252,.22)}
    .review .who{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
    }
    .avatar{
      width:42px;height:42px;border-radius:16px;
      background:linear-gradient(135deg, rgba(109,94,252,.22), rgba(22,196,255,.16));
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center; font-weight:950;
      box-shadow:0 14px 30px rgba(109,94,252,.08);
      flex:0 0 auto;
    }
    .review .who strong{
      display:block;
      font-size:14.3px;
      letter-spacing:-.2px;
    }
    .review .who span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:12.6px;
      line-height:1.2;
      white-space:nowrap;
    }
    .review .content{
      color:#1c2540;
      font-size:13.5px;
      line-height:1.75;
    }
    .review .stamp{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-top:1px solid rgba(20,24,38,.08);
      padding-top:10px;
      color:var(--muted);
      font-size:12.6px;
    }
    .stamp .ok{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:850; color:#1c2540;
    }
    .stamp .ok i{
      width:18px;height:18px;border-radius:7px;
      background:rgba(0,209,143,.12);
      border:1px solid rgba(0,209,143,.24);
      display:grid; place-items:center;
      font-style:normal;
      font-size:12px;
    }

    .case-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .thumb{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      min-height:280px;
    }
    .thumb:hover{transform:translateY(-3px); box-shadow:0 18px 44px rgba(11,18,40,.10); border-color:rgba(109,94,252,.22)}
    .thumb-media{
      padding:12px;
    }
    .imgbox{
      width:100%;
      border-radius:14px;
      overflow:hidden;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(135deg, rgba(109,94,252,.12), rgba(22,196,255,.10));
      aspect-ratio: 16 / 10;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .imgbox img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .thumb-body{
      padding:14px 14px 14px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .thumb-body h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .meta-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .meta-chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.66);
      color:var(--muted);
      font-size:12.6px;
      font-weight:750;
    }
    .thumb-body p{
      margin:0;
      color:var(--muted);
      font-size:13.3px;
      line-height:1.65;
    }
    .thumb-body .linkrow{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-top:1px solid rgba(20,24,38,.08);
      padding-top:10px;
    }
    .linkrow a{
      text-decoration:none;
      font-weight:850;
      font-size:13.2px;
      color:#1b2337;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.72);
      transition:transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .linkrow a:hover{transform:translateY(-1px); border-color:rgba(109,94,252,.22)}
    .arrow{
      width:22px;height:22px;border-radius:9px;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.20);
      display:grid; place-items:center;
      font-weight:950;
      color:#2b2f45;
    }

    .articles{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article-item{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:14px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-item:hover{transform:translateY(-3px); box-shadow:0 18px 44px rgba(11,18,40,.10); border-color:rgba(109,94,252,.22)}
    .article-index{
      width:38px;height:38px;border-radius:16px;
      background:linear-gradient(135deg, rgba(109,94,252,.20), rgba(22,196,255,.14));
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center;
      font-weight:950;
      flex:0 0 auto;
    }
    .article-item h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .article-item p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.3px;
      line-height:1.65;
    }
    .article-item .a-meta{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.4px;
      align-items:center;
    }
    .side-panel{
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:
        radial-gradient(740px 240px at 0% 0%, rgba(255,61,141,.14), transparent 52%),
        radial-gradient(640px 240px at 100% 10%, rgba(22,196,255,.14), transparent 55%),
        rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:16px;
    }
    .side-panel h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .side-panel p{margin:10px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .quick-form{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:7px;
    }
    label{
      font-size:12.8px;
      color:#29324a;
      font-weight:800;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.12);
      background:rgba(255,255,255,.76);
      color:#121a2e;
      font-size:14px;
      transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
      outline:none;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(109,94,252,.34);
      box-shadow:0 0 0 4px rgba(109,94,252,.14);
    }
    .form-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:4px;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.3px;
      line-height:1.45;
    }

    .timeline{
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:16px;
    }
    .timeline .row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .timeline-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.08);
      background:rgba(255,255,255,.64);
    }
    .time-dot{
      width:44px;height:44px;border-radius:18px;
      background:linear-gradient(135deg, rgba(109,94,252,.18), rgba(22,196,255,.12));
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center;
      font-weight:950;
      flex:0 0 auto;
      box-shadow:0 14px 30px rgba(109,94,252,.08);
    }
    .timeline-item strong{display:block; font-size:14.2px; letter-spacing:-.2px}
    .timeline-item span{display:block; margin-top:5px; color:var(--muted); font-size:13.1px; line-height:1.6}

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    details{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:14px;
      transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details:hover{border-color:rgba(109,94,252,.22); transform:translateY(-2px); box-shadow:0 18px 44px rgba(11,18,40,.10)}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:900;
      letter-spacing:-.2px;
      color:#141826;
      font-size:14.5px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-icon{
      width:28px;height:28px;border-radius:12px;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center;
      flex:0 0 auto;
      margin-top:-2px;
      font-size:14px;
      font-weight:950;
      color:#2b2f45;
      transition:transform .2s ease;
    }
    details[open] .sum-icon{transform:rotate(45deg)}
    .faq p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .tag-cloud{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      padding:12px;
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
    }
    .tag-cloud a{
      text-decoration:none;
      color:#1b2337;
      font-weight:850;
      font-size:12.8px;
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tag-cloud a:hover{
      transform:translateY(-2px);
      border-color:rgba(109,94,252,.22);
      background:rgba(109,94,252,.08);
    }

    .logos-row{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:10px;
      margin-top:12px;
    }
    .net{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:12px;
      text-align:center;
      color:#1b2337;
      font-weight:900;
      font-size:12.8px;
      transition:transform .18s ease, border-color .18s ease;
      user-select:none;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .net:hover{transform:translateY(-3px); border-color:rgba(109,94,252,.22)}
    .net i{
      display:block;
      width:34px;height:34px;border-radius:16px;
      margin:0 auto 10px;
      background:linear-gradient(135deg, rgba(109,94,252,.18), rgba(22,196,255,.12));
      border:1px solid rgba(109,94,252,.22);
      box-shadow:0 14px 30px rgba(109,94,252,.08);
      position:relative;
    }
    .net i::after{
      content:"";
      position:absolute; inset:9px;
      border-radius:10px;
      background:linear-gradient(135deg, rgba(255,61,141,.35), rgba(22,196,255,.35));
      transform:rotate(12deg);
    }

    .footer{
      margin-top:10px;
      background:
        radial-gradient(900px 240px at 10% 0%, rgba(109,94,252,.18), transparent 52%),
        radial-gradient(820px 260px at 90% 10%, rgba(22,196,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(245,247,255,.92));
      border-top:1px solid rgba(20,24,38,.10);
      padding:18px 0 22px;
    }
    .footer-inner{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .foot-left{
      flex:1 1 360px;
      min-width:280px;
    }
    .foot-left .brand2{
      display:flex; gap:12px; align-items:center;
    }
    .foot-left .brand2 img{
      width:44px;height:44px;border-radius:16px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.74);
      object-fit:contain;
      padding:6px;
      box-shadow:0 12px 26px rgba(11,18,40,.06);
    }
    .foot-left p{
      margin:12px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:13.5px;
      max-width:60ch;
    }
    .foot-right{
      flex:1 1 420px;
      min-width:280px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .friend{
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(11,18,40,.06);
      padding:12px;
    }
    .friend .ftitle{
      font-weight:950;
      font-size:13.5px;
      letter-spacing:-.2px;
      margin-bottom:10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .friend a{
      display:inline-block;
      margin:6px 8px 0 0;
      text-decoration:none;
      color:#1b2337;
      font-weight:850;
      font-size:12.6px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.72);
      transition:transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .friend a:hover{transform:translateY(-2px); border-color:rgba(109,94,252,.22)}
    .copyright{
      color:var(--muted2);
      font-size:12.6px;
      line-height:1.6;
      border-top:1px solid rgba(20,24,38,.10);
      padding-top:12px;
      width:100%;
    }

    .float-customer{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .fab{
      width:52px;height:52px;border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 46px rgba(11,18,40,.12);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      user-select:none;
    }
    .fab:hover{transform:translateY(-3px); border-color:rgba(109,94,252,.22); box-shadow:0 22px 56px rgba(11,18,40,.16)}
    .fab .fa{
      width:26px;height:26px;border-radius:12px;
      background:linear-gradient(135deg, rgba(109,94,252,.22), rgba(22,196,255,.16));
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center;
      font-weight:950;
    }
    .qrcode{
      width:210px;
      border-radius:20px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 22px 56px rgba(11,18,40,.18);
      overflow:hidden;
      transform-origin:90% 100%;
      transition:opacity .18s ease, transform .18s ease;
      opacity:0;
      transform:scale(.98) translateY(8px);
      pointer-events:none;
    }
    .qrcode.show{
      opacity:1;
      transform:scale(1) translateY(0);
      pointer-events:auto;
    }
    .qrcode .qhead{
      padding:10px 12px;
      border-bottom:1px solid rgba(20,24,38,.10);
      font-weight:950;
      font-size:13px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:#141826;
      background:linear-gradient(135deg, rgba(109,94,252,.10), rgba(22,196,255,.08));
    }
    .qrcode .qhead button{
      border:none;
      background:transparent;
      cursor:pointer;
      font-weight:950;
      color:#1b2337;
      opacity:.75;
      padding:6px 8px;
      border-radius:10px;
      border:1px solid rgba(20,24,38,.10);
    }
    .qrcode .qhead button:hover{opacity:1}
    .qrcode .qimg{
      padding:12px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .qrcode img{
      width:160px;
      height:auto;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.10);
      background:#fff;
    }

    .to-top{
      position:fixed;
      left:14px;
      bottom:14px;
      z-index:79;
      width:46px;height:46px;border-radius:16px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 46px rgba(11,18,40,.12);
      display:grid; place-items:center;
      cursor:pointer;
      user-select:none;
      transition:transform .15s ease, opacity .15s ease;
      opacity:0;
      pointer-events:none;
    }
    .to-top.show{opacity:1; pointer-events:auto}
    .to-top:hover{transform:translateY(-3px)}
    .to-top span{
      width:22px;height:22px;border-radius:10px;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.22);
      display:grid; place-items:center;
      font-weight:950;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; gap:14px}
      h1{font-size:34px}
      .nav-links{display:none}
      .nav-cta{display:none}
      .menu-btn{display:flex}
      .mobile-drawer{display:block}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr 1fr}
      .client{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .logos-row{grid-template-columns:repeat(3, 1fr)}
      .faq{grid-template-columns:1fr}
      .timeline .row{grid-template-columns:1fr}
      .float-customer{right:10px; bottom:10px}
      .to-top{left:10px; bottom:10px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .kicker .spark::after, .sparkline::after{animation:none}
      .reveal{transition:none; opacity:1; transform:none}
    }