:root{
      --bg0:#ffffff;
      --bg1:#fbfafc;
      --ink:#0f172a;
      --muted:#5b657a;
      --line:rgba(15, 23, 42, .10);
      --card:rgba(255,255,255,.78);
      --shadow:0 18px 50px rgba(2, 6, 23, .10);
      --shadow2:0 10px 26px rgba(2, 6, 23, .10);
      --shadow3:0 6px 18px rgba(2, 6, 23, .10);
      --brandA:#6d28d9;
      --brandB:#2563eb;
      --brandC:#06b6d4;
      --brandD:#f97316;
      --brandE:#10b981;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --pad:18px;
      --focus:0 0 0 4px rgba(37,99,235,.18);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1000px 500px at 15% -10%, rgba(109,40,217,.16), transparent 55%),
        radial-gradient(900px 520px at 85% 0%, rgba(37,99,235,.14), transparent 55%),
        radial-gradient(900px 520px at 70% 40%, rgba(6,182,212,.10), transparent 55%),
        linear-gradient(180deg, var(--bg1), #fff 38%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    button, input, select, textarea{
      font:inherit;
      color:inherit;
    }

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

    .topbar{
      position:sticky;
      top:0;
      z-index:30;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.62);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .navrow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 180px;
    }
    .brand img{
      width:42px;
      height:42px;
      border-radius:12px;
      object-fit:cover;
      box-shadow:0 10px 30px rgba(109,40,217,.18);
      background:#fff;
    }
    .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);
      margin-top:3px;
    }

    .navlinks{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navlinks a{
      padding:9px 10px;
      border-radius:12px;
      color:rgba(15,23,42,.86);
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
      font-size:13px;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background: rgba(37,99,235,.06);
      border-color: rgba(37,99,235,.18);
      box-shadow:0 10px 24px rgba(37,99,235,.08);
      transform: translateY(-1px);
    }

    .navright{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 240px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      color:rgba(15,23,42,.92);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      cursor:pointer;
      user-select:none;
      font-weight:600;
      font-size:13px;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(15,23,42,.18);
      box-shadow:0 14px 34px rgba(2,6,23,.10);
    }
    .btn:focus{outline:none; box-shadow: var(--focus), 0 14px 34px rgba(2,6,23,.10)}
    .btn-primary{
      border:none;
      background:
        linear-gradient(110deg, rgba(109,40,217,1), rgba(37,99,235,1), rgba(6,182,212,1));
      color:#fff;
      box-shadow: 0 18px 45px rgba(37,99,235,.22);
      position:relative;
      overflow:hidden;
    }
    .btn-primary:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(800px 120px at 20% 0%, rgba(255,255,255,.35), transparent 55%);
      transform: translateX(-30%);
      opacity:.65;
      transition: transform .55s ease, opacity .35s ease;
      pointer-events:none;
    }
    .btn-primary:hover:before{
      transform: translateX(10%);
      opacity:1;
    }

    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .hamburger:hover{
      transform: translateY(-1px);
      box-shadow:0 14px 34px rgba(2,6,23,.10);
      border-color: rgba(15,23,42,.18);
    }
    .hamburger span{
      display:block;
      width:18px; height:2px;
      background: rgba(15,23,42,.75);
      border-radius:999px;
      position:relative;
    }
    .hamburger span:before,
    .hamburger span:after{
      content:"";
      position:absolute; left:0;
      width:18px; height:2px;
      background: rgba(15,23,42,.75);
      border-radius:999px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:before{ top:-6px }
    .hamburger span:after{ top:6px }
    .hamburger[aria-expanded="true"] span{ background: transparent; }
    .hamburger[aria-expanded="true"] span:before{ top:0; transform: rotate(45deg); }
    .hamburger[aria-expanded="true"] span:after{ top:0; transform: rotate(-45deg); }

    .mobilePanel{
      display:none;
      padding:12px 0 16px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .mobilePanel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      margin-top:10px;
      font-weight:600;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .mobilePanel a:hover{
      transform: translateY(-1px);
      box-shadow:0 14px 34px rgba(2,6,23,.10);
    }

    .hero{
      position:relative;
      padding:34px 0 16px;
    }

    .heroWrap{
      position:relative;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(900px 520px at 10% 0%, rgba(109,40,217,.18), transparent 55%),
        radial-gradient(820px 460px at 100% 10%, rgba(37,99,235,.18), transparent 60%),
        radial-gradient(700px 420px at 70% 70%, rgba(6,182,212,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.68));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .heroInner{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:18px;
      padding:26px;
      align-items:start;
    }

    .heroGlow{
      position:absolute;
      inset:-40px;
      pointer-events:none;
      background:
        conic-gradient(from 200deg at 50% 50%,
          rgba(109,40,217,.18),
          rgba(37,99,235,.20),
          rgba(6,182,212,.18),
          rgba(249,115,22,.12),
          rgba(109,40,217,.18));
      filter: blur(28px);
      opacity:.35;
      transform: translate3d(0,0,0);
    }
    .heroTop{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      font-weight:700;
      font-size:12px;
      color: rgba(15,23,42,.85);
    }
    .pill i{
      width:12px; height:12px;
      border-radius:4px;
      background: linear-gradient(110deg, var(--brandA), var(--brandB), var(--brandC));
      box-shadow:0 10px 25px rgba(37,99,235,.18);
      display:inline-block;
    }

    .hero h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.5px;
      line-height:1.18;
      position:relative;
      z-index:1;
    }
    .heroLead{
      margin-top:12px;
      color: rgba(15,23,42,.78);
      font-size:15px;
      line-height:1.75;
      max-width: 60ch;
      position:relative;
      z-index:1;
    }
    .heroActions{
      margin-top:16px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .heroMeta{
      margin-top:18px;
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      position:relative;
      z-index:1;
      align-items:center;
    }
    .metaItem{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.64);
      min-width: 190px;
    }
    .metaIcon{
      width:34px; height:34px;
      border-radius:14px;
      background: linear-gradient(180deg, rgba(37,99,235,.12), rgba(109,40,217,.10));
      border:1px solid rgba(37,99,235,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 12px 30px rgba(37,99,235,.10);
      flex:0 0 auto;
    }
    .metaItem b{
      font-size:13px;
      display:block;
      margin-top:2px;
    }
    .metaItem span{
      font-size:12px;
      color:var(--muted);
      display:block;
      margin-top:4px;
      line-height:1.3;
    }

    .heroSide{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:stretch;
    }

    .sideCard{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      box-shadow:0 10px 26px rgba(2,6,23,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .sideCard:before{
      content:"";
      position:absolute;
      inset:-80px -40px auto -40px;
      height:120px;
      background: radial-gradient(120px 60px at 40% 50%, rgba(109,40,217,.28), transparent 70%);
      transform: rotate(-10deg);
      opacity:.7;
      pointer-events:none;
    }
    .sideTitle{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .sideTitle h3{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
    }
    .badge{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }

    .sideList{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .sideList li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.58);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .sideList li:hover{
      transform: translateY(-1px);
      border-color: rgba(37,99,235,.20);
      box-shadow:0 14px 34px rgba(37,99,235,.10);
    }
    .dot{
      width:10px; height:10px;
      border-radius:3px;
      margin-top:4px;
      background: linear-gradient(110deg, rgba(109,40,217,1), rgba(37,99,235,1), rgba(6,182,212,1));
      box-shadow:0 10px 25px rgba(37,99,235,.18);
      flex:0 0 auto;
    }
    .sideList b{ font-size:13px; }
    .sideList span{
      font-size:12px;
      color:var(--muted);
      display:block;
      margin-top:4px;
      line-height:1.35;
    }

    .section{
      padding:18px 0;
    }
    .sectionHeader{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin:10px 0 12px;
    }
    .sectionHeader h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.2px;
      line-height:1.25;
    }
    .sectionHeader p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width: 62ch;
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .grid4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      padding:14px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow:0 18px 45px rgba(2,6,23,.10);
      border-color: rgba(37,99,235,.18);
    }

    .kpi{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .kpi .left{
      display:flex; gap:10px;
      align-items:flex-start;
    }
    .kpiIcon{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(180deg, rgba(109,40,217,.10), rgba(37,99,235,.08));
      border:1px solid rgba(109,40,217,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 14px 34px rgba(109,40,217,.12);
      flex:0 0 auto;
    }
    .kpi b{
      font-size:13px;
      letter-spacing:.2px;
      display:block;
      color: rgba(15,23,42,.85);
    }
    .kpi strong{
      font-size:22px;
      letter-spacing:-.5px;
      display:block;
      margin-top:2px;
      line-height:1.1;
    }
    .kpi small{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
    }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.60);
    }
    .li .check{
      width:22px; height:22px;
      border-radius:10px;
      background: rgba(16,185,129,.12);
      border:1px solid rgba(16,185,129,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      box-shadow:0 14px 34px rgba(16,185,129,.10);
      margin-top:1px;
    }
    .li b{font-size:13px}
    .li span{display:block; margin-top:4px; color:var(--muted); font-size:12px; line-height:1.5}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .step{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      position:relative;
      overflow:hidden;
      min-height: 148px;
    }
    .step:after{
      content:"";
      position:absolute;
      right:-40px; top:-40px;
      width:110px; height:110px;
      border-radius:999px;
      background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.22), transparent 60%);
      opacity:.7;
    }
    .step .num{
      width:34px; height:34px;
      border-radius:14px;
      background: linear-gradient(110deg, rgba(109,40,217,.14), rgba(37,99,235,.12), rgba(6,182,212,.10));
      border:1px solid rgba(37,99,235,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      position:relative;
      z-index:1;
      box-shadow:0 14px 34px rgba(37,99,235,.10);
    }
    .step h3{
      margin:10px 0 6px;
      font-size:14px;
      position:relative;
      z-index:1;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:12px;
      line-height:1.65;
      position:relative;
      z-index:1;
    }

    .compareWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 520px at 10% 0%, rgba(6,182,212,.12), transparent 60%),
        radial-gradient(820px 460px at 100% 10%, rgba(109,40,217,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.66));
      box-shadow: var(--shadow2);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .compareHead{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:6px 4px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .ratingBox{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .starBadge{
      width:54px; height:54px;
      border-radius:18px;
      background:
        linear-gradient(180deg, rgba(249,115,22,.18), rgba(37,99,235,.10));
      border:1px solid rgba(249,115,22,.25);
      box-shadow:0 18px 45px rgba(249,115,22,.14);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .ratingBox b{font-size:14px}
    .ratingBox .score{
      font-size:30px;
      letter-spacing:-.8px;
      font-weight:1000;
      line-height:1;
      margin-top:3px;
    }
    .ratingBox small{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-top:6px;
      line-height:1.4;
    }

    .tableWrap{
      overflow:auto;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      margin-top:12px;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 720px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      font-size:13px;
      text-align:left;
      vertical-align:top;
    }
    th{
      background: rgba(15,23,42,.03);
      color: rgba(15,23,42,.88);
      font-weight:900;
    }
    tr:last-child td{border-bottom:none}
    .tdTag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .tagOk{
      border-color: rgba(16,185,129,.25);
      background: rgba(16,185,129,.10);
    }
    .tagMid{
      border-color: rgba(37,99,235,.22);
      background: rgba(37,99,235,.10);
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .tItem{
      display:grid;
      grid-template-columns: 86px 1fr;
      gap:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
    }
    .tLeft{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding-top:2px;
    }
    .tLeft .tDate{
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:14px;
    }
    .tLeft .tDot{
      width:12px; height:12px;
      border-radius:4px;
      background: linear-gradient(110deg, rgba(109,40,217,1), rgba(37,99,235,1), rgba(6,182,212,1));
      box-shadow:0 14px 34px rgba(37,99,235,.12);
    }
    .tRight b{
      display:block;
      font-size:14px;
      margin-top:2px;
    }
    .tRight span{
      display:block;
      color:var(--muted);
      margin-top:6px;
      font-size:12px;
      line-height:1.7;
    }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .faqItem{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      overflow:hidden;
    }
    .faqBtn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      background: transparent;
      border:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .faqBtn:focus{outline:none; box-shadow: var(--focus)}
    .faqBtn b{
      font-size:13px;
      line-height:1.55;
      padding-right:6px;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      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 .2s ease;
      margin-top:0px;
    }
    .faqItem[data-open="true"] .chev{ transform: rotate(180deg); }
    .faqPanel{
      padding:0 14px 14px;
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .faqItem[data-open="true"] .faqPanel{ max-height:240px; }
    .faqPanel p{
      margin:0;
      color: rgba(15,23,42,.80);
      font-size:13px;
      line-height:1.8;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .reviewCard{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      position:relative;
      overflow:hidden;
    }
    .reviewCard:before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:86px;
      background: radial-gradient(250px 70px at 20% 0%, rgba(37,99,235,.14), transparent 65%);
      pointer-events:none;
      opacity:.9;
    }
    .reviewTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:
        linear-gradient(180deg, rgba(109,40,217,.12), rgba(6,182,212,.10));
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      letter-spacing:-.2px;
      box-shadow:0 14px 34px rgba(37,99,235,.10);
    }
    .stars{
      display:flex;
      gap:3px;
      align-items:center;
      color: rgba(249,115,22,.95);
      font-weight:1000;
      font-size:12px;
      white-space:nowrap;
      position:relative;
      z-index:1;
    }
    .reviewCard h3{
      margin:12px 0 6px;
      font-size:14px;
      position:relative;
      z-index:1;
    }
    .reviewCard p{
      margin:0;
      color: rgba(15,23,42,.78);
      font-size:13px;
      line-height:1.75;
      position:relative;
      z-index:1;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .caseCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      overflow:hidden;
    }
    .caseMedia{
      background:
        radial-gradient(420px 200px at 20% 0%, rgba(109,40,217,.18), transparent 55%),
        radial-gradient(420px 200px at 90% 0%, rgba(37,99,235,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.50));
      padding:16px;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .caseMedia .thumbRow{
      display:flex; gap:10px; align-items:center;
    }
    .thumb{
      width:42px; height:42px;
      border-radius:16px;
      background:
        linear-gradient(135deg, rgba(109,40,217,.18), rgba(37,99,235,.14), rgba(6,182,212,.12));
      border:1px solid rgba(37,99,235,.20);
      box-shadow:0 14px 34px rgba(37,99,235,.10);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color: rgba(15,23,42,.88);
      flex:0 0 auto;
    }
    .caseMedia b{ display:block; font-size:14px; margin-top:10px; letter-spacing:-.2px; }
    .caseBody{ padding:14px; }
    .caseBody p{
      margin:0;
      color: var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .caseFooter{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      padding:0 14px 14px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:900;
      font-size:12px;
      color: rgba(15,23,42,.85);
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .articleList{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      overflow:hidden;
    }
    .articleList .head{
      padding:14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .articleList .head b{ font-size:14px }
    .articleList ul{ margin:0; padding:0; list-style:none; }
    .articleList li{
      border-top:1px solid rgba(15,23,42,.08);
    }
    .articleLink{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      transition: background .15s ease;
    }
    .articleLink:hover{ background: rgba(37,99,235,.06); }
    .articleLink .t{
      display:flex; flex-direction:column; gap:6px;
    }
    .articleLink .t b{ font-size:13px; }
    .articleLink .t span{ font-size:12px; color:var(--muted); }
    .arrow{
      width:34px; height:34px;
      border-radius:14px;
      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;
    }

    .formCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(880px 320px at 20% 0%, rgba(109,40,217,.16), transparent 60%),
        radial-gradient(760px 280px at 100% 0%, rgba(37,99,235,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.66));
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field label{
      font-size:12px;
      font-weight:900;
      color: rgba(15,23,42,.82);
    }
    .control{
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      padding:11px 12px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
      font-size:13px;
    }
    .control:focus{
      border-color: rgba(37,99,235,.35);
      box-shadow: var(--focus);
    }
    textarea.control{ min-height:100px; resize:vertical; }
    .formActions{
      margin-top:12px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .note{
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
      max-width: 56ch;
    }

    .footer{
      margin-top:10px;
      background:
        radial-gradient(900px 420px at 15% 0%, rgba(109,40,217,.12), transparent 60%),
        radial-gradient(820px 420px at 95% 0%, rgba(37,99,235,.12), transparent 60%),
        linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.02));
      border-top:1px solid rgba(15,23,42,.08);
      padding:18px 0 28px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(2,6,23,.05);
      padding:14px;
    }
    .footTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footBrand img{
      width:44px; height:44px; border-radius:16px; object-fit:cover;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .footBrand b{
      display:block; font-size:14px;
    }
    .footBrand span{
      display:block; margin-top:6px; color:var(--muted); font-size:12px; line-height:1.6;
    }
    .contactRow{
      margin-top:12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .contactItem{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:10px 12px;
    }
    .contactItem b{ font-size:12px; display:block; font-weight:1000; color: rgba(15,23,42,.85); }
    .contactItem a, .contactItem span{
      display:block;
      margin-top:6px;
      font-size:13px;
      color: rgba(15,23,42,.92);
      font-weight:700;
      word-break:break-word;
    }
    .qrWrap{
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
      margin-top:12px;
    }
    .qrWrap .qrcard{
      width:118px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:10px;
      box-shadow:0 10px 26px rgba(2,6,23,.05);
    }
    .qrWrap img{ width:100%; height:auto; display:block; border-radius:14px; }
    .qrWrap .qtext{
      flex:1;
      padding-top:4px;
    }
    .qrWrap .qtext b{ font-size:14px; display:block; }
    .qrWrap .qtext span{ color:var(--muted); font-size:12px; margin-top:6px; display:block; line-height:1.7; }

    .linkCloud{
      margin-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .linkCloud a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-size:12px;
      font-weight:900;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .linkCloud a:hover{
      transform: translateY(-1px);
      box-shadow:0 14px 34px rgba(2,6,23,.10);
      border-color: rgba(37,99,235,.18);
    }
    .copyright{
      margin-top:12px;
      color: rgba(15,23,42,.70);
      font-size:12px;
      line-height:1.6;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }

    .toTop{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:40;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      box-shadow:0 14px 34px rgba(2,6,23,.12);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, opacity .2s ease;
      opacity:0;
      pointer-events:none;
    }
    .toTop.show{
      opacity:1;
      pointer-events:auto;
    }
    .toTop:hover{ transform: translateY(-2px); }

    .floatChat{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:40;
      display:flex;
      gap:10px;
      align-items:flex-end;
    }
    .chatBubble{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      box-shadow:0 18px 45px rgba(2,6,23,.14);
      padding:10px 10px;
      display:flex;
      gap:10px;
      align-items:center;
      max-width: 72vw;
      transform: translateY(8px);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .chatBubble.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .chatBubble .small{
      display:flex; flex-direction:column; gap:4px;
    }
    .chatBubble .small b{
      font-size:13px;
      line-height:1.2;
    }
    .chatBubble .small span{
      font-size:12px;
      color:var(--muted);
      line-height:1.2;
    }
    .chatBtn{
      width:56px; height:56px;
      border-radius:22px;
      border:none;
      background:
        linear-gradient(110deg, rgba(109,40,217,1), rgba(37,99,235,1), rgba(6,182,212,1));
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow:0 18px 45px rgba(37,99,235,.22);
      transition: transform .15s ease, box-shadow .15s ease;
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .chatBtn:hover{ transform: translateY(-2px); box-shadow:0 22px 56px rgba(37,99,235,.28); }
    .chatBtn:focus{ outline:none; box-shadow: var(--focus), 0 22px 56px rgba(37,99,235,.28); }
    .chatModalOverlay{
      position:fixed;
      inset:0;
      background: rgba(15,23,42,.38);
      display:none;
      z-index:60;
      padding:16px;
    }
    .chatModalOverlay.show{ display:flex; align-items:flex-end; justify-content:center; }
    .chatModal{
      width:100%;
      max-width: 520px;
      border-radius: 26px;
      border:1px solid rgba(255,255,255,.16);
      background:
        radial-gradient(900px 420px at 20% 0%, rgba(109,40,217,.26), transparent 55%),
        radial-gradient(820px 420px at 100% 0%, rgba(37,99,235,.22), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
      box-shadow:0 28px 80px rgba(0,0,0,.22);
      overflow:hidden;
      transform: translateY(12px);
      animation: popin .22s ease both;
    }
    @keyframes popin{
      from{ transform: translateY(16px); opacity:.85; }
      to{ transform: translateY(0); opacity:1; }
    }
    .chatModalHead{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .chatModalHead b{ font-size:14px; }
    .iconBtn{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
      flex:0 0 auto;
    }
    .iconBtn:hover{ transform: translateY(-1px); box-shadow:0 14px 34px rgba(2,6,23,.10); }
    .chatModalBody{
      padding:14px;
      display:grid;
      grid-template-columns: 1fr 140px;
      gap:12px;
      align-items:start;
    }
    .chatModalBody p{
      margin:0;
      color: rgba(15,23,42,.80);
      font-size:13px;
      line-height:1.75;
    }
    .chatModalBody .qr{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:10px;
    }
    .chatModalBody img{ width:100%; height:auto; border-radius:16px; display:block; }

    @media (max-width: 980px){
      .heroInner{ grid-template-columns: 1fr; }
      .navright{ min-width:auto }
      .grid3{ grid-template-columns: 1fr; }
      .grid4{ grid-template-columns: 1fr 1fr; }
      .grid2{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr 1fr; }
      .faqGrid{ grid-template-columns: 1fr; }
      .reviews{ grid-template-columns: 1fr; }
      .caseGrid{ grid-template-columns: 1fr; }
      .articles{ grid-template-columns: 1fr; }
      .split{ grid-template-columns: 1fr; }
      .footerGrid{ grid-template-columns: 1fr; }
      .contactRow{ grid-template-columns: 1fr; }
      .chatModalBody{ grid-template-columns: 1fr; }
    }
    @media (max-width: 860px){
      .navlinks, .navright > .btn{ display:none; }
      .hamburger{ display:flex; }
      .mobilePanel{ display:block; }
    }
    @media (prefers-reduced-motion: reduce){
      *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    }