:root{
      --bg0:#f7fafc;
      --bg1:#f2fbff;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#5b6b7f;
      --muted2:#7b8aa0;
      --line:rgba(15,23,42,.10);
      --line2:rgba(15,23,42,.14);
      --brand1:#00b8d4;
      --brand2:#1f7ae0;
      --brand3:#2ad6b7;
      --brand4:#0ea5e9;
      --accent:#0ea5e9;
      --good:#16a34a;
      --warn:#f59e0b;
      --shadow: 0 14px 40px rgba(2,20,38,.10);
      --shadow2: 0 8px 22px rgba(2,20,38,.10);
      --radius:16px;
      --radius2:22px;
      --max:1120px;
      --pad:18px;
      --top:84px;
      --focus: 0 0 0 4px rgba(14,165,233,.18);
      --chip: rgba(0,184,212,.10);
    }
    *{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 SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(800px 420px at 20% -10%, rgba(0,184,212,.18), transparent 60%),
        radial-gradient(700px 380px at 90% 0%, rgba(31,122,224,.14), transparent 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0));
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 var(--pad);
    }
    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:14px; top:14px; width:auto; height:auto; z-index:1000;
      background:#fff; border:1px solid var(--line2); padding:10px 12px; border-radius:12px; box-shadow: var(--shadow2);
      outline:none;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(247,250,252,.72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .navwrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width: 210px;
    }
    .ai-page-logo{
      width:44px; height:44px; object-fit:contain;
      filter: drop-shadow(0 8px 16px rgba(0,184,212,.18));
    }
    .brandtext{display:flex; flex-direction:column; line-height:1.1}
    .brandtext strong{font-size:14px; letter-spacing:.2px}
    .brandtext span{font-size:12px; color:var(--muted); margin-top:4px}

    nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
    .navlinks{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
    }
    .navlinks a{
      font-size:13px; color:var(--muted);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background: rgba(14,165,233,.07);
      border-color: rgba(14,165,233,.18);
      color:#0b4e6a;
      transform: translateY(-1px);
    }
    .navright{
      display:flex; align-items:center; gap:10px;
    }
    .primary{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(0,184,212,.34);
      background: linear-gradient(135deg, rgba(0,184,212,.18), rgba(31,122,224,.12)) , #fff;
      box-shadow: 0 10px 26px rgba(2,20,38,.08);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      font-weight:700;
      font-size:13px;
      color:#0a3a58;
      white-space:nowrap;
    }
    .primary:hover{
      transform: translateY(-1px);
      border-color: rgba(0,184,212,.50);
      box-shadow: 0 16px 34px rgba(2,20,38,.12);
    }
    .primary:focus{outline:none; box-shadow: var(--focus), 0 16px 34px rgba(2,20,38,.12)}
    .ghost{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.65);
      color:var(--text);
      font-weight:600;
      font-size:13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      white-space:nowrap;
    }
    .ghost:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.35); background: rgba(255,255,255,.9)}
    .ghost:focus{outline:none; box-shadow: var(--focus)}
    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.72);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease;
    }
    .hamburger:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.35)}
    .hamburger:focus{outline:none; box-shadow: var(--focus)}
    .hamburger svg{width:20px; height:20px}
    .mobilePanel{
      display:none;
      padding:10px 0 16px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .mobilePanel .mnav{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .mobilePanel a{
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.12);
      border-radius:14px;
      background: rgba(255,255,255,.8);
      color:var(--text);
      font-weight:650;
      font-size:13px;
    }

    main{padding-bottom:20px}
    .hero{
      position:relative;
      overflow:hidden;
      padding:34px 0 18px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .heroCard{
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 360px at 0% 0%, rgba(0,184,212,.16), transparent 55%),
        radial-gradient(650px 300px at 80% 10%, rgba(31,122,224,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.72));
      border-radius:var(--radius2);
      box-shadow: var(--shadow);
      padding:22px;
      min-height: 420px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .kicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(0,184,212,.10);
      border:1px solid rgba(0,184,212,.20);
      color:#0a3a58;
      font-weight:750;
      font-size:12px;
    }
    .pill svg{width:16px; height:16px}
    .subkicker{
      color:var(--muted);
      font-size:13px;
      font-weight:650;
    }

    h1{
      margin:14px 0 10px;
      font-size: 34px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    .heroLead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width: 60ch;
    }
    .heroActions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:16px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:12px 16px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      font-weight:800;
      font-size:14px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
      user-select:none;
    }
    .btn:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.35); background: rgba(255,255,255,.95); box-shadow: 0 14px 30px rgba(2,20,38,.10)}
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btnPrimary{
      border-color: rgba(0,184,212,.45);
      background: linear-gradient(135deg, rgba(0,184,212,.30), rgba(31,122,224,.20)) , #fff;
      color:#07344b;
    }
    .btn svg{width:18px; height:18px}
    .heroMeta{
      margin-top:16px;
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
    }
    .metaItem{
      display:flex; flex-direction:column;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      min-width: 160px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metaItem:hover{transform: translateY(-2px); box-shadow: 0 14px 26px rgba(2,20,38,.10)}
    .metaItem b{font-size:16px}
    .metaItem span{color:var(--muted); font-size:12px; margin-top:6px; line-height:1.2}

    .heroSide{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:18px;
      min-height:420px;
      display:flex; flex-direction:column; gap:14px;
    }
    .sideTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .sideTitle{
      display:flex; flex-direction:column; gap:6px;
    }
    .sideTitle h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .sideTitle p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .badge{
      padding:8px 10px;
      border-radius:14px;
      background: rgba(14,165,233,.10);
      border:1px solid rgba(14,165,233,.20);
      font-weight:900;
      font-size:12px;
      color:#0b3d56;
      white-space:nowrap;
    }

    .dataGrid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .dataCard{
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      background: rgba(255,255,255,.78);
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .dataCard:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(180px 80px at 20% 0%, rgba(0,184,212,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .dataCard > *{position:relative}
    .dataCard:hover{
      transform: translateY(-2px);
      border-color: rgba(14,165,233,.30);
      box-shadow: 0 16px 28px rgba(2,20,38,.10);
    }
    .dataCard .num{
      font-size:18px;
      font-weight:950;
      letter-spacing:-.4px;
    }
    .dataCard .lab{
      color:var(--muted);
      font-size:12px;
      margin-top:6px;
      line-height:1.2;
    }
    .sideList{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .sideList li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
    }
    .dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(180deg, rgba(0,184,212,1), rgba(31,122,224,1));
      margin-top:6px; flex:0 0 auto;
      box-shadow: 0 10px 18px rgba(0,184,212,.25);
    }
    .sideList b{font-size:13px}
    .sideList span{display:block; margin-top:6px; color:var(--muted); font-size:12px; line-height:1.5}

    section{padding:26px 0}
    .sectionHeader{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:14px; flex-wrap:wrap;
      margin-bottom:16px;
    }
    .sectionHeader h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .sectionHeader p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      max-width: 66ch;
    }
    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .card{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(2,20,38,.06);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(14,165,233,.30);
      box-shadow: 0 16px 34px rgba(2,20,38,.10);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .iconBox{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(14,165,233,.25);
      background: linear-gradient(135deg, rgba(0,184,212,.18), rgba(31,122,224,.12));
      display:flex; align-items:center; justify-content:center;
    }
    .iconBox svg{width:22px; height:22px}
    .chipRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .chip{
      font-size:12px; color:#0b3d56;
      background: rgba(0,184,212,.10);
      border:1px solid rgba(0,184,212,.18);
      border-radius:999px;
      padding:8px 10px;
      font-weight:750;
    }

    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
      align-items:start;
    }
    .stepCard{
      padding:16px; border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      position:relative; overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 190px;
    }
    .stepCard:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.30); box-shadow: 0 16px 34px rgba(2,20,38,.10)}
    .stepNum{
      font-weight:1000; font-size:28px; letter-spacing:-1px;
      color: rgba(14,165,233,.22);
      margin:0;
    }
    .stepCard b{display:block; margin-top:2px; font-size:14px}
    .stepCard p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}

    .compareWrap{
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(2,20,38,.08);
      overflow:hidden;
    }
    .compareTop{
      padding:16px 16px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:flex-end; gap:12px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      color:#0b6b9b;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .starRow svg{width:18px; height:18px}
    .rating .score{
      display:flex; flex-direction:column; align-items:flex-end;
    }
    .rating .score b{font-size:30px; letter-spacing:-.8px}
    .rating .score span{color:var(--muted); font-size:12px; margin-top:6px}
    .compareNote{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      max-width: 56ch;
    }
    table{
      width:100%;
      border-collapse:collapse;
      margin-top:12px;
      overflow:hidden;
    }
    thead th{
      background: linear-gradient(135deg, rgba(0,184,212,.16), rgba(31,122,224,.12));
      font-size:13px;
      color:#07344b;
      text-align:left;
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      white-space:nowrap;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      color:var(--text);
      font-size:13px;
      vertical-align:top;
    }
    tbody tr:hover td{background: rgba(14,165,233,.04)}
    .tTag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(14,165,233,.22);
      background: rgba(14,165,233,.08);
      font-weight:850;
      color:#0b3d56;
      white-space:nowrap;
    }
    .tOk{color:#0b6b29; background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.18)}
    .tMed{color:#7a4a00; background: rgba(245,158,11,.10); border-color: rgba(245,158,11,.18)}
    .tNo{color:#6b1a1a; background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.18)}
    .sectionDivider{
      height:1px; background: rgba(15,23,42,.08);
      margin:18px 0;
    }

    .split{
      display:grid;
      grid-template-columns: 1.02fr .98fr;
      gap:14px;
      align-items:start;
    }
    .bullets{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:12px;
    }
    .bullets li{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
    }
    .bullets .check{
      width:22px; height:22px; border-radius:8px;
      background: rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .bullets svg{width:14px; height:14px}
    .bullets b{display:block; font-size:14px}
    .bullets span{display:block; margin-top:6px; color:var(--muted); font-size:13px; line-height:1.7}

    .timeline{
      display:flex; flex-direction:column; gap:12px;
    }
    .tItem{
      display:flex; gap:14px; align-items:flex-start;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
    }
    .tLeft{
      width:46px; flex:0 0 auto;
      display:flex; flex-direction:column; align-items:center;
      gap:8px;
    }
    .tLeft .ring{
      width:38px; height:38px; border-radius:14px;
      border:1px solid rgba(14,165,233,.25);
      background: rgba(14,165,233,.10);
      display:flex; align-items:center; justify-content:center;
    }
    .tLeft .ring svg{width:18px; height:18px}
    .tLeft i{
      width:2px; height: 100%;
      background: linear-gradient(180deg, rgba(14,165,233,.35), rgba(14,165,233,.05));
      border-radius:999px;
    }
    .tContent b{font-size:14px}
    .tContent p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .caseCard{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height: 230px;
    }
    .caseCard:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.30); box-shadow: 0 16px 34px rgba(2,20,38,.10)}
    .caseTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .caseType{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(14,165,233,.22);
      background: rgba(14,165,233,.08);
      color:#0b3d56;
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .caseCard h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .caseCard p{margin:0; color:var(--muted); font-size:13px; line-height:1.7}
    .caseFoot{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap}
    .miniLink{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.7);
      font-weight:800;
      font-size:13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .miniLink:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.35); background: rgba(255,255,255,.92)}
    .miniLink:focus{outline:none; box-shadow: var(--focus)}
    .miniLink svg{width:16px; height:16px}

    .articleList{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .articleCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .articleCard:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.30); box-shadow: 0 16px 34px rgba(2,20,38,.10)}
    .articleCard .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted2); font-size:12px; font-weight:700;
    }
    .articleCard h3{
      margin:10px 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
      line-height:1.4;
    }
    .articleCard p{margin:0; color:var(--muted); font-size:13px; line-height:1.7}
    .articleCard a{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:12px;
      font-weight:900; font-size:13px; color:#0b3d56;
    }
    .articleCard a svg{width:16px; height:16px}

    .faqGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:14px;
      align-items:start;
    }
    .faqPanel{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(2,20,38,.08);
      overflow:hidden;
    }
    .faqItem{
      border-top:1px solid rgba(15,23,42,.08);
      padding:0;
    }
    .faqItem:first-child{border-top:none}
    details{
      padding:0;
    }
    details summary{
      list-style:none;
      cursor:pointer;
      padding:14px 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:900;
      font-size:14px;
      color:var(--text);
      transition: background .18s ease;
    }
    details summary::-webkit-details-marker{display:none}
    details[open] summary{background: rgba(14,165,233,.06)}
    .sumRight{
      display:flex; align-items:center; gap:10px;
      color:var(--muted2);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .chev{
      width:18px; height:18px;
      transition: transform .18s ease;
      color:#0b6b9b;
      flex:0 0 auto;
      margin-top:2px;
    }
    details[open] .chev{transform: rotate(180deg)}
    .faqBody{
      padding:0 16px 16px;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }

    .helpCard{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 24px rgba(2,20,38,.06);
      position:sticky;
      top: calc(var(--top) + 14px);
    }
    .helpCard h3{margin:6px 0 8px; font-size:16px}
    .helpCard p{margin:0; color:var(--muted); font-size:13px; line-height:1.7}
    .helpBtns{
      display:flex; gap:12px; flex-wrap:wrap; margin-top:14px;
    }
    .helpBtns a, .helpBtns button{
      width:100%;
    }
    .helpBtns .btn{flex:1}

    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .tagCloud a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.75);
      font-weight:800; font-size:12px;
      color:#0b3d56;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .tagCloud a:hover{
      transform: translateY(-1px);
      border-color: rgba(14,165,233,.35);
      background: rgba(255,255,255,.95);
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .reviewCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 220px;
      display:flex; flex-direction:column; gap:10px;
    }
    .reviewCard:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.30); box-shadow: 0 16px 34px rgba(2,20,38,.10)}
    .reviewTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(14,165,233,.25);
      background: linear-gradient(135deg, rgba(0,184,212,.16), rgba(31,122,224,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#0b3d56;
    }
    .reviewTop b{font-size:14px}
    .reviewRole{
      color:var(--muted); font-size:12px; margin-top:6px; line-height:1.3; font-weight:800;
    }
    .reviewText{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .reviewFoot{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .reviewChip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.70);
      font-weight:900;
      font-size:12px;
      color:#0b3d56;
      white-space:nowrap;
    }

    .formCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(2,20,38,.08);
      overflow:hidden;
    }
    .formHead{
      padding:16px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(0,184,212,.12), rgba(31,122,224,.10));
    }
    .formHead h2{margin:0; font-size:18px; letter-spacing:-.3px}
    .formHead p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    form{padding:16px}
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-weight:900;
      font-size:13px;
      color:#0b2a3d;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.86);
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: box-shadow .16s ease, border-color .16s ease, background .16s ease;
    }
    textarea{min-height:120px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(14,165,233,.55);
      box-shadow: var(--focus);
      background:#fff;
    }
    .formBottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
    }
    .helpText{
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      font-weight:750;
    }
    .submitBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:12px 16px;
      border-radius:16px;
      border:1px solid rgba(0,184,212,.45);
      background: linear-gradient(135deg, rgba(0,184,212,.30), rgba(31,122,224,.20)) , #fff;
      font-weight:1000;
      font-size:14px;
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      white-space:nowrap;
    }
    .submitBtn:hover{transform: translateY(-1px); border-color: rgba(0,184,212,.60); box-shadow: 0 16px 34px rgba(2,20,38,.12)}
    .submitBtn:focus{outline:none; box-shadow: var(--focus)}
    .submitBtn svg{width:18px; height:18px}

    footer{
      padding:22px 0 28px;
      border-top:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.72));
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footerCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      padding:16px;
      box-shadow: 0 10px 24px rgba(2,20,38,.06);
    }
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footBrand img{
      width:42px; height:42px; object-fit:contain;
    }
    .footBrand b{font-size:16px}
    .footBrand p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7; max-width: 60ch}
    .footerLinks{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .footerLinks a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      font-weight:900; font-size:12px; color:#0b3d56;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.35); background: rgba(255,255,255,.95)}
    .footContact{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .contactRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
    }
    .contactRow b{font-size:13px}
    .contactRow span{display:block; margin-top:6px; color:var(--muted); font-size:12px; line-height:1.5; font-weight:800}
    .qrWrap img{
      width:94px; height:auto; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .copyright{
      margin-top:14px;
      color:var(--muted2);
      font-size:12px;
      font-weight:800;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .copyLeft{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
    .copyDot{
      width:6px; height:6px; border-radius:999px;
      background: rgba(14,165,233,.55);
    }

    .floating{
      position:fixed;
      right:14px;
      bottom:16px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.84);
      box-shadow: 0 16px 34px rgba(2,20,38,.12);
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      user-select:none;
      font-weight:1000;
      color:#0b3d56;
    }
    .floatBtn:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.35); background: rgba(255,255,255,.98)}
    .floatBtn:focus{outline:none; box-shadow: var(--focus)}
    .floatBtn svg{width:18px; height:18px}
    .floatPanel{
      width:min(320px, calc(100vw - 28px));
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.88);
      box-shadow: 0 20px 60px rgba(2,20,38,.18);
      overflow:hidden;
      transform-origin: 100% 100%;
      animation: pop .18s ease both;
    }
    @keyframes pop{from{transform:scale(.98); opacity:.0} to{transform:scale(1); opacity:1}}
    .floatPanel .fpHead{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(0,184,212,.12), rgba(31,122,224,.10));
      display:flex; justify-content:space-between; align-items:center; gap:10px;
    }
    .floatPanel .fpHead b{font-size:13px}
    .closeX{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease;
    }
    .closeX:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.35)}
    .closeX svg{width:16px; height:16px; color:#0b3d56}
    .fpBody{padding:12px 14px}
    .fpBody p{margin:0; color:var(--muted); font-size:13px; line-height:1.7; font-weight:750}
    .fpBody .fpActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .fpBody .fpActions a{flex:1; min-width:120px}
    .reveal{
      opacity:0; transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.show{
      opacity:1; transform: translateY(0);
    }

    .tagLinkRow{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:14px;
    }
    .tokenCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(2,20,38,.08);
      overflow:hidden;
    }
    .tokenHead{
      padding:16px;
      background: linear-gradient(135deg, rgba(0,184,212,.12), rgba(31,122,224,.10));
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .tokenHead b{font-size:16px}
    .tokenHead span{display:block; margin-top:8px; color:var(--muted); font-size:13px; line-height:1.7; max-width: 64ch}
    .tokenBody{
      padding:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .priceBox{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.80);
      padding:14px;
    }
    .priceBox h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .priceBox p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .rangeRow{
      margin-top:10px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(14,165,233,.18);
      background: rgba(14,165,233,.08);
      font-weight:1000;
      color:#0b3d56;
      font-size:13px;
    }
    .rangeRow i{
      font-style:normal;
      color:var(--muted);
      font-weight:900;
      font-size:12px;
    }

    .serviceGrid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .serviceCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 170px;
      display:flex; flex-direction:column; gap:10px;
    }
    .serviceCard:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.30); box-shadow: 0 16px 34px rgba(2,20,38,.10)}
    .serviceCard b{font-size:14px}
    .serviceCard p{margin:0; color:var(--muted); font-size:13px; line-height:1.7}
    .serviceCard .serviceFoot{
      margin-top:auto;
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .serviceFoot .tag{
      font-size:12px;
      font-weight:900;
      color:#0b3d56;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(14,165,233,.18);
      background: rgba(14,165,233,.08);
      white-space:nowrap;
    }

    .matchGrid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .matchList{
      display:flex; flex-direction:column; gap:10px;
    }
    .matchItem{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      display:flex; gap:12px; align-items:flex-start;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      cursor:pointer;
    }
    .matchItem:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.30); box-shadow: 0 16px 34px rgba(2,20,38,.10)}
    .matchItem .micon{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(14,165,233,.25);
      background: rgba(14,165,233,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .matchItem .micon svg{width:18px; height:18px}
    .matchItem b{font-size:14px}
    .matchItem span{display:block; margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6; font-weight:800}
    .matchItem.active{
      border-color: rgba(14,165,233,.45);
      background: linear-gradient(135deg, rgba(0,184,212,.12), rgba(31,122,224,.10));
    }
    .matchPanel{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 14px 40px rgba(2,20,38,.08);
      overflow:hidden;
    }
    .matchPanel h3{margin:0; font-size:16px; letter-spacing:-.3px}
    .matchPanel p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.8}
    .modelChips{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .modelChips .chip{
      background: rgba(255,255,255,.78);
      border-color: rgba(15,23,42,.12);
      color:#0b3d56;
    }
    .matchActions{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
    }

    .navAnchor{
      scroll-margin-top: 96px;
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroCard, .heroSide{min-height:auto}
      h1{font-size:30px}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid3{grid-template-columns: 1fr}
      .grid2{grid-template-columns: 1fr}
      .faqGrid{grid-template-columns: 1fr}
      .helpCard{position:relative; top:auto}
      .caseGrid{grid-template-columns: 1fr}
      .articleList{grid-template-columns: 1fr}
      .reviewsGrid{grid-template-columns: 1fr}
      .serviceGrid{grid-template-columns: repeat(2, 1fr)}
      .tokenBody{grid-template-columns: 1fr}
      .matchGrid{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      .mobileOnly{display:block}
    }
    @media (max-width: 880px){
      .navlinks{display:none}
      .hamburger{display:flex}
      .mobilePanel{display:block}
      nav{flex:0}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      *{animation:none !important; transition:none !important}
    }

    /* Reveal: run only after load */
    @media (min-width: 1px){
      .reveal{ will-change: transform, opacity; }
    }