:root{
      --bg0:#ffffff;
      --bg1:#f6f7fb;
      --ink:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.60);
      --shadow:0 18px 50px rgba(17,24,39,.10);
      --shadow2:0 10px 28px rgba(17,24,39,.10);
      --r12:12px;
      --r16:16px;
      --r20:20px;
      --r24:24px;
      --brand1:#6d28d9;
      --brand2:#0ea5e9;
      --brand3:#22c55e;
      --brand4:#f97316;
      --laserA:#7c3aed;
      --laserB:#06b6d4;
      --laserC:#fb7185;
      --laserD:#f59e0b;
      --accent:#2563eb;
      --btn:#0b1220;
      --btnText:#ffffff;
      --focus: rgba(37,99,235,.26);
      --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, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1200px 700px at 10% -10%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(900px 520px at 85% 10%, rgba(6,182,212,.16), transparent 55%),
        radial-gradient(780px 500px at 55% 0%, rgba(251,113,133,.10), transparent 58%),
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 45%, #ffffff 100%);
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(1.1) blur(10px);
      background: rgba(255,255,255,.70);
      border-bottom:1px solid rgba(15,23,42,.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: 180px;
    }
    .brand .logo{
      width:40px;height:40px;
      border-radius:12px;
      background:
        radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.85), transparent 60%),
        linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.95));
      box-shadow: 0 12px 28px rgba(124,58,237,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.65);
    }
    .brand .logo img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter:saturate(1.1) contrast(1.05);
    }
    .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(--muted2);
      margin-top:4px;
      white-space:nowrap;
    }
    nav .nav-links{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    nav a.nav-link{
      text-decoration:none;
      color:rgba(15,23,42,.86);
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    nav a.nav-link:hover{
      background:rgba(37,99,235,.06);
      border-color:rgba(37,99,235,.18);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 210px;
      justify-content:flex-end;
    }
    .btn{
      appearance:none;
      border:none;
      border-radius:14px;
      padding:11px 14px;
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      line-height:1;
      user-select:none;
      white-space:nowrap;
    }
    .btn-primary{
      background: linear-gradient(135deg, rgba(124,58,237,.98), rgba(6,182,212,.95));
      color:#fff;
      box-shadow: 0 18px 38px rgba(124,58,237,.20);
      border:1px solid rgba(255,255,255,.25);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 22px 48px rgba(124,58,237,.25);
    }
    .btn-ghost{
      background: rgba(255,255,255,.70);
      color:rgba(15,23,42,.92);
      border:1px solid rgba(15,23,42,.12);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.28);
      background: rgba(124,58,237,.06);
    }
    .hamburger{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.7);
      box-shadow: 0 12px 28px rgba(17,24,39,.06);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .hamburger:hover{
      transform: translateY(-1px);
      border-color: rgba(37,99,235,.24);
      background: rgba(37,99,235,.06);
    }
    .hamburger .bars{
      width:18px;height:12px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(15,23,42,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:0}
    .hamburger .bars span:nth-child(2){top:5px}
    .hamburger .bars span:nth-child(3){top:10px}
    .mobile-panel{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobile-panel .mobile-links{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding: 12px 0 2px 0;
    }
    .mobile-panel a.nav-link{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
      border-radius:14px;
      text-decoration:none;
      font-weight:600;
      font-size:14px;
    }
    main{padding:26px 0 10px}
    .hero{
      position:relative;
      overflow:hidden;
      border-radius: 28px;
      border:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(900px 380px at 20% 15%, rgba(124,58,237,.20), transparent 55%),
        radial-gradient(720px 300px at 80% 20%, rgba(6,182,212,.20), transparent 56%),
        radial-gradient(620px 260px at 55% 0%, rgba(251,113,133,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
      box-shadow: var(--shadow);
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        conic-gradient(from 220deg, rgba(124,58,237,.0), rgba(124,58,237,.20), rgba(6,182,212,.22), rgba(251,113,133,.18), rgba(245,158,11,.14), rgba(124,58,237,.0));
      filter: blur(26px);
      opacity:.9;
      pointer-events:none;
      transform: translateY(-25px);
    }
    .hero::after{
      content:"";
      position:absolute;
      left:-20%;
      top:-140px;
      width:140%;
      height:220px;
      background:
        repeating-linear-gradient(110deg,
          rgba(124,58,237,.00) 0px,
          rgba(124,58,237,.30) 10px,
          rgba(6,182,212,.00) 20px,
          rgba(251,113,133,.26) 30px,
          rgba(245,158,11,.00) 42px);
      transform: rotate(-8deg);
      opacity:.55;
      pointer-events:none;
      animation: laserSweep 6.8s ease-in-out infinite;
    }
    @keyframes laserSweep{
      0%{transform: rotate(-8deg) translateX(-8px); opacity:.35}
      40%{opacity:.65}
      100%{transform: rotate(-8deg) translateX(12px); opacity:.35}
    }
    .hero-inner{
      position:relative;
      padding: 26px 18px 18px 18px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .hero-left{
      padding: 10px 6px 18px 6px;
    }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:14px;
    }
    .laser-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 30px rgba(17,24,39,.06);
    }
    .laser-dot{
      width:12px; height:12px; border-radius:50%;
      background: conic-gradient(from 180deg, var(--laserA), var(--laserB), var(--laserC), var(--laserD), var(--laserA));
      box-shadow: 0 10px 22px rgba(124,58,237,.22);
      position:relative;
    }
    .laser-dot::after{
      content:"";
      position:absolute;
      inset:-8px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(124,58,237,.22), transparent 60%);
    }
    .laser-badge span{
      font-size:12.5px;
      font-weight:700;
      color:rgba(15,23,42,.90);
      letter-spacing:.2px;
    }
    .hero h1{
      margin:0 0 10px 0;
      font-size: clamp(26px, 3.1vw, 40px);
      line-height:1.18;
      letter-spacing:-.6px;
    }
    .hero-sub{
      margin:0;
      color: rgba(15,23,42,.74);
      font-size:15px;
      line-height:1.75;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:18px;
    }
    .small-note{
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top:14px;
      color: rgba(15,23,42,.70);
      font-size:13px;
      line-height:1.55;
    }
    .small-note .check{
      width:18px;height:18px;border-radius:6px;
      background: rgba(34,197,94,.14);
      border:1px solid rgba(34,197,94,.30);
      display:flex;align-items:center;justify-content:center;
      color:#0a7a2a;
      flex:0 0 auto;
      margin-top:2px;
      font-weight:900;
      font-size:12px;
    }
    .hero-right{
      padding: 6px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .stat-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat{
      border-radius: 18px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px 14px 12px 14px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      will-change:transform;
    }
    .stat::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(240px 120px at 10% 10%, rgba(124,58,237,.16), transparent 55%),
                  radial-gradient(240px 120px at 80% 0%, rgba(6,182,212,.14), transparent 55%);
      opacity:.9;
      pointer-events:none;
    }
    .stat > *{position:relative}
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(17,24,39,.10);
      border-color: rgba(124,58,237,.22);
    }
    .stat .k{
      font-size:20px;
      font-weight:860;
      letter-spacing:-.5px;
    }
    .stat .t{
      margin-top:8px;
      color: rgba(15,23,42,.72);
      font-size:12.5px;
      line-height:1.4;
      font-weight:650;
    }
    .hero-right .panel{
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.60));
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .hero-right .panel::after{
      content:"";
      position:absolute;
      right:-60px;
      top:-60px;
      width:180px;height:180px;
      background: conic-gradient(from 180deg, rgba(124,58,237,.35), rgba(6,182,212,.28), rgba(251,113,133,.22), rgba(245,158,11,.18), rgba(124,58,237,.35));
      filter: blur(16px);
      opacity:.55;
      pointer-events:none;
    }
    .hero-right .panel > *{position:relative}
    .panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .panel-title h2{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
    }
    .pill{
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.06);
      color: rgba(15,23,42,.86);
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .progress-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .step-line{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .step-icon{
      width:34px;height:34px;border-radius:14px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      display:flex;align-items:center;justify-content:center;
      color: rgba(124,58,237,.95);
      font-weight:900;
      flex:0 0 auto;
    }
    .step-text{
      flex:1;
      display:flex; flex-direction:column;
      gap:4px;
      min-width:0;
    }
    .step-text strong{
      font-size:13px;
      letter-spacing:.1px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .step-text span{
      color: rgba(15,23,42,.68);
      font-size:12.5px;
      line-height:1.35;
      display:block;
    }
    .progress-bar{
      height:9px;
      border-radius:999px;
      background: rgba(15,23,42,.08);
      border:1px solid rgba(15,23,42,.08);
      overflow:hidden;
      margin-top:10px;
    }
    .progress-bar i{
      display:block;
      height:100%;
      width: 72%;
      background: linear-gradient(90deg, rgba(124,58,237,.95), rgba(6,182,212,.95));
      border-radius:999px;
      animation: fillIn 1.2s ease both;
    }
    @keyframes fillIn{
      from{width:20%; opacity:.7}
      to{width:72%; opacity:1}
    }
    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:20px;
      letter-spacing:-.25px;
    }
    .section-head p{
      margin:0;
      color: rgba(15,23,42,.70);
      font-size:13.5px;
      line-height:1.6;
      max-width:60ch;
    }
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .card{
      border-radius: 20px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(260px 120px at 10% 0%, rgba(124,58,237,.14), transparent 58%),
                  radial-gradient(260px 120px at 90% 10%, rgba(6,182,212,.12), transparent 55%);
      opacity:.9;
      pointer-events:none;
    }
    .card > *{position:relative}
    .card h3{
      margin:8px 0 8px 0;
      font-size:15px;
      letter-spacing:-.15px;
    }
    .card p{
      margin:0;
      color: rgba(15,23,42,.70);
      font-size:13.5px;
      line-height:1.7;
    }
    .icon{
      width:42px;height:42px;border-radius:16px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      display:flex;align-items:center;justify-content:center;
      color: rgba(124,58,237,.95);
      font-weight:900;
      box-shadow: 0 18px 34px rgba(124,58,237,.12);
    }
    .list{
      margin:10px 0 0 0;
      padding:0;
      list-style:none;
      display:flex;flex-direction:column;gap:10px;
    }
    .list li{
      display:flex;gap:10px;align-items:flex-start;
      color: rgba(15,23,42,.74);
      font-size:13.3px;
      line-height:1.55;
    }
    .tick{
      width:18px;height:18px;border-radius:7px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.28);
      display:flex;align-items:center;justify-content:center;
      color:#0b6b2c;
      font-weight:900;font-size:12px;flex:0 0 auto;margin-top:2px;
    }
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      border-radius: 20px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .step .num{
      width:40px;height:40px;border-radius:16px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.14));
      border:1px solid rgba(124,58,237,.22);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;color: rgba(124,58,237,.95);
      margin-bottom:10px;
    }
    .step h3{margin:0 0 8px 0; font-size:15px; letter-spacing:-.15px}
    .step p{margin:0; color: rgba(15,23,42,.70); font-size:13.4px; line-height:1.65}
    .compare{
      overflow:auto;
      border-radius: 20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(124,58,237,.08), rgba(255,255,255,.00));
      color: rgba(15,23,42,.92);
      position:sticky;
      top:0;
      z-index:2;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      color: rgba(15,23,42,.74);
      vertical-align:top;
    }
    tbody tr:hover td{
      background: rgba(37,99,235,.04);
    }
    .score{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(245,158,11,.22);
      background: rgba(245,158,11,.10);
      font-weight:850;
      letter-spacing:-.2px;
      color: rgba(15,23,42,.92);
      white-space:nowrap;
    }
    .stars{
      display:inline-flex; gap:4px; align-items:center;
    }
    .star{
      width:16px;height:16px;
      background: conic-gradient(from 180deg, rgba(245,158,11,.95), rgba(249,115,22,.95), rgba(245,158,11,.95));
      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 10px 22px rgba(245,158,11,.20);
    }
    .badge-row2{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .tag{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:8px 10px;
      border-radius:999px;
      color: rgba(15,23,42,.76);
      font-weight:700;
      font-size:12.5px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      white-space:nowrap;
    }
    .tag:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
      background: rgba(124,58,237,.06);
    }
    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    details.faq-item{
      border-radius: 20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding: 12px 14px;
      transition: border-color .2s ease, transform .2s ease;
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color: rgba(124,58,237,.26);
      transform: translateY(-1px);
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      font-weight:820;
      color: rgba(15,23,42,.92);
      font-size:14px;
      outline:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:6px 0;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .chev{
      width:28px;height:28px;border-radius:12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      transition: transform .18s ease, border-color .18s ease;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(124,58,237,.26)}
    .faq-body{
      color: rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.75;
      padding-bottom:6px;
    }
    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    blockquote{
      margin:0;
      color: rgba(15,23,42,.74);
      font-size:13.8px;
      line-height:1.75;
    }
    .review-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-top:12px;
      gap:10px;
    }
    .avatar{
      width:42px;height:42px;border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.9), transparent 60%),
        linear-gradient(135deg, rgba(124,58,237,.26), rgba(6,182,212,.22));
      display:flex;align-items:center;justify-content:center;
      font-weight:950;color: rgba(15,23,42,.88);
    }
    .who{
      display:flex;
      flex-direction:column;
      gap:3px;
      min-width:0;
      flex:1;
    }
    .who strong{
      font-size:13.5px;
      letter-spacing:-.1px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .who span{
      font-size:12.5px;
      color: rgba(15,23,42,.62);
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .case-card{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .case-card:hover{
      transform: translateY(-2px);
      border-color: rgba(6,182,212,.22);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .case-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .case-type{
      font-size:12.5px;
      font-weight:800;
      color: rgba(15,23,42,.82);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .case-card h3{
      margin:10px 0 8px 0;
      font-size:15.5px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .case-card p{
      margin:0;
      color: rgba(15,23,42,.70);
      font-size:13.4px;
      line-height:1.7;
    }
    .thumb{
      margin-top:12px;
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(15,23,42,.03);
    }
    .thumb img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
    }
    .article-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:start;
    }
    .article-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .article-item{
      border-radius: 20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:12px 14px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      background: rgba(124,58,237,.05);
    }
    .article-item .meta{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .article-item strong{
      font-size:14px; letter-spacing:-.1px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .article-item span{
      color: rgba(15,23,42,.62);
      font-size:12.5px;
      line-height:1.4;
    }
    .article-item a{
      text-decoration:none;
      color: rgba(37,99,235,.96);
      font-weight:800;
      font-size:13px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.06);
      padding:8px 10px;
      border-radius:14px;
      white-space:nowrap;
      flex:0 0 auto;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .article-item a:hover{
      transform: translateY(-1px);
      border-color: rgba(37,99,235,.30);
      background: rgba(37,99,235,.10);
    }
    .side-panel{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .side-panel::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(320px 150px at 20% 10%, rgba(124,58,237,.16), transparent 60%),
                  radial-gradient(320px 150px at 85% 20%, rgba(6,182,212,.14), transparent 58%);
      pointer-events:none;
      opacity:.95;
    }
    .side-panel > *{position:relative}
    .side-panel h3{
      margin:0 0 10px 0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .kv-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .kv{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:12px;
    }
    .kv strong{
      display:block;
      font-size:14px;
      letter-spacing:-.1px;
    }
    .kv span{
      display:block;
      margin-top:6px;
      color: rgba(15,23,42,.65);
      font-size:12.6px;
      line-height:1.35;
    }
    .form-wrap{
      display:grid;
      grid-template-columns: 1fr .9fr;
      gap:12px;
      align-items:start;
    }
    form{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    form::after{
      content:"";
      position:absolute;
      right:-60px; bottom:-60px;
      width:160px;height:160px;
      background: conic-gradient(from 200deg, rgba(124,58,237,.30), rgba(6,182,212,.22), rgba(251,113,133,.18), rgba(245,158,11,.14), rgba(124,58,237,.30));
      filter: blur(18px);
      opacity:.50;
      pointer-events:none;
    }
    form > *{position:relative}
    .form-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .form-head h3{margin:0; font-size:15.5px; letter-spacing:-.2px}
    .form-head p{margin:6px 0 0 0; color: rgba(15,23,42,.70); font-size:13.4px; line-height:1.6; max-width:48ch}
    .field-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .field{display:flex; flex-direction:column; gap:6px}
    label{
      font-size:12.5px;
      color: rgba(15,23,42,.72);
      font-weight:800;
      letter-spacing:.15px;
    }
    input, select, textarea{
      width:100%;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.76);
      padding:11px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
      color: rgba(15,23,42,.94);
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(37,99,235,.34);
      box-shadow: 0 0 0 4px var(--focus);
      background: rgba(255,255,255,.92);
    }
    .form-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .fineprint{
      color: rgba(15,23,42,.62);
      font-size:12.5px;
      line-height:1.55;
      max-width:52ch;
    }
    .form-foot .submit{
      padding:12px 14px;
      border-radius: 16px;
      font-size:14px;
    }
    .match-panel{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .match-panel::before{
      content:"";
      position:absolute;
      left:-80px; top:-90px;
      width:240px;height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.22), transparent 60%),
                  radial-gradient(circle at 70% 60%, rgba(6,182,212,.18), transparent 62%);
      pointer-events:none;
      opacity:.95;
    }
    .match-panel > *{position:relative}
    .match-panel h3{margin:0 0 10px 0; font-size:15.5px; letter-spacing:-.2px}
    .price-box{
      border-radius: 20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:12px;
      margin-top:10px;
    }
    .price-box strong{display:block; font-size:14px; letter-spacing:-.1px}
    .price-box ul{margin:10px 0 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px}
    .price-box li{
      display:flex; justify-content:space-between; gap:10px;
      color: rgba(15,23,42,.72);
      font-size:13px;
      padding:8px 10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(15,23,42,.02);
    }
    .price-box li i{
      font-style:normal;
      color: rgba(37,99,235,.96);
      font-weight:900;
      white-space:nowrap;
    }
    .network{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .network-top{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:start;
    }
    .map-box{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .map-box::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(380px 180px at 15% 15%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(420px 220px at 85% 25%, rgba(6,182,212,.14), transparent 62%);
      pointer-events:none;
      opacity:.95;
    }
    .map-box > *{position:relative}
    .map-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
      margin-top:10px;
    }
    .city{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:12px;
      min-height:72px;
    }
    .city strong{display:block; font-size:14px; letter-spacing:-.1px}
    .city span{display:block; margin-top:6px; color: rgba(15,23,42,.62); font-size:12.6px; line-height:1.4}
    .timeline{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .timeline h3{margin:0 0 10px 0; font-size:15.5px; letter-spacing:-.2px}
    .timeline .rows{
      display:flex; flex-direction:column; gap:10px;
    }
    .trow{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 10px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(15,23,42,.02);
    }
    .dot{
      width:14px;height:14px;border-radius:50%;
      background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.95));
      box-shadow: 0 10px 22px rgba(124,58,237,.18);
      margin-top:3px; flex:0 0 auto;
    }
    .trow strong{display:block; font-size:13.5px; letter-spacing:-.1px}
    .trow span{display:block; margin-top:4px; color: rgba(15,23,42,.64); font-size:12.8px; line-height:1.45}
    .tags-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .price-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .mini-card{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .mini-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(320px 150px at 20% 10%, rgba(124,58,237,.16), transparent 60%),
                  radial-gradient(320px 150px at 90% 20%, rgba(6,182,212,.13), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .mini-card > *{position:relative}
    .mini-card h3{margin:0; font-size:15.5px; letter-spacing:-.2px}
    .mini-card p{margin:8px 0 0 0; color: rgba(15,23,42,.70); font-size:13.4px; line-height:1.7}
    .mini-card .row{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(15,23,42,.02);
      padding:10px 10px;
    }
    .mini-card .row span{
      color: rgba(15,23,42,.66);
      font-size:12.8px;
      font-weight:800;
    }
    .mini-card .row strong{
      font-size:15px;
      letter-spacing:-.2px;
    }
    .footer{
      margin-top: 12px;
      padding: 26px 0 34px 0;
      border-top:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.86));
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:start;
    }
    .foot-card{
      border-radius: 22px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .foot-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(360px 180px at 10% 10%, rgba(124,58,237,.16), transparent 60%),
                  radial-gradient(420px 220px at 90% 20%, rgba(6,182,212,.12), transparent 62%);
      pointer-events:none;
      opacity:.9;
    }
    .foot-card > *{position:relative}
    .foot-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .foot-title strong{
      font-size:15.5px; letter-spacing:-.2px;
    }
    .foot-desc{
      color: rgba(15,23,42,.70);
      font-size:13.4px;
      line-height:1.75;
      margin:0;
      max-width: 62ch;
    }
    .footer-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      text-decoration:none;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:10px 12px;
      font-weight:800;
      color: rgba(15,23,42,.82);
      font-size:13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      background: rgba(124,58,237,.06);
    }
    .copyright{
      margin-top:14px;
      color: rgba(15,23,42,.62);
      font-size:12.6px;
      line-height:1.6;
      display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
    }
    .sys-footer{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
      color: rgba(15,23,42,.62);
      font-size:12.6px;
    }
    .to-top{
      position:fixed;
      right:16px;
      bottom:90px;
      width:46px;height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 40px rgba(17,24,39,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      z-index:60;
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      transform: translateY(8px);
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .to-top:hover{transform: translateY(-2px)}
    .to-top svg{display:block}
    .float-customer{
      position:fixed;
      left:16px;
      bottom:90px;
      z-index:60;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 44px rgba(17,24,39,.12);
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease;
      user-select:none;
    }
    .float-customer:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
    }
    .float-customer .bubble{
      width:38px;height:38px;border-radius:16px;
      border:1px solid rgba(124,58,237,.20);
      background: rgba(124,58,237,.10);
      display:flex;align-items:center;justify-content:center;
      color: rgba(124,58,237,.95);
      font-weight:950;
      flex:0 0 auto;
    }
    .float-customer .text{
      display:flex; flex-direction:column;
      gap:3px;
      line-height:1.2;
    }
    .float-customer .text strong{
      font-size:13.2px;
      letter-spacing:-.1px;
    }
    .float-customer .text span{
      font-size:12.2px;
      color: rgba(15,23,42,.64);
    }
    .qr-pop{
      position:fixed;
      left:16px;
      bottom:150px;
      z-index:80;
      width: 250px;
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 26px 70px rgba(17,24,39,.18);
      padding:12px;
      display:none;
      transform: translateY(10px);
      opacity:0;
      transition: opacity .18s ease, transform .18s ease;
    }
    .qr-pop.show{
      display:block;
      opacity:1;
      transform: translateY(0);
    }
    .qr-head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .qr-head strong{font-size:13.8px; letter-spacing:-.1px}
    .qr-close{
      width:36px;height:36px;border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .qr-img{
      width:100%;
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(15,23,42,.03);
    }
    .qr-img img{width:100%; height:auto; display:block; object-fit:contain}
    .fade-in{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.in{
      opacity:1;
      transform: translateY(0);
    }
    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; }
      .hero-right{padding: 0 6px 18px 6px}
      .steps{grid-template-columns: repeat(2,1fr)}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr}
      .form-wrap{grid-template-columns: 1fr}
      .network-top{grid-template-columns: 1fr}
      .price-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .float-customer{left:12px}
      .qr-pop{left:12px}
      nav .nav-links{display:none}
      .nav-cta .btn-ghost{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .mobile-panel{max-height:0; overflow:hidden; transition:max-height .25s ease}
      .mobile-panel.open{max-height: 420px}
      .nav-cta{min-width:auto}
      table{min-width: 760px}
    }