:root{
      --bg0:#fbfbfe;
      --bg1:#ffffff;
      --text:#101218;
      --muted:#5a6574;
      --muted2:#7a8797;
      --line:rgba(16,18,24,.10);
      --card:rgba(255,255,255,.76);
      --shadow:0 14px 40px rgba(16,18,24,.10);
      --shadow2:0 10px 24px rgba(16,18,24,.10);
      --radius:18px;
      --radius2:12px;

      --brand1:#6c5cff;
      --brand2:#00d3ff;
      --brand3:#00ffb3;
      --brand4:#ff4fd8;

      --accent:#2b58ff;
      --ok:#0aa46a;

      --focus: rgba(108,92,255,.28);
      --btn:#0f172a;
      --btn2:#111827;
      --btnText:#ffffff;
      --chipBg: rgba(108,92,255,.10);
      --chipBorder: rgba(108,92,255,.20);
      --gold: #f59e0b;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", "Noto Sans";
      color:var(--text);
      background:
        radial-gradient(900px 500px at 10% 0%, rgba(108,92,255,.12), transparent 55%),
        radial-gradient(700px 420px at 100% 0%, rgba(0,211,255,.10), transparent 52%),
        radial-gradient(620px 420px at 60% 10%, rgba(0,255,179,.08), transparent 55%),
        linear-gradient(180deg, #f7f7ff 0%, #ffffff 45%, #fbfbfe 100%);
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      width:100%;
      max-width:1120px;
      margin:0 auto;
      padding:0 20px;
    }

    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:20px; top:14px; width:auto; height:auto; background:#fff; padding:10px 12px; border-radius:10px; box-shadow:var(--shadow2); z-index:9999;
      border:1px solid var(--line);
    }

    /* Topbar */
    header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.70);
      border-bottom: 1px solid rgba(16,18,24,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
    }
    .logoWrap{
      width:38px;
      height:38px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(108,92,255,.18), rgba(0,211,255,.14));
      border:1px solid rgba(108,92,255,.25);
      box-shadow: 0 10px 26px rgba(108,92,255,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }
    .brand img{width:70%; height:auto}
    .brandText{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brandName{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brandSub{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }

    nav .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      font-size:13px;
      color:rgba(16,18,24,.78);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navLinks a:hover{
      border-color: rgba(108,92,255,.22);
      background: rgba(108,92,255,.08);
      transform: translateY(-1px);
    }

    .topActions{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .btn{
      border:1px solid rgba(16,18,24,.12);
      background: rgba(255,255,255,.7);
      color:var(--text);
      border-radius:12px;
      padding:10px 12px;
      font-weight:700;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(16,18,24,.10);
      border-color: rgba(108,92,255,.28);
      background: rgba(255,255,255,.86);
    }
    .btn:active{transform: translateY(0px)}
    .btnPrimary{
      border-color: rgba(108,92,255,.30);
      background: linear-gradient(135deg, rgba(108,92,255,.92), rgba(0,211,255,.75));
      color:#fff;
      box-shadow: 0 16px 36px rgba(108,92,255,.24);
    }
    .btnPrimary:hover{
      box-shadow: 0 18px 46px rgba(108,92,255,.26);
      border-color: rgba(108,92,255,.40);
    }
    .btnIcon{
      width:18px; height:18px; display:inline-block;
    }

    .mobileMenuBtn{
      display:none;
    }
    .mobilePanel{
      display:none;
      padding-bottom:12px;
    }
    .mobilePanel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.65);
      margin-top:10px;
      font-weight:700;
      font-size:14px;
    }
    .mobilePanel a span{
      color:var(--muted);
      font-weight:600;
      font-size:12px;
    }

    /* Hero */
    .hero{
      position:relative;
      padding:44px 0 16px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(650px 260px at 14% 25%, rgba(255,79,216,.16), transparent 56%),
        radial-gradient(720px 340px at 90% 15%, rgba(0,211,255,.18), transparent 60%),
        radial-gradient(520px 260px at 55% 0%, rgba(0,255,179,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.75));
      pointer-events:none;
    }
    .heroGrid{
      position:relative;
      display:grid;
      grid-template-columns: 1.18fr .82fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      padding:18px 0 10px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(108,92,255,.22);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 28px rgba(108,92,255,.12);
      color: rgba(16,18,24,.88);
      font-weight:800;
      font-size:13px;
      letter-spacing:.2px;
    }
    .spark{
      width:10px; height:10px;
      border-radius:50%;
      background: conic-gradient(from 180deg, var(--brand1), var(--brand2), var(--brand3), var(--brand4), var(--brand1));
      box-shadow: 0 0 0 6px rgba(108,92,255,.10);
    }

    h1{
      margin:14px 0 12px;
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    .sublead{
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      margin:0 0 16px;
      max-width: 60ch;
    }

    .heroActions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin:16px 0 12px;
    }
    .trustRow{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:14px;
    }
    .trustPill{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
    }
    .trustPill strong{
      font-size:13px;
    }
    .trustPill span{
      color:var(--muted);
      font-size:12px;
      display:block;
      margin-top:2px;
    }
    .iconDot{
      width:34px; height:34px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(108,92,255,.18), rgba(0,211,255,.14));
      border:1px solid rgba(108,92,255,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 14px 28px rgba(108,92,255,.14);
    }
    .iconDot svg{width:18px; height:18px}

    .heroRight{
      align-self:start;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,18,24,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
      box-shadow: 0 18px 60px rgba(16,18,24,.08);
      position:relative;
      overflow:hidden;
    }
    .heroRight::after{
      content:"";
      position:absolute;
      inset:-120px -120px auto auto;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(108,92,255,.32), transparent 60%),
                  radial-gradient(circle at 70% 60%, rgba(0,211,255,.26), transparent 62%),
                  radial-gradient(circle at 40% 80%, rgba(255,79,216,.16), transparent 60%);
      filter:saturate(1.2);
      transform: rotate(12deg);
      pointer-events:none;
    }
    .miniTitle{
      font-weight:900;
      letter-spacing:.2px;
      font-size:14px;
      margin:0 0 12px;
      color: rgba(16,18,24,.90);
      position:relative;
      z-index:1;
    }

    .stats{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .statCard{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .statCard:hover{
      transform: translateY(-2px);
      border-color: rgba(108,92,255,.25);
      box-shadow: 0 16px 34px rgba(16,18,24,.10);
    }
    .statTop{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:6px;
    }
    .statBadge{
      width:28px; height:28px;
      border-radius:10px;
      background: conic-gradient(from 180deg, rgba(108,92,255,.95), rgba(0,211,255,.75), rgba(0,255,179,.75), rgba(255,79,216,.60), rgba(108,92,255,.95));
      box-shadow: 0 14px 30px rgba(108,92,255,.22);
      border:1px solid rgba(108,92,255,.28);
    }
    .statNum{
      font-weight:950;
      font-size:16px;
    }
    .statLabel{
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
      margin-top:2px;
    }

    .heroRightFooter{
      position:relative;
      z-index:1;
      margin-top:12px;
      border-top:1px solid rgba(16,18,24,.10);
      padding-top:12px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .pulseLine{
      width:10px;
      height:10px;
      border-radius:50%;
      background: rgba(10,164,106,.95);
      box-shadow: 0 0 0 0 rgba(10,164,106,.35);
      animation: pulse 1.8s ease-in-out infinite;
      margin-top:4px;
      flex:0 0 auto;
    }
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(10,164,106,.35)}
      70%{box-shadow: 0 0 0 14px rgba(10,164,106,.0)}
      100%{box-shadow: 0 0 0 0 rgba(10,164,106,.0)}
    }

    .heroRightFooter p{
      margin:0;
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
    }
    .heroRightFooter p strong{
      color: rgba(16,18,24,.92);
      font-size:13px;
    }

    /* Sections */
    section{
      padding:46px 0;
    }
    .sectionHeader{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .sectionTitle{
      margin:0;
      font-size:26px;
      letter-spacing:-.3px;
    }
    .sectionDesc{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      max-width: 60ch;
      font-size:14px;
    }
    .tagRow{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .tag{
      font-size:12px;
      color: rgba(16,18,24,.82);
      border:1px solid rgba(108,92,255,.18);
      background: rgba(108,92,255,.08);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .grid4{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }

    .card{
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
      border-radius: var(--radius);
      box-shadow: 0 16px 45px rgba(16,18,24,.06);
      overflow:hidden;
    }
    .cardInner{padding:16px}
    .cardTitle{
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
    }
    .cardTitle .miniIcon{
      width:26px; height:26px; border-radius:10px;
      background: linear-gradient(135deg, rgba(108,92,255,.18), rgba(0,211,255,.14));
      border:1px solid rgba(108,92,255,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .cardTitle svg{width:14px; height:14px}
    .cardText{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }

    .pillList{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .pillList li{
      font-size:12px;
      color: rgba(16,18,24,.80);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.64);
    }

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0px);
    }
    .hoverRaise{
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .hoverRaise:hover{
      transform: translateY(-2px);
      border-color: rgba(108,92,255,.25);
      box-shadow: 0 20px 55px rgba(16,18,24,.10);
    }

    /* Steps */
    .steps{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .stepCard{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .stepNum{
      width:44px; height:44px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(108,92,255,.20), rgba(0,211,255,.14));
      border:1px solid rgba(108,92,255,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color: rgba(16,18,24,.92);
      box-shadow: 0 18px 40px rgba(108,92,255,.16);
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .stepNum::after{
      content:"";
      position:absolute;
      inset:-40px -40px auto auto;
      width:70px; height:70px;
      background: radial-gradient(circle at 30% 30%, rgba(255,79,216,.35), transparent 60%);
      transform: rotate(20deg);
    }
    .stepContent h3{
      margin:0 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .stepContent p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }

    /* Compare table */
    .compareWrap{
      overflow:auto;
      border-radius: var(--radius);
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.66);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 880px;
    }
    thead th{
      text-align:left;
      font-size:13px;
      color: rgba(16,18,24,.84);
      padding:14px 14px;
      border-bottom:1px solid rgba(16,18,24,.10);
      background:
        linear-gradient(90deg, rgba(108,92,255,.12), rgba(0,211,255,.08), rgba(0,255,179,.06));
      position:sticky;
      top:0;
      z-index:1;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(16,18,24,.08);
      color: rgba(16,18,24,.86);
      font-size:13.5px;
      vertical-align:top;
    }
    tbody tr:hover td{
      background: rgba(108,92,255,.06);
    }
    .yes{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .check{
      width:18px; height:18px;
      border-radius:6px;
      background: rgba(10,164,106,.14);
      border:1px solid rgba(10,164,106,.28);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:12px; height:12px; color: var(--ok)}
    .mutedCell{color: var(--muted)}
    .chipScore{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid rgba(245,158,11,.35);
      background: rgba(245,158,11,.10);
      border-radius:999px;
      padding:8px 10px;
      font-weight:1000;
      color: rgba(16,18,24,.90);
    }
    .stars{
      display:inline-flex;
      gap:4px;
      align-items:center;
      vertical-align:middle;
    }
    .starSvg{width:16px; height:16px}
    .gold{fill: #fbbf24}

    /* Reviews */
    .quoteTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .reviewer{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(108,92,255,.18), rgba(0,211,255,.14));
      border:1px solid rgba(108,92,255,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 18px 40px rgba(108,92,255,.12);
      font-weight:1000;
      color: rgba(16,18,24,.90);
    }
    .reviewer strong{display:block; font-size:14px}
    .reviewer span{display:block; color:var(--muted); font-size:12px; margin-top:3px}
    .reviewText{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
    }

    /* FAQ */
    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faqItem{
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
      border-radius: var(--radius);
      overflow:hidden;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .faqItem[open]{
      border-color: rgba(108,92,255,.25);
      box-shadow: 0 20px 55px rgba(16,18,24,.10);
    }
    details.faqItem summary{
      list-style:none;
      cursor:pointer;
      padding:14px 16px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14px;
    }
    details.faqItem summary::-webkit-details-marker{display:none}
    .faqSummaryLeft{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .faqMark{
      width:28px; height:28px;
      border-radius:11px;
      background: rgba(108,92,255,.10);
      border:1px solid rgba(108,92,255,.20);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .faqMark svg{width:14px; height:14px}
    .chev{
      width:18px; height:18px;
      flex:0 0 auto;
      margin-top:2px;
      transition: transform .2s ease;
      color: rgba(16,18,24,.70);
    }
    details[open] .chev{transform: rotate(180deg)}
    details.faqItem .faqBody{
      padding:0 16px 14px 56px;
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
    }

    /* Form */
    form{
      display:grid;
      gap:12px;
    }
    .formGrid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-weight:800;
      font-size:13px;
      color: rgba(16,18,24,.88);
    }
    input, select, textarea{
      border:1px solid rgba(16,18,24,.12);
      background: rgba(255,255,255,.78);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .05s ease;
      color: rgba(16,18,24,.92);
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(108,92,255,.35);
      box-shadow: 0 0 0 6px var(--focus);
    }

    .formActions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .finePrint{
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width: 52ch;
      margin:0;
    }

    /* Footer */
    footer{
      padding:28px 0 44px;
      border-top:1px solid rgba(16,18,24,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.75));
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr 1fr;
      gap:16px;
      align-items:start;
    }
    .footerCard{
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 16px 40px rgba(16,18,24,.06);
    }
    .footerTitle{
      margin:0 0 10px;
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:15px;
    }
    .footerText{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
    }
    .footerLinks{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .footerLinks a{
      font-size:13px;
      color: rgba(16,18,24,.82);
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.66);
      padding:10px 12px;
      border-radius:999px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{
      transform: translateY(-1px);
      border-color: rgba(108,92,255,.28);
      background: rgba(108,92,255,.08);
    }
    .copyrightRow{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color: var(--muted2);
      font-size:12px;
    }
    .backTop{
      position:fixed;
      right:16px;
      bottom:92px;
      z-index:90;
      width:44px;
      height:44px;
      border-radius:16px;
      border:1px solid rgba(16,18,24,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,18,24,.10);
      display:flex;
      align-items:center;
      justify-content:center;
      color: rgba(16,18,24,.82);
      cursor:pointer;
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease;
    }
    .backTop.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .backTop:hover{
      border-color: rgba(108,92,255,.28);
      background: rgba(255,255,255,.92);
    }

    .floatChat{
      position:fixed;
      right:16px;
      bottom:38px;
      z-index:95;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .chatBtn{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(108,92,255,.25);
      background: linear-gradient(135deg, rgba(108,92,255,.20), rgba(0,211,255,.12));
      box-shadow: 0 18px 50px rgba(108,92,255,.16);
      cursor:pointer;
      user-select:none;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .chatBtn:hover{
      transform: translateY(-2px);
      border-color: rgba(108,92,255,.34);
      box-shadow: 0 22px 62px rgba(108,92,255,.20);
    }
    .chatBtn .chatIcon{
      width:34px; height:34px;
      border-radius:14px;
      background: conic-gradient(from 180deg, rgba(108,92,255,.95), rgba(0,211,255,.78), rgba(0,255,179,.72), rgba(255,79,216,.58), rgba(108,92,255,.95));
      border:1px solid rgba(108,92,255,.30);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#0b1220;
    }
    .chatBtn .chatIcon svg{width:16px; height:16px}
    .chatBtn strong{
      display:block;
      font-size:13px;
      letter-spacing:-.1px;
    }
    .chatBtn span{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-top:3px;
    }

    .qrPopover{
      width:240px;
      border-radius:18px;
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 30px 90px rgba(16,18,24,.16);
      padding:12px;
      display:none;
      transform-origin: 100% 100%;
      animation: pop .18s ease-out both;
      position:relative;
    }
    @keyframes pop{
      from{opacity:0; transform: translateY(8px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .qrPopover.show{display:block}
    .qrPopover::after{
      content:"";
      position:absolute;
      right:26px;
      bottom:-8px;
      width:16px; height:16px;
      background: rgba(255,255,255,.86);
      border-right:1px solid rgba(16,18,24,.10);
      border-bottom:1px solid rgba(16,18,24,.10);
      transform: rotate(45deg);
    }
    .qrTitle{
      font-weight:1000;
      font-size:13px;
      margin:4px 2px 10px;
      letter-spacing:-.2px;
    }
    .qrWrap{
      border-radius:16px;
      border:1px solid rgba(16,18,24,.10);
      overflow:hidden;
      background:#fff;
    }
    .qrWrap img{
      width:100%;
      height:auto;
    }
    .qrHint{
      margin:10px 2px 0;
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
    }

    /* Blog list */
    .listGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .articleItem{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
      align-items:flex-start;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .articleItem:hover{
      transform: translateY(-2px);
      border-color: rgba(108,92,255,.25);
      box-shadow: 0 18px 50px rgba(16,18,24,.10);
    }
    .articleIcon{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(108,92,255,.18), rgba(0,211,255,.14));
      border:1px solid rgba(108,92,255,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      box-shadow: 0 18px 40px rgba(108,92,255,.12);
    }
    .articleIcon svg{width:18px; height:18px}
    .articleMeta strong{
      display:block;
      font-size:14px;
      letter-spacing:-.2px;
      margin-top:2px;
    }
    .articleMeta span{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-top:6px;
      line-height:1.5;
    }
    .articleMeta a{
      margin-top:10px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:900;
      font-size:13px;
      padding:9px 11px;
      border-radius:12px;
      border:1px solid rgba(16,18,24,.12);
      background: rgba(255,255,255,.66);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .articleMeta a:hover{
      transform: translateY(-1px);
      border-color: rgba(108,92,255,.28);
      background: rgba(108,92,255,.08);
    }
    .arrow{
      width:16px; height:16px;
    }

    /* Case cards */
    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .caseCard{
      border-radius: var(--radius);
      border:1px solid rgba(16,18,24,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 16px 45px rgba(16,18,24,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
    }
    .caseCard:hover{
      transform: translateY(-2px);
      border-color: rgba(108,92,255,.25);
      box-shadow: 0 24px 70px rgba(16,18,24,.12);
    }
    .caseMedia{
      padding:12px;
      background: linear-gradient(135deg, rgba(108,92,255,.10), rgba(0,211,255,.06));
      border-bottom: 1px solid rgba(16,18,24,.08);
    }
    .caseMedia .mediaShell{
      border-radius:16px;
      border:1px solid rgba(16,18,24,.08);
      overflow:hidden;
      background:#fff;
    }
    .caseMedia img{
      width:100%;
      height:auto;
      object-fit:cover;
    }
    .caseBody{
      padding:14px 14px 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1 1 auto;
    }
    .caseKicker{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .kickerBadge{
      font-size:12px;
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(108,92,255,.20);
      background: rgba(108,92,255,.08);
      color: rgba(16,18,24,.88);
    }
    .caseBody h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .caseBody p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }
    .caseActions{
      margin-top:auto;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .btnSmall{
      padding:10px 12px;
      font-size:13px;
      border-radius:12px;
    }

    /* Responsive */
    @media (max-width: 980px){
      h1{font-size:34px}
      .heroGrid{grid-template-columns: 1fr}
      .heroRight{order:2}
      .steps{grid-template-columns: 1fr}
      .grid3{grid-template-columns: 1fr 1fr}
      .faqGrid{grid-template-columns: 1fr}
      .caseGrid{grid-template-columns: 1fr}
      .grid4{grid-template-columns: 1fr 1fr}
      .listGrid{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      table{min-width: 780px}
    }
    @media (max-width: 720px){
      .navLinks{display:none}
      .mobileMenuBtn{display:inline-flex}
      .mobilePanel{display:block}
      .topActions .btn{display:none}
      .mobilePanel{padding-top:12px}
      .hero{padding-top:28px}
      h1{font-size:30px}
      .heroRight{padding:12px}
      .stats{grid-template-columns: 1fr 1fr}
      section{padding:38px 0}
      .grid3{grid-template-columns: 1fr}
      .grid2{grid-template-columns: 1fr}
      .formGrid2{grid-template-columns: 1fr}
      .tagRow{justify-content:flex-start}
      .sectionHeader{align-items:flex-start; flex-direction:column}
      .backTop{bottom:92px}
      .qrPopover{width:220px}
      .brand{min-width: unset}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .pulseLine{animation:none}
    }