:root{
      --bg0:#fbf4ff;
      --bg1:#ffffff;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.12);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow:0 18px 50px rgba(17,24,39,.10);
      --shadow2:0 10px 30px rgba(17,24,39,.10);
      --radius:18px;
      --radius2:14px;
      --brand:#7c3aed;
      --brand2:#ff2d55;
      --brand3:#0ea5e9;
      --ok:#16a34a;
      --warn:#f97316;
      --focus:rgba(124,58,237,.22);
      --btnText:#ffffff;
      --footerBg:#0b1220;
      --footerText:rgba(255,255,255,.86);
      --footerMuted:rgba(255,255,255,.68);
      --footerLine:rgba(255,255,255,.14);
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Roboto, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 500px at 15% -10%, rgba(124,58,237,.18), rgba(124,58,237,0) 55%),
        radial-gradient(900px 420px at 88% 12%, rgba(255,45,85,.14), rgba(255,45,85,0) 58%),
        radial-gradient(800px 380px at 65% 95%, rgba(14,165,233,.10), rgba(14,165,233,0) 56%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      overflow-x:hidden;
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:14px; top:14px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow:0 12px 40px rgba(17,24,39,.12);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(180%) blur(14px);
      background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .navWrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:160px;
    }
    .brand img{
      width:42px; height:42px; border-radius:12px;
      box-shadow:0 14px 30px rgba(124,58,237,.18);
      background:rgba(255,255,255,.7);
      border:1px solid rgba(124,58,237,.18);
      object-fit:cover;
    }
    .brandText{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brandText .name{
      font-weight:840; letter-spacing:.2px;
    }
    .brandText .sub{
      font-size:12px; color:var(--muted2);
      margin-top:3px;
      white-space:nowrap;
    }

    .navRight{
      display:flex; align-items:center; gap:10px;
    }
    .navLinks{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      text-decoration:none;
      font-size:13px;
      padding:10px 10px;
      border-radius:999px;
      color:rgba(17,24,39,.78);
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .navLinks a:hover{
      background:rgba(255,255,255,.75);
      border-color:rgba(17,24,39,.10);
      transform:translateY(-1px);
    }
    .ctaRow{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      color:rgba(17,24,39,.92);
      padding:10px 14px;
      border-radius:12px;
      text-decoration:none;
      font-weight:720;
      font-size:13px;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      display:inline-flex; align-items:center; gap:10px;
      white-space:nowrap;
      user-select:none;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 35px rgba(17,24,39,.10);
      border-color:rgba(17,24,39,.16);
      background:rgba(255,255,255,.96);
    }
    .btnPrimary{
      border-color:rgba(124,58,237,.24);
      background:linear-gradient(135deg, rgba(124,58,237,.98), rgba(255,45,85,.92));
      color:var(--btnText);
      box-shadow:0 18px 45px rgba(124,58,237,.20);
    }
    .btnPrimary:hover{
      box-shadow:0 22px 60px rgba(124,58,237,.26);
      border-color:rgba(124,58,237,.30);
    }
    .btnGhost{
      background:rgba(255,255,255,.55);
      border-color:rgba(17,24,39,.12);
    }
    .iconDot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand3), var(--brand2));
      box-shadow:0 10px 24px rgba(14,165,233,.28);
    }

    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.7);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .burger:hover{transform:translateY(-1px); border-color:rgba(17,24,39,.18); background:#fff}
    .burger svg{width:20px; height:20px}
    .mobileMenu{
      display:none;
      padding:0 0 16px;
    }
    .mobileMenu .panel{
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.80);
      border-radius:18px;
      padding:12px;
      box-shadow:0 20px 60px rgba(17,24,39,.12);
    }
    .mobileMenu a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      text-decoration:none;
      padding:12px 12px;
      border-radius:14px;
      color:rgba(17,24,39,.86);
      border:1px solid transparent;
      transition:background .15s ease, border-color .15s ease, transform .15s ease;
    }
    .mobileMenu a:hover{
      background:rgba(124,58,237,.08);
      border-color:rgba(124,58,237,.18);
      transform:translateY(-1px);
    }
    .mobileMenu .grid{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .mobileMenu .topRow{
      display:flex; align-items:center; justify-content:space-between;
      padding:4px 6px 10px;
      gap:10px;
    }
    .mobileMenu .topRow .tag{
      font-size:12px; color:rgba(17,24,39,.68);
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      padding:8px 10px; border-radius:999px;
      white-space:nowrap;
    }

    main{padding:22px 0 34px}

    .hero{
      position:relative;
      padding:20px 0 10px;
    }
    .heroCard{
      position:relative;
      overflow:hidden;
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow:var(--shadow);
    }
    .heroInner{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      align-items:stretch;
      padding:26px 22px;
    }
    .heroLeft{
      padding:8px 10px 12px;
      display:flex; flex-direction:column; gap:14px;
    }
    .eyebrow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.18);
      background:rgba(124,58,237,.08);
      color:rgba(17,24,39,.86);
      font-weight:760;
      font-size:13px;
      letter-spacing:.2px;
    }
    .pill .spark{
      width:18px; height:18px; border-radius:7px;
      background:linear-gradient(135deg, rgba(124,58,237,.95), rgba(255,45,85,.9));
      box-shadow:0 12px 30px rgba(124,58,237,.22);
      display:inline-flex; align-items:center; justify-content:center;
      color:#fff;
      font-size:12px;
      font-weight:900;
    }
    .miniMeta{
      font-size:13px; color:var(--muted2);
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .miniMeta span{
      display:inline-flex; align-items:center; gap:8px;
    }
    .miniMeta svg{width:16px; height:16px; color:rgba(124,58,237,.95)}
    h1{
      margin:0;
      font-size:38px;
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .lead{
      margin:0;
      color:rgba(17,24,39,.74);
      font-size:15px;
      line-height:1.7;
      max-width:62ch;
    }
    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:2px;
    }
    .btnLarge{
      padding:12px 16px;
      border-radius:14px;
      font-size:14px;
      font-weight:800;
    }
    .trustRow{
      display:flex; gap:14px; flex-wrap:wrap; align-items:center;
      margin-top:2px;
    }
    .trustItem{
      display:flex; align-items:flex-start; gap:10px;
      padding:10px 12px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.55);
      border-radius:16px;
      min-width:210px;
    }
    .trustItem .badge{
      width:36px; height:36px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(14,165,233,.16), rgba(124,58,237,.18));
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      flex:0 0 auto;
    }
    .trustItem .tTitle{
      font-weight:830; font-size:13px; line-height:1.2; margin-top:2px;
    }
    .trustItem .tSub{
      color:rgba(17,24,39,.68);
      font-size:12.5px; margin-top:4px; line-height:1.3;
    }

    .heroRight{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(1200px 400px at 25% 0%, rgba(124,58,237,.22), rgba(124,58,237,0) 55%),
        radial-gradient(900px 300px at 85% 30%, rgba(255,45,85,.18), rgba(255,45,85,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.44));
      padding:14px;
      display:flex; flex-direction:column; gap:12px;
      position:relative;
      overflow:hidden;
      align-self:stretch;
    }
    .heroRight::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(135deg, rgba(124,58,237,.14), rgba(255,45,85,.10), rgba(14,165,233,.08));
      filter:blur(24px);
      opacity:.9;
      pointer-events:none;
    }
    .heroRight > *{position:relative; z-index:1}
    .techStack{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
      padding:6px 4px 0;
    }
    .chip{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.56);
      font-size:13px;
      color:rgba(17,24,39,.80);
      font-weight:740;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .chip:hover{transform:translateY(-1px); border-color:rgba(124,58,237,.22); background:rgba(255,255,255,.82)}
    .chip .sw{
      width:12px; height:12px; border-radius:4px;
      background:linear-gradient(135deg, rgba(124,58,237,.95), rgba(255,45,85,.9));
      box-shadow:0 10px 20px rgba(124,58,237,.18);
    }
    .statGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .stat{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.60);
      padding:12px 12px;
      transition:transform .15s ease, box-shadow .15s ease;
    }
    .stat:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(17,24,39,.12)}
    .stat .k{
      color:rgba(17,24,39,.70);
      font-size:12.5px;
      display:flex; align-items:center; gap:8px;
    }
    .stat .k svg{width:16px; height:16px; color:rgba(124,58,237,.95)}
    .stat .v{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.4px;
      margin-top:8px;
    }
    .stat .s{
      color:rgba(17,24,39,.65);
      font-size:12.5px;
      margin-top:6px;
      line-height:1.35;
    }
    .heroRight .divider{
      height:1px; background:rgba(17,24,39,.10);
      margin:2px 2px 0;
    }
    .fastFlow{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.58);
      padding:12px 12px;
    }
    .fastFlow .headRow{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .fastFlow .headRow .h{
      font-weight:900; letter-spacing:-.2px;
    }
    .fastFlow .headRow .tag2{
      font-size:12px; color:rgba(17,24,39,.68);
      border:1px solid rgba(124,58,237,.22);
      background:rgba(124,58,237,.10);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .flowList{
      display:grid; gap:10px;
    }
    .flowItem{
      display:flex; gap:10px; align-items:flex-start;
    }
    .flowItem .num{
      width:26px; height:26px; border-radius:10px;
      background:linear-gradient(135deg, rgba(124,58,237,.95), rgba(255,45,85,.9));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:900; font-size:12.5px;
      flex:0 0 auto;
      margin-top:1px;
    }
    .flowItem .txt{
      flex:1;
      min-width:0;
    }
    .flowItem .txt .t{
      font-weight:860; font-size:13px; margin-top:1px;
    }
    .flowItem .txt .d{
      color:rgba(17,24,39,.68);
      font-size:12.5px; line-height:1.45; margin-top:4px;
    }

    section{
      padding:22px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .sectionHead h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.4px;
      line-height:1.25;
    }
    .sectionHead p{
      margin:0;
      color:rgba(17,24,39,.68);
      line-height:1.65;
      font-size:14px;
      max-width:62ch;
    }

    .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;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 12px 35px rgba(17,24,39,.06);
      padding:16px;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-2px);
      border-color:rgba(124,58,237,.22);
      box-shadow:0 22px 55px rgba(17,24,39,.10);
    }
    .card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .card .title{
      font-weight:900;
      letter-spacing:-.2px;
      font-size:16px;
      margin:0;
      line-height:1.2;
    }
    .tagBadge{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.58);
      color:rgba(17,24,39,.72);
      white-space:nowrap;
    }
    .card p{
      margin:0;
      color:rgba(17,24,39,.68);
      font-size:13.5px;
      line-height:1.7;
    }
    .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:grid; gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(17,24,39,.76);
      font-size:13.5px;
      line-height:1.5;
    }
    .tick{
      width:20px; height:20px; border-radius:8px;
      background:rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.22);
      color:rgba(22,163,74,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }

    .steps{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .step{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:14px;
      position:relative;
      overflow:hidden;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .step:hover{transform:translateY(-2px); border-color:rgba(255,45,85,.22); box-shadow:0 22px 55px rgba(17,24,39,.10)}
    .step .snum{
      width:38px; height:38px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      background:linear-gradient(135deg, rgba(255,45,85,.92), rgba(124,58,237,.88));
      color:#fff;
      border:1px solid rgba(255,45,85,.22);
      box-shadow:0 18px 45px rgba(255,45,85,.16);
      margin-bottom:10px;
      user-select:none;
    }
    .step .stitle{
      font-weight:920; margin:0;
      letter-spacing:-.2px;
      line-height:1.2;
      font-size:15px;
    }
    .step .sdesc{
      margin-top:8px;
      color:rgba(17,24,39,.68);
      font-size:13.5px;
      line-height:1.65;
    }
    .step .arrow{
      position:absolute; right:-14px; top:18px;
      width:42px; height:42px;
      border-radius:16px;
      transform:rotate(12deg);
      background:rgba(124,58,237,.08);
      border:1px dashed rgba(124,58,237,.22);
      opacity:.9;
    }

    .compareWrap{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.60));
      padding:16px;
      box-shadow:var(--shadow2);
    }
    .compareTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      margin-bottom:12px;
    }
    .ratingCard{
      display:flex; gap:12px; align-items:center;
      padding:12px 12px;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      min-width:260px;
    }
    .ratingRing{
      width:54px; height:54px; border-radius:18px;
      background:conic-gradient(from 210deg, rgba(124,58,237,.95), rgba(255,45,85,.92), rgba(14,165,233,.92), rgba(124,58,237,.95));
      padding:3px;
      box-shadow:0 18px 45px rgba(124,58,237,.16);
    }
    .ratingRing .inner{
      width:100%; height:100%;
      border-radius:15px;
      background:rgba(255,255,255,.85);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      flex-direction:column;
      line-height:1;
      text-align:center;
    }
    .ratingRing .inner .num{
      font-weight:950; letter-spacing:-.4px;
      font-size:18px;
      color:rgba(17,24,39,.92);
    }
    .ratingRing .inner .cap{
      font-size:11px; color:rgba(17,24,39,.62); margin-top:2px;
      white-space:nowrap;
    }
    .stars{
      display:flex; gap:4px; margin-top:4px;
    }
    .stars svg{width:16px; height:16px; color:rgba(255,45,85,.95)}
    .ratingText .rt{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:15px;
    }
    .ratingText .rd{
      margin-top:6px;
      color:rgba(17,24,39,.68);
      font-size:13px;
      line-height:1.5;
    }

    .tableWrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
    }
    table{
      width:100%;
      min-width:780px;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:12px 12px;
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(255,45,85,.10));
      color:rgba(17,24,39,.92);
      border-bottom:1px solid rgba(17,24,39,.10);
      position:sticky; top:0;
      z-index:1;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      color:rgba(17,24,39,.74);
      vertical-align:top;
      line-height:1.6;
    }
    tbody tr:last-child td{border-bottom:none}
    .yes{
      color:rgba(22,163,74,.95);
      font-weight:900;
      display:inline-flex; align-items:center; gap:8px;
    }
    .yes .smark{
      width:18px; height:18px; border-radius:7px;
      background:rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.20);
      display:flex; align-items:center; justify-content:center;
    }
    .no{
      color:rgba(107,114,128,.92);
      font-weight:800;
    }
    .rowGood{
      background:linear-gradient(90deg, rgba(124,58,237,.08), rgba(255,255,255,0) 60%);
    }

    .industryGrid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .segList{
      display:grid; gap:10px;
    }
    .seg{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .seg:hover{transform:translateY(-2px); border-color:rgba(14,165,233,.25); box-shadow:0 22px 55px rgba(17,24,39,.10)}
    .seg .r{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:8px;
    }
    .seg .left{
      display:flex; gap:10px; align-items:flex-start;
    }
    .seg .ic{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(14,165,233,.16), rgba(124,58,237,.16));
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      color:rgba(14,165,233,.95);
      flex:0 0 auto;
    }
    .seg .st{
      font-weight:930; margin:0; letter-spacing:-.2px;
      font-size:15px; line-height:1.2;
    }
    .seg .d{
      color:rgba(17,24,39,.68);
      font-size:13.5px;
      line-height:1.65;
      margin:0;
    }
    .networkCard{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(124,58,237,.18), rgba(124,58,237,0) 55%),
        radial-gradient(650px 240px at 85% 35%, rgba(255,45,85,.14), rgba(255,45,85,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
      padding:16px;
      box-shadow:var(--shadow2);
      overflow:hidden;
      position:relative;
    }
    .networkCard::after{
      content:"";
      position:absolute;
      right:-60px; bottom:-60px;
      width:200px; height:200px;
      border-radius:80px;
      background:radial-gradient(circle at 30% 30%, rgba(255,45,85,.22), rgba(255,45,85,0) 62%),
                 radial-gradient(circle at 60% 70%, rgba(124,58,237,.22), rgba(124,58,237,0) 62%);
      filter:blur(6px);
      pointer-events:none;
      opacity:.9;
    }
    .networkCard > *{position:relative; z-index:1}
    .networkTitle{
      margin:0;
      font-weight:950;
      letter-spacing:-.3px;
      font-size:18px;
    }
    .networkDesc{
      margin-top:8px;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.7;
    }
    .netGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .netItem{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px;
    }
    .netItem .tt{
      font-weight:920; letter-spacing:-.2px;
      display:flex; gap:10px; align-items:center;
    }
    .netItem .tt .dot{
      width:10px; height:10px; border-radius:3px;
      background:linear-gradient(135deg, rgba(124,58,237,.95), rgba(255,45,85,.92));
      box-shadow:0 12px 26px rgba(124,58,237,.18);
    }
    .netItem .dd{
      margin-top:6px;
      color:rgba(17,24,39,.68);
      font-size:13.2px;
      line-height:1.55;
    }

    .cardsRow{
      display:grid; gap:14px;
      grid-template-columns:1fr 1fr;
      align-items:stretch;
    }
    .miniGrid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:10px;
      margin-top:10px;
    }
    .miniCard{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      padding:12px;
    }
    .miniCard .t{
      font-weight:920; letter-spacing:-.2px;
      font-size:14.5px;
    }
    .miniCard .d{
      margin-top:6px;
      color:rgba(17,24,39,.68);
      font-size:13.2px;
      line-height:1.6;
    }

    .timeline{
      display:grid; gap:12px;
      grid-template-columns:repeat(3, 1fr);
    }
    .timeStep{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .timeStep::before{
      content:"";
      position:absolute; left:-40px; top:-40px;
      width:120px; height:120px;
      border-radius:50px;
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(255,45,85,.12));
      filter:blur(8px);
      opacity:.9;
      pointer-events:none;
    }
    .timeStep > *{position:relative; z-index:1}
    .timeStep .tt{
      display:flex; align-items:center; gap:10px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .timeStep .tt .badge{
      width:34px; height:34px; border-radius:14px;
      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);
    }
    .timeStep .dd{
      margin-top:8px;
      color:rgba(17,24,39,.68);
      font-size:13.5px;
      line-height:1.7;
    }

    .faqWrap{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .faqList{
      display:grid; gap:10px;
    }
    details.faq{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:12px 12px;
      transition:border-color .15s ease, box-shadow .15s ease;
    }
    details.faq[open]{
      border-color:rgba(124,58,237,.24);
      box-shadow:0 20px 60px rgba(17,24,39,.10);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .q{
      font-weight:930;
      letter-spacing:-.2px;
      line-height:1.3;
      font-size:14.5px;
    }
    .caret{
      width:34px; height:34px;
      border-radius:14px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transform:translateY(1px);
      transition:transform .18s ease, background .18s ease;
    }
    details[open] .caret{
      transform:translateY(1px) rotate(180deg);
      background:rgba(255,45,85,.10);
      border-color:rgba(255,45,85,.20);
    }
    .a{
      margin-top:10px;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.75;
      padding-right:6px;
    }

    .sidePromo{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(14,165,233,.16), rgba(14,165,233,0) 55%),
        radial-gradient(650px 240px at 85% 35%, rgba(124,58,237,.18), rgba(124,58,237,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
      box-shadow:var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .sidePromo::before{
      content:"";
      position:absolute;
      left:-60px; top:-60px;
      width:180px; height:180px;
      background:linear-gradient(135deg, rgba(255,45,85,.18), rgba(124,58,237,.16));
      border-radius:80px;
      filter:blur(10px);
      opacity:.9;
      pointer-events:none;
    }
    .sidePromo > *{position:relative; z-index:1}
    .sidePromo h3{
      margin:0;
      font-weight:960; letter-spacing:-.3px;
      font-size:18px;
      line-height:1.25;
    }
    .sidePromo p{
      margin:10px 0 0;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.75;
    }
    .sidePromo .quickList{
      margin-top:12px;
      display:grid; gap:10px;
    }
    .qItem{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px;
      display:flex; gap:10px;
      align-items:flex-start;
    }
    .qItem .ic{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(14,165,233,.22);
      background:rgba(14,165,233,.10);
      color:rgba(14,165,233,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .qItem .tx{
      min-width:0;
    }
    .qItem .tx .t{
      font-weight:940; letter-spacing:-.2px;
      font-size:14.5px;
      line-height:1.2;
    }
    .qItem .tx .d{
      margin-top:6px;
      color:rgba(17,24,39,.68);
      font-size:13.2px;
      line-height:1.6;
    }

    .reviews{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .review{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:16px;
      overflow:hidden;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      position:relative;
    }
    .review:hover{transform:translateY(-2px); border-color:rgba(255,45,85,.22); box-shadow:0 22px 55px rgba(17,24,39,.10)}
    .review .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background:linear-gradient(135deg, rgba(124,58,237,.22), rgba(255,45,85,.18));
      border:1px solid rgba(124,58,237,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(124,58,237,.95);
      user-select:none;
    }
    .who .n{
      font-weight:950; letter-spacing:-.2px;
      font-size:14.5px;
      line-height:1.2;
    }
    .who .r{
      margin-top:6px;
      color:rgba(17,24,39,.66);
      font-size:12.8px;
      line-height:1.3;
    }
    .review .body{
      margin:0;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.75;
    }
    .review .stars2{
      margin-top:12px;
      display:flex; gap:4px;
      color:rgba(255,45,85,.95);
    }
    .review .stars2 svg{width:16px; height:16px}
    .review .stamp{
      position:absolute; right:14px; bottom:14px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(17,24,39,.68);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }

    .cases{
      display:grid; grid-template-columns:repeat(3, 1fr);
      gap:14px; align-items:stretch;
    }
    .case{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:16px;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      overflow:hidden;
      position:relative;
    }
    .case:hover{transform:translateY(-2px); border-color:rgba(14,165,233,.22); box-shadow:0 22px 55px rgba(17,24,39,.10)}
    .case .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .case .label{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.58);
      color:rgba(17,24,39,.70);
      font-weight:900; font-size:12.5px;
      white-space:nowrap;
    }
    .case .label .m{
      width:10px; height:10px; border-radius:3px;
      background:linear-gradient(135deg, rgba(14,165,233,.95), rgba(124,58,237,.9));
      box-shadow:0 12px 26px rgba(14,165,233,.18);
    }
    .case h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
      line-height:1.25;
      font-weight:980;
    }
    .case .desc{
      margin-top:8px;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.75;
    }
    .case .bul{
      margin-top:12px;
      padding:0; list-style:none; display:grid; gap:8px;
    }
    .case .bul li{
      color:rgba(17,24,39,.72);
      font-size:13.2px;
      line-height:1.45;
      display:flex; gap:10px; align-items:flex-start;
    }
    .case .bul li .mini{
      width:18px; height:18px; border-radius:7px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto; margin-top:1px;
      font-weight:950; font-size:11px;
    }
    .case .actions{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .articleGrid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .articleList{
      display:grid; gap:10px;
    }
    .articleItem{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:14px;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .articleItem:hover{transform:translateY(-2px); border-color:rgba(255,45,85,.22); box-shadow:0 22px 55px rgba(17,24,39,.10)}
    .articleItem .row{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .articleItem .t{
      font-weight:950;
      letter-spacing:-.2px;
      line-height:1.25;
      margin:0;
      font-size:14.8px;
    }
    .articleItem .meta{
      margin-top:8px;
      color:rgba(17,24,39,.66);
      font-size:13.2px;
      line-height:1.6;
    }
    .articleItem .time{
      color:rgba(17,24,39,.60);
      font-size:12.5px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.55);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }

    .articleSide{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(700px 260px at 25% 0%, rgba(124,58,237,.20), rgba(124,58,237,0) 55%),
        radial-gradient(650px 240px at 85% 35%, rgba(14,165,233,.14), rgba(14,165,233,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
      padding:16px;
      box-shadow:var(--shadow2);
      overflow:hidden;
      position:relative;
    }
    .articleSide h3{
      margin:0;
      font-size:18px;
      font-weight:980; letter-spacing:-.3px;
    }
    .tagCloud{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .cloudTag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(17,24,39,.72);
      font-weight:860;
      font-size:13px;
      transition:transform .15s ease, border-color .15s ease;
      user-select:none;
    }
    .cloudTag:hover{
      transform:translateY(-2px);
      border-color:rgba(124,58,237,.22);
    }
    .sideActions{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
    }

    .pricingGrid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .priceCard{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .priceCard:hover{transform:translateY(-2px); border-color:rgba(124,58,237,.24); box-shadow:0 22px 55px rgba(17,24,39,.10)}
    .priceCard.featured{
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(255,45,85,.16), rgba(255,45,85,0) 55%),
        radial-gradient(650px 240px at 85% 30%, rgba(124,58,237,.20), rgba(124,58,237,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
      border-color:rgba(124,58,237,.22);
    }
    .priceTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .priceTop h3{margin:0; font-size:16px; font-weight:980; letter-spacing:-.2px}
    .priceTop .badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.20);
      background:rgba(124,58,237,.10);
      color:rgba(124,58,237,.95);
      font-size:12.5px;
      font-weight:900;
      white-space:nowrap;
    }
    .price{
      font-weight:1000; letter-spacing:-.6px;
      font-size:30px;
      margin-top:6px;
    }
    .unit{color:rgba(17,24,39,.66); font-size:13px; font-weight:800; margin-top:2px}
    .priceDesc{
      margin-top:10px;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.7;
    }
    .bul2{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid; gap:10px;
    }
    .bul2 li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(17,24,39,.72);
      font-size:13.4px;
      line-height:1.5;
    }
    .bul2 li .b{
      width:20px; height:20px; border-radius:8px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
      font-weight:950;
      font-size:11px;
    }
    .priceActions{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
    }

    .formCard{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(800px 300px at 20% 0%, rgba(124,58,237,.18), rgba(124,58,237,0) 55%),
        radial-gradient(700px 260px at 85% 35%, rgba(255,45,85,.12), rgba(255,45,85,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
      box-shadow:var(--shadow2);
      padding:16px;
    }
    .formCard h3{
      margin:0;
      font-size:18px;
      font-weight:980; letter-spacing:-.3px;
    }
    .formCard p{
      margin:8px 0 0;
      color:rgba(17,24,39,.70);
      font-size:13.5px;
      line-height:1.75;
    }
    form{
      margin-top:12px;
      display:grid; gap:10px;
    }
    .formGrid2{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    label{
      display:grid; gap:8px;
      font-size:13px;
      color:rgba(17,24,39,.80);
      font-weight:820;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.80);
      padding:12px 12px;
      color:rgba(17,24,39,.92);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
      font-size:14px;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(124,58,237,.35);
      box-shadow:0 0 0 4px var(--focus);
      background:#fff;
    }
    .formActions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:4px;
    }
    .fineprint{
      color:rgba(17,24,39,.62);
      font-size:12.5px;
      line-height:1.45;
      max-width:52ch;
    }
    .submitBtn{
      min-width:170px;
      justify-content:center;
    }

    footer{
      background:var(--footerBg);
      color:var(--footerText);
      margin-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footerInner{
      padding:26px 0 18px;
    }
    .footTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
      border-bottom:1px solid var(--footerLine);
      padding-bottom:18px;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
      max-width:540px;
    }
    .footBrand img{
      width:46px; height:46px; border-radius:16px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      object-fit:cover;
    }
    .footBrand .tt{
      font-weight:980; letter-spacing:-.2px; font-size:16px; margin:0;
    }
    .footBrand .dd{
      margin-top:8px; color:var(--footerMuted);
      font-size:13.5px; line-height:1.7;
    }
    .footLinks{
      display:grid; grid-template-columns:1fr 1fr;
      gap:10px 16px;
      align-items:start;
      min-width:320px;
    }
    .footLinks a{
      text-decoration:none;
      color:rgba(255,255,255,.86);
      font-size:13.5px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid transparent;
      background:rgba(255,255,255,.04);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
      display:inline-flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .footLinks a:hover{
      transform:translateY(-2px);
      border-color:rgba(124,58,237,.28);
      background:rgba(124,58,237,.12);
    }
    .footBottom{
      padding-top:16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .copyright{
      color:var(--footerMuted);
      font-size:12.8px;
      line-height:1.6;
    }
    .friendRow{
      display:flex; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .friendRow a{
      text-decoration:none;
      color:rgba(255,255,255,.88);
      font-size:12.8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .friendRow a:hover{
      transform:translateY(-2px);
      border-color:rgba(255,45,85,.28);
      background:rgba(255,45,85,.12);
    }

    .floatHelp{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatHelp > *{pointer-events:auto}
    .helpBubble{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 50px rgba(17,24,39,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .15s ease;
      user-select:none;
    }
    .helpBubble:hover{transform:translateY(-2px)}
    .helpBubble svg{width:22px; height:22px; color:rgba(124,58,237,.95)}
    .qrPanel{
      width:250px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.92);
      box-shadow:0 22px 60px rgba(17,24,39,.18);
      overflow:hidden;
      transform-origin:100% 100%;
      transform:scale(.98);
      opacity:0;
      pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
    }
    .qrPanel.open{
      opacity:1;
      transform:scale(1);
      pointer-events:auto;
    }
    .qrHead{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.10);
      background:linear-gradient(135deg, rgba(124,58,237,.10), rgba(255,45,85,.07));
    }
    .qrHead .t{
      font-weight:980; letter-spacing:-.2px;
      font-size:13.8px;
    }
    .qrClose{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.82);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:transform .15s ease, background .15s ease;
      user-select:none;
    }
    .qrClose:hover{transform:translateY(-2px); background:#fff}
    .qrClose svg{width:18px; height:18px; color:rgba(17,24,39,.78)}
    .qrBody{
      padding:12px 12px 14px;
    }
    .qrBody img{
      width:100%;
      height:auto;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .qrBody .tip{
      margin-top:10px;
      color:rgba(17,24,39,.68);
      font-size:12.8px;
      line-height:1.55;
      text-align:left;
    }

    .toTop{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:55;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 50px rgba(17,24,39,.14);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      opacity:0;
      pointer-events:none;
      transform:translateY(8px);
      transition:opacity .18s ease, transform .18s ease;
      user-select:none;
    }
    .toTop.show{
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }
    .toTop svg{width:20px; height:20px; color:rgba(124,58,237,.95)}

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

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .card:hover, .step:hover, .articleItem:hover, .review:hover, .case:hover, .seg:hover, .stat:hover, .chip:hover{transform:none}
      .btn:hover{transform:none}
    }

    @media (max-width: 980px){
      .heroInner{grid-template-columns:1fr; padding:22px 16px}
      h1{font-size:32px}
      .trustItem{min-width:unset}
      .steps{grid-template-columns:1fr 1fr}
      .grid3{grid-template-columns:1fr}
      .grid2{grid-template-columns:1fr}
      .industryGrid{grid-template-columns:1fr}
      .faqWrap{grid-template-columns:1fr}
      .reviews{grid-template-columns:1fr}
      .cases{grid-template-columns:1fr}
      .articleGrid{grid-template-columns:1fr}
      .pricingGrid{grid-template-columns:1fr}
      .timeline{grid-template-columns:1fr}
      .cardsRow{grid-template-columns:1fr}
      .navLinks{display:none}
      .burger{display:flex}
      .mobileMenu{display:block}
    }
    @media (max-width: 520px){
      .navWrap{padding:12px 0}
      .brandText .sub{display:none}
      h1{font-size:28px}
      .heroLeft{padding:6px 2px 8px}
      .heroActions{gap:10px}
      .formGrid2{grid-template-columns:1fr}
      .footTop{flex-direction:column}
      .footLinks{grid-template-columns:1fr}
      .friendRow{justify-content:flex-start}
      .toTop{left:12px; bottom:12px}
      .floatHelp{right:12px; bottom:12px}
      .qrPanel{width:220px}
    }