:root{
      --bg0:#f7f9ff;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#556277;
      --muted2:#6b7280;
      --line:#e7ebf5;
      --card:#ffffff;
      --brand:#0b4dff;
      --brand2:#1a73ff;
      --brand3:#2a93ff;
      --deep:#061a3a;
      --chip:#eff4ff;
      --shadow: 0 14px 40px rgba(9, 27, 80, .10);
      --shadow2: 0 10px 24px rgba(9, 27, 80, .10);
      --radius:18px;
      --radius2:24px;
      --focus: rgba(11,77,255,.22);
      --success:#0ea5e9;
      --warning:#f59e0b;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 10% -10%, rgba(11,77,255,.22), transparent 60%),
        radial-gradient(650px 420px at 90% 10%, rgba(42,147,255,.20), transparent 55%),
        linear-gradient(180deg, #f6f8ff 0%, #ffffff 35%, #f7f9ff 100%);
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}

    .container{
      width:100%;
      max-width: 1160px;
      margin:0 auto;
      padding: 0 18px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(246, 248, 255, .72);
      border-bottom:1px solid rgba(231,235,245,.75);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 210px;
    }
    .brand img{
      width:40px;
      height:40px;
      object-fit:contain;
      border-radius:12px;
      background: rgba(11,77,255,.06);
      padding:6px;
      box-shadow: 0 10px 18px rgba(11,77,255,.10);
    }
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-name strong{
      font-size:15px;
      letter-spacing:.2px;
    }
    .brand-name span{
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }

    nav{display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:flex-end}
    .nav-links{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color: var(--muted);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      color: var(--text);
      background: rgba(11,77,255,.06);
      border-color: rgba(11,77,255,.12);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 210px;
    }
    .btn{
      appearance:none;
      border:none;
      background: none;
      cursor:pointer;
      font-weight:650;
      border-radius:14px;
      padding:11px 14px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn-primary{
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 55%, #54b6ff 130%);
      color:#fff;
      box-shadow: 0 16px 30px rgba(11,77,255,.22);
    }
    .btn-primary:hover{transform: translateY(-1px); box-shadow: 0 22px 44px rgba(11,77,255,.26)}
    .btn-ghost{
      color: var(--text);
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.65);
      box-shadow: 0 12px 24px rgba(9, 27, 80, .06);
    }
    .btn-ghost:hover{transform: translateY(-1px); border-color: rgba(11,77,255,.18); background: rgba(255,255,255,.9)}
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,255,255,.85);
      box-shadow: 0 0 0 6px rgba(255,255,255,.18);
    }

    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.7);
      box-shadow: 0 12px 24px rgba(9, 27, 80, .06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .menu-btn:hover{transform: translateY(-1px); border-color: rgba(11,77,255,.18); background: rgba(255,255,255,.95)}
    .hamburger{
      width:18px; height:12px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: #0b245a;
      transition: transform .2s ease, top .2s ease, opacity .2s ease, background .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px}
    .hamburger span:nth-child(3){top:10px}
    .menu-open .hamburger span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menu-open .hamburger span:nth-child(2){opacity:0}
    .menu-open .hamburger span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding: 10px 0 16px;
    }
    .mobile-panel .panel-links{
      display:flex; flex-direction:column; gap:8px;
      padding: 8px;
      border-radius: 18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(231,235,245,.9);
      box-shadow: var(--shadow2);
    }
    .mobile-panel a{
      padding:12px 12px;
      border-radius:14px;
      color: var(--text);
      font-weight:620;
      font-size:14px;
      background: rgba(11,77,255,.04);
      border:1px solid rgba(11,77,255,.10);
    }

    header.hero{
      padding: 38px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 22px;
      align-items: stretch;
    }
    .hero-card{
      border-radius: var(--radius2);
      background:
        radial-gradient(900px 300px at 10% 0%, rgba(11,77,255,.22), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.95) 90%);
      border: 1px solid rgba(231,235,245,.9);
      box-shadow: var(--shadow);
      padding: 26px 22px;
      position:relative;
      overflow:hidden;
      min-height: 360px;
    }
    .hero-card::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto auto;
      width: 320px;
      height: 320px;
      background:
        radial-gradient(circle at 30% 30%, rgba(42,147,255,.28), transparent 60%),
        radial-gradient(circle at 60% 70%, rgba(11,77,255,.22), transparent 55%);
      filter: blur(2px);
      transform: translate(40px,-40px);
      pointer-events:none;
    }

    .hero-top{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom: 12px;
      position:relative;
      z-index:2;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius: 999px;
      background: rgba(11,77,255,.08);
      border: 1px solid rgba(11,77,255,.14);
      color: #0b245a;
      font-weight:700;
      font-size:12.5px;
      letter-spacing:.2px;
    }
    .pill i{
      width:18px; height:18px;
      border-radius:6px;
      background: linear-gradient(135deg, rgba(11,77,255,1) 0%, rgba(42,147,255,1) 100%);
      box-shadow: 0 12px 24px rgba(11,77,255,.20);
      position:relative;
      display:inline-block;
    }
    .pill i::after{
      content:"";
      position:absolute; inset:5px 4px 5px 7px;
      border-radius: 2px;
      background: rgba(255,255,255,.92);
    }

    h1{
      font-size: 34px;
      line-height: 1.15;
      margin: 0 0 10px;
      letter-spacing: -0.4px;
      position:relative;
      z-index:2;
    }
    .hero-sub{
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      margin: 0 0 18px;
      max-width: 64ch;
      position:relative;
      z-index:2;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      position:relative;
      z-index:2;
    }
    .mini-trust{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top: 16px;
      flex-wrap:wrap;
      position:relative;
      z-index:2;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 16px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.75);
    }
    .trust-item b{
      font-size:13px;
    }
    .trust-item span{
      font-size:12px;
      color: var(--muted);
    }
    .badge{
      width:36px; height:36px;
      border-radius: 14px;
      background: rgba(11,77,255,.08);
      border: 1px solid rgba(11,77,255,.14);
      display:flex; align-items:center; justify-content:center;
      color: var(--brand);
      font-weight:900;
    }

    .hero-side{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.9);
      background: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.98) 100%);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      padding: 18px;
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .hero-side::before{
      content:"";
      position:absolute;
      inset:-80px -120px auto auto;
      width: 320px; height: 320px;
      background: radial-gradient(circle at 30% 30%, rgba(11,77,255,.22), transparent 60%);
      filter: blur(2px);
      pointer-events:none;
    }
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative;
      z-index:1;
      margin-bottom: 10px;
    }
    .side-title h2{
      font-size:15px; margin:0; letter-spacing:.1px;
    }
    .tag{
      font-size:12px;
      color:#0b245a;
      background: rgba(11,77,255,.08);
      border: 1px solid rgba(11,77,255,.14);
      padding:7px 10px;
      border-radius: 999px;
      font-weight:700;
      white-space:nowrap;
    }

    .side-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .metric{
      border-radius: 16px;
      border: 1px solid rgba(231,235,245,.95);
      background: rgba(255,255,255,.78);
      padding: 14px 14px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(9, 27, 80, .10);
      border-color: rgba(11,77,255,.18);
    }
    .metric-left{
      display:flex; gap:12px; align-items:flex-start;
    }
    .metric-icon{
      width:40px; height:40px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      color: var(--brand);
      font-weight:900;
      flex:0 0 auto;
    }
    .metric b{
      font-size:16px;
    }
    .metric p{
      margin:6px 0 0;
      color: var(--muted);
      font-size:12.5px;
      line-height:1.55;
      max-width: 28ch;
    }
    .spark{
      width:64px; height:32px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(11,77,255,.10), rgba(11,77,255,.03));
      border:1px solid rgba(231,235,245,.95);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .spark::after{
      content:"";
      position:absolute;
      inset:-18px -40px auto auto;
      width:90px; height:70px;
      background: radial-gradient(circle at 30% 30%, rgba(42,147,255,.35), transparent 55%);
      transform: rotate(18deg);
      animation: floatGlow 3.6s ease-in-out infinite;
      opacity:.9;
    }
    @keyframes floatGlow{
      0%,100%{transform: translateY(0) rotate(18deg)}
      50%{transform: translateY(-6px) rotate(18deg)}
    }

    .section{
      padding: 26px 0;
    }
    .section .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom: 14px;
    }
    .section h2{
      font-size: 22px;
      margin: 0;
      letter-spacing:-.2px;
    }
    .section-head .desc{
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.7;
      max-width: 64ch;
      margin:0;
    }

    .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{
      border-radius: var(--radius);
      border: 1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.86);
      box-shadow: 0 12px 26px rgba(9, 27, 80, .06);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(9, 27, 80, .10);
      border-color: rgba(11,77,255,.18);
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 15px;
      letter-spacing:.1px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size: 13.2px;
      line-height: 1.7;
    }

    .card .corner{
      position:absolute;
      width: 120px;
      height: 120px;
      right:-50px; top:-60px;
      background: radial-gradient(circle at 30% 30%, rgba(11,77,255,.18), transparent 60%);
      pointer-events:none;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .step{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.88);
      box-shadow: 0 12px 26px rgba(9, 27, 80, .06);
      position:relative;
      overflow:hidden;
    }
    .step::before{
      content:"";
      position:absolute;
      inset:-60px auto auto -60px;
      width: 140px; height: 140px;
      background: radial-gradient(circle at 40% 40%, rgba(42,147,255,.18), transparent 60%);
      pointer-events:none;
    }
    .step-head{
      display:flex;
      align-items:center;
      gap:10px;
      position:relative;
      z-index:1;
      margin-bottom: 10px;
    }
    .step-num{
      width:34px; height:34px;
      border-radius: 14px;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      color: var(--brand);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      flex:0 0 auto;
    }
    .step h3{margin:0; font-size: 14.5px}
    .step p{margin:0; color:var(--muted); font-size:13px; line-height:1.65; position:relative; z-index:1}

    .compare{
      overflow:hidden;
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
    }
    .compare-top{
      padding: 16px 18px;
      border-bottom:1px solid rgba(231,235,245,.9);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:12px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background: linear-gradient(135deg, #ffd54a, #ffb020);
      clip-path: polygon(50% 0%, 63% 30%, 98% 35%, 72% 57%, 79% 92%, 50% 75%, 21% 92%, 28% 57%, 2% 35%, 37% 30%);
      box-shadow: 0 10px 18px rgba(255, 170, 0, .25);
    }
    .rating b{font-size: 18px}
    .rating span{color:var(--muted); font-size:13px}
    .compare-actions{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .btn-small{
      padding:9px 12px;
      border-radius: 12px;
      font-size: 13px;
      font-weight:750;
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13px;
    }
    thead th{
      text-align:left;
      color: var(--muted);
      font-weight:750;
      padding: 12px 14px;
      background: linear-gradient(180deg, rgba(11,77,255,.06), rgba(11,77,255,.02));
      border-bottom:1px solid rgba(231,235,245,.9);
      white-space:nowrap;
    }
    tbody td{
      padding: 12px 14px;
      border-bottom:1px solid rgba(231,235,245,.8);
      vertical-align:top;
      color: var(--text);
    }
    tbody tr:last-child td{border-bottom:none}
    .td-muted{color:var(--muted)}
    .badge-ok{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius: 999px;
      background: rgba(14,165,233,.10);
      border:1px solid rgba(14,165,233,.20);
      color:#0a4a63;
      font-weight:800;
      white-space:nowrap;
    }
    .badge-no{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius: 999px;
      background: rgba(245,158,11,.10);
      border:1px solid rgba(245,158,11,.20);
      color:#7a4a08;
      font-weight:800;
      white-space:nowrap;
    }

    .accordion{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .faq{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      overflow:hidden;
    }
    .faq-item{
      border-bottom:1px solid rgba(231,235,245,.85);
    }
    .faq-item:last-child{border-bottom:none}
    .faq-q{
      width:100%;
      text-align:left;
      padding: 14px 16px;
      border:none;
      background: transparent;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:820;
      color: var(--text);
    }
    .faq-q:focus{outline:none; box-shadow: inset 0 0 0 3px var(--focus)}
    .faq-q span{
      font-size: 14px;
      line-height:1.5;
    }
    .chev{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.82);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      color: var(--brand);
      font-weight:900;
    }
    .faq-item[data-open="true"] .chev{transform: rotate(180deg); border-color: rgba(11,77,255,.18); background: rgba(11,77,255,.06)}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .faq-item[data-open="true"] .faq-a{max-height: 240px}
    .faq-a p{
      margin:0;
      padding: 0 16px 14px;
      color: var(--muted);
      font-size: 13.2px;
      line-height:1.75;
    }

    .side-panel{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.98) 100%);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      padding: 16px;
      position:sticky;
      top: 86px;
      overflow:hidden;
    }
    .side-panel::after{
      content:"";
      position:absolute;
      inset:auto -80px -110px auto;
      width: 260px; height: 260px;
      background: radial-gradient(circle at 30% 30%, rgba(11,77,255,.18), transparent 60%);
      pointer-events:none;
    }
    .side-panel h3{margin:0 0 10px; font-size:15px; position:relative; z-index:1}
    .side-panel p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.7; position:relative; z-index:1}
    .bullet{
      margin: 12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative; z-index:1;
    }
    .bullet li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.75);
    }
    .bullet i{
      width:26px; height:26px;
      border-radius: 12px;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      display:flex; align-items:center; justify-content:center;
      color: var(--brand);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .bullet b{font-size:13px}
    .bullet span{display:block; color:var(--muted); font-size:12.5px; margin-top:3px; line-height:1.5}

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .review{
      padding: 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      overflow:hidden;
      position:relative;
    }
    .review::after{
      content:"";
      position:absolute;
      width:160px; height:160px;
      right:-70px; top:-90px;
      background: radial-gradient(circle at 30% 30%, rgba(11,77,255,.16), transparent 60%);
      pointer-events:none;
    }
    .review-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative; z-index:1;
      margin-bottom: 10px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius: 16px;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      display:flex; align-items:center; justify-content:center;
      color: var(--brand);
      font-weight:950;
      flex:0 0 auto;
    }
    .review-top b{font-size:13.5px}
    .review-top span{display:block; color:var(--muted); font-size:12.3px; margin-top:2px}
    .review p{
      margin:0;
      color: var(--muted);
      font-size: 13.2px;
      line-height:1.75;
      position:relative; z-index:1;
    }

    .case-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .case-card{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      overflow:hidden;
    }
    .case-card .inner{
      padding: 16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .case-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .case-head h3{margin:0; font-size:15.5px}
    .case-head .meta{
      text-align:right;
      color:var(--muted);
      font-size:12.6px;
      line-height:1.4;
      white-space:nowrap;
    }
    .case-list{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin:0; padding:0;
      list-style:none;
    }
    .case-list li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.78);
    }
    .case-list i{
      width:26px; height:26px;
      border-radius: 12px;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      display:flex; align-items:center; justify-content:center;
      color: var(--brand);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .case-list b{font-size:13px}
    .case-list span{display:block; color:var(--muted); font-size:12.5px; margin-top:3px; line-height:1.5}

    .list-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 10px;
    }
    .list-links a{
      padding:9px 12px;
      border-radius: 999px;
      background: rgba(11,77,255,.06);
      border:1px solid rgba(11,77,255,.12);
      font-weight:800;
      font-size:13px;
      color: #0b245a;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .list-links a:hover{transform: translateY(-1px); background: rgba(11,77,255,.10); border-color: rgba(11,77,255,.18)}

    .article{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      padding: 16px;
    }
    .article-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      margin-bottom: 10px;
    }
    .article-head h3{margin:0; font-size:15.5px}
    .article-head p{margin:0; color:var(--muted); font-size:12.8px; line-height:1.6}
    .article ul{
      margin:0; padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .article li{
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.78);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .15s ease, border-color .2s ease;
    }
    .article li:hover{transform: translateY(-1px); border-color: rgba(11,77,255,.18)}
    .article li b{
      font-size:13.2px;
      line-height:1.4;
      max-width: 50ch;
    }
    .article li a{
      padding:8px 10px;
      border-radius: 12px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.82);
      color: var(--brand);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
      transition: background .2s ease, border-color .2s ease, transform .15s ease;
    }
    .article li a:hover{background: rgba(11,77,255,.06); border-color: rgba(11,77,255,.18); transform: translateY(-1px)}

    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(11,77,255,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.98) 100%);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .08);
      overflow:hidden;
    }
    .form-inner{
      padding: 16px;
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:start;
    }
    .form-inner .copy h3{margin:0 0 8px; font-size:15.5px}
    .form-inner .copy p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.75}
    .form-inner .copy .hint{
      margin-top:12px;
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.78);
    }
    .form-inner .copy .hint i{
      width:26px; height:26px;
      border-radius: 12px;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      color: var(--brand);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      flex:0 0 auto;
      margin-top:2px;
    }
    .form-inner .copy .hint span{color:var(--muted); font-size:12.8px; line-height:1.55}

    form{
      margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:6px;
      font-size:12.8px;
      color: var(--muted);
      font-weight:650;
    }
    input, select, textarea{
      border-radius: 14px;
      border:1px solid rgba(231,235,245,.95);
      background: rgba(255,255,255,.88);
      padding: 12px 12px;
      font-size:14px;
      color: var(--text);
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    textarea{min-height: 110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      outline:none;
      border-color: rgba(11,77,255,.35);
      box-shadow: 0 0 0 4px rgba(11,77,255,.14);
      background: rgba(255,255,255,.98);
    }
    .form-actions{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:flex-start;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .note{
      color:var(--muted2);
      font-size:12.4px;
      line-height:1.55;
    }

    footer{
      padding: 22px 0 30px;
      border-top: 1px solid rgba(231,235,245,.85);
      background: linear-gradient(180deg, rgba(247,249,255,.75) 0%, rgba(255,255,255,.95) 100%);
    }
    .footer-inner{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .footer-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 16px;
      flex-wrap:wrap;
    }
    .footer-left{
      display:flex; gap:12px; align-items:flex-start;
      max-width: 560px;
    }
    .footer-left img{
      width:44px; height:44px;
      border-radius:16px;
      object-fit:contain;
      border:1px solid rgba(231,235,245,.95);
      background: rgba(255,255,255,.9);
      padding:6px;
    }
    .footer-left b{font-size:14.5px}
    .footer-left p{margin:6px 0 0; color:var(--muted); font-size:13.2px; line-height:1.7}
    .footer-links{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
      align-items:center;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius: 999px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.8);
      color: var(--brand);
      font-weight:850;
      font-size:12.8px;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{transform: translateY(-1px); border-color: rgba(11,77,255,.18); background: rgba(11,77,255,.06)}
    .footer-mid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .foot-card{
      border-radius: var(--radius2);
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(9, 27, 80, .06);
      padding: 14px;
    }
    .foot-card h3{margin:0 0 10px; font-size:14.5px}
    .kv{
      display:flex; flex-direction:column; gap:8px;
    }
    .kv div{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      color: var(--muted);
      font-size:13px;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.78);
    }
    .kv div b{
      color: var(--text);
      font-size:13px;
    }
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
      color: var(--muted);
      font-size:12.8px;
    }
    .divider{
      width: 1px;
      height: 16px;
      background: rgba(231,235,245,.95);
    }

    .floating-cs{
      position:fixed;
      right: 14px;
      bottom: 14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      border-radius: 18px;
      border: 1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 40px rgba(9, 27, 80, .12);
      padding: 10px 12px;
      display:flex;
      align-items:center;
      gap:10px;
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      user-select:none;
      max-width: 220px;
    }
    .float-btn:hover{transform: translateY(-2px); border-color: rgba(11,77,255,.18); background: rgba(255,255,255,.95)}
    .float-badge{
      width:38px; height:38px;
      border-radius: 16px;
      background: rgba(11,77,255,.08);
      border:1px solid rgba(11,77,255,.14);
      display:flex; align-items:center; justify-content:center;
      color: var(--brand);
      font-weight:950;
      flex:0 0 auto;
    }
    .float-btn b{font-size:13.5px}
    .float-btn span{display:block; color:var(--muted); font-size:12.3px; margin-top:2px}
    .qr-pop{
      display:none;
      width: 230px;
      border-radius: 22px;
      border:1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.94);
      box-shadow: 0 22px 60px rgba(9, 27, 80, .18);
      padding: 12px;
      overflow:hidden;
    }
    .qr-pop .qr-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .qr-pop .qr-top b{font-size:13.5px}
    .close-x{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(231,235,245,.9);
      background: rgba(255,255,255,.85);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: var(--muted);
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .close-x:hover{transform: translateY(-1px); border-color: rgba(11,77,255,.18); background: rgba(11,77,255,.06); color: var(--text)}
    .qr-pop img{
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(231,235,245,.95);
      background: #fff;
    }
    .qr-pop p{
      margin:10px 2px 0;
      color: var(--muted);
      font-size:12.8px;
      line-height:1.55;
    }

    .to-top{
      display:none;
      border-radius: 18px;
      border: 1px solid rgba(231,235,245,.92);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 40px rgba(9, 27, 80, .12);
      width: 46px; height: 46px;
      cursor:pointer;
      position:fixed;
      right: 14px;
      bottom: 86px;
      z-index:60;
      align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      color: var(--brand);
      font-weight:950;
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(11,77,255,.18); background: rgba(255,255,255,.95)}

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-card, .hero-side{min-height:auto}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .accordion{grid-template-columns: 1fr}
      .side-panel{position:relative; top:auto}
      .case-grid{grid-template-columns: 1fr}
      .form-inner{grid-template-columns: 1fr}
      nav{display:none}
      .nav-cta{min-width:auto}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
      .to-top{bottom: 96px}
      h1{font-size: 30px}
    }

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