:root{
      --bg0:#f6f9ff;
      --bg1:#ffffff;
      --ink:#0b1324;
      --muted:#4a5870;
      --muted2:#6c7a93;
      --line:rgba(10,35,80,.10);
      --card:rgba(255,255,255,.86);
      --card2:#ffffff;
      --shadow: 0 14px 40px rgba(8, 28, 70, .10);
      --shadow2: 0 10px 26px rgba(8, 28, 70, .10);
      --blue:#0b5cff;
      --blue2:#1d7dff;
      --blue3:#2aa3ff;
      --navy:#0b2a6a;
      --sky:#e8f1ff;
      --focus: rgba(11,92,255,.22);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container: 1120px;
    }
    *{ 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(--ink);
      background:
        radial-gradient(1200px 520px at 20% -10%, rgba(11,92,255,.16), rgba(255,255,255,0) 60%),
        radial-gradient(900px 420px at 85% 10%, rgba(42,163,255,.14), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, var(--bg0) 0%, #ffffff 40%, #f7fbff 100%);
      overflow-x:hidden;
    }
    a{ color:inherit; text-decoration:none; }
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background: rgba(246,249,255,.72);
      border-bottom:1px solid var(--line);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 200px;
    }
    .brand img{
      width:42px;
      height:42px;
      object-fit:contain;
      filter: drop-shadow(0 10px 16px rgba(11,92,255,.18));
    }
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-name strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-name span{
      font-size:12px;
      color:var(--muted2);
      margin-top:3px;
      white-space:nowrap;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color:var(--muted);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
    }
    .nav-links a:hover{
      background:rgba(11,92,255,.06);
      border-color:rgba(11,92,255,.18);
      color:#0a2c6f;
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(11,92,255,.25);
      background:#fff;
      color:#0a2c6f;
      box-shadow: 0 10px 24px rgba(11,92,255,.10);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      font-weight:650;
      font-size:13px;
      white-space:nowrap;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(11,92,255,.14); border-color: rgba(11,92,255,.35); }
    .btn-primary{
      background: linear-gradient(180deg, #176bff 0%, #0b5cff 100%);
      border-color: rgba(11,92,255,.40);
      color:#fff;
      box-shadow: 0 18px 40px rgba(11,92,255,.26);
    }
    .btn-primary:hover{ box-shadow: 0 24px 60px rgba(11,92,255,.30); }
    .btn-ghost{
      background: rgba(255,255,255,.8);
      box-shadow:none;
      border-color: rgba(10,35,80,.12);
      color:var(--navy);
    }
    .icon-dot{
      width:10px;height:10px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #7bc3ff, #0b5cff);
      box-shadow: 0 10px 18px rgba(11,92,255,.24);
    }

    .menu-btn{
      display:none;
      border:1px solid rgba(10,35,80,.14);
      background: rgba(255,255,255,.85);
      border-radius:12px;
      padding:10px 12px;
      color:var(--navy);
      font-weight:700;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      box-shadow: 0 10px 18px rgba(10,35,80,.06);
    }
    .menu-btn:active{ transform: translateY(1px); }
    .menu-panel{
      display:none;
      padding:10px 0 16px;
    }
    .menu-panel a{
      display:block;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(10,35,80,.10);
      background: rgba(255,255,255,.78);
      margin-top:10px;
      color:var(--navy);
      font-weight:650;
      font-size:13px;
    }

    main{ padding: 24px 0 52px; }
    section{ padding: 54px 0; }

    .hero{
      padding: 22px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-card{
      background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.78) 100%);
      border:1px solid rgba(10,35,80,.12);
      border-radius: 26px;
      box-shadow: var(--shadow);
      padding: 26px;
      position:relative;
      overflow:hidden;
      min-height: 360px;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 240px at 15% 0%, rgba(11,92,255,.22), rgba(255,255,255,0) 60%),
        radial-gradient(420px 220px at 85% 25%, rgba(42,163,255,.20), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
      pointer-events:none;
    }
    .hero-card > *{ position:relative; z-index:1; }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:16px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(11,92,255,.20);
      background: rgba(11,92,255,.06);
      color:#0a2c6f;
      font-weight:750;
      font-size:12px;
    }
    .badge .spark{
      width:18px;height:18px;border-radius:6px;
      background: linear-gradient(180deg,#2aa3ff,#0b5cff);
      box-shadow: 0 16px 26px rgba(11,92,255,.25);
      display:inline-flex;
      align-items:center; justify-content:center;
      color:#fff;
      font-weight:900;
      font-size:11px;
    }
    .hero h1{
      margin:0;
      font-size: 34px;
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .hero p{
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height:1.8;
      max-width: 60ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top: 18px;
      align-items:center;
    }
    .hero-subgrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:18px;
    }
    .mini-stat{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(10,35,80,.12);
      border-radius:16px;
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 92px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .mini-stat::after{
      content:"";
      position:absolute;
      width:160px;height:160px;
      right:-70px; top:-80px;
      background: radial-gradient(circle at 30% 30%, rgba(11,92,255,.20), rgba(255,255,255,0) 60%);
      transform: rotate(20deg);
      pointer-events:none;
    }
    .mini-stat > *{ position:relative; z-index:1; }
    .mini-stat:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(11,92,255,.22);
    }
    .mini-stat .k{
      display:flex; align-items:center; gap:10px;
      font-weight:860; color:#0a2c6f; font-size:13px;
    }
    .mini-stat .v{
      font-size: 18px;
      font-weight:900;
      letter-spacing:-.3px;
    }
    .mini-stat .s{
      color: var(--muted2);
      font-size:12px;
      line-height:1.5;
      margin-top:6px;
    }

    .hero-side{
      border-radius: 26px;
      border: 1px solid rgba(10,35,80,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72));
      box-shadow: var(--shadow);
      padding: 18px;
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .hero-side::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(520px 340px at 50% -10%, rgba(11,92,255,.20), rgba(255,255,255,0) 60%),
        radial-gradient(420px 260px at 100% 40%, rgba(42,163,255,.16), rgba(255,255,255,0) 55%);
      pointer-events:none;
    }
    .hero-side > *{ position:relative; z-index:1; }
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
    }
    .side-title h2{
      margin:0;
      font-size:15px;
      color: #0a2c6f;
      letter-spacing:.2px;
    }
    .pulse-chip{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(11,92,255,.06);
      border: 1px solid rgba(11,92,255,.18);
      color:#0a2c6f;
      font-weight:800;
      font-size:12px;
    }
    .pulse{
      width:10px;height:10px;border-radius:50%;
      background:#0b5cff;
      box-shadow: 0 0 0 0 rgba(11,92,255,.35);
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{ box-shadow: 0 0 0 0 rgba(11,92,255,.35); }
      60%{ box-shadow: 0 0 0 12px rgba(11,92,255,0); }
      100%{ box-shadow: 0 0 0 0 rgba(11,92,255,0); }
    }
    .side-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top: 12px;
    }
    .cap{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(10,35,80,.12);
      border-radius: 16px;
      padding: 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .cap:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(11,92,255,.22); }
    .cap .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .cap h3{
      margin:0;
      font-size:13px;
      color:#0a2c6f;
      letter-spacing:.2px;
    }
    .cap p{
      margin:8px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .taglist{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top: 10px;
    }
    .tag{
      font-size:12px;
      color:#0a2c6f;
      background: rgba(11,92,255,.06);
      border:1px solid rgba(11,92,255,.16);
      padding:6px 10px;
      border-radius:999px;
      font-weight:750;
    }
    .tag.soft{
      background: rgba(10,35,80,.04);
      border-color: rgba(10,35,80,.12);
      color: var(--muted);
      font-weight:700;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom: 18px;
    }
    .section-head h2{
      margin:0;
      font-size: 22px;
      letter-spacing:-.4px;
      line-height:1.25;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      line-height:1.8;
      font-size:14px;
      max-width: 64ch;
    }
    .section-head .right{
      display:flex; align-items:center; gap:10px; justify-content:flex-end; flex-wrap:wrap;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .grid-2{
      display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;
    }

    .card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(10,35,80,.12);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(11,92,255,.20);
    }
    .card h3{
      margin:0;
      font-size:15px;
      color:#0a2c6f;
      letter-spacing:.1px;
      line-height:1.4;
    }
    .card p{
      margin:10px 0 0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom: 6px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:40px; height:40px;
      border-radius: 14px;
      background: rgba(11,92,255,.08);
      border:1px solid rgba(11,92,255,.18);
      color:#0a2c6f;
      font-weight:900;
      box-shadow: 0 16px 30px rgba(11,92,255,.10);
      flex: 0 0 auto;
    }
    .chip svg{ width:18px; height:18px; }
    .bullets{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .bullets li{
      display:flex; gap:10px; align-items:flex-start;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .check{
      width:18px; height:18px; border-radius:6px;
      background: linear-gradient(180deg, rgba(11,92,255,.18), rgba(11,92,255,.08));
      border:1px solid rgba(11,92,255,.24);
      display:inline-flex; align-items:center; justify-content:center;
      color:#0b5cff;
      margin-top:2px;
      flex:0 0 auto;
      font-size:12px;
      font-weight:900;
    }

    .metrics{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
    }
    .metric-list{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .metric{
      padding:16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(10,35,80,.12);
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(11,92,255,.22);
    }
    .metric .num{
      font-size: 26px;
      font-weight: 950;
      letter-spacing:-.6px;
      color:#0a2c6f;
    }
    .metric .lab{
      color: var(--muted);
      font-size:13.5px;
      margin-top:6px;
      line-height:1.7;
    }

    .process{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      padding:16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      border:1px solid rgba(10,35,80,.12);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(11,92,255,.20);
    }
    .step .idx{
      width:40px;height:40px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: linear-gradient(180deg, rgba(11,92,255,.20), rgba(11,92,255,.08));
      border:1px solid rgba(11,92,255,.22);
      font-weight:950;color:#0a2c6f;
      box-shadow: 0 18px 34px rgba(11,92,255,.12);
      margin-bottom: 10px;
    }
    .step h3{ margin:0; font-size:15px; color:#0a2c6f; }
    .step p{ margin:10px 0 0; color:var(--muted); font-size:13.5px; line-height:1.8; }

    .compare{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(10,35,80,.12);
      border-radius: 22px;
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
    }
    .compare .head{
      padding:16px;
      background:
        linear-gradient(180deg, rgba(11,92,255,.10), rgba(255,255,255,0));
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-bottom:1px solid rgba(10,35,80,.10);
    }
    .stars{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .stars .snum{
      font-weight:950; font-size:22px; color:#0a2c6f;
      letter-spacing:-.4px;
    }
    .star-row{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      fill: rgba(11,92,255,.16);
      stroke: rgba(11,92,255,.65);
      stroke-width:1.4;
    }
    .star.on{
      fill: rgba(11,92,255,.35);
      stroke: rgba(11,92,255,.95);
    }
    .compare table{
      width:100%;
      border-collapse: collapse;
      font-size:13.5px;
    }
    .compare th, .compare td{
      padding:12px 14px;
      border-bottom:1px solid rgba(10,35,80,.10);
      vertical-align:top;
    }
    .compare th{
      text-align:left;
      color:#0a2c6f;
      font-weight:900;
      background: rgba(10,35,80,.02);
      white-space:nowrap;
    }
    .pill-yes, .pill-mid{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(10,35,80,.12);
      font-weight:850;
      font-size:12px;
      color:var(--muted);
      background: rgba(255,255,255,.75);
    }
    .pill-yes{
      border-color: rgba(11,92,255,.22);
      background: rgba(11,92,255,.07);
      color:#0a2c6f;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .time-card{
      padding:16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(10,35,80,.12);
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
    }
    .time-card h3{ margin:0; font-size:15px; color:#0a2c6f; }
    .time{
      margin-top: 12px;
      display:grid;
      gap:10px;
    }
    .titem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius: 14px;
      background: rgba(10,35,80,.03);
      border:1px solid rgba(10,35,80,.08);
    }
    .tbullet{
      width:10px;height:10px;border-radius:50%;
      background:#0b5cff;
      margin-top:6px;
      box-shadow: 0 0 0 6px rgba(11,92,255,.14);
      flex:0 0 auto;
    }
    .titem strong{
      display:block;
      font-size:13.5px;
      color:#0a2c6f;
      line-height:1.4;
    }
    .titem span{
      display:block;
      margin-top:4px;
      font-size:13px;
      color:var(--muted);
      line-height:1.7;
    }

    .tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin: 10px 0 0;
    }
    .tab{
      cursor:pointer;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(10,35,80,.12);
      background: rgba(255,255,255,.82);
      font-weight:850;
      color: var(--muted);
      font-size:13px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
    }
    .tab:hover{ transform: translateY(-1px); border-color: rgba(11,92,255,.20); color:#0a2c6f; }
    .tab.active{
      background: rgba(11,92,255,.10);
      border-color: rgba(11,92,255,.25);
      color:#0a2c6f;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case{
      border-radius: var(--radius);
      border:1px solid rgba(10,35,80,.12);
      background: rgba(255,255,255,.80);
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column;
      min-height: 300px;
    }
    .case:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(11,92,255,.20); }
    .case .imgwrap{
      padding:14px 14px 0;
    }
    .case img{
      width:100%;
      max-width:100%;
      height:auto;
      border-radius: 14px;
      border:1px solid rgba(10,35,80,.10);
      display:block;
      background:#fff;
    }
    .case .body{
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      flex:1;
    }
    .case .meta{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .badge-mini{
      font-size:12px;
      font-weight:850;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(10,35,80,.12);
      background: rgba(10,35,80,.03);
      color: var(--muted);
      white-space:nowrap;
    }
    .badge-mini.blue{
      border-color: rgba(11,92,255,.22);
      background: rgba(11,92,255,.08);
      color:#0a2c6f;
    }
    .case h3{
      margin:0;
      font-size:15px;
      color:#0a2c6f;
      line-height:1.4;
    }
    .case p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .case .foot{
      margin-top:auto;
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      padding-top: 6px;
    }
    .link-btn{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(11,92,255,.22);
      color:#0a2c6f;
      background: rgba(11,92,255,.06);
      font-weight:900;
      font-size:13px;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      cursor:pointer;
    }
    .link-btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(11,92,255,.14);
      border-color: rgba(11,92,255,.32);
    }

    .article-list{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .article{
      padding:16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      border:1px solid rgba(10,35,80,.12);
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(11,92,255,.20); }
    .article .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .article h3{
      margin:0;
      font-size:15px;
      color:#0a2c6f;
      line-height:1.5;
      letter-spacing:.1px;
    }
    .article p{
      margin:10px 0 0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .article .domain{
      color: var(--muted2);
      font-size:12.5px;
      font-weight:850;
      background: rgba(10,35,80,.03);
      border:1px solid rgba(10,35,80,.10);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }

    .form-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    form{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(10,35,80,.12);
      border-radius: 22px;
      padding:16px;
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
    }
    .form-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom: 12px;
    }
    .form-head h3{
      margin:0; font-size:15px; color:#0a2c6f; letter-spacing:.1px;
    }
    .form-head p{
      margin:8px 0 0; color: var(--muted); font-size:13.5px; line-height:1.8;
      max-width: 52ch;
    }
    .fields{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:12px;
      margin-top: 12px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-size:12.5px;
      color: var(--muted2);
      font-weight:850;
    }
    input, select, textarea{
      width:100%;
      padding:11px 12px;
      border-radius: 14px;
      border:1px solid rgba(10,35,80,.14);
      background: rgba(255,255,255,.92);
      color: var(--ink);
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
    }
    textarea{ min-height: 110px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(11,92,255,.38);
      box-shadow: 0 0 0 6px var(--focus);
    }
    .full{ grid-column: 1 / -1; }
    .submit-row{
      margin-top: 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .fineprint{
      color: var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      max-width: 50ch;
    }
    .fineprint a{
      color:#0a2c6f;
      font-weight:900;
      border-bottom: 1px dashed rgba(10,35,80,.35);
    }

    .aside-cards{
      display:grid;
      gap:14px;
    }
    .aside-card{
      border-radius: 22px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(10,35,80,.12);
      padding:16px;
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
    }
    .aside-card h3{
      margin:0;
      font-size:15px;
      color:#0a2c6f;
    }
    .aside-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .kv{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .kv .item{
      padding:12px;
      border-radius: 16px;
      border:1px solid rgba(10,35,80,.10);
      background: rgba(10,35,80,.03);
    }
    .kv .item strong{
      display:block;
      font-size:12.5px;
      color:#0a2c6f;
      font-weight:950;
    }
    .kv .item span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      word-break:break-word;
    }

    .accordion{
      display:grid;
      gap:12px;
    }
    details{
      border-radius: 18px;
      border:1px solid rgba(10,35,80,.12);
      background: rgba(255,255,255,.80);
      padding: 12px 14px;
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
      transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    }
    details[open]{
      border-color: rgba(11,92,255,.25);
      box-shadow: var(--shadow2);
      transform: translateY(-1px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:6px 2px;
    }
    summary::-webkit-details-marker{ display:none; }
    summary strong{
      font-size:14px;
      color:#0a2c6f;
      line-height:1.5;
    }
    .sum-icon{
      width:34px;height:34px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(11,92,255,.08);
      border:1px solid rgba(11,92,255,.18);
      color:#0b5cff;
      font-weight:950;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    details[open] .sum-icon{ transform: rotate(90deg); }
    details .ans{
      padding: 10px 2px 6px;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.85;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      padding:16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      border:1px solid rgba(10,35,80,.12);
      box-shadow: 0 10px 26px rgba(10,35,80,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .review:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(11,92,255,.20); }
    .review::before{
      content:"";
      position:absolute;
      width:200px;height:200px;
      right:-110px; top:-120px;
      background: radial-gradient(circle at 30% 30%, rgba(11,92,255,.18), rgba(255,255,255,0) 60%);
      pointer-events:none;
    }
    .review > *{ position:relative; z-index:1; }
    .review .who{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:38px;height:38px;border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(11,92,255,.08);
      border:1px solid rgba(11,92,255,.18);
      color:#0a2c6f;
      font-weight:950;
    }
    .review h3{ margin:10px 0 0; font-size:15px; color:#0a2c6f; }
    .review p{
      margin:10px 0 0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.9;
    }
    .review .meta{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:8px; align-items:center;
    }

    .tagcloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 8px;
    }
    .cloud-tag{
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(10,35,80,.12);
      background: rgba(255,255,255,.78);
      color: var(--muted);
      font-weight:850;
      font-size:12.5px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
      cursor:default;
    }
    .cloud-tag:hover{
      transform: translateY(-1px);
      border-color: rgba(11,92,255,.25);
      background: rgba(11,92,255,.06);
      color:#0a2c6f;
    }

    .footer{
      background: #0a2c6f;
      color: #eaf1ff;
      border-top: 1px solid rgba(255,255,255,.10);
      padding: 34px 0 18px;
    }
    .footer .foot-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .foot-left p{
      margin:10px 0 0;
      color: rgba(234,241,255,.78);
      line-height:1.9;
      font-size:13.5px;
      max-width: 66ch;
    }
    .foot-links{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 14px;
    }
    .foot-links a{
      color:#eaf1ff;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      padding:10px 12px;
      border-radius: 999px;
      font-weight:900;
      font-size:13px;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .foot-links a:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.30);
    }
    .friend{
      margin-top: 10px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      border-radius: 22px;
      padding:14px;
    }
    .friend h3{ margin:0; font-size:14px; color:#ffffff; letter-spacing:.2px; }
    .friend .list{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .friend a{
      color:#eaf1ff;
      font-weight:800;
      font-size:13.5px;
      padding:10px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.10);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .friend a:hover{
      transform: translateY(-1px);
      background: rgba(0,0,0,.18);
      border-color: rgba(255,255,255,.26);
    }
    .copyright{
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      color: rgba(234,241,255,.74);
      font-size:12.5px;
    }

    .float-cta{
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width: 46px; height: 46px;
      border-radius: 16px;
      border: 1px solid rgba(10,35,80,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 40px rgba(10,35,80,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      color:#0a2c6f;
    }
    .float-btn:hover{ transform: translateY(-2px); box-shadow: 0 24px 60px rgba(10,35,80,.22); }
    .tooltip{
      position:absolute;
      right:56px;
      background: rgba(10,35,80,.92);
      color:#fff;
      padding:10px 12px;
      border-radius: 14px;
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
      opacity:0;
      transform: translateY(6px);
      pointer-events:none;
      transition: opacity .15s ease, transform .15s ease;
    }
    .float-wrap{ position:relative; }
    .float-wrap:hover .tooltip{ opacity:1; transform: translateY(0); }

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

    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left: 18px; top: 10px; width:auto; height:auto;
      background:#fff; padding:12px 14px; border-radius:14px;
      border:1px solid rgba(10,35,80,.18);
      z-index:100;
    }

    .table-wrap{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
      border-radius: 18px;
    }
    .table-wrap .compare{ min-width: 720px; }
    .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;
    }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-card{ min-height: unset; }
      .hero-side{ min-height: unset; }
      .grid-3{ grid-template-columns: 1fr; }
      .grid-2{ grid-template-columns: 1fr; }
      .metrics{ grid-template-columns: 1fr; }
      .metric-list{ grid-template-columns: 1fr; }
      .process{ grid-template-columns: 1fr 1fr; }
      .timeline{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .article-list{ grid-template-columns: 1fr; }
      .form-wrap{ grid-template-columns: 1fr; }
      .reviews{ grid-template-columns: 1fr; }
      .footer .foot-grid{ grid-template-columns: 1fr; }
      .nav-links{ display:none; }
      .menu-btn{ display:inline-flex; align-items:center; gap:10px; }
      .menu-panel.show{ display:block; }
    }
    @media (max-width: 520px){
      .hero h1{ font-size: 28px; }
      .hero-card{ padding: 18px; border-radius: 22px; }
      .hero-side{ border-radius: 22px; padding: 14px; }
      section{ padding: 44px 0; }
      .process{ grid-template-columns: 1fr; }
      .fields{ grid-template-columns: 1fr; }
      .hero-subgrid{ grid-template-columns: 1fr; }
      .nav-wrap{ padding: 10px 0; }
      .brand{ min-width: auto; }
      .brand-name span{ display:none; }
    }