:root{
      --bg0:#fbf7ff;
      --bg1:#f6f8ff;
      --card:#ffffffcc;
      --cardSolid:#ffffff;
      --text:#1b1f2a;
      --muted:#556071;
      --muted2:#6a7686;
      --line:rgba(19, 27, 45, .10);
      --shadow: 0 18px 40px rgba(17, 24, 39, .10);
      --shadow2: 0 10px 26px rgba(17, 24, 39, .12);
      --radius:18px;
      --radius2:26px;

      --brand1:#7c3aed;
      --brand2:#06b6d4;
      --brand3:#22c55e;
      --brand4:#f97316;
      --accent:#4f46e5;

      --btn:#111827;
      --btnText:#ffffff;
      --btn2:#ffffff;
      --btn2Text:#0f172a;
      --focus: rgba(79,70,229,.25);

      --container: 1140px;
      --pad: 20px;

      --glow: radial-gradient(650px circle at 12% 10%, rgba(124,58,237,.22), transparent 55%),
              radial-gradient(520px circle at 78% 20%, rgba(6,182,212,.20), transparent 55%),
              radial-gradient(620px circle at 62% 92%, rgba(34,197,94,.16), transparent 55%);
      --mesh: linear-gradient(110deg, rgba(124,58,237,.10) 0%, rgba(6,182,212,.10) 35%, rgba(249,115,22,.09) 68%, rgba(34,197,94,.10) 100%);
      --heroGrad: linear-gradient(135deg, rgba(124,58,237,.16) 0%, rgba(6,182,212,.14) 42%, rgba(249,115,22,.12) 80%);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        var(--glow),
        linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #ffffff 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{
      width:min(var(--container), calc(100% - var(--pad)*2));
      margin:0 auto;
    }

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

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.64);
      border-bottom:1px solid rgba(19,27,45,.08);
    }

    .navBar{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .brand img{
      width:42px; height:42px; border-radius:12px;
      object-fit:cover;
      box-shadow: 0 10px 26px rgba(79,70,229,.16);
      border: 1px solid rgba(124,58,237,.18);
      background: rgba(255,255,255,.85);
    }
    .brandWrap{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brandName{
      font-weight:820; letter-spacing:.2px;
      font-size:14px;
    }
    .brandSub{
      color:var(--muted);
      font-size:12px;
      margin-top:4px;
      white-space:nowrap;
    }

    nav .menu{
      display:flex; align-items:center; justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .navLink{
      padding:9px 10px;
      border-radius:12px;
      color: rgba(17,24,39,.84);
      border: 1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      font-size:13px;
      white-space:nowrap;
    }
    .navLink:hover{
      background: rgba(124,58,237,.08);
      border-color: rgba(124,58,237,.18);
      transform: translateY(-1px);
    }

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

    .btn{
      border:1px solid transparent;
      border-radius:14px;
      padding:10px 14px;
      font-weight:750;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      display:inline-flex; align-items:center; gap:10px;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
    }
    .btn:focus{
      outline:none;
      box-shadow: 0 0 0 4px var(--focus);
    }
    .btnPrimary{
      background: linear-gradient(135deg, rgba(79,70,229,1) 0%, rgba(124,58,237,1) 45%, rgba(6,182,212,1) 110%);
      color: var(--btnText);
      box-shadow: 0 14px 36px rgba(79,70,229,.26);
      border-color: rgba(79,70,229,.24);
    }
    .btnPrimary:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 48px rgba(79,70,229,.30);
    }
    .btnGhost{
      background: rgba(255,255,255,.72);
      color: rgba(15,23,42,.92);
      border-color: rgba(17,24,39,.10);
    }
    .btnGhost:hover{
      transform: translateY(-1px);
      border-color: rgba(79,70,229,.24);
      background: rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(17,24,39,.10);
    }
    .btnSmall{
      padding:9px 12px; border-radius:12px; font-size:13px;
    }

    .hamburger{
      display:none;
      width:44px; height:40px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .hamburger:hover{
      transform: translateY(-1px);
      border-color: rgba(79,70,229,.24);
      background: rgba(255,255,255,.98);
    }
    .hamburger svg{opacity:.9}

    .mobilePanel{
      display:none;
      padding-bottom: 12px;
    }
    .mobilePanelInner{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      border-radius: 18px;
      padding: 10px;
      box-shadow: 0 18px 40px rgba(17, 24, 39, .10);
    }
    .mobileMenuGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:8px;
      padding:6px;
    }
    .mobileMenuGrid a{
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.66);
      font-size:13px;
      color: rgba(17,24,39,.88);
    }
    .mobileMenuGrid a:active{transform: scale(.99)}
    .mobilePanelCtas{
      display:flex; gap:10px; padding:8px 6px 6px;
      flex-wrap:wrap;
    }

    main{padding: 18px 0 38px}

    .hero{
      position:relative;
      overflow:hidden;
      border-radius: var(--radius2);
      border: 1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(1200px circle at 10% 0%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(900px circle at 85% 10%, rgba(6,182,212,.16), transparent 55%),
        radial-gradient(900px circle at 60% 110%, rgba(249,115,22,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.55));
      box-shadow: 0 28px 70px rgba(79,70,229,.10);
    }
    .hero::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(124,58,237,.40), rgba(6,182,212,.32), rgba(249,115,22,.28), rgba(34,197,94,.30));
      opacity:.22;
      filter: blur(24px);
      pointer-events:none;
    }
    .hero::after{
      content:"";
      position:absolute; inset:0;
      background: var(--mesh);
      opacity:.45;
      pointer-events:none;
    }

    .heroInner{
      position:relative;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      padding: 26px;
      align-items: start;
    }

    .eyebrow{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      color: rgba(15,23,42,.88);
      font-size:13px;
      font-weight:700;
      margin-bottom:14px;
    }
    .dot{
      width:10px; height:10px; border-radius:99px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 22px rgba(124,58,237,.30);
    }

    h1{
      font-size: 40px;
      margin: 6px 0 10px;
      letter-spacing: -0.8px;
      line-height: 1.12;
    }
    .hero p{
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      max-width: 58ch;
    }

    .heroCtas{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
      margin: 18px 0 10px;
    }
    .metaRow{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top: 12px;
    }
    .metaChip{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.65);
      color: rgba(15,23,42,.90);
      font-size:13px;
      font-weight:700;
    }
    .metaIcon{
      width:30px; height:30px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(79,70,229,.18), rgba(6,182,212,.16));
      border: 1px solid rgba(79,70,229,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .metaChip small{
      display:block; font-weight:650; color: var(--muted2); font-size:12px; margin-top:2px;
    }

    .heroRight{
      display:flex; flex-direction:column; gap:12px;
    }

    .dataGrid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat{
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.64);
      padding: 14px 14px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
      transform: translateZ(0);
    }
    .stat::before{
      content:"";
      position:absolute; inset:-60px -80px auto auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.30), transparent 60%);
      transform: rotate(18deg);
      pointer-events:none;
      opacity:.9;
    }
    .stat strong{
      font-size: 20px;
      letter-spacing:-.2px;
      display:block;
      margin-bottom:6px;
    }
    .stat span{
      color: var(--muted);
      font-size: 13px;
      line-height:1.5;
      display:block;
      position:relative;
    }

    .heroPanel{
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      padding: 14px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      overflow:hidden;
      position:relative;
    }
    .heroPanel::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(120deg, rgba(124,58,237,.16), transparent 40%),
        linear-gradient(240deg, rgba(6,182,212,.14), transparent 45%);
      opacity:.55;
      pointer-events:none;
    }
    .heroPanelHead{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      position:relative;
    }
    .heroPanelHead h2{
      margin:0;
      font-size:14px;
      color: rgba(17,24,39,.92);
      letter-spacing:.2px;
    }
    .heroPanelHead p{
      margin:6px 0 0;
      color: var(--muted);
      font-size:13px; line-height:1.6;
      max-width: 30ch;
    }
    .badge{
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(79,70,229,.22);
      background: rgba(79,70,229,.10);
      color: rgba(55,48,163,.98);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }

    .selector{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top: 12px;
      position:relative;
    }
    .pill{
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      padding: 10px 10px;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
      display:flex; align-items:flex-start; gap:10px;
      min-height: 62px;
    }
    .pill:hover{transform: translateY(-1px); border-color: rgba(79,70,229,.22); background: rgba(255,255,255,.90)}
    .pill[aria-pressed="true"]{
      border-color: rgba(79,70,229,.40);
      background: rgba(79,70,229,.10);
      box-shadow: 0 18px 40px rgba(79,70,229,.12);
    }
    .pillIcon{
      width:30px; height:30px;
      border-radius: 12px;
      border: 1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.10));
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .pill strong{
      display:block; font-size:13px;
      margin: 0;
      line-height:1.2;
      font-weight:900;
    }
    .pill span{
      display:block; font-size:12px;
      color: var(--muted);
      margin-top:6px;
      line-height:1.35;
    }

    .section{
      padding: 22px 0;
    }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom: 14px;
    }
    .sectionHead h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -0.3px;
      line-height:1.25;
    }
    .sectionHead p{
      margin:0;
      color: var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width: 62ch;
    }

    .cardGrid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(17,24,39,.10);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transform: translateZ(0);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 26px 60px rgba(17,24,39,.10);
    }

    .span4{grid-column: span 4}
    .span5{grid-column: span 5}
    .span6{grid-column: span 6}
    .span7{grid-column: span 7}
    .span8{grid-column: span 8}
    .span12{grid-column: span 12}

    .kTitle{
      display:flex; align-items:center; gap:10px;
      margin-bottom:10px;
    }
    .kIcon{
      width:36px; height:36px; border-radius:14px;
      border: 1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .card h3{
      margin:0;
      font-size: 15px;
      letter-spacing: -.1px;
    }
    .card p{
      margin: 0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.7;
    }

    .list{
      margin: 10px 0 0;
      padding: 0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(15,23,42,.92);
      font-size:13.5px;
      line-height:1.6;
    }
    .tick{
      width:18px; height:18px;
      border-radius: 6px;
      background: rgba(34,197,94,.14);
      border: 1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .step{
      grid-column: span 3;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      position:relative;
      overflow:hidden;
      min-height: 168px;
    }
    .step::after{
      content:"";
      position:absolute;
      right:-46px; top:-46px;
      width:100px; height:100px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.25), transparent 60%);
      opacity:.9;
      pointer-events:none;
      transform: rotate(18deg);
    }
    .stepNum{
      width:34px; height:34px; border-radius: 14px;
      border: 1px solid rgba(79,70,229,.20);
      background: rgba(79,70,229,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      letter-spacing:.2px;
    }
    .step h3{margin: 10px 0 8px; font-size:15px}
    .step p{margin:0; color: var(--muted); font-size:13.5px; line-height:1.7}

    .compareWrap{
      border-radius: var(--radius2);
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 48px rgba(17,24,39,.08);
      padding: 14px;
    }

    .table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius: 16px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.86);
    }
    .table th, .table td{
      padding: 12px 12px;
      font-size: 13.5px;
      border-bottom: 1px solid rgba(17,24,39,.08);
      vertical-align: top;
    }
    .table th{
      background: linear-gradient(135deg, rgba(79,70,229,.10), rgba(6,182,212,.08));
      color: rgba(15,23,42,.92);
      text-align:left;
      font-weight:900;
    }
    .table td{color: rgba(15,23,42,.88)}
    .table tr:last-child td{border-bottom:none}
    .tagRow{display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      padding: 7px 10px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      color: rgba(15,23,42,.86);
      font-weight:800;
      font-size:12.5px;
      white-space:nowrap;
    }
    .tagGood{
      border-color: rgba(34,197,94,.20);
      background: rgba(34,197,94,.10);
      color: rgba(20,83,45,.98);
    }
    .tagBrand{
      border-color: rgba(79,70,229,.22);
      background: rgba(79,70,229,.10);
      color: rgba(55,48,163,.98);
    }
    .tagWarn{
      border-color: rgba(249,115,22,.22);
      background: rgba(249,115,22,.10);
      color: rgba(124,45,18,.98);
    }

    .segmented{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
      margin-top: 10px;
    }
    .segBtn{
      border-radius: 999px;
      padding: 9px 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      font-size:13px;
      font-weight:900;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .segBtn:hover{transform: translateY(-1px); border-color: rgba(79,70,229,.22); background: rgba(255,255,255,.95)}
    .segBtn[aria-pressed="true"]{
      border-color: rgba(79,70,229,.40);
      background: rgba(79,70,229,.12);
      box-shadow: 0 18px 40px rgba(79,70,229,.10);
    }

    .reviewGrid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .reviewCard{
      grid-column: span 4;
      padding: 16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(17,24,39,.10);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    .reviewCard:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 26px 60px rgba(17,24,39,.10);
    }
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .avatar{
      width:42px; height:42px; border-radius: 16px;
      border: 1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(15,23,42,.88);
    }
    .stars{
      display:flex; gap:3px; align-items:center;
      color: rgba(249,115,22,.98);
      font-weight:900;
      font-size:12px;
    }
    .reviewCard h3{
      margin: 0 0 6px;
      font-size: 14.5px;
      letter-spacing:-.1px;
    }
    .reviewCard p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.7;
    }

    .timeline{
      border-radius: var(--radius2);
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      padding: 14px;
      overflow:hidden;
    }
    .timelineGrid{
      display:grid; grid-template-columns: repeat(12, 1fr);
      gap:14px;
      align-items: start;
    }
    .timeItem{
      grid-column: span 4;
      border-radius: var(--radius);
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.80);
      padding: 14px;
      position:relative;
      overflow:hidden;
      min-height: 146px;
    }
    .timeItem::before{
      content:"";
      position:absolute; inset:-2px;
      background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(6,182,212,.08), transparent 70%);
      opacity:.8;
      pointer-events:none;
    }
    .timeItem > *{position:relative}
    .timeHead{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .timeHead strong{font-size:14.5px}
    .timeDot{
      width:14px; height:14px; border-radius: 99px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 22px rgba(124,58,237,.26);
      border:1px solid rgba(255,255,255,.6);
    }
    .timeItem p{margin:0; color: var(--muted); font-size:13.5px; line-height:1.7}

    .articleList{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .articleCard{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      padding: 16px;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .articleCard:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 26px 60px rgba(17,24,39,.10);
    }
    .articleTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .articleCard h3{
      margin:0;
      font-size: 15px;
      letter-spacing:-.1px;
      line-height:1.45;
    }
    .articleCard p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .articleMeta{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top:auto;
      color: var(--muted2);
      font-size:12.5px;
      font-weight:800;
    }

    .formWrap{
      display:grid; grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    form{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 48px rgba(17,24,39,.08);
      padding: 16px;
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top: 10px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      color: rgba(15,23,42,.92);
      font-weight:850;
      font-size:12.5px;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.14);
      background: rgba(255,255,255,.92);
      color: rgba(15,23,42,.92);
      outline:none;
      font-size: 14px;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    }
    textarea{min-height: 104px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(79,70,229,.44);
      box-shadow: 0 0 0 4px var(--focus);
    }
    .span2{grid-column: span 2}
    .formActions{
      display:flex; gap:12px; align-items:center; justify-content:space-between;
      margin-top: 12px;
      flex-wrap:wrap;
    }
    .hint{
      color: var(--muted);
      font-size: 12.8px;
      line-height:1.6;
      max-width: 40ch;
      font-weight:700;
    }

    .sideInfo{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 48px rgba(17,24,39,.07);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .sideInfo::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(540px circle at 10% 10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(420px circle at 88% 22%, rgba(6,182,212,.16), transparent 52%);
      opacity:.9;
      pointer-events:none;
    }
    .sideInfo > *{position:relative}
    .qrRow{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top: 10px;
    }
    .qrRow img{
      width: 120px;
      height:auto;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.9);
      box-shadow: 0 18px 40px rgba(17,24,39,.08);
    }
    .sideInfo p{margin: 8px 0 0; color: var(--muted); font-size:13.5px; line-height:1.7}
    .contactLine{
      display:flex; gap:10px; align-items:flex-start; margin-top: 12px;
      border-top: 1px dashed rgba(17,24,39,.14);
      padding-top: 12px;
    }
    .contactLine strong{font-size:13.5px}
    .contactLine span{color: var(--muted); font-size:13.5px; line-height:1.6; font-weight:750}

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faqCol{
      display:flex; flex-direction:column; gap:12px;
    }
    details.faqItem{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      padding: 12px 14px;
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease;
    }
    details.faqItem[open]{
      border-color: rgba(79,70,229,.28);
      transform: translateY(-1px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      color: rgba(15,23,42,.92);
      font-size: 14px;
      line-height:1.5;
    }
    summary::-webkit-details-marker{display:none}
    .faqArrow{
      width:34px; height:34px; border-radius: 14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    details[open] .faqArrow{
      transform: rotate(90deg);
      border-color: rgba(79,70,229,.30);
      background: rgba(79,70,229,.10);
    }
    .faqBody{
      margin-top: 10px;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.75;
      font-weight:700;
    }

    .clientsWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      padding: 14px;
      box-shadow: 0 18px 48px rgba(17,24,39,.07);
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .caseCard{
      grid-column: span 4;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      min-height: 190px;
      display:flex; flex-direction:column; gap:10px;
    }
    .caseCard:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 26px 60px rgba(17,24,39,.10);
    }
    .caseCard h3{margin:0; font-size:15px}
    .caseCard p{margin:0; color: var(--muted); font-size:13.5px; line-height:1.7}
    .caseFooter{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }

    .priceCards{
      display:grid; grid-template-columns: repeat(12, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .priceCard{
      grid-column: span 6;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 48px rgba(17,24,39,.07);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .priceCard::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(600px circle at 20% 10%, rgba(124,58,237,.18), transparent 55%),
                  radial-gradient(520px circle at 90% 30%, rgba(6,182,212,.16), transparent 55%);
      opacity:.95;
      pointer-events:none;
    }
    .priceCard > *{position:relative}
    .priceTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
    }
    .priceCard h3{margin:0; font-size:15.5px}
    .priceRow{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:10px;
      margin-top: 10px;
    }
    .miniMetric{
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      padding: 12px;
      min-height: 86px;
    }
    .miniMetric strong{
      display:block;
      font-size: 16px;
      letter-spacing:-.2px;
      margin-bottom: 6px;
    }
    .miniMetric span{
      color: var(--muted);
      font-size: 12.8px;
      line-height:1.55;
      font-weight:750;
      display:block;
    }

    .networkGrid{
      display:grid; grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .networkCard{
      grid-column: span 4;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      padding: 16px;
      min-height: 176px;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      position:relative;
      overflow:hidden;
    }
    .networkCard:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 26px 60px rgba(17,24,39,.10);
    }
    .networkCard h3{margin:0; font-size:15px}
    .networkCard p{margin:8px 0 0; color: var(--muted); font-size:13.5px; line-height:1.7}
    .cityList{
      margin: 12px 0 0;
      padding: 0;
      list-style:none;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .cityList li{
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      color: rgba(15,23,42,.86);
      font-weight:850;
      font-size:12.5px;
    }

    .footer{
      background: rgba(255,255,255,.70);
      border-top:1px solid rgba(17,24,39,.10);
      padding: 18px 0 22px;
      margin-top: 6px;
    }
    .footerInner{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .footerCol{
      flex: 1 1 260px;
      min-width: 240px;
    }
    .footerTitle{
      font-weight:950;
      margin: 6px 0 10px;
      letter-spacing:-.2px;
    }
    .footerText{
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.8;
      margin:0;
      font-weight:720;
    }
    .footerLinks{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top: 12px;
    }
    .footerLinks a{
      padding: 9px 10px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      font-weight:900;
      font-size:12.8px;
      color: rgba(15,23,42,.88);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footerLinks a:hover{
      transform: translateY(-1px);
      border-color: rgba(79,70,229,.22);
      background: rgba(255,255,255,.98);
    }
    .fineprint{
      margin-top: 14px;
      border-top: 1px dashed rgba(17,24,39,.14);
      padding-top: 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      color: var(--muted2);
      font-weight:800;
      font-size: 12.6px;
    }

    .floating{
      position:fixed;
      right: 16px;
      bottom: 18px;
      z-index: 60;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatBtn{
      pointer-events:auto;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 48px rgba(17,24,39,.12);
      width: 46px; height: 46px;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .floatBtn:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      background: rgba(255,255,255,.98);
    }
    .floatBtn span{
      position:absolute;
      right: 56px;
      background: rgba(17,24,39,.92);
      color:#fff;
      padding: 8px 10px;
      border-radius: 12px;
      font-size: 12.5px;
      font-weight:900;
      opacity:0;
      transform: translateX(8px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      white-space:nowrap;
    }
    .floatBtn:hover span{
      opacity:1;
      transform: translateX(0);
    }

    .toast{
      position: fixed;
      left: 50%;
      bottom: 86px;
      transform: translateX(-50%);
      z-index: 80;
      background: rgba(17,24,39,.92);
      color:#fff;
      padding: 10px 12px;
      border-radius: 14px;
      font-weight:900;
      font-size: 13px;
      box-shadow: 0 18px 48px rgba(17,24,39,.18);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      max-width: calc(100% - 26px);
      text-align:center;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-4px);
    }

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

    @media (max-width: 980px){
      h1{font-size: 34px}
      .heroInner{grid-template-columns: 1fr; padding: 20px}
      .heroRight{order: 2}
      .dataGrid{grid-template-columns: 1fr 1fr}
      .step{grid-column: span 6}
      .span4,.span5,.span6,.span7,.span8{grid-column: span 12}
      .reviewCard{grid-column: span 6}
      .caseCard{grid-column: span 6}
      .priceCard{grid-column: span 12}
      .networkCard{grid-column: span 6}
      .formWrap{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .articleList{grid-template-columns: 1fr}
      .mobilePanel{display:block}
      nav .menu{display:none}
      .hamburger{display:flex}
      .navCtas .btnGhost{display:none}
      .mobilePanel{display:none}
      .mobilePanel.open{display:block}
      .mobileMenuGrid{grid-template-columns: 1fr}
    }
    @media (max-width: 560px){
      :root{--pad:16px}
      h1{font-size: 28px}
      .dataGrid{grid-template-columns: 1fr}
      .step{grid-column: span 12}
      .reviewCard{grid-column: span 12}
      .caseCard{grid-column: span 12}
      .networkCard{grid-column: span 12}
      .fields{grid-template-columns: 1fr}
      .span2{grid-column: span 1}
      .priceRow{grid-template-columns: 1fr}
    }

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