:root{
      --bg0:#fbfbff;
      --bg1:#f6f3ff;
      --bg2:#eef6ff;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6678;
      --muted2:#7a869b;
      --line:rgba(23,37,84,.12);
      --shadow: 0 10px 30px rgba(20,35,80,.10);
      --shadow2: 0 14px 44px rgba(20,35,80,.14);
      --radius:18px;

      --brandA:#7c3aed;
      --brandB:#06b6d4;
      --brandC:#22c55e;
      --brandD:#f97316;

      --fluor: rgba(124,58,237,.30);
      --fluor2: rgba(6,182,212,.22);
      --focus: rgba(124,58,237,.28);
      --btnText:#0b1220;

      --container: 1160px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 8% -10%, rgba(124,58,237,.16), transparent 55%),
        radial-gradient(1000px 500px at 92% 0%, rgba(6,182,212,.16), transparent 52%),
        radial-gradient(900px 500px at 60% 30%, rgba(34,197,94,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg2) 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.68);
      border-bottom: 1px solid rgba(23,37,84,.10);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
    }
    .brand .logoWrap{
      width:42px;
      height:42px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border:1px solid rgba(124,58,237,.22);
      box-shadow: 0 8px 22px rgba(124,58,237,.10);
      overflow:hidden;
    }
    .ai-page-logo{
      max-width:100%;
      height:auto;
      display:block;
    }
    .brand .brandText{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .name{
      font-weight:850;
      letter-spacing:-.02em;
      font-size:15px;
    }
    .brand .sub{
      font-size:12px;
      color:var(--muted2);
      margin-top:4px;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a.navlink{
      font-size:13px;
      color:rgba(31,41,55,.86);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav a.navlink:hover{
      background: rgba(124,58,237,.08);
      border-color: rgba(124,58,237,.18);
      transform: translateY(-1px);
    }
    .nav .ctaRow{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:6px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(23,37,84,.14);
      background: rgba(255,255,255,.7);
      color:rgba(17,24,39,.92);
      font-weight:720;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      box-shadow: 0 10px 24px rgba(20,35,80,.08);
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
    .btn:active{transform: translateY(0px); box-shadow: 0 8px 18px rgba(20,35,80,.10)}
    .btn:focus-visible{outline:3px solid var(--focus); outline-offset:2px}
    .btn-primary{
      border-color: rgba(124,58,237,.32);
      background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(6,182,212,.14));
      position:relative;
      overflow:hidden;
    }
    .btn-primary::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(280px 80px at 20% 20%, rgba(124,58,237,.35), transparent 60%),
        radial-gradient(240px 80px at 80% 30%, rgba(6,182,212,.25), transparent 60%);
      opacity:.8;
      pointer-events:none;
    }
    .btn-primary span{position:relative; z-index:1}
    .btn-ghost{
      background: rgba(255,255,255,.55);
    }

    .hamburger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(23,37,84,.14);
      background: rgba(255,255,255,.66);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
      box-shadow: 0 10px 24px rgba(20,35,80,.08);
    }
    .hamburger:hover{transform: translateY(-1px)}
    .hamburger:focus-visible{outline:3px solid var(--focus); outline-offset:2px}
    .hamburger .lines{
      width:18px; height:12px; position:relative;
    }
    .hamburger .lines i{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(31,41,55,.86);
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger .lines i:nth-child(1){top:0}
    .hamburger .lines i:nth-child(2){top:5px}
    .hamburger .lines i:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .lines i:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .lines i:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .lines i:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobileNav{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobileNav .panel{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(23,37,84,.12);
      border-radius: 18px;
      padding: 12px;
      box-shadow: 0 20px 60px rgba(20,35,80,.12);
    }
    .mobileNav .links{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding: 4px 2px 12px 2px;
    }
    .mobileNav a.navlink{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(23,37,84,.10);
      background: rgba(255,255,255,.65);
      font-size: 13px;
    }
    .mobileNav .miniCtas{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .mobileNav .miniCtas .btn{flex:1}
    .mobileNav .miniCtas .btn-ghost{flex:1}

    main{padding-bottom:20px}
    section{padding: 44px 0}
    .sectionTitle{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom: 18px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 8px 12px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.22);
      background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(6,182,212,.08));
      color: rgba(31,41,55,.92);
      font-weight:740;
      font-size:12px;
      letter-spacing:.02em;
      width:fit-content;
    }
    .kicker i{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 0 0 6px rgba(124,58,237,.10);
    }
    h1{
      font-size: 40px;
      margin: 12px 0 10px 0;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .lead{
      margin:0;
      color: rgba(31,41,55,.78);
      font-size: 15px;
      line-height: 1.7;
      max-width: 62ch;
    }

    .hero{
      padding: 26px 0 32px 0;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items:stretch;
    }
    .heroCard{
      border-radius: 26px;
      border: 1px solid rgba(124,58,237,.20);
      background:
        radial-gradient(900px 340px at 15% 10%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(700px 320px at 90% 0%, rgba(6,182,212,.16), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.55));
      box-shadow: 0 24px 80px rgba(124,58,237,.14);
      padding: 22px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height: 360px;
    }
    .heroCard::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(500px 120px at 20% 25%, rgba(124,58,237,.30), transparent 65%),
        radial-gradient(420px 120px at 72% 22%, rgba(6,182,212,.24), transparent 60%),
        radial-gradient(320px 120px at 50% 85%, rgba(34,197,94,.14), transparent 60%);
      opacity:.9;
      pointer-events:none;
      filter: blur(0px);
    }
    .heroCard > *{position:relative; z-index:1}
    .heroTop{
      display:flex;
      flex-direction:column;
    }
    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 18px;
      align-items:center;
    }
    .trustRow{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      align-items:center;
      margin-top: 16px;
    }
    .trustItem{
      display:flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 26px rgba(20,35,80,.08);
    }
    .trustItem .dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--brandB), var(--brandA));
      box-shadow: 0 0 0 7px rgba(6,182,212,.12);
    }
    .trustItem strong{font-size:13px}
    .trustItem span{display:block; font-size:12px; color:var(--muted2); margin-top:2px}

    .heroAside{
      border-radius: 26px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.66);
      box-shadow: 0 22px 70px rgba(20,35,80,.10);
      padding: 18px;
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .heroAside::after{
      content:"";
      position:absolute;
      inset:-120px -120px auto auto;
      width:260px;height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.28), transparent 62%);
      transform: rotate(18deg);
      pointer-events:none;
    }
    .heroAside > *{position:relative; z-index:1}
    .miniTitle{
      font-size: 14px;
      font-weight: 850;
      letter-spacing:-.01em;
      margin: 6px 0 12px 0;
      color: rgba(31,41,55,.92);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .badge{
      font-size:12px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(124,58,237,.10);
      border: 1px solid rgba(124,58,237,.20);
      color: rgba(31,41,55,.9);
      white-space:nowrap;
    }

    .statsGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .stat{
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      padding: 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow: 0 12px 28px rgba(20,35,80,.08);
      min-height: 104px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:8px;
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(124,58,237,.25);
    }
    .stat .value{
      font-size: 22px;
      font-weight: 950;
      letter-spacing:-.03em;
    }
    .stat .label{
      font-size: 12px;
      color: var(--muted2);
      line-height:1.4;
    }
    .stat .tag{
      font-size:11px;
      color: rgba(31,41,55,.85);
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.55);
      padding: 6px 9px;
      border-radius: 999px;
      width: fit-content;
    }

    .callout{
      margin-top: 14px;
      border-radius: 18px;
      border: 1px solid rgba(124,58,237,.18);
      background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(6,182,212,.08));
      padding: 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .calloutRow{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .callout h3{
      margin:0;
      font-size: 14px;
      letter-spacing:-.01em;
    }
    .callout p{
      margin:0;
      color: rgba(31,41,55,.76);
      font-size: 13px;
      line-height: 1.6;
    }
    .progress{
      display:flex;
      align-items:center;
      gap:10px;
      margin-top: 2px;
    }
    .bar{
      flex:1;
      height: 10px;
      border-radius: 999px;
      background: rgba(31,41,55,.08);
      border: 1px solid rgba(23,37,84,.08);
      overflow:hidden;
    }
    .bar > i{
      display:block;
      height:100%;
      width: 72%;
      background: linear-gradient(90deg, rgba(124,58,237,.9), rgba(6,182,212,.85));
      box-shadow: 0 0 18px rgba(124,58,237,.25);
      border-radius:999px;
      transform-origin:left;
      animation: fill 1.1s ease both;
    }
    @keyframes fill {from{transform:scaleX(.65); opacity:.8} to{transform:scaleX(1); opacity:1}}
    .progress span{
      font-size: 12px;
      color: var(--muted2);
      white-space:nowrap;
      font-weight:650;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(23,37,84,.12);
      box-shadow: 0 16px 50px rgba(20,35,80,.09);
      padding: 16px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: var(--shadow2);
    }
    .card h3{
      margin:0 0 8px 0;
      font-size: 16px;
      letter-spacing:-.02em;
    }
    .card p{
      margin:0;
      color: rgba(31,41,55,.76);
      font-size: 13px;
      line-height:1.7;
    }

    .processGrid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 12px;
      align-items:stretch;
    }
    .step{
      position:relative;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(23,37,84,.12);
      box-shadow: 0 16px 44px rgba(20,35,80,.08);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step::before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height: 58px;
      background: linear-gradient(90deg, rgba(124,58,237,.16), rgba(6,182212,.12));
      opacity:.9;
      pointer-events:none;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(124,58,237,.22);
    }
    .step .num{
      position:relative;
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background: rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.20);
      font-weight:950;
      letter-spacing:-.02em;
    }
    .step h3{
      position:relative;
      margin: 10px 0 8px 0;
      font-size: 15px;
      letter-spacing:-.01em;
    }
    .step ul{
      position:relative;
      margin:0;
      padding-left:18px;
      color: rgba(31,41,55,.76);
      font-size: 12.8px;
      line-height:1.7;
    }
    .step li{margin: 4px 0}

    .compareWrap{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:stretch;
    }
    .ratingCard{
      padding: 18px;
      border-radius: 22px;
      background:
        radial-gradient(540px 200px at 12% 10%, rgba(124,58,237,.16), transparent 58%),
        radial-gradient(520px 200px at 90% 0%, rgba(6,182,212,.12), transparent 58%),
        rgba(255,255,255,.70);
      border: 1px solid rgba(124,58,237,.20);
      box-shadow: 0 20px 70px rgba(124,58,237,.10);
      position:relative;
      overflow:hidden;
    }
    .ratingTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
    }
    .ratingTop h3{
      margin: 0;
      font-size: 18px;
      letter-spacing:-.02em;
    }
    .stars{
      display:flex;
      align-items:center;
      gap:8px;
      font-weight:950;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .stars .starRow{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px;height:18px;
      display:inline-block;
      background: conic-gradient(from 210deg, #fbbf24, #f59e0b);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 71%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      filter: drop-shadow(0 6px 10px rgba(245,158,11,.25));
    }
    .ratingValue{
      margin-top: 10px;
      display:flex;
      gap: 10px;
      align-items:flex-end;
      flex-wrap:wrap;
    }
    .ratingValue .big{
      font-size: 34px;
      font-weight: 1000;
      letter-spacing:-.04em;
    }
    .ratingValue .small{
      color: var(--muted2);
      font-weight:700;
      font-size: 13px;
      padding-bottom: 6px;
    }

    .tableCard{
      padding: 14px;
      border-radius: 22px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(23,37,84,.12);
      box-shadow: 0 16px 50px rgba(20,35,80,.09);
      overflow:hidden;
    }
    .tableScroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
      border-radius: 16px;
      border: 1px solid rgba(23,37,84,.10);
      background: rgba(255,255,255,.55);
    }
    table{
      width:100%;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 680px;
      font-size: 13px;
    }
    thead th{
      text-align:left;
      padding: 14px 12px;
      background:
        linear-gradient(135deg, rgba(124,58,237,.10), rgba(6,182,212,.08));
      color: rgba(31,41,55,.92);
      font-weight: 900;
      border-bottom: 1px solid rgba(23,37,84,.12);
      position: sticky;
      top:0;
      z-index:1;
    }
    tbody td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(23,37,84,.08);
      color: rgba(31,41,55,.80);
      vertical-align: top;
    }
    tbody tr:last-child td{border-bottom:none}
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 6px 10px;
      border-radius: 999px;
      border:1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.62);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .pill i{
      width:9px;height:9px;border-radius:50%;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 0 0 6px rgba(124,58,237,.10);
    }
    .mutedMark{color: rgba(31,41,55,.62)}
    .good{font-weight:950}
    .compareList{
      margin: 12px 0 0 0;
      padding-left: 18px;
      color: rgba(31,41,55,.76);
      font-size: 13px;
      line-height:1.7;
    }
    .compareList li{margin: 6px 0}

    .solutionsGrid{
      display:grid;
      grid-template-columns: repeat(6, minmax(0,1fr));
      gap: 10px;
      margin-top: 10px;
    }
    .chip{
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 28px rgba(20,35,80,.06);
      font-size: 12.8px;
      color: rgba(31,41,55,.84);
      font-weight: 820;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
      min-height: 54px;
      display:flex;
      align-items:center;
      justify-content:flex-start;
    }
    .chip::after{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:90px;height:90px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.20), transparent 62%);
      opacity:.7;
      pointer-events:none;
      transform: rotate(22deg);
    }
    .chip span{position:relative; z-index:1}
    .chip:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22); box-shadow: var(--shadow2)}

    .timeline{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .timeItem{
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 14px 44px rgba(20,35,80,.07);
      padding: 14px;
      min-height: 120px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .timeItem::before{
      content:"";
      position:absolute;
      left:-22px; top:-22px;
      width:70px; height:70px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.10));
      border: 1px solid rgba(124,58,237,.20);
      transform: rotate(18deg);
      opacity:.9;
      pointer-events:none;
    }
    .timeItem > *{position:relative; z-index:1}
    .timeItem .tTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .timeItem .when{
      font-weight:950;
      letter-spacing:-.03em;
      font-size: 14px;
    }
    .timeItem .type{
      font-size: 11.5px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.60);
      color: rgba(31,41,55,.82);
      white-space:nowrap;
    }
    .timeItem p{
      margin:0;
      color: rgba(31,41,55,.76);
      font-size: 12.8px;
      line-height: 1.7;
    }

    .formCard{
      padding: 18px;
      border-radius: 24px;
      border: 1px solid rgba(124,58,237,.20);
      background:
        radial-gradient(620px 220px at 15% 5%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(520px 220px at 92% 0%, rgba(6,182,212,.14), transparent 60%),
        rgba(255,255,255,.70);
      box-shadow: 0 22px 78px rgba(124,58,237,.10);
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    label{
      font-size:12.5px;
      color: rgba(31,41,55,.84);
      font-weight: 820;
    }
    input, select, textarea{
      border-radius: 14px;
      border: 1px solid rgba(23,37,84,.14);
      background: rgba(255,255,255,.72);
      padding: 12px 12px;
      font-size: 14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
      color: rgba(17,24,39,.92);
    }
    textarea{min-height: 108px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(124,58,237,.32);
      box-shadow: 0 0 0 4px rgba(124,58,237,.16);
      background: rgba(255,255,255,.86);
    }
    .formActions{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-top: 12px;
    }
    .hint{
      color: var(--muted2);
      font-size: 12.5px;
      line-height:1.5;
      margin:0;
      max-width: 56ch;
    }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:start;
    }
    .faqItem{
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 50px rgba(20,35,80,.07);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .faqItem:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: var(--shadow2);
    }
    .faqBtn{
      width:100%;
      text-align:left;
      border:0;
      padding: 14px 14px;
      background: transparent;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .faqQ{
      font-weight: 920;
      color: rgba(31,41,55,.92);
      line-height:1.45;
      font-size: 13.8px;
    }
    .chev{
      width: 34px; height: 34px;
      border-radius: 12px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.60);
      display:grid; place-items:center;
      flex: 0 0 auto;
      transition: transform .18s ease;
      margin-top: -2px;
    }
    .faqItem[aria-expanded="true"] .chev{transform: rotate(180deg)}
    .faqA{
      padding: 0 14px 14px 14px;
      color: rgba(31,41,55,.78);
      font-size: 13px;
      line-height: 1.75;
      display:none;
    }
    .faqItem[aria-expanded="true"] .faqA{display:block}

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 12px;
      align-items:stretch;
    }
    .review{
      border-radius: 22px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 50px rgba(20,35,80,.08);
      padding: 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height: 210px;
    }
    .review::before{
      content:"";
      position:absolute;
      inset:-120px -120px auto auto;
      width:240px;height:240px;
      background: radial-gradient(circle at 35% 35%, rgba(124,58,237,.18), transparent 62%);
      pointer-events:none;
    }
    .review > *{position:relative; z-index:1}
    .review:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(124,58,237,.22);
    }
    .reviewTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .avatar{
      width:44px;height:44px;border-radius:16px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border: 1px solid rgba(124,58,237,.22);
      display:grid; place-items:center;
      font-weight: 1000;
      letter-spacing:-.03em;
    }
    .reviewName{
      display:flex;
      flex-direction:column;
      gap:4px;
    }
    .reviewName strong{font-size:14px}
    .reviewName span{font-size:12.5px; color: var(--muted2); line-height:1.2}
    .reviewStars{
      display:flex; align-items:center; gap:4px; margin-top: 3px; white-space:nowrap;
      color: rgba(31,41,55,.82);
      font-weight:900;
      font-size: 12.8px;
    }
    .review p{
      margin:0;
      color: rgba(31,41,55,.78);
      font-size: 13.2px;
      line-height: 1.75;
    }
    .review .tagRow{
      margin-top:auto;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .review .tTag{
      font-size: 11.8px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.60);
      color: rgba(31,41,55,.82);
      font-weight: 820;
    }

    .articleGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    .articleList{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top: 10px;
    }
    .articleItem{
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 44px rgba(20,35,80,.07);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .articleItem:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: var(--shadow2);
    }
    .articleItem .aLeft{
      display:flex;
      flex-direction:column;
      gap:6px;
      min-width:0;
    }
    .articleItem .aLeft strong{
      font-size: 13.8px;
      line-height:1.4;
      letter-spacing:-.01em;
    }
    .articleItem .aLeft span{
      font-size: 12.6px;
      color: var(--muted2);
      line-height:1.4;
    }
    .articleItem .go{
      width: 38px; height: 38px;
      border-radius: 14px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.62);
      display:grid; place-items:center;
      flex:0 0 auto;
      transition: transform .18s ease;
      margin-top: 2px;
    }
    .articleItem:hover .go{transform: translateX(3px)}
    .sidePanel{
      border-radius: 22px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 50px rgba(20,35,80,.08);
      padding: 16px;
      position:sticky;
      top: 86px;
    }
    .sidePanel h3{
      margin:0 0 10px 0;
      font-size: 15.5px;
      letter-spacing:-.01em;
    }
    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap: 8px;
      margin-top: 10px;
    }
    .tagCloud a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 9px 10px;
      border-radius: 999px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.60);
      color: rgba(31,41,55,.82);
      font-weight: 820;
      font-size: 12.2px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .tagCloud a:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: var(--shadow);
    }
    .tagCloud a i{
      width:9px;height:9px;border-radius:50%;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 0 0 6px rgba(124,58,237,.10);
    }

    .networkGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:stretch;
    }
    .mapCard{
      border-radius: 24px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.68);
      box-shadow: 0 16px 50px rgba(20,35,80,.08);
      padding: 16px;
      overflow:hidden;
      position:relative;
      min-height: 260px;
    }
    .mapCard::before{
      content:"";
      position:absolute;
      inset:-40px -40px auto auto;
      width:220px;height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.20), transparent 62%);
      pointer-events:none;
      transform: rotate(15deg);
    }
    .mapCard > *{position:relative; z-index:1}
    .mapHeader{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom: 12px;
    }
    .mapHeader h3{
      margin:0;
      font-size: 15.8px;
      letter-spacing:-.01em;
    }
    .mapHeader p{
      margin: 6px 0 0 0;
      color: var(--muted2);
      font-size: 12.7px;
      line-height:1.6;
      max-width: 44ch;
    }
    .cityGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
    }
    .city{
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.62);
      padding: 12px;
      display:flex;
      flex-direction:column;
      gap:8px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .city:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22); box-shadow: var(--shadow)}
    .city .cName{font-weight:950; letter-spacing:-.02em; font-size: 13.8px}
    .city .cRole{color: var(--muted2); font-size: 12.4px; line-height:1.4}

    .pricingBox{
      border-radius: 24px;
      border: 1px solid rgba(124,58,237,.18);
      background:
        radial-gradient(580px 200px at 15% 0%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(540px 200px at 92% 0%, rgba(6,182,212,.14), transparent 60%),
        rgba(255,255,255,.70);
      box-shadow: 0 22px 78px rgba(124,58,237,.10);
      padding: 16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .priceTabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
    }
    .seg{
      border-radius: 999px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.62);
      padding: 9px 12px;
      font-weight: 900;
      font-size: 12.8px;
      cursor:pointer;
      user-select:none;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .seg:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22); box-shadow: var(--shadow)}
    .seg[aria-pressed="true"]{
      background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(6,182,212,.12));
      border-color: rgba(124,58,237,.30);
      box-shadow: 0 18px 60px rgba(124,58,237,.14);
    }
    .priceTable{
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.12);
      overflow:hidden;
      background: rgba(255,255,255,.60);
    }
    .priceTable table{min-width: 0; width:100%}
    .priceTable thead th{position:static}
    .tiny{
      color: var(--muted2);
      font-size: 12.5px;
      line-height:1.6;
      margin:0;
    }

    footer{
      padding: 28px 0 38px 0;
      border-top: 1px solid rgba(23,37,84,.10);
      background:
        radial-gradient(820px 240px at 10% 0%, rgba(124,58,237,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.85));
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .footCard{
      border-radius: 22px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 50px rgba(20,35,80,.08);
      padding: 16px;
    }
    .footBrand{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .footBrand .logoCircle{
      width:50px;height:50px;border-radius:18px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border: 1px solid rgba(124,58,237,.22);
      display:grid;place-items:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .footBrand h3{margin:0; font-size: 16px; letter-spacing:-.02em}
    .footBrand p{margin:6px 0 0 0; color: var(--muted2); font-size: 13px; line-height:1.7}
    .footerLinks{
      margin-top: 12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footerLinks a{
      display:inline-flex;
      align-items:center;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.60);
      font-weight: 860;
      font-size: 12.5px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22); box-shadow: var(--shadow)}
    .footerLinks a:focus-visible{outline:3px solid var(--focus); outline-offset:2px}

    .copyrightRow{
      margin-top: 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color: rgba(31,41,55,.70);
      font-size: 12.8px;
    }
    .copyrightRow .right{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .smallLink{color: rgba(31,41,55,.72); font-weight:800}
    .smallLink:hover{color: rgba(124,58,237,.95)}

    .floatHelp{
      position:fixed;
      right: 14px;
      bottom: 16px;
      z-index: 60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .helpBtn{
      width: 46px; height: 46px;
      border-radius: 18px;
      border: 1px solid rgba(23,37,84,.14);
      background: rgba(255,255,255,.75);
      box-shadow: 0 18px 60px rgba(20,35,80,.14);
      display:grid; place-items:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
    }
    .helpBtn:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22); box-shadow: var(--shadow2)}
    .helpPanel{
      width: 240px;
      border-radius: 20px;
      border: 1px solid rgba(124,58,237,.18);
      background: rgba(255,255,255,.82);
      box-shadow: 0 24px 80px rgba(20,35,80,.18);
      padding: 12px;
      display:none;
      transform-origin: 90% 100%;
      animation: pop .18s ease both;
    }
    @keyframes pop {from{opacity:.2; transform: scale(.98) translateY(6px)} to{opacity:1; transform: scale(1) translateY(0)}}
    .helpPanel .hpTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .helpPanel h4{
      margin:0;
      font-size: 13.5px;
      letter-spacing:-.01em;
    }
    .helpPanel p{
      margin: 6px 0 0 0;
      color: var(--muted2);
      font-size: 12.6px;
      line-height:1.6;
    }
    .helpPanel .qr{
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.70);
      padding: 10px;
      display:grid;
      place-items:center;
    }
    .helpPanel img{
      max-width: 100%;
      height:auto;
      display:block;
      border-radius: 12px;
    }
    .helpPanel .hpActions{
      display:flex;
      gap:10px;
      margin-top:10px;
    }
    .helpPanel .hpActions .btn{
      flex:1;
      padding: 10px 10px;
      border-radius: 14px;
      box-shadow:none;
      background: rgba(255,255,255,.62);
    }

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

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

    .skip{
      position:absolute;
      left:-999px;
      top: 10px;
      z-index:999;
      padding:10px 12px;
      background:#111827;
      color:#fff;
      border-radius:12px;
    }
    .skip:focus{left: 12px}

    .divider{
      height:1px;
      background: rgba(23,37,84,.10);
      margin: 18px 0 0 0;
    }

    .anchorOffset{scroll-margin-top: 92px}
    .aiPosterTag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(23,37,84,.12);
      background: rgba(255,255,255,.60);
      color: rgba(31,41,55,.82);
      font-weight: 900;
      font-size: 12.2px;
    }
    .aiPosterTag i{width:10px;height:10px;border-radius:50%; background: linear-gradient(135deg, var(--brandA), var(--brandB)); box-shadow:0 0 0 6px rgba(124,58,237,.10)}

    @media (max-width: 980px){
      h1{font-size: 32px}
      .heroGrid{grid-template-columns: 1fr}
      .heroAside{min-height:auto}
      .processGrid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .compareWrap{grid-template-columns: 1fr}
      .solutionsGrid{grid-template-columns: repeat(3, minmax(0,1fr))}
      .timeline{grid-template-columns: repeat(2, minmax(0,1fr))}
      .faqGrid{grid-template-columns: 1fr}
      .reviewsGrid{grid-template-columns: 1fr}
      .articleGrid{grid-template-columns: 1fr}
      .sidePanel{position:relative; top:auto}
      .networkGrid{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      .reviewsGrid .review{min-height:auto}
      .floatHelp{right:10px; bottom:12px}
      .helpPanel{width: 220px}
      .cityGrid{grid-template-columns: repeat(2, minmax(0,1fr))}
    }
    @media (max-width: 860px){
      .nav{display:none}
      .hamburger{display:flex}
      .mobileNav{display:block}
    }
    @media (max-width: 560px){
      section{padding: 36px 0}
      h1{font-size: 28px}
      .heroCard{padding: 18px; min-height: auto}
      .heroAside{padding: 14px}
      .statsGrid{grid-template-columns: 1fr 1fr}
      .grid2{grid-template-columns: 1fr}
      .formGrid{grid-template-columns: 1fr}
      .solutionsGrid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .timeline{grid-template-columns: 1fr}
      .cityGrid{grid-template-columns: 1fr 1fr}
      .tableScroll{border-radius: 14px}
      table{min-width: 540px}
    }