:root{
      --bg0:#fbfbfd;
      --bg1:#f4f6ff;
      --card:#ffffff;
      --text:#121826;
      --muted:#5b6577;
      --muted2:#7a869d;
      --border:rgba(18,24,38,.12);
      --shadow:0 10px 30px rgba(18,24,38,.08);
      --shadow2:0 6px 18px rgba(18,24,38,.10);
      --accent:#1f6fff;
      --accent2:#22c55e;
      --accent3:#6d28d9;
      --warn:#f59e0b;
      --danger:#ef4444;
      --ring:rgba(31,111,255,.25);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(31,111,255,.12), transparent 55%),
        radial-gradient(700px 420px at 90% 10%, rgba(109,40,217,.10), transparent 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 60%);
      line-height:1.6;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:30;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(251,251,253,.70);
      border-bottom:1px solid rgba(18,24,38,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:210px;
    }
    .brand img{
      width:42px;
      height:42px;
      border-radius:12px;
      box-shadow:0 10px 20px rgba(31,111,255,.18);
      object-fit:contain;
      background:#fff;
      border:1px solid rgba(18,24,38,.06);
    }
    .brand .name{
      display:flex; flex-direction:column; gap:2px;
    }
    .brand .name strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px;
      color:var(--muted);
    }
    .navlinks{
      display:flex;
      gap:16px;
      align-items:center;
      flex-wrap:nowrap;
      overflow:auto hidden;
      scrollbar-width:none;
    }
    .navlinks::-webkit-scrollbar{height:0}
    .navlinks a{
      font-size:13px;
      color:var(--muted);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(31,111,255,.06);
      border-color:rgba(31,111,255,.18);
      color:#173154;
      transform: translateY(-1px);
    }
    .navcta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width:210px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:#fff;
      color:#152033;
      box-shadow:0 10px 30px rgba(18,24,38,.06);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      font-weight:650;
      font-size:13px;
      white-space:nowrap;
      cursor:pointer;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow:0 14px 36px rgba(18,24,38,.10);
      border-color:rgba(31,111,255,.25);
    }
    .btn.primary{
      background: linear-gradient(135deg, rgba(31,111,255,1), rgba(109,40,217,1));
      color:#fff;
      border-color: rgba(31,111,255,.20);
      box-shadow: 0 16px 38px rgba(31,111,255,.20);
    }
    .btn.primary:hover{
      box-shadow:0 20px 50px rgba(31,111,255,.26);
      border-color: rgba(255,255,255,.22);
    }
    .btn.ghost{
      background:rgba(255,255,255,.80);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }
    .hamburger{
      display:none;
      border-radius:14px;
      padding:10px 12px;
    }
    .hamburger .bars{
      width:18px; height:12px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:#1f2937;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:0}
    .hamburger .bars span:nth-child(2){top:5px}
    .hamburger .bars span:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform:rotate(-45deg)}
    .mobilepanel{
      display:none;
      padding:10px 0 16px;
    }
    .mobilepanel .grid{
      display:grid; grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobilepanel a{
      font-size:13px;
      color:var(--muted);
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.78);
      transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
    }
    .mobilepanel a:hover{transform: translateY(-1px); border-color: rgba(31,111,255,.25); background: rgba(31,111,255,.06); color:#173154}
    .hero{
      padding:34px 0 22px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      border-radius:var(--radius);
      background:
        radial-gradient(1000px 420px at 0% 0%, rgba(31,111,255,.20), transparent 55%),
        radial-gradient(700px 420px at 100% 10%, rgba(34,197,94,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
      border:1px solid rgba(18,24,38,.08);
      box-shadow:var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
      min-height:360px;
    }
    .heroLeft:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 200px at 20% 10%, rgba(31,111,255,.22), transparent 60%),
        radial-gradient(520px 200px at 80% 20%, rgba(109,40,217,.16), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .heroLeft > *{position:relative}
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(31,111,255,.08);
      border:1px solid rgba(31,111,255,.16);
      color:#15314c;
      font-weight:650;
      font-size:12px;
      letter-spacing:.2px;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, rgba(34,197,94,1), rgba(31,111,255,1));
      box-shadow:0 10px 20px rgba(31,111,255,.22);
      border:1px solid rgba(255,255,255,.55);
    }
    h1{
      margin:14px 0 8px;
      font-size:34px;
      line-height:1.2;
      letter-spacing:-.6px;
    }
    .heroLead{
      color:var(--muted);
      font-size:15px;
      margin:0 0 16px;
      max-width:58ch;
    }
    .heroActions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin:12px 0 16px;
    }
    .chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:6px;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.65);
      color:#2a364a;
      font-size:12px;
      font-weight:600;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .chip:hover{transform: translateY(-1px); border-color: rgba(31,111,255,.25); background: rgba(31,111,255,.06)}
    .heroRight{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .panel{
      border-radius:var(--radius);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      box-shadow: 0 10px 30px rgba(18,24,38,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .panel:after{
      content:"";
      position:absolute;
      right:-40px; top:-40px;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(31,111,255,.20), transparent 60%);
      pointer-events:none;
      transform: rotate(15deg);
    }
    .panel > *{position:relative}
    .panelTitle{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .panelTitle strong{font-size:14px}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.18);
      color:#115e38;
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .metrics{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.75);
      padding:12px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height:92px;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow:0 16px 40px rgba(18,24,38,.10);
      border-color: rgba(31,111,255,.22);
    }
    .metric .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:6px;
    }
    .metric .label{
      color:var(--muted);
      font-size:12px;
      font-weight:650;
    }
    .metric .value{
      font-weight:850;
      font-size:18px;
      letter-spacing:-.4px;
    }
    .spark{
      width:36px; height:20px;
      border-radius:10px;
      background: linear-gradient(135deg, rgba(31,111,255,.18), rgba(109,40,217,.14));
      border:1px solid rgba(31,111,255,.18);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .spark:before{
      content:"";
      position:absolute;
      left:-10px; top:8px;
      width:50px; height:2px;
      background: linear-gradient(90deg, transparent, rgba(31,111,255,.85), transparent);
      transform: rotate(-12deg);
      animation:sweep 2.2s ease-in-out infinite;
      opacity:.9;
    }
    @keyframes sweep{
      0%{transform: translateX(-10px) rotate(-12deg); opacity:.2}
      50%{transform: translateX(12px) rotate(-12deg); opacity:.9}
      100%{transform: translateX(-10px) rotate(-12deg); opacity:.2}
    }
    .callout{
      display:flex; align-items:flex-start; gap:12px;
      margin-top:10px;
    }
    .callout .ring{
      width:40px; height:40px; border-radius:14px;
      background:rgba(31,111,255,.10);
      border:1px solid rgba(31,111,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .callout p{
      margin:0; color:var(--muted); font-size:13px;
    }

    .section{
      padding:26px 0;
    }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:14px;
    }
    .sectionHead h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.3px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      max-width:60ch;
    }

    .grid2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .grid3{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:12px;
    }
    .card{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      box-shadow: 0 10px 30px rgba(18,24,38,.05);
      padding:16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(18,24,38,.10);
      border-color: rgba(31,111,255,.22);
    }
    .card h3{
      margin:10px 0 6px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .iconTile{
      width:44px; height:44px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(31,111,255,.14), rgba(109,40,217,.12));
      border:1px solid rgba(31,111,255,.18);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 40px rgba(31,111,255,.14);
    }
    .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:13px;
    }
    .check{
      width:18px; height:18px; border-radius:6px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      margin-top:1px;
      flex:0 0 auto;
    }

    .steps{
      display:grid;
      grid-template-columns:1fr 1fr 1fr 1fr;
      gap:12px;
    }
    .step{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.65);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      min-height:158px;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(31,111,255,.22); box-shadow: 0 18px 44px rgba(18,24,38,.10)}
    .step:before{
      content:"";
      position:absolute;
      left:-40px; top:-40px;
      width:120px; height:120px;
      background: radial-gradient(circle at 40% 40%, rgba(31,111,255,.18), transparent 60%);
      pointer-events:none;
    }
    .step > *{position:relative}
    .step .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px; height:34px;
      border-radius:12px;
      background:rgba(31,111,255,.10);
      border:1px solid rgba(31,111,255,.20);
      font-weight:850;
      color:#173154;
      margin-bottom:10px;
    }
    .step h3{margin:0 0 6px; font-size:14px; letter-spacing:-.2px}
    .step p{margin:0; color:var(--muted); font-size:13px}

    .compareWrap{
      border-radius:var(--radius);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.65);
      box-shadow: 0 12px 36px rgba(18,24,38,.05);
      overflow:hidden;
    }
    .compareTop{
      padding:16px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      border-bottom:1px solid rgba(18,24,38,.08);
      background:
        radial-gradient(700px 220px at 15% 0%, rgba(31,111,255,.15), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
    }
    .ratingBlock{
      display:flex; gap:14px; align-items:center;
    }
    .stars{
      width:64px; height:64px;
      border-radius:22px;
      background:rgba(245,158,11,.12);
      border:1px solid rgba(245,158,11,.22);
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .stars strong{font-size:18px; letter-spacing:-.2px}
    .stars span{font-size:12px; color:#7a4a00; font-weight:750}
    .ratingInfo h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.3px;
    }
    .ratingInfo p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      max-width:58ch;
    }
    .compareActions{
      display:flex; flex-direction:column; gap:8px; align-items:flex-end;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.78);
      color:var(--muted);
      font-size:12px;
      font-weight:650;
      white-space:nowrap;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13px;
    }
    thead th{
      text-align:left;
      padding:12px 14px;
      background:rgba(18,24,38,.03);
      border-bottom:1px solid rgba(18,24,38,.08);
      color:#1f2a3a;
      font-weight:850;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(18,24,38,.06);
      color:var(--muted);
      vertical-align:top;
    }
    tbody tr:hover td{
      background:rgba(31,111,255,.04);
    }
    .tdStrong{
      color:#1b263a;
      font-weight:800;
    }
    .mark{
      display:inline-flex; align-items:center; gap:8px; font-weight:750; color:#0f3d2b;
    }
    .mark .mDot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(34,197,94,1);
      box-shadow:0 10px 20px rgba(34,197,94,.18);
      border:1px solid rgba(255,255,255,.65);
    }
    .xmark{
      color:#6b7280;
      font-weight:750;
      display:inline-flex; align-items:center; gap:8px;
    }
    .xmark .x{
      width:10px; height:10px;
      border-radius:3px;
      background:rgba(239,68,68,.10);
      border:1px solid rgba(239,68,68,.20);
    }

    .sideBy{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .mutedBox{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.62);
      padding:16px;
    }
    .mutedBox h3{margin:0 0 8px; font-size:15px}
    .mutedBox p{margin:0; color:var(--muted); font-size:13px}
    .miniGrid{
      display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px;
    }
    .miniItem{
      border-radius:14px;
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:12px;
    }
    .miniItem strong{
      display:block;
      font-size:13px;
      letter-spacing:-.2px;
      margin-bottom:4px;
    }
    .miniItem span{color:var(--muted); font-size:12.5px}

    .tabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin:10px 0 0;
    }
    .tabbtn{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.76);
      cursor:pointer;
      color:var(--muted);
      font-weight:750;
      font-size:13px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
    }
    .tabbtn:hover{transform: translateY(-1px); border-color: rgba(31,111,255,.25); background: rgba(31,111,255,.06); color:#173154}
    .tabbtn.active{
      background:rgba(31,111,255,.10);
      border-color: rgba(31,111,255,.30);
      color:#173154;
    }
    .tabpanel{margin-top:12px}
    .tabpanel .tagline{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .tagline h3{margin:0; font-size:15px}
    .tagline p{margin:0; color:var(--muted); font-size:13px}
    .taglist{
      display:flex; flex-wrap:wrap; gap:8px;
      margin:10px 0 0; padding:0; list-style:none;
    }
    .taglist li{
      padding:8px 10px;
      border-radius:999px;
      background:rgba(31,111,255,.06);
      border:1px solid rgba(31,111,255,.16);
      color:#15314c;
      font-weight:700;
      font-size:12px;
    }

    .caseGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .caseCard{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      box-shadow: 0 10px 30px rgba(18,24,38,.05);
      padding:16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .caseCard:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(18,24,38,.10); border-color: rgba(31,111,255,.22)}
    .caseMedia{
      width:120px;
      flex:0 0 auto;
      border-radius:16px;
      border:1px solid rgba(18,24,38,.08);
      background:linear-gradient(180deg, rgba(31,111,255,.10), rgba(109,40,217,.08));
      overflow:hidden;
      position:relative;
    }
    .caseMedia img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .caseMeta{
      flex:1 1 auto;
    }
    .caseMeta .metaTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .caseMeta h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .caseMeta .pill2{
      font-size:12px;
      font-weight:800;
      color:#0f3d2b;
      background:rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.20);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .caseMeta p{margin:0; color:var(--muted); font-size:13px}
    .caseMeta .tags{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .caseMeta .tags span{
      font-size:12px;
      color:#2a364a;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.70);
      font-weight:700;
    }

    .articleList{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:12px;
    }
    .article{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:16px;
      box-shadow: 0 10px 30px rgba(18,24,38,.05);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height:156px;
      display:flex; flex-direction:column;
    }
    .article:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(18,24,38,.10); border-color: rgba(31,111,255,.22)}
    .article .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .article .cat{
      font-size:12px;
      font-weight:850;
      color:#173154;
      background:rgba(31,111,255,.08);
      border:1px solid rgba(31,111,255,.16);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .article .date{
      color:var(--muted2);
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .article h3{
      margin:0 0 8px;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .article p{margin:0; color:var(--muted); font-size:13px}
    .article .linkRow{
      margin-top:auto;
      padding-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:#173154;
      font-weight:850;
    }
    .article .linkRow span{
      display:inline-flex; align-items:center; gap:8px; font-size:13px;
    }
    .arrow{
      width:18px; height:18px;
      border-radius:10px;
      border:1px solid rgba(31,111,255,.22);
      background:rgba(31,111,255,.08);
      display:inline-flex; align-items:center; justify-content:center;
    }

    .faqWrap{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    details{
      border-radius:16px;
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:12px 14px;
      box-shadow: 0 10px 30px rgba(18,24,38,.04);
      transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    }
    details[open]{
      border-color: rgba(31,111,255,.25);
      box-shadow: 0 18px 44px rgba(18,24,38,.10);
      transform: translateY(-1px);
    }
    details summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:850;
      color:#152033;
      font-size:14px;
    }
    details summary::-webkit-details-marker{display:none}
    .chev{
      width:26px; height:26px;
      border-radius:12px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .15s ease;
      margin-top:-2px;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(31,111,255,.25)}
    .faqA{
      margin-top:10px;
      color:var(--muted);
      font-size:13px;
    }
    .faqCol{
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .review{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .review:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(18,24,38,.10); border-color: rgba(31,111,255,.22)}
    .review .row{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:44px; height:44px; border-radius:16px;
      background: linear-gradient(135deg, rgba(31,111,255,.12), rgba(34,197,94,.10));
      border:1px solid rgba(31,111,255,.16);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#173154;
      flex:0 0 auto;
    }
    .who{
      display:flex; align-items:center; gap:12px;
      min-width:0;
    }
    .who strong{display:block; font-size:14px; letter-spacing:-.2px}
    .who span{display:block; color:var(--muted); font-size:12.5px; font-weight:700}
    .score{
      display:flex; gap:6px; align-items:center;
      color:#7a4a00; font-weight:900; font-size:13px;
      white-space:nowrap;
    }
    .score i{
      width:10px; height:10px; border-radius:3px;
      background:rgba(245,158,11,.9);
      border:1px solid rgba(255,255,255,.65);
      display:inline-block;
      box-shadow:0 10px 20px rgba(245,158,11,.18);
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }

    .networkGrid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:12px;
    }
    .networkItem{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .networkItem:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(18,24,38,.10); border-color: rgba(31,111,255,.22)}
    .networkItem h3{margin:10px 0 6px; font-size:15px}
    .networkItem p{margin:0; color:var(--muted); font-size:13px}
    .mapBar{
      margin-top:12px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.08);
      background:linear-gradient(180deg, rgba(31,111,255,.07), rgba(109,40,217,.05));
      padding:10px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      color:#173154;
      font-weight:900;
      font-size:13px;
    }
    .mapDots{
      display:flex; gap:7px; align-items:center;
    }
    .mapDots span{
      width:9px; height:9px;
      border-radius:50%;
      background:rgba(31,111,255,.25);
      border:1px solid rgba(31,111,255,.30);
      box-shadow: 0 10px 20px rgba(31,111,255,.10);
    }
    .mapDots span:nth-child(2){background:rgba(34,197,94,.22); border-color: rgba(34,197,94,.30)}
    .mapDots span:nth-child(3){background:rgba(245,158,11,.22); border-color: rgba(245,158,11,.30)}

    .timeline{
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
    }
    .timeItem{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:16px;
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:14px;
    }
    .timeItem .tDot{
      width:38px; height:38px;
      border-radius:16px;
      background:rgba(31,111,255,.10);
      border:1px solid rgba(31,111,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:900; color:#173154;
    }
    .timeItem .tBody h3{margin:0 0 6px; font-size:15px}
    .timeItem .tBody p{margin:0; color:var(--muted); font-size:13px}

    .formGrid{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:14px;
      align-items:start;
    }
    form{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    label{
      font-size:12.5px;
      color:#3b475a;
      font-weight:800;
      margin-left:2px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:7px;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.12);
      background:rgba(255,255,255,.85);
      padding:12px 12px;
      font-size:14px;
      color:#101826;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{min-height:96px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(31,111,255,.35);
      box-shadow: 0 0 0 4px var(--ring);
    }
    .formActions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:6px;
    }
    .hint{
      color:var(--muted);
      font-size:12.5px;
      font-weight:700;
      max-width:46ch;
      margin:0;
    }
    .sideInfo{
      border-radius:var(--radius);
      border:1px solid rgba(18,24,38,.08);
      background:
        radial-gradient(640px 220px at 10% 0%, rgba(34,197,94,.14), transparent 62%),
        radial-gradient(520px 220px at 85% 10%, rgba(31,111,255,.14), transparent 62%),
        rgba(255,255,255,.62);
      box-shadow: 0 12px 36px rgba(18,24,38,.05);
      padding:16px;
    }
    .sideInfo h3{margin:0 0 8px; font-size:16px}
    .sideInfo p{margin:0; color:var(--muted); font-size:13px}
    .sideInfo .kvs{
      margin-top:12px;
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .kv{
      border-radius:14px;
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.75);
      padding:12px;
    }
    .kv strong{display:block; font-size:13px; margin-bottom:4px}
    .kv span{color:var(--muted); font-size:12.5px; font-weight:700}

    .cloud{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.70);
      padding:16px;
    }
    .cloud h3{margin:0 0 10px; font-size:15px}
    .tagCloud{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tagCloud a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.78);
      color:#2a364a;
      font-size:12.5px;
      font-weight:800;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tagCloud a:hover{transform: translateY(-1px); border-color: rgba(31,111,255,.25); background: rgba(31,111,255,.06)}

    .footer{
      margin-top:12px;
      background:
        radial-gradient(900px 240px at 15% 0%, rgba(31,111,255,.14), transparent 60%),
        radial-gradient(700px 240px at 85% 10%, rgba(109,40,217,.12), transparent 60%),
        #0b1220;
      color:#e8eefb;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer .inner{
      padding:24px 0 18px;
    }
    .footGrid{
      display:grid;
      grid-template-columns:1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footBrand img{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.08);
      object-fit:contain;
      padding:6px;
    }
    .footBrand strong{display:block; font-size:16px; letter-spacing:-.2px}
    .footBrand p{margin:8px 0 0; color:rgba(232,238,251,.82); font-size:13px}
    .footCol h3{
      margin:0 0 10px;
      font-size:14px;
      letter-spacing:-.2px;
      color:#f3f7ff;
    }
    .footLinks{
      display:flex; flex-direction:column; gap:8px;
    }
    .footLinks a{
      color:rgba(232,238,251,.82);
      font-size:13px;
      font-weight:750;
      transition: color .15s ease, transform .15s ease;
      display:inline-flex; align-items:center; gap:8px;
    }
    .footLinks a:hover{color:#fff; transform: translateY(-1px)}
    .subRow{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .footBottom{
      padding:14px 0 18px;
      border-top:1px solid rgba(255,255,255,.08);
      color:rgba(232,238,251,.78);
      font-size:12.5px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .copy{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .miniLinks{
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .miniLinks a{color:rgba(232,238,251,.82); font-weight:800}
    .miniLinks a:hover{color:#fff}

    .floatHelp{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:40;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatHelp > *{pointer-events:auto}
    .floatBtn{
      border-radius:18px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(18,24,38,.18);
      padding:12px 12px;
      display:flex; align-items:center; gap:10px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
      max-width:260px;
    }
    .floatBtn:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 64px rgba(18,24,38,.22);
      border-color: rgba(31,111,255,.25);
    }
    .floatBtn .bubble{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(31,111,255,.18), rgba(34,197,94,.14));
      border:1px solid rgba(31,111,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .floatBtn strong{font-size:13px; letter-spacing:-.2px}
    .floatBtn span{display:block; color:var(--muted); font-size:12.5px; font-weight:750}

    .toast{
      position:fixed;
      left:50%;
      transform:translateX(-50%);
      bottom:86px;
      z-index:50;
      background:rgba(11,18,32,.92);
      color:#fff;
      padding:10px 12px;
      border-radius:14px;
      box-shadow: 0 22px 70px rgba(0,0,0,.35);
      font-weight:800;
      font-size:13px;
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .toast.show{opacity:1; transform:translateX(-50%) translateY(-4px)}
    .toTop{
      border-radius:18px;
      width:46px; height:46px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(18,24,38,.18);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, opacity .2s ease;
      opacity:.95;
    }
    .toTop:hover{
      transform: translateY(-2px);
      border-color: rgba(31,111,255,.25);
      box-shadow: 0 26px 64px rgba(18,24,38,.22);
    }

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; gap:12px}
      .heroLeft{min-height:auto}
      .grid3{grid-template-columns:1fr 1fr}
      .articleList{grid-template-columns:1fr 1fr}
      .steps{grid-template-columns:1fr 1fr}
      .sideBy{grid-template-columns:1fr}
      .faqWrap{grid-template-columns:1fr}
      .reviewsGrid{grid-template-columns:1fr}
      .networkGrid{grid-template-columns:1fr 1fr}
      .formGrid{grid-template-columns:1fr}
      .footGrid{grid-template-columns:1fr 1fr}
      h1{font-size:30px}
      .navlinks{display:none}
      .hamburger{display:inline-flex}
      .mobilepanel{display:block}
      .mobilepanel[data-open="false"]{display:none}
      .mobilepanel[data-open="true"]{display:block}
    }
    @media (max-width: 560px){
      .grid2{grid-template-columns:1fr}
      .grid3{grid-template-columns:1fr}
      .articleList{grid-template-columns:1fr}
      .caseGrid{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .networkGrid{grid-template-columns:1fr}
      .footGrid{grid-template-columns:1fr}
      .navcta{min-width:auto}
      .brand{min-width:auto}
      h1{font-size:26px}
      .floatHelp{right:12px; bottom:12px}
      .floatBtn{max-width:220px}
    }

    .srOnly{
      position:absolute;
      width:1px;
      height:1px;
      padding:0;
      margin:-1px;
      overflow:hidden;
      clip:rect(0,0,0,0);
      white-space:nowrap;
      border:0;
    }