:root{
      --bg0:#f7fbff;
      --bg1:#ffffff;
      --ink:#0b1b33;
      --muted:#4b5a73;
      --muted2:#6b7a95;
      --line:rgba(12,45,93,.12);
      --line2:rgba(12,45,93,.08);
      --brand:#0b56ff;
      --brand2:#00a3ff;
      --brand3:#1b8cff;
      --deep:#07224f;
      --card:#ffffff;
      --chip:#eef6ff;
      --shadow:0 14px 40px rgba(7,34,79,.12);
      --shadow2:0 10px 30px rgba(7,34,79,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --focus:0 0 0 4px rgba(11,86,255,.18);
      --container:1120px;
      --container-pad:18px;
      --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC","Noto Sans SC",
        Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 420px at 10% -10%, rgba(11,86,255,.18), transparent 60%),
        radial-gradient(760px 360px at 85% 0%, rgba(0,163,255,.16), transparent 58%),
        linear-gradient(180deg, #f5faff 0%, #ffffff 35%, #f7fbff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--container-pad);
    }
    .sr-only{
      position:absolute;
      width:1px;height:1px;
      padding:0;margin:-1px;overflow:hidden;
      clip:rect(0,0,0,0);white-space:nowrap;border:0;
    }
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247,251,255,.70);
      border-bottom:1px solid rgba(12,45,93,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width:220px;
    }
    .logo-wrap{
      width:36px; height:36px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(11,86,255,.18), rgba(0,163,255,.14));
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(11,86,255,.18);
      box-shadow:0 10px 24px rgba(11,86,255,.10);
    }
    .brand img{width:26px; height:26px; object-fit:contain}
    .brand-meta{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-name{
      font-weight:780; letter-spacing:.2px;
      font-size:14px;
    }
    .brand-sub{
      font-size:12px; color:var(--muted2);
    }
    .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:999px;
      border:1px solid transparent;
      transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      transform:translateY(-1px);
      background:rgba(11,86,255,.06);
      border-color:rgba(11,86,255,.18);
      color:#08306f;
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:12px;
      border:1px solid rgba(11,86,255,.26);
      background:linear-gradient(180deg, rgba(11,86,255,.10), rgba(11,86,255,.06));
      color:#08306f;
      font-weight:700;
      font-size:13px;
      transition:transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:hover{transform:translateY(-1px); box-shadow:0 12px 28px rgba(11,86,255,.14)}
    .btn.primary{
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
      border-color:transparent;
      color:white;
      box-shadow:0 14px 34px rgba(11,86,255,.25);
    }
    .btn.primary:hover{box-shadow:0 18px 42px rgba(11,86,255,.30)}
    .btn.ghost{
      background:rgba(255,255,255,.8);
      border-color:rgba(12,45,93,.14);
      color:var(--deep);
    }
    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(12,45,93,.14);
      background:rgba(255,255,255,.7);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition:transform .16s ease, box-shadow .16s ease;
    }
    .menu-btn:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(7,34,79,.10)}
    .hamburger{
      width:18px; height:14px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:#0b2a57;
      transition:transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger span:nth-child(1){top:1px}
    .hamburger span:nth-child(2){top:6px}
    .hamburger span:nth-child(3){top:11px}
    .menu-open .hamburger span:nth-child(1){top:6px; transform:rotate(45deg)}
    .menu-open .hamburger span:nth-child(2){opacity:0}
    .menu-open .hamburger span:nth-child(3){top:6px; transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding-bottom:14px;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-direction:column; gap:8px;
      padding-top:10px;
    }
    .mobile-panel .mobile-links a{
      padding:12px 12px;
      border-radius:12px;
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.75);
      color:var(--deep);
      font-weight:700;
      font-size:14px;
    }

    main{padding:18px 0 26px}
    .hero{
      position:relative;
      padding:34px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      padding:22px 0;
      display:flex; flex-direction:column; gap:16px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(11,86,255,.20);
      background:rgba(255,255,255,.72);
      width:fit-content;
      box-shadow:0 10px 26px rgba(11,86,255,.08);
    }
    .kdot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
      box-shadow:0 0 0 6px rgba(11,86,255,.12);
    }
    .kicker span{
      font-size:13px; color:#08306f; font-weight:750;
    }
    h1{
      margin:0;
      font-size:40px;
      letter-spacing:-.6px;
      line-height:1.10;
    }
    .hero-lead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:56ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:2px;
    }
    .quick-trust{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
      margin-top:8px;
    }
    .trust-card{
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.74);
      border-radius:14px;
      padding:12px 12px;
      box-shadow:0 10px 28px rgba(7,34,79,.06);
      transition:transform .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
    }
    .trust-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:radial-gradient(260px 120px at 20% 0%, rgba(11,86,255,.18), transparent 55%);
      pointer-events:none;
    }
    .trust-card:hover{transform:translateY(-2px); box-shadow:0 16px 40px rgba(7,34,79,.10)}
    .trust-top{
      display:flex; align-items:center; gap:10px;
      position:relative;
    }
    .trust-ico{
      width:34px; height:34px; border-radius:12px;
      background:linear-gradient(135deg, rgba(11,86,255,.16), rgba(0,163,255,.10));
      border:1px solid rgba(11,86,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .trust-ico svg{width:18px; height:18px; color:#08306f}
    .trust-num{
      font-weight:860;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .trust-txt{
      margin-top:8px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
      position:relative;
    }

    .hero-right{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58)),
        radial-gradient(620px 320px at 30% 20%, rgba(11,86,255,.18), transparent 60%),
        radial-gradient(520px 260px at 90% 30%, rgba(0,163,255,.14), transparent 56%);
      box-shadow:var(--shadow2);
      overflow:hidden;
      position:relative;
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .hero-right:after{
      content:"";
      position:absolute; inset:-1px;
      background:
        linear-gradient(135deg, rgba(11,86,255,.14), transparent 40%),
        linear-gradient(315deg, rgba(0,163,255,.12), transparent 42%);
      pointer-events:none;
      mix-blend-mode:normal;
      opacity:.9;
    }
    .panel-title{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .panel-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .panel-title p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .badge{
      position:relative;
      border-radius:999px;
      padding:8px 10px;
      font-size:12px;
      font-weight:800;
      border:1px solid rgba(11,86,255,.22);
      background:rgba(255,255,255,.72);
      color:#08306f;
      white-space:nowrap;
    }
    .data-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .data-card{
      border-radius:14px;
      border:1px solid rgba(12,45,93,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:84px;
    }
    .data-card:hover{transform:translateY(-2px); box-shadow:0 16px 38px rgba(7,34,79,.10); border-color:rgba(11,86,255,.22)}
    .data-card .t{
      font-size:12.5px;
      color:var(--muted2);
      font-weight:720;
    }
    .data-card .v{
      margin-top:6px;
      font-size:18px;
      font-weight:900;
      letter-spacing:-.3px;
    }
    .data-card .d{
      margin-top:6px;
      font-size:12.5px;
      color:var(--muted);
      line-height:1.35;
    }
    .hero-right .divider{
      position:relative;
      height:1px;
      background:rgba(12,45,93,.10);
      margin:4px 0;
    }
    .match-row{
      position:relative;
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .match-row .hint{
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
      max-width:38ch;
    }
    .pill-row{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .pill{
      font-size:12.5px;
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.72);
      padding:8px 10px;
      border-radius:999px;
      color:#173a6b;
      font-weight:720;
    }

    section{padding:28px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:62ch;
    }
    .grid-3{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .card{
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      border-radius:var(--radius2);
      box-shadow:0 12px 28px rgba(7,34,79,.06);
      padding:16px 16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(7,34,79,.10); border-color:rgba(11,86,255,.22)}
    .card:before{
      content:"";
      position:absolute; inset:-2px;
      background:radial-gradient(420px 160px at 0% 0%, rgba(11,86,255,.14), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .card > *{position:relative}
    .card .icon{
      width:40px; height:40px; border-radius:14px;
      background:linear-gradient(135deg, rgba(11,86,255,.18), rgba(0,163,255,.10));
      border:1px solid rgba(11,86,255,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .card .icon svg{width:20px; height:20px}
    .card h3{
      margin:12px 0 8px;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }
    .list{
      margin:12px 0 0;
      padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .tick{
      width:18px; height:18px; border-radius:6px;
      background:rgba(11,86,255,.12);
      border:1px solid rgba(11,86,255,.22);
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
      margin-top:2px;
    }
    .tick svg{width:12px; height:12px; color:#08306f}
    .step-wrap{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .timeline{
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      border-radius:var(--radius);
      padding:14px;
      box-shadow:0 12px 30px rgba(7,34,79,.06);
    }
    .timeline .t-head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:6px 6px 12px;
    }
    .timeline .t-head h3{
      margin:0; font-size:16px; letter-spacing:-.2px;
    }
    .timeline .t-head span{
      font-size:12.5px;
      color:var(--muted2);
      font-weight:750;
      border:1px solid rgba(12,45,93,.12);
      padding:7px 10px; border-radius:999px;
      background:rgba(255,255,255,.72);
      white-space:nowrap;
    }
    .steps{
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(12,45,93,.10);
      background:rgba(255,255,255,.72);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:hover{transform:translateY(-2px); border-color:rgba(11,86,255,.22); box-shadow:0 16px 36px rgba(7,34,79,.08)}
    .step .num{
      width:34px; height:34px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(11,86,255,.18), rgba(0,163,255,.10));
      border:1px solid rgba(11,86,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#08306f;
      flex:0 0 auto;
    }
    .step .s-title{
      font-weight:880;
      font-size:14.5px;
      margin:1px 0 6px;
      letter-spacing:-.2px;
    }
    .step .s-desc{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .service-need{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:
        radial-gradient(620px 320px at 0% 0%, rgba(11,86,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .service-need:after{
      content:"";
      position:absolute; inset:-2px;
      background:linear-gradient(135deg, rgba(11,86,255,.08), transparent 45%);
      pointer-events:none;
    }
    .service-need > *{position:relative}
    .service-need h3{
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .service-need p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }
    .matrix{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .matrix .m{
      border-radius:14px;
      border:1px solid rgba(12,45,93,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
      min-height:92px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .matrix .m:hover{transform:translateY(-2px); box-shadow:0 16px 36px rgba(7,34,79,.08); border-color:rgba(11,86,255,.22)}
    .matrix .m .mt{
      font-weight:900; letter-spacing:-.2px;
      font-size:13.5px;
      margin-bottom:8px;
      color:#08306f;
    }
    .matrix .m .md{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }

    .compare{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:14px;
    }
    .compare .score-row{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      padding:6px 6px 12px;
    }
    .score-badge{
      display:flex; align-items:center; gap:12px;
      border-radius:18px;
      border:1px solid rgba(11,86,255,.22);
      background:linear-gradient(180deg, rgba(11,86,255,.10), rgba(0,163,255,.06));
      padding:12px 14px;
    }
    .star-wrap{
      width:44px; height:44px; border-radius:16px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(11,86,255,.18);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 12px 28px rgba(11,86,255,.14);
    }
    .score-badge .meta{
      display:flex; flex-direction:column; line-height:1.15;
    }
    .score-badge .meta .s1{
      font-weight:950; letter-spacing:-.3px; font-size:18px; color:#08306f;
    }
    .score-badge .meta .s2{
      font-size:13px; color:var(--muted);
      margin-top:4px;
      font-weight:720;
    }
    .compare .table-wrap{
      overflow:auto;
      border-radius:14px;
      border:1px solid rgba(12,45,93,.10);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
      background:transparent;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(12,45,93,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
      color:var(--muted);
    }
    th{
      background:linear-gradient(180deg, rgba(11,86,255,.10), rgba(255,255,255,.72));
      color:#08306f;
      font-weight:900;
      border-bottom:1px solid rgba(11,86,255,.18);
      position:sticky;
      top:0;
      z-index:1;
    }
    td strong{color:#0b1b33}
    .good{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:850; color:#08306f;
    }
    .good svg{width:16px; height:16px}
    .neutral{
      color:#6b7a95;
      font-weight:760;
    }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .faq{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      overflow:hidden;
    }
    .faq .item{
      border-top:1px solid rgba(12,45,93,.08);
    }
    .faq .item:first-child{border-top:none}
    details.faq-detail{
      padding:0 14px;
    }
    details.faq-detail > summary{
      list-style:none;
      cursor:pointer;
      padding:16px 6px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    details.faq-detail > summary::-webkit-details-marker{display:none}
    .qtxt{
      font-weight:900;
      letter-spacing:-.2px;
      color:#0b2a57;
      font-size:14.5px;
      line-height:1.5;
    }
    .chev{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.76);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition:transform .18s ease, border-color .18s ease;
      margin-top:-4px;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(11,86,255,.22)}
    .ans{
      padding:0 6px 16px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.85;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .quote{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:180px;
      display:flex; flex-direction:column; gap:10px;
    }
    .quote:hover{transform:translateY(-2px); border-color:rgba(11,86,255,.22); box-shadow:0 18px 44px rgba(7,34,79,.10)}
    .quote:before{
      content:"";
      position:absolute; inset:-2px;
      background:radial-gradient(520px 240px at 0% 0%, rgba(11,86,255,.14), transparent 55%);
      pointer-events:none;
    }
    .quote > *{position:relative}
    .q-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(11,86,255,.18);
      background:linear-gradient(135deg, rgba(11,86,255,.18), rgba(0,163,255,.08));
      display:flex; align-items:center; justify-content:center;
      color:#08306f;
      font-weight:950;
      letter-spacing:-.3px;
    }
    .role{
      color:var(--muted2);
      font-size:12.8px;
      font-weight:760;
      text-align:right;
      line-height:1.3;
    }
    .quote .text{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .quote .tags{
      margin-top:auto;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .tag{
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.70);
      border-radius:999px;
      padding:7px 10px;
      font-size:12.5px;
      color:#173a6b;
      font-weight:760;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:190px;
      position:relative; overflow:hidden;
    }
    .case:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(7,34,79,.10); border-color:rgba(11,86,255,.22)}
    .case:before{
      content:"";
      position:absolute; inset:-2px;
      background:radial-gradient(520px 240px at 20% 0%, rgba(11,86,255,.12), transparent 60%);
      pointer-events:none;
    }
    .case > *{position:relative}
    .case .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .case .type{
      font-weight:950; letter-spacing:-.2px;
      color:#08306f;
      font-size:14px;
    }
    .chip{
      border:1px solid rgba(11,86,255,.20);
      background:rgba(11,86,255,.08);
      color:#08306f;
      font-weight:860;
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .case .desc{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .case .meta{
      margin-top:auto;
      display:flex; gap:8px; flex-wrap:wrap;
    }

    .article-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:14px;
    }
    .article-list h3{
      margin:0 0 10px;
      font-size:16px; letter-spacing:-.2px;
      color:#0b2a57;
    }
    .articles{
      list-style:none; margin:0; padding:0;
      display:flex; flex-direction:column; gap:10px;
    }
    .art{
      border-radius:14px;
      border:1px solid rgba(12,45,93,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .art:hover{transform:translateY(-2px); box-shadow:0 16px 38px rgba(7,34,79,.08); border-color:rgba(11,86,255,.22)}
    .art a{
      display:block;
      color:#0b2a57;
      font-weight:900;
      letter-spacing:-.2px;
      font-size:14.5px;
      line-height:1.5;
    }
    .art .sub{
      margin-top:6px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.65;
    }
    .article-side{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:
        radial-gradient(620px 320px at 0% 0%, rgba(11,86,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:14px;
    }
    .article-side h3{margin:0 0 8px; font-size:16px; letter-spacing:-.2px}
    .side-p{margin:0 0 12px; color:var(--muted); font-size:13.5px; line-height:1.8}
    .side-modes{
      display:grid; grid-template-columns:1fr; gap:10px;
    }
    .mode{
      border-radius:14px;
      border:1px solid rgba(12,45,93,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
    }
    .mode .mt{
      font-weight:950; color:#08306f; letter-spacing:-.2px;
      margin-bottom:6px;
      font-size:14px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .mode .md{
      margin:0;
      color:var(--muted);
      font-size:13.3px;
      line-height:1.7;
    }
    .time{
      font-family:var(--mono);
      font-weight:900;
      font-size:12.5px;
      color:#08306f;
      background:rgba(11,86,255,.10);
      border:1px solid rgba(11,86,255,.18);
      padding:6px 9px;
      border-radius:999px;
      white-space:nowrap;
    }

    .form-wrap{
      border-radius:var(--radius);
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 30px rgba(7,34,79,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .form-wrap:before{
      content:"";
      position:absolute; inset:-2px;
      background:radial-gradient(620px 260px at 0% 0%, rgba(11,86,255,.16), transparent 58%);
      pointer-events:none;
    }
    .form-wrap > *{position:relative}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13px;
      color:#0b2a57;
      font-weight:820;
      letter-spacing:-.1px;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(12,45,93,.14);
      background:rgba(255,255,255,.86);
      padding:12px 12px;
      font-size:14px;
      color:var(--ink);
      outline:none;
      transition:box-shadow .16s ease, border-color .16s ease, transform .16s ease;
    }
    textarea{min-height:120px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(11,86,255,.35);
      box-shadow:var(--focus);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.6;
      max-width:56ch;
    }
    .form-actions .btn.primary{min-width:170px}

    .tags-cloud{
      display:flex; gap:10px; flex-wrap:wrap;
      padding:12px 0 0;
    }
    .cloud-tag{
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.72);
      border-radius:999px;
      padding:9px 12px;
      font-size:13px;
      font-weight:780;
      color:#173a6b;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
      cursor:default;
    }
    .cloud-tag:hover{
      transform:translateY(-2px);
      border-color:rgba(11,86,255,.22);
      background:rgba(11,86,255,.06);
    }

    .footer{
      margin-top:10px;
      background:linear-gradient(180deg, rgba(7,34,79,.95), rgba(7,34,79,.98));
      color:#eaf1ff;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footer-inner{
      padding:22px 0;
      display:flex; flex-direction:column; gap:14px;
    }
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .foot-logo{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.18);
      background:linear-gradient(135deg, rgba(11,86,255,.22), rgba(0,163,255,.14));
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 18px 44px rgba(11,86,255,.20);
      flex:0 0 auto;
    }
    .foot-logo img{width:26px; height:26px; object-fit:contain}
    .foot-title{
      margin:0;
      font-size:16px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .foot-desc{
      margin:6px 0 0;
      color:rgba(234,241,255,.78);
      font-size:13.5px;
      line-height:1.8;
      max-width:62ch;
    }
    .foot-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .foot-links a{
      color:rgba(234,241,255,.86);
      padding:10px 12px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      border-radius:14px;
      font-weight:780;
      font-size:13px;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
      display:block;
    }
    .foot-links a:hover{
      transform:translateY(-2px);
      border-color:rgba(255,255,255,.18);
      background:rgba(255,255,255,.10);
    }
    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      padding-top:8px;
      border-top:1px solid rgba(255,255,255,.10);
      color:rgba(234,241,255,.72);
      font-size:12.8px;
    }
    .legal{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
    }
    .legal .dot{
      width:4px; height:4px; border-radius:50%; background:rgba(234,241,255,.55);
    }

    .float-cs{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .cs-btn{
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(12,45,93,.14);
      background:rgba(255,255,255,.86);
      box-shadow:0 16px 40px rgba(7,34,79,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .cs-btn:hover{transform:translateY(-3px); border-color:rgba(11,86,255,.30); box-shadow:0 22px 60px rgba(7,34,79,.22)}
    .cs-btn:focus{outline:none; box-shadow:var(--focus)}
    .cs-btn svg{width:20px; height:20px; color:#08306f}
    .cs-panel{
      width:270px;
      border-radius:18px;
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.92);
      box-shadow:0 22px 60px rgba(7,34,79,.20);
      overflow:hidden;
      transform-origin:bottom right;
      animation:pop .22s ease-out both;
    }
    @keyframes pop{
      from{opacity:0; transform:translateY(8px) scale(.98)}
      to{opacity:1; transform:translateY(0) scale(1)}
    }
    .cs-panel .hd{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(12,45,93,.08);
      background:linear-gradient(180deg, rgba(11,86,255,.10), rgba(255,255,255,.86));
    }
    .cs-panel .hd strong{
      font-size:13.5px; letter-spacing:-.2px;
    }
    .xbtn{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(12,45,93,.12);
      background:rgba(255,255,255,.76);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .xbtn svg{width:16px; height:16px}
    .cs-panel .bd{
      padding:12px 12px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .cs-qr{
      width:86px; height:86px;
      border-radius:18px;
      border:1px solid rgba(12,45,93,.12);
      background:rgba(11,86,255,.06);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      overflow:hidden;
    }
    .cs-qr img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .cs-panel .info{
      display:flex; flex-direction:column; gap:8px;
      min-width:0;
    }
    .cs-panel .info .t{
      font-size:13.2px;
      color:var(--muted);
      line-height:1.6;
      margin:0;
      font-weight:740;
    }
    .cs-panel .info .row{
      display:flex; flex-direction:column; gap:6px;
    }
    .mini-link{
      display:inline-flex; align-items:center; gap:8px;
      color:#08306f;
      font-weight:900;
      font-size:13px;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(11,86,255,.18);
      background:rgba(11,86,255,.06);
      justify-content:center;
      text-align:center;
    }
    .mini-link svg{width:16px; height:16px}

    .to-top{
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(12,45,93,.14);
      background:rgba(255,255,255,.86);
      box-shadow:0 16px 40px rgba(7,34,79,.16);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
      position:relative;
      overflow:hidden;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
    }
    .to-top:hover{transform:translateY(-3px); border-color:rgba(11,86,255,.30); box-shadow:0 22px 60px rgba(7,34,79,.22)}
    .to-top svg{width:20px; height:20px; color:#08306f}

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

    .anchor-gap{scroll-margin-top:88px}

    @media (max-width: 980px){
      h1{font-size:34px}
      .hero-grid{grid-template-columns:1fr; gap:14px}
      .quick-trust{grid-template-columns:1fr; }
      .grid-3{grid-template-columns:1fr}
      .step-wrap{grid-template-columns:1fr}
      .comments{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .footer-top{grid-template-columns:1fr}
      table{min-width:700px}
      .form-grid{grid-template-columns:1fr}
      .navlinks{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
    }