:root{
      --bg0:#fbfaf7;
      --bg1:#f6f2ff;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b677a;
      --line:rgba(31,41,55,.10);
      --shadow:0 18px 50px rgba(16,24,40,.10);
      --shadow2:0 10px 28px rgba(16,24,40,.10);
      --radius:16px;
      --radius2:22px;
      --brandA:#6d28d9;
      --brandB:#0ea5e9;
      --brandC:#f97316;
      --brandD:#10b981;
      --brandE:#e11d48;
      --focus:rgba(109,40,217,.25);
      --btn:#111827;
      --btnText:#ffffff;
      --link:#0b5fff;
      --ok:#059669;
      --warn:#b45309;
      --chipBg:rgba(109,40,217,.10);
      --chipText:#4c1d95;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 520px at 15% -10%, rgba(109,40,217,.18), transparent 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(14,165,233,.16), transparent 55%),
        radial-gradient(900px 520px at 70% 40%, rgba(249,115,22,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 35%, var(--bg0) 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:1120px;
      margin:0 auto;
      padding:0 18px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(1.2) blur(12px);
      background:rgba(251,250,247,.70);
      border-bottom:1px solid rgba(31,41,55,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:10px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:210px;
    }
    .brand img{display:block}
    .brandText{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }
    .brandText strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brandText span{
      font-size:12px;
      color:var(--muted);
    }

    .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      font-size:13px;
      color:rgba(31,41,55,.82);
      padding:8px 10px;
      border-radius:12px;
      transition:background .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navLinks a:hover{
      background:rgba(109,40,217,.08);
      transform:translateY(-1px);
    }
    .navCTA{
      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(31,41,55,.12);
      background:rgba(255,255,255,.75);
      color:rgba(31,41,55,.92);
      font-weight:650;
      font-size:13px;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 34px rgba(16,24,40,.12);
      border-color:rgba(31,41,55,.18);
      background:#fff;
    }
    .btnPrimary{
      border-color:transparent;
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.92));
      color:#fff;
      box-shadow:0 18px 40px rgba(109,40,217,.22);
    }
    .btnPrimary:hover{
      box-shadow:0 22px 54px rgba(109,40,217,.28);
      border-color:transparent;
    }
    .btnGhost{
      background:rgba(255,255,255,.55);
    }

    .menuBtn{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.12);
      background:rgba(255,255,255,.70);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .menuBtn:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 40px rgba(16,24,40,.10);
      background:#fff;
    }
    .burger{
      width:18px;height:12px;position:relative;
    }
    .burger span{
      position:absolute;left:0;right:0;height:2px;border-radius:2px;background:rgba(31,41,55,.9);
      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}
    .menuBtn[data-open="true"] .burger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menuBtn[data-open="true"] .burger span:nth-child(2){opacity:0}
    .menuBtn[data-open="true"] .burger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding:12px 0 16px;
    }
    .mobilePanel .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:10px 0;
      border-top:1px solid rgba(31,41,55,.08);
    }
    .mobilePanel a{
      padding:11px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.60);
      border:1px solid rgba(31,41,55,.10);
      font-weight:630;
      font-size:13px;
      color:rgba(31,41,55,.92);
    }
    .mobilePanel a:active{transform:scale(.99)}
    .mobileCTAs{
      display:flex;
      gap:10px;
      margin-top:12px;
      flex-wrap:wrap;
    }

    .hero{
      position:relative;
      padding:26px 0 18px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.25fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .heroCard{
      border-radius:var(--radius2);
      background:
        radial-gradient(900px 420px at 20% 10%, rgba(109,40,217,.28), transparent 55%),
        radial-gradient(800px 420px at 90% 35%, rgba(14,165,233,.22), transparent 60%),
        radial-gradient(700px 420px at 65% 85%, rgba(249,115,22,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
      border:1px solid rgba(31,41,55,.10);
      box-shadow:var(--shadow2);
      padding:22px 20px 18px;
      overflow:hidden;
      position:relative;
      min-height:320px;
    }
    .heroCard:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 240px at 12% 16%, rgba(16,185,129,.16), transparent 62%),
        radial-gradient(380px 240px at 92% 8%, rgba(225,29,72,.14), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .heroInner{position:relative; z-index:1;}
    .heroTopLine{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.58);
      color:rgba(31,41,55,.88);
      font-weight:650;
      font-size:12px;
    }
    .dot{
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow:0 0 0 6px rgba(109,40,217,.12);
    }
    .hero h1{
      margin:6px 0 10px;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .heroLead{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.65;
      max-width:62ch;
    }
    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
    }
    .heroActions .fine{
      color:rgba(31,41,55,.70);
      font-size:12.5px;
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .spark{
      width:22px;height:22px;border-radius:10px;
      display:inline-flex; align-items:center; justify-content:center;
      border:1px solid rgba(31,41,55,.12);
      background:rgba(255,255,255,.70);
      box-shadow:0 10px 30px rgba(16,24,40,.08);
      transform:translateY(-1px);
    }
    .heroMetaRow{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:10px;
      margin-top:16px;
    }
    .miniStat{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.60);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
      min-height:78px;
    }
    .miniStat:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(16,24,40,.10);
      background:rgba(255,255,255,.78);
    }
    .miniStat strong{
      display:block;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .miniStat span{
      display:block;
      color:var(--muted);
      font-size:12.5px;
      margin-top:4px;
      line-height:1.4;
    }

    .heroSide{
      border-radius:var(--radius2);
      background:rgba(255,255,255,.65);
      border:1px solid rgba(31,41,55,.10);
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
      min-height:320px;
    }
    .heroSide:after{
      content:"";
      position:absolute;
      width:320px;height:320px;
      right:-140px; top:-140px;
      background:conic-gradient(from 200deg, rgba(109,40,217,.35), rgba(14,165,233,.30), rgba(249,115,22,.22), rgba(109,40,217,.35));
      filter:blur(0px);
      opacity:.35;
      border-radius:50%;
      pointer-events:none;
    }
    .sideInner{position:relative; z-index:1;}
    .sideTitle{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .sideTitle h2{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(109,40,217,.08);
      color:rgba(76,29,149,.95);
      font-weight:750;
      white-space:nowrap;
    }
    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:10px;
    }
    .stepRow{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.65);
      transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .stepRow:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.84);
      box-shadow:0 16px 40px rgba(16,24,40,.10);
    }
    .stepIcon{
      width:34px;height:34px;border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(31,41,55,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
      flex:0 0 auto;
    }
    .stepRow strong{
      display:block;
      font-size:13.5px;
      margin-top:1px;
    }
    .stepRow span{
      display:block;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.45;
      margin-top:4px;
    }

    .section{
      padding:18px 0;
    }
    .sectionHeader{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin:10px 0 12px;
    }
    .sectionHeader h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.3px;
    }
    .sectionHeader p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width:62ch;
    }
    .panel{
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 34px rgba(16,24,40,.08);
      overflow:hidden;
    }
    .panelInner{padding:16px}
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .grid4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }

    .card{
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.78);
      padding:14px;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 44px rgba(16,24,40,.12);
      background:#fff;
    }
    .card h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .card .chipRow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(109,40,217,.07);
      color:rgba(76,29,149,.95);
      font-weight:700;
      font-size:12px;
      white-space:nowrap;
    }
    .chip.alt{
      background:rgba(14,165,233,.08);
      color:rgba(7,89,133,.95);
    }
    .chip.alt2{
      background:rgba(249,115,22,.10);
      color:rgba(124,45,18,.98);
    }
    .chip.ok{
      background:rgba(16,185,129,.10);
      color:rgba(6,95,70,.98);
    }

    .serviceList{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .featureList{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:4px;
    }
    .liCard{
      display:flex;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.74);
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .liCard:hover{
      transform:translateY(-2px);
      background:#fff;
      box-shadow:0 16px 40px rgba(16,24,40,.10);
    }
    .liIcon{
      width:40px;height:40px;border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(31,41,55,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.56));
      flex:0 0 auto;
    }
    .liCard strong{
      display:block;
      font-size:13.8px;
      letter-spacing:-.2px;
    }
    .liCard span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.55;
    }

    .comparisonWrap{
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:920px;
    }
    th, td{
      text-align:left;
      padding:12px 12px;
      border-bottom:1px solid rgba(31,41,55,.08);
      vertical-align:top;
      font-size:13px;
    }
    th{
      font-size:13px;
      color:rgba(31,41,55,.86);
      background:rgba(255,255,255,.55);
      position:sticky;
      top:0;
      z-index:1;
      border-bottom:1px solid rgba(31,41,55,.12);
    }
    tr:hover td{
      background:rgba(109,40,217,.05);
    }
    .scoreCell{
      display:flex; align-items:center; gap:10px;
    }
    .rating{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.70);
      font-weight:800;
      white-space:nowrap;
    }
    .stars{
      letter-spacing:1px;
      color:#d97706;
      font-size:12.5px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      font-weight:800;
      font-size:12.5px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(16,185,129,.10);
      color:rgba(6,95,70,.98);
      white-space:nowrap;
    }

    .timelineChips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }

    .casesGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .caseCard{
      padding:14px;
      border-radius:20px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.76);
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height:196px;
    }
    .caseCard:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 44px rgba(16,24,40,.12);
      background:#fff;
    }
    .caseTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .caseTitle{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .caseMeta{
      color:var(--muted);
      font-size:12.5px;
      margin-top:4px;
      line-height:1.4;
    }
    .caseTags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:auto;
    }

    .articleList{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .articleItem{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.74);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .articleItem:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 40px rgba(16,24,40,.10);
      background:#fff;
    }
    .articleItem strong{
      font-size:13.8px;
      letter-spacing:-.2px;
      display:block;
      margin-top:2px;
    }
    .articleItem span{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.55;
      display:block;
      margin-top:6px;
      max-width:62ch;
    }
    .arrow{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.70);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      transition:transform .2s ease;
    }
    .articleItem:hover .arrow{transform:translateX(2px)}
    .articleItem a{display:block}

    .faqGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:start;
    }
    .faqList{
      display:flex; flex-direction:column; gap:10px;
    }
    details.faqItem{
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.74);
      padding:10px 12px;
      transition:background .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    details.faqItem[open]{
      background:#fff;
      box-shadow:0 16px 40px rgba(16,24,40,.10);
      transform:translateY(-2px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
      padding:2px 0;
    }
    summary::-webkit-details-marker{display:none}
    .qText{
      font-weight:800;
      font-size:13.8px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .chev{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.70);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      transition:transform .2s ease;
      margin-top:-2px;
    }
    details[open] .chev{transform:rotate(180deg)}
    .aText{
      color:var(--muted);
      font-size:13.1px;
      line-height:1.7;
      padding:8px 0 4px;
    }
    .faqAside{
      position:sticky;
      top:78px;
      align-self:start;
    }

    .advisorBox{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(520px 220px at 15% 0%, rgba(109,40,217,.18), transparent 60%),
        radial-gradient(480px 240px at 100% 10%, rgba(14,165,233,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow:0 12px 34px rgba(16,24,40,.08);
    }
    .advisorBox h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .advisorBox p{margin:8px 0 0; color:var(--muted); font-size:13.2px; line-height:1.65}
    .advisorList{
      margin:12px 0 0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .advisorItem{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.66);
    }
    .advisorItem strong{display:block; font-size:13.2px}
    .advisorItem span{display:block; color:var(--muted); font-size:12.6px; margin-top:3px; line-height:1.55}
    .kbd{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
      font-size:12px;
      padding:5px 8px;
      border-radius:10px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.74);
      color:rgba(31,41,55,.86);
      white-space:nowrap;
    }

    .commentsGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .commentCard{
      border-radius:20px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.76);
      padding:14px;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
      min-height:200px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .commentCard:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 44px rgba(16,24,40,.12);
      background:#fff;
    }
    .commentTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:44px;height:44px;border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:linear-gradient(180deg, rgba(109,40,217,.16), rgba(14,165,233,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(76,29,149,.98);
      flex:0 0 auto;
    }
    .commentRole{
      color:var(--muted);
      font-size:12.5px;
      margin-top:5px;
      line-height:1.35;
    }
    .commentText{
      color:rgba(31,41,55,.92);
      font-size:13.2px;
      line-height:1.7;
      margin:0;
    }
    .commentBottom{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted);
      font-size:12.4px;
    }

    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    form{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 12px 34px rgba(16,24,40,.08);
    }
    .formRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    label{
      display:block;
      font-size:12.8px;
      color:rgba(31,41,55,.86);
      font-weight:750;
      margin-bottom:6px;
    }
    input, select, textarea{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.14);
      background:rgba(255,255,255,.88);
      color:rgba(31,41,55,.95);
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
      font-size:13.5px;
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(109,40,217,.45);
      box-shadow:0 0 0 5px var(--focus);
    }
    .formFooter{
      margin-top:12px;
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .smallNote{
      color:var(--muted);
      font-size:12.4px;
      line-height:1.5;
      max-width:52ch;
    }

    .networkGrid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .networkCard{
      border-radius:20px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.75);
      padding:14px;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
      min-height:142px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .networkCard:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 44px rgba(16,24,40,.12);
      background:#fff;
    }
    .networkCard strong{font-size:14.2px}
    .networkCard span{color:var(--muted); font-size:12.8px; line-height:1.6; margin-top:auto}

    .priceBox{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(520px 220px at 0% 0%, rgba(249,115,22,.14), transparent 60%),
        radial-gradient(500px 240px at 100% 10%, rgba(14,165,233,.12), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow:0 12px 34px rgba(16,24,40,.08);
    }
    .segTabs{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:8px;
    }
    .seg{
      border-radius:999px;
      border:1px solid rgba(31,41,55,.12);
      background:rgba(255,255,255,.70);
      padding:8px 10px;
      font-weight:780;
      font-size:12.8px;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
      user-select:none;
    }
    .seg:hover{
      transform:translateY(-1px);
      background:#fff;
      box-shadow:0 14px 34px rgba(16,24,40,.10);
      border-color:rgba(31,41,55,.18);
    }
    .seg[data-active="true"]{
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.92));
      color:#fff;
      border-color:transparent;
      box-shadow:0 18px 40px rgba(109,40,217,.22);
    }
    .priceRows{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .priceRow{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.72);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .priceRow:hover{
      transform:translateY(-2px);
      background:#fff;
      box-shadow:0 16px 40px rgba(16,24,40,.10);
    }
    .priceRow strong{font-size:13.8px}
    .priceRow .sub{color:var(--muted); font-size:12.6px; margin-top:6px; line-height:1.5}
    .refPrice{
      text-align:right;
      white-space:nowrap;
      font-weight:920;
      letter-spacing:-.2px;
      color:rgba(31,41,55,.95);
    }
    .refPrice span{
      display:block;
      font-weight:750;
      color:var(--muted);
      font-size:12.2px;
      margin-top:4px;
    }

    .floatContact{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      width:52px;height:52px;border-radius:18px;
      border:1px solid rgba(31,41,55,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 46px rgba(16,24,40,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
      user-select:none;
    }
    .floatBtn:hover{
      transform:translateY(-2px);
      background:#fff;
      box-shadow:0 22px 60px rgba(16,24,40,.14);
    }
    .floatPanel{
      width:260px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 26px 70px rgba(16,24,40,.18);
      overflow:hidden;
      display:none;
    }
    .floatPanel[data-open="true"]{display:block}
    .floatHeader{
      padding:12px 12px;
      background:
        radial-gradient(500px 200px at 10% 0%, rgba(109,40,217,.18), transparent 60%),
        radial-gradient(450px 220px at 100% 0%, rgba(14,165,233,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
      border-bottom:1px solid rgba(31,41,55,.10);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .floatHeader strong{font-size:13.6px; letter-spacing:-.2px}
    .closeX{
      width:36px;height:36px;border-radius:14px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.80);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease;
      user-select:none;
    }
    .closeX:hover{transform:translateY(-1px); background:#fff}
    .floatBody{padding:12px}
    .kefuRow{display:flex; gap:12px; align-items:flex-start}
    .qrcode{
      width:82px; height:82px; border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.70);
      overflow:hidden;
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .qrcode img{width:100%; height:auto; display:block}
    .floatText strong{display:block; font-size:13.3px; letter-spacing:-.2px}
    .floatText span{display:block; margin-top:4px; color:var(--muted); font-size:12.6px; line-height:1.5}
    .floatLinks{
      display:flex;
      gap:10px;
      margin-top:12px;
      flex-wrap:wrap;
    }

    footer{
      padding:20px 0 26px;
      border-top:1px solid rgba(31,41,55,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.80));
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:12px;
      align-items:start;
    }
    .footerCard{
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.76);
      padding:14px;
    }
    .footerCard h3{margin:0; font-size:14.8px}
    .footerCard p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.65}
    .footerLinks{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .footerLinks a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.70);
      font-weight:780;
      font-size:12.6px;
      color:rgba(31,41,55,.88);
      transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{
      transform:translateY(-2px);
      background:#fff;
      box-shadow:0 16px 40px rgba(16,24,40,.10);
    }
    .footerBottom{
      margin-top:12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(31,41,55,.74);
      font-size:12.6px;
    }
    .copyright{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .sep{width:5px;height:5px;border-radius:50%; background:rgba(31,41,55,.25)}
    .toTop{
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.12);
      background:rgba(255,255,255,.70);
      cursor:pointer;
      font-weight:800;
      font-size:12.8px;
      transition:transform .2s ease, background .2s ease;
      user-select:none;
    }
    .toTop:hover{transform:translateY(-2px); background:#fff}

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      .heroSide{min-height:auto}
      .heroCard{min-height:auto}
      .heroMetaRow{grid-template-columns:1fr; }
      .grid3{grid-template-columns:1fr;}
      .grid2{grid-template-columns:1fr;}
      .grid4{grid-template-columns:1fr 1fr;}
      .serviceList{grid-template-columns:1fr;}
      .casesGrid{grid-template-columns:1fr;}
      .commentsGrid{grid-template-columns:1fr;}
      .faqGrid{grid-template-columns:1fr;}
      .faqAside{position:relative; top:auto}
      .networkGrid{grid-template-columns:1fr 1fr;}
      .formGrid{grid-template-columns:1fr;}
      .footerGrid{grid-template-columns:1fr;}
      table{min-width:820px;}
    }
    @media (max-width: 820px){
      .navLinks{display:none}
      .navCTA{display:none}
      .menuBtn{display:flex}
      .mobilePanel{display:block}
      .floatPanel{width:240px}
      .hero h1{font-size:28px}
      .sectionHeader{flex-direction:column; align-items:flex-start}
    }