:root{
      --bg0:#ffffff;
      --bg1:#fbfbff;
      --bg2:#f6f7ff;
      --card:#ffffff;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.10);
      --shadow: 0 14px 40px rgba(17,24,39,.08);
      --shadow2: 0 10px 26px rgba(17,24,39,.10);
      --radius:18px;
      --radius2:14px;
      --brand:#2563eb;
      --brand2:#7c3aed;
      --accent:#06b6d4;
      --good:#16a34a;
      --warn:#f59e0b;
      --danger:#ef4444;
      --btnText:#ffffff;
      --focus: 0 0 0 4px rgba(37,99,235,.18);
      --container: 1120px;
      --padX: 18px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
      Arial, "Noto Sans", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      background: radial-gradient(1200px 700px at 20% -10%, rgba(37,99,235,.10), transparent 55%),
                  radial-gradient(900px 520px at 90% 0%, rgba(124,58,237,.12), transparent 50%),
                  linear-gradient(180deg, var(--bg1), var(--bg0) 35%, var(--bg2) 100%);
      color:var(--text);
      line-height:1.5;
      overflow-x:hidden;
    }

    a{ color:inherit; text-decoration:none; }
    img{ display:block; max-width:100%; height:auto; }

    .container{
      width: min(var(--container), calc(100% - (var(--padX) * 2)));
      margin: 0 auto;
    }

    .skip{
      position:absolute; left:-9999px; 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:10px; z-index:9999; box-shadow: var(--shadow2);
      outline:none;
    }

    header{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(17,24,39,.06);
    }
    .navBar{
      display:flex; align-items:center; justify-content:space-between;
      padding: 12px 0;
      gap: 14px;
    }
    .brandGroup{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .brandMark{
      width:42px; height:42px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.14));
      border:1px solid rgba(37,99,235,.18);
      box-shadow: 0 10px 24px rgba(37,99,235,.10);
      flex:0 0 auto;
    }
    .brandMark img{ width:32px; height:32px; object-fit:contain; }
    .brandText{
      display:flex; flex-direction:column; gap:2px;
    }
    .brandName{
      font-weight:800; letter-spacing:.2px; font-size:14px;
    }
    .brandTag{
      font-size:12px; color:var(--muted2);
    }

    nav{
      display:flex; align-items:center; gap:14px;
      flex:1 1 auto; justify-content:flex-end;
    }
    .menu{
      display:flex; align-items:center; gap:6px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .menu a{
      font-size:13px;
      color: rgba(17,24,39,.78);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      background: rgba(37,99,235,.06);
      border-color: rgba(37,99,235,.16);
      transform: translateY(-1px);
    }

    .navCta{
      display:flex; align-items:center; gap:10px;
      flex:0 0 auto;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.65);
      color: var(--text);
      font-weight:700;
      font-size:13px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:focus{ outline:none; box-shadow: var(--focus); }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(17,24,39,.10);
      border-color: rgba(37,99,235,.18);
      background: rgba(255,255,255,.85);
    }

    .btnPrimary{
      border-color: rgba(37,99,235,.28);
      background: linear-gradient(135deg, rgba(37,99,235,.98), rgba(124,58,237,.95));
      color: var(--btnText);
      box-shadow: 0 16px 36px rgba(37,99,235,.22);
    }
    .btnPrimary:hover{
      box-shadow: 0 18px 44px rgba(37,99,235,.28);
      border-color: rgba(124,58,237,.32);
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
    }

    .iconDot{
      width:9px; height:9px; border-radius:50%;
      background: #fff;
      box-shadow: 0 0 0 6px rgba(255,255,255,.18);
    }

    .mobileToggle{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .mobileToggle:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(17,24,39,.10); }
    .mobileToggle:focus{ outline:none; box-shadow: var(--focus); }
    .burger{
      width:18px; height:12px;
      margin: 0 auto;
      position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:99px;
      background: rgba(17,24,39,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){ top:0; }
    .burger span:nth-child(2){ top:5px; }
    .burger span:nth-child(3){ top:10px; }
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(1){ top:5px; transform: rotate(45deg); }
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(2){ opacity:0; }
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(3){ top:5px; transform: rotate(-45deg); }

    .mobileDrawer{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobileDrawerInner{
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 10px;
      box-shadow: var(--shadow);
    }
    .mobileDrawerInner .menu{
      display:flex;
      flex-direction:column;
      align-items:stretch;
      gap:6px;
    }
    .mobileDrawerInner .menu a{
      padding: 12px 12px;
      border:1px solid rgba(17,24,39,.07);
      background: rgba(255,255,255,.7);
    }
    .mobileDrawerInner .navCta{
      width:100%;
      margin-top:10px;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .mobileDrawerInner .navCta .btn{ flex: 1 1 48%; }

    /* Hero */
    .hero{
      position:relative;
      padding: 26px 0 10px 0;
    }
    .heroShell{
      position:relative;
      overflow:hidden;
      border-radius: 26px;
      border:1px solid rgba(37,99,235,.16);
      background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
      box-shadow: 0 22px 60px rgba(37,99,235,.12);
    }
    .heroInner{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
      padding: 26px 18px 18px 18px;
      align-items: stretch;
    }
    .heroBg{
      position:absolute; inset:-1px;
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(37,99,235,.18), transparent 55%),
        radial-gradient(520px 240px at 84% 10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(540px 360px at 50% 100%, rgba(6,182,212,.12), transparent 55%),
        linear-gradient(135deg, rgba(37,99,235,.06), rgba(124,58,237,.05));
      pointer-events:none;
    }
    .heroGridLines{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(17,24,39,.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17,24,39,.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at 25% 0%, rgba(0,0,0,.9), transparent 60%);
      opacity:.55;
      pointer-events:none;
    }
    .heroLeft{
      position:relative;
      padding: 8px 8px 8px 6px;
      display:flex;
      flex-direction:column;
      gap: 14px;
    }
    .heroKicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.06);
      font-size: 12px;
      color: rgba(17,24,39,.86);
      font-weight: 800;
    }
    .pill .spark{
      width:10px; height:10px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), rgba(124,58,237,.9));
      box-shadow: 0 0 0 6px rgba(6,182,212,.12);
    }
    .heroTitle{
      margin: 0;
      font-size: clamp(24px, 3.2vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.6px;
      font-weight: 900;
    }
    .heroDesc{
      margin: 0;
      color: var(--muted);
      font-size: 14.5px;
      max-width: 58ch;
    }
    .heroActions{
      display:flex; gap: 12px; flex-wrap:wrap;
      align-items:center;
      margin-top: 4px;
    }
    .heroLinks{
      display:flex; gap: 12px; flex-wrap:wrap;
      color: rgba(17,24,39,.82);
      font-size: 13px;
      margin-top: 2px;
    }
    .heroLinks a{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.6);
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .heroLinks a:hover{
      transform: translateY(-1px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 16px 34px rgba(17,24,39,.10);
    }
    .arrow{
      width:18px; height:18px;
      border-radius: 999px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      color: rgba(37,99,235,1);
      font-weight:900;
      font-size: 12px;
      flex: 0 0 auto;
    }

    .heroRight{
      position:relative;
      display:flex; flex-direction:column; gap: 12px;
      padding: 8px;
    }
    .dataCards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-content:start;
    }
    .dataCard{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.08);
      border-radius: 18px;
      padding: 14px 12px;
      box-shadow: 0 14px 34px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 108px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .dataCard:hover{
      transform: translateY(-3px);
      border-color: rgba(37,99,235,.20);
      box-shadow: 0 22px 60px rgba(37,99,235,.14);
    }
    .dataTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .badgeIcon{
      width:34px; height:34px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.14));
      border:1px solid rgba(37,99,235,.18);
      color: rgba(37,99,235,1);
      flex:0 0 auto;
    }
    .badgeIcon svg{ width:18px; height:18px; }
    .dataLabel{ font-size:12px; color:var(--muted2); font-weight:700; }
    .dataValue{
      font-size:20px;
      font-weight: 950;
      letter-spacing: -0.4px;
      margin-top: 6px;
    }
    .dataNote{
      font-size:12px;
      color: rgba(17,24,39,.70);
      margin-top: 4px;
      font-weight: 650;
    }

    .heroPanel{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(17,24,39,.08);
      border-radius: 18px;
      padding: 14px;
      display:flex; flex-direction:column; gap: 12px;
      box-shadow: 0 18px 44px rgba(17,24,39,.07);
    }
    .panelRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .panelTitle{
      font-weight: 900;
      font-size: 14px;
      margin:0;
    }
    .panelText{
      margin:0;
      font-size:13px;
      color: var(--muted);
    }
    .miniSteps{
      display:flex; gap: 8px; flex-wrap:wrap;
    }
    .miniStep{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      font-size:12px;
      color: rgba(17,24,39,.82);
      font-weight:750;
    }
    .miniStep i{
      width:18px; height:18px; border-radius: 6px;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      color: rgba(37,99,235,1);
      font-style:normal;
      display:flex; align-items:center; justify-content:center;
      font-size:12px;
      font-weight:950;
      flex:0 0 auto;
    }

    /* Section common */
    section{
      padding: 26px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 14px;
      margin-bottom: 14px;
    }
    .sectionTitle{
      margin:0;
      font-size: 22px;
      font-weight: 950;
      letter-spacing: -.4px;
    }
    .sectionSub{
      margin: 8px 0 0 0;
      color: var(--muted);
      font-size: 14px;
      max-width: 70ch;
    }
    .sectionKicker{
      font-size: 12px;
      color: rgba(17,24,39,.70);
      font-weight: 850;
      display:flex; align-items:center; gap:10px;
      white-space:nowrap;
    }
    .sectionKicker:before{
      content:"";
      width:10px; height:10px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .card{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(17,24,39,.08);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: 0 14px 40px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(37,99,235,.20);
      box-shadow: 0 22px 60px rgba(17,24,39,.09);
    }
    .cardTitle{
      margin:0;
      font-size: 15px;
      font-weight: 950;
      letter-spacing: -.2px;
    }
    .cardText{
      margin: 10px 0 0 0;
      color: var(--muted);
      font-size: 13.5px;
    }
    .cardList{
      margin: 12px 0 0 0;
      padding-left: 18px;
      color: rgba(17,24,39,.78);
      font-size: 13.2px;
    }
    .cardList li{ margin: 6px 0; }
    .cardIcon{
      width:44px; height:44px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.14));
      border:1px solid rgba(37,99,235,.18);
      color: rgba(37,99,235,1);
      margin-bottom: 10px;
      flex:0 0 auto;
    }
    .cardIcon svg{ width:20px; height:20px; }

    /* Process */
    .timeline{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      align-items:stretch;
    }
    .step{
      padding: 14px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      transition: transform .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap: 10px;
      min-height: 178px;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(37,99,235,.22);
    }
    .stepTop{
      display:flex; align-items:center; justify-content:space-between; gap: 10px;
    }
    .stepNum{
      width:34px; height:34px;
      border-radius: 14px;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      color: rgba(37,99,235,1);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      font-size: 13px;
    }
    .stepTitle{ margin:0; font-weight: 950; font-size: 14px; }
    .stepText{ margin:0; color: var(--muted); font-size: 13.2px; }

    .sparkLine{
      height: 2px;
      width:100%;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(37,99,235,.80), rgba(124,58,237,.80));
      opacity:.65;
      margin-top:auto;
    }

    /* Compare */
    .compareWrap{
      border-radius: 22px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
    }
    .compareHead{
      padding: 14px 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap: 12px;
      background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      border-bottom: 1px solid rgba(17,24,39,.08);
    }
    .stars{
      display:flex; align-items:center; gap: 8px; flex-wrap:wrap;
    }
    .starGroup{
      display:flex; gap: 4px;
      transform: translateY(1px);
    }
    .star{
      width:18px; height:18px;
      color: rgba(245,158,11,1);
    }
    .scoreBadge{
      display:inline-flex; align-items:center; gap: 10px;
      padding: 10px 12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      font-weight: 900;
      white-space:nowrap;
    }
    .scoreBig{
      font-size: 20px;
      letter-spacing:-.4px;
    }
    .scoreSmall{
      font-size: 13px;
      color: rgba(17,24,39,.72);
      font-weight: 800;
    }
    .compareNote{
      margin: 8px 0 0 0;
      color: var(--muted);
      font-size: 13.2px;
      max-width: 62ch;
    }

    .tableScroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 720px;
    }
    th, td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(17,24,39,.08);
      vertical-align:top;
      text-align:left;
      font-size: 13.5px;
      color: rgba(17,24,39,.86);
    }
    th{
      position:sticky; top:0;
      background: rgba(255,255,255,.92);
      z-index:1;
      font-weight: 950;
      color: rgba(17,24,39,.92);
    }
    tr:last-child td{ border-bottom:none; }
    .goodRow{ color: rgba(22,163,74,.95); font-weight: 950; }
    .mutedRow{ color: rgba(107,114,128,.95); font-weight: 800; }
    .tagOk{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.18);
      color: rgba(22,163,74,.95);
      font-weight: 900;
      white-space:nowrap;
      font-size: 12px;
    }
    .tagMaybe{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(245,158,11,.10);
      border:1px solid rgba(245,158,11,.18);
      color: rgba(161,98,7,.95);
      font-weight: 900;
      white-space:nowrap;
      font-size: 12px;
    }

    /* Industry cards */
    .industryGrid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .softCard{
      border-radius: 18px;
      padding: 14px 12px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      transition: transform .2s ease, border-color .2s ease;
      min-height: 138px;
      display:flex; flex-direction:column; gap: 10px;
    }
    .softCard:hover{ transform: translateY(-3px); border-color: rgba(37,99,235,.22); }
    .softTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap: 10px;
    }
    .softTitle{ margin:0; font-weight: 950; font-size: 14px; }
    .softText{ margin:0; color: var(--muted); font-size: 13.2px; }

    .chipRow{
      margin-top:auto;
      display:flex; flex-wrap:wrap; gap: 8px;
    }
    .chip{
      font-size: 12px;
      font-weight: 850;
      color: rgba(17,24,39,.78);
      padding: 7px 9px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
    }
    .chipStrong{
      border-color: rgba(37,99,235,.22);
      background: rgba(37,99,235,.08);
      color: rgba(37,99,235,.98);
    }

    /* Accordions */
    .accordion{
      border-radius: 22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
      overflow:hidden;
    }
    .accItem{
      border-top:1px solid rgba(17,24,39,.08);
    }
    .accItem:first-child{ border-top:none; }
    .accBtn{
      width:100%;
      text-align:left;
      padding: 14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap: 14px;
      background: rgba(255,255,255,.65);
      border:none;
      cursor:pointer;
      font-weight: 950;
      font-size: 14px;
      color: rgba(17,24,39,.92);
      transition: background .2s ease;
    }
    .accBtn:hover{ background: rgba(37,99,235,.06); }
    .accBtn:focus{ outline:none; box-shadow: var(--focus); }
    .accRight{
      display:flex; align-items:center; gap: 10px; flex:0 0 auto;
      color: rgba(17,24,39,.70);
      font-weight: 900;
      font-size: 12px;
    }
    .plus{
      width:28px; height:28px;
      border-radius: 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease;
    }
    .plus svg{ width:16px; height:16px; }
    .accPanel{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
      background: rgba(255,255,255,.86);
    }
    .accPanelInner{
      padding: 0 14px 14px 14px;
      color: var(--muted);
      font-size: 13.8px;
    }
    .accItem[data-open="true"] .accPanel{
      max-height: 420px;
    }
    .accItem[data-open="true"] .plus{
      border-color: rgba(37,99,235,.22);
      transform: rotate(45deg);
    }

    /* Reviews */
    .reviewGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .reviewCard{
      border-radius: 22px;
      padding: 16px;
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 14px 40px rgba(17,24,39,.06);
      transition: transform .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap: 12px;
      min-height: 220px;
    }
    .reviewCard:hover{ transform: translateY(-3px); border-color: rgba(37,99,235,.22); }
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.14));
      border:1px solid rgba(37,99,235,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(37,99,235,1);
      flex:0 0 auto;
    }
    .reviewRole{
      margin:0;
      font-size: 13.5px;
      font-weight: 950;
      color: rgba(17,24,39,.92);
    }
    .reviewText{
      margin:0;
      color: var(--muted);
      font-size: 13.6px;
    }
    .reviewFoot{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      color: rgba(17,24,39,.70);
      font-size: 12.5px;
      font-weight: 850;
    }
    .reviewMetric{
      display:flex; align-items:center; gap: 8px;
    }
    .dotOk{
      width:10px; height:10px; border-radius:50%;
      background: rgba(22,163,74,.95);
      box-shadow: 0 0 0 6px rgba(22,163,74,.12);
    }

    /* Cases & articles */
    .caseGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:stretch;
    }
    .galleryCard{
      border-radius: 24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
      overflow:hidden;
      display:flex; flex-direction:column;
    }
    .galleryHead{
      padding: 14px 16px;
      border-bottom:1px solid rgba(17,24,39,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap: 12px;
      background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
    }
    .galleryHead h3{
      margin:0;
      font-size: 16px;
      font-weight: 950;
      letter-spacing: -.2px;
    }
    .galleryHead p{
      margin: 6px 0 0 0;
      color: var(--muted);
      font-size: 13.3px;
      max-width: 62ch;
    }
    .galleryBody{
      padding: 14px 16px 16px 16px;
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      align-items:start;
    }
    .imgCard{
      border-radius: 20px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.68);
      transition: transform .2s ease, box-shadow .2s ease;
      cursor:pointer;
      position:relative;
    }
    .imgCard:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 70px rgba(17,24,39,.14);
    }
    .imgCard img{ width:100%; height:auto; aspect-ratio: 16 / 10; object-fit: cover; }
    .imgCap{
      padding: 10px 12px;
      font-weight: 900;
      color: rgba(17,24,39,.90);
      font-size: 13.2px;
      border-top:1px solid rgba(17,24,39,.08);
    }

    .sideStack{
      display:flex; flex-direction:column; gap: 14px;
    }
    .listCard{
      border-radius: 24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
      padding: 14px 16px;
    }
    .listCard h3{
      margin:0;
      font-size: 16px;
      font-weight: 950;
      letter-spacing: -.2px;
    }
    .listCard p{
      margin: 6px 0 0 0;
      color: var(--muted);
      font-size: 13.3px;
    }
    .linkList{
      margin: 12px 0 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap: 10px;
    }
    .linkItem a{
      display:flex; align-items:flex-start; justify-content:space-between; gap: 12px;
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      transition: transform .2s ease, border-color .2s ease;
    }
    .linkItem a:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
    }
    .linkItem .liTitle{
      font-weight: 950;
      font-size: 13.6px;
      color: rgba(17,24,39,.92);
      line-height:1.3;
    }
    .liMeta{
      font-size: 12.3px;
      color: rgba(17,24,39,.68);
      font-weight: 850;
      margin-top: 4px;
    }
    .liArrow{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(37,99,235,.08);
      display:flex; align-items:center; justify-content:center;
      color: rgba(37,99,235,1);
      flex:0 0 auto;
      font-weight: 950;
      transition: transform .2s ease;
    }
    .linkItem a:hover .liArrow{ transform: translateX(2px); }

    /* Form */
    .formWrap{
      border-radius: 26px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
      overflow:hidden;
      display:grid;
      grid-template-columns: 1fr 1fr;
    }
    .formLeft{
      padding: 18px;
      background:
        radial-gradient(600px 240px at 20% 0%, rgba(37,99,235,.14), transparent 55%),
        radial-gradient(520px 260px at 90% 10%, rgba(124,58,237,.12), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.66));
      border-right:1px solid rgba(17,24,39,.08);
    }
    .formLeft h3{
      margin:0;
      font-size: 16px;
      font-weight: 950;
      letter-spacing: -.2px;
    }
    .formLeft p{
      margin: 8px 0 0 0;
      color: var(--muted);
      font-size: 13.6px;
      max-width: 52ch;
    }
    .formBullets{
      margin: 12px 0 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap: 10px;
    }
    .formBullets li{
      display:flex; gap: 10px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
    }
    .tick{
      width:22px; height:22px;
      border-radius: 9px;
      background: rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.18);
      color: rgba(22,163,74,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      flex:0 0 auto;
      margin-top: 2px;
      font-size: 12px;
    }
    .formBullets b{
      display:block;
      font-size: 13.4px;
      font-weight: 950;
      margin-bottom: 4px;
    }
    .formBullets span{
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
    }

    form{
      padding: 18px;
      display:flex; flex-direction:column; gap: 12px;
    }
    .fieldRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    label{
      font-size: 12.7px;
      color: rgba(17,24,39,.80);
      font-weight: 900;
      display:flex; flex-direction:column; gap: 8px;
    }
    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;
      font-size: 14px;
      color: var(--text);
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    textarea{ min-height: 104px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(37,99,235,.34);
      box-shadow: var(--focus);
      background: rgba(255,255,255,.92);
    }
    .formActions{
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      flex-wrap:wrap;
      margin-top: 2px;
    }
    .finePrint{
      color: rgba(17,24,39,.62);
      font-size: 12.4px;
      font-weight: 750;
    }

    /* Pricing reference */
    .priceGrid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }
    .priceCard{
      border-radius: 22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 22px 60px rgba(17,24,39,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease;
      min-height: 200px;
      display:flex; flex-direction:column; gap: 10px;
    }
    .priceCard:hover{ transform: translateY(-3px); border-color: rgba(37,99,235,.22); }
    .priceHead{
      display:flex; align-items:flex-start; justify-content:space-between; gap: 10px;
    }
    .priceTitle{
      margin:0; font-weight: 950; font-size: 15px;
    }
    .priceHint{
      font-size: 12.3px; color: rgba(17,24,39,.66); font-weight: 850;
      text-align:right;
    }
    .priceBig{
      font-size: 26px;
      font-weight: 1000;
      letter-spacing: -.6px;
      margin-top: 4px;
    }
    .priceSmall{
      color: var(--muted);
      font-weight: 850;
      font-size: 13px;
      margin-top: -4px;
    }
    .priceList{
      margin: 6px 0 0 0;
      padding-left: 18px;
      color: rgba(17,24,39,.78);
      font-size: 13.2px;
      font-weight: 750;
    }
    .priceFoot{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap: 10px;
      padding-top: 10px;
      border-top:1px solid rgba(17,24,39,.08);
    }

    /* Footer */
    footer{
      background: #0b1220;
      color: rgba(255,255,255,.92);
      margin-top: 10px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footerInner{
      padding: 24px 0 18px 0;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .footerBrand{
      display:flex; flex-direction:column; gap: 10px;
    }
    .footerBrandRow{
      display:flex; align-items:center; gap: 12px;
    }
    .footerLogo{
      width:44px; height:44px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .footerLogo img{ width:28px; height:28px; object-fit:contain; }
    .footerBrand h3{
      margin:0; font-size: 16px; font-weight: 1000; letter-spacing: -.2px;
    }
    .footerBrand p{
      margin:0;
      color: rgba(255,255,255,.72);
      font-size: 13.4px;
      max-width: 66ch;
    }

    .footerLinks{
      display:flex; flex-direction:column; gap: 10px;
      align-items:flex-end;
    }
    .footerLinks a{
      color: rgba(255,255,255,.88);
      font-weight: 850;
      font-size: 13px;
      padding: 10px 12px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      width: fit-content;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.20);
      background: rgba(255,255,255,.10);
    }

    .footerBottom{
      margin-top: 16px;
      padding-top: 14px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      flex-wrap:wrap;
    }
    .copyright{
      color: rgba(255,255,255,.70);
      font-size: 12.6px;
      font-weight: 800;
    }
    .friendRow{
      display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .friendRow a{
      color: rgba(255,255,255,.82);
      font-size: 12.6px;
      font-weight: 850;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .friendRow a:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.10);
    }

    /* Floating customer */
    .floatCta{
      position:fixed;
      right: 14px;
      bottom: 16px;
      z-index: 80;
      display:flex; flex-direction:column; gap: 10px;
      align-items:flex-end;
    }
    .floatBtn{
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 44px rgba(17,24,39,.12);
      padding: 10px 12px;
      display:flex; align-items:center; gap: 10px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .2s ease;
      user-select:none;
      max-width: 220px;
    }
    .floatBtn:hover{ transform: translateY(-3px); box-shadow: 0 24px 70px rgba(17,24,39,.18); }
    .floatIcon{
      width:36px; height:36px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.14));
      border:1px solid rgba(37,99,235,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(37,99,235,1);
      flex:0 0 auto;
    }
    .floatBtn b{ font-size:13.2px; font-weight: 1000; }
    .floatBtn span{ display:block; color: rgba(17,24,39,.64); font-size: 12.3px; font-weight: 850; margin-top: 2px; }

    .qrPopover{
      position:absolute;
      right: 0;
      bottom: 58px;
      width: 220px;
      border-radius: 20px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 28px 80px rgba(17,24,39,.22);
      overflow:hidden;
      transform: translateY(8px);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .qrPopover.open{
      opacity:1; transform: translateY(0); pointer-events:auto;
    }
    .qrHeader{
      padding: 12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
      font-weight: 1000;
      font-size: 13.2px;
      display:flex; align-items:center; justify-content:space-between; gap: 10px;
    }
    .qrHeader button{
      width:32px; height:32px;
      border-radius: 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
    }
    .qrBody{ padding: 12px; display:flex; flex-direction:column; gap: 10px; }
    .qrBody img{
      width: 100%;
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      aspect-ratio: 1 / 1;
      object-fit: contain;
      background:#fff;
    }
    .qrBody p{
      margin:0;
      color: rgba(17,24,39,.70);
      font-size: 12.6px;
      font-weight: 850;
      text-align:center;
    }

    .backTop{
      width:46px; height:46px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 44px rgba(17,24,39,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, opacity .2s ease;
      opacity:0;
      pointer-events:none;
      color: rgba(17,24,39,.82);
      font-weight: 1000;
    }
    .backTop.show{
      opacity:1; pointer-events:auto;
    }
    .backTop:hover{ transform: translateY(-3px); }

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

    /* Responsive */
    @media (max-width: 980px){
      .heroInner{ grid-template-columns: 1fr; }
      .heroRight{ padding: 0 8px 8px 8px; }
      .timeline{ grid-template-columns: repeat(3, 1fr); }
      .grid3{ grid-template-columns: 1fr; }
      .grid2{ grid-template-columns: 1fr; }
      .industryGrid{ grid-template-columns: repeat(2, 1fr); }
      .caseGrid{ grid-template-columns: 1fr; }
      .galleryBody{ grid-template-columns: 1fr 1fr; }
      .reviewGrid{ grid-template-columns: 1fr; }
      .priceGrid{ grid-template-columns: 1fr; }
      .formWrap{ grid-template-columns: 1fr; }
      .formLeft{ border-right:none; border-bottom:1px solid rgba(17,24,39,.08); }
      .footerGrid{ grid-template-columns: 1fr; }
      .footerLinks{ align-items:flex-start; }
      .friendRow{ justify-content:flex-start; }
      nav{ display:none; }
      .mobileToggle{ display:inline-flex; align-items:center; justify-content:center; }
      .mobileDrawer{ display:block; }
    }

    @media (max-width: 520px){
      .dataCards{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: repeat(2, 1fr); }
      .galleryBody{ grid-template-columns: 1fr; }
      .industryGrid{ grid-template-columns: 1fr; }
      .fieldRow{ grid-template-columns: 1fr; }
      .heroInner{ padding: 18px 12px 14px 12px; }
      .heroLeft{ padding: 6px 4px; }
      .heroDesc{ font-size: 14px; }
    }