:root{
      --bg0:#fbfaf7;
      --bg1:#f6f4ef;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6b7a;
      --muted2:#7b8a9a;
      --line:rgba(20, 32, 49, .10);
      --shadow: 0 14px 40px rgba(17, 24, 39, .08);
      --shadow2: 0 10px 24px rgba(17, 24, 39, .10);
      --radius:18px;
      --radius2:14px;
      --brand1:#5b8cff;
      --brand2:#8a5bff;
      --brand3:#20c997;
      --brand4:#ffb020;
      --accent:#2b5cff;
      --focus: rgba(91, 140, 255, .20);
      --btn:#1f5bff;
      --btn2:#1d4ed8;
      --ok:#0ea5e9;
      --warn:#f59e0b;
      --danger:#ef4444;
      --chip:#eef2ff;
      --chip2:#f1f5f9;
      --k:#111827;
      --footerBg:#0b1220;
      --footerText:#e5e7eb;
      --footerMuted:#a7b0bf;
      --link:#93c5fd;
    }
    *{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", "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1000px 500px at 15% -10%, rgba(91,140,255,.18), transparent 60%),
        radial-gradient(900px 420px at 85% -20%, rgba(138,91,255,.18), transparent 55%),
        radial-gradient(800px 420px at 60% 0%, rgba(32,201,151,.12), transparent 50%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:1160px;
      margin:0 auto;
      padding:0 20px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(12px);
      background: rgba(251,250,247,.70);
      border-bottom: 1px solid rgba(20, 32, 49, .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:180px;
    }
    .logoWrap{
      width:40px; height:40px;
      border-radius:12px;
      background:
        radial-gradient(12px 12px at 30% 25%, rgba(255,255,255,.65), transparent 60%),
        linear-gradient(135deg, rgba(91,140,255,.95), rgba(138,91,255,.95));
      box-shadow: 0 10px 30px rgba(91,140,255,.20);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.55);
    }
    .brand img.ai-page-logo{width:28px; height:auto; display:block}
    .brandName{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brandName strong{font-size:14px; letter-spacing:.2px}
    .brandName span{font-size:12px; color:var(--muted); margin-top:4px}
    .navRight{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .navLinks{
      display:flex; gap:14px; align-items:center; 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;
    }
    .navLinks a:hover{
      transform: translateY(-1px);
      color:var(--k);
      background: rgba(255,255,255,.65);
      border-color: rgba(20,32,49,.10);
    }
    .pillBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(29,78,216,.20);
      background:
        radial-gradient(16px 16px at 25% 30%, rgba(255,255,255,.75), transparent 60%),
        linear-gradient(135deg, rgba(91,140,255,.14), rgba(138,91,255,.14));
      color:#11306f;
      font-weight:650;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .pillBtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(43,92,255,.18);
      border-color: rgba(29,78,216,.35);
    }
    .primaryBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:11px 16px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.25);
      background: linear-gradient(135deg, var(--btn), var(--btn2));
      color:#fff;
      font-weight:750;
      font-size:13px;
      box-shadow: 0 16px 40px rgba(29,78,216,.25);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      white-space:nowrap;
    }
    .primaryBtn:hover{transform: translateY(-1px); box-shadow: 0 22px 60px rgba(29,78,216,.30); filter:saturate(1.02)}
    .hamburger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      cursor:pointer;
      transition: transform .16s ease, background .16s ease, border-color .16s ease;
    }
    .hamburger:hover{transform: translateY(-1px); background: rgba(255,255,255,.75); border-color: rgba(20,32,49,.18)}
    .hamburger .bar{
      width:18px; height:2px; background: var(--k);
      margin:0 auto;
      border-radius:999px;
      position:relative;
    }
    .hamburger .bar:before,.hamburger .bar:after{
      content:"";
      position:absolute; left:0; width:18px; height:2px; background: var(--k); border-radius:999px;
    }
    .hamburger .bar:before{top:-6px}
    .hamburger .bar:after{top:6px}
    .mobileMenu{
      display:none;
      padding:0 0 14px;
    }
    .mobileMenuInner{
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.66);
      border-radius:16px;
      padding:12px;
      box-shadow: 0 20px 50px rgba(17,24,39,.10);
    }
    .mobileMenuInner a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:12px;
      color:var(--muted);
      border:1px solid transparent;
      transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
    }
    .mobileMenuInner a:hover{
      background: rgba(255,255,255,.85);
      border-color: rgba(20,32,49,.10);
      transform: translateY(-1px);
      color:var(--k);
    }
    .mobileMenuInner .grid2{
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .hero{
      padding:44px 0 18px;
      position:relative;
      overflow:hidden;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:24px;
      align-items:start;
    }
    .heroCard{
      border-radius: 26px;
      background:
        radial-gradient(1000px 420px at 20% 0%, rgba(91,140,255,.25), transparent 55%),
        radial-gradient(760px 380px at 90% 10%, rgba(138,91,255,.22), transparent 55%),
        radial-gradient(520px 260px at 60% 35%, rgba(32,201,151,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.58));
      border:1px solid rgba(20,32,49,.10);
      box-shadow: var(--shadow);
      padding:26px;
      position:relative;
      overflow:hidden;
      min-height: 320px;
    }
    .heroCard:after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(500px 180px at 15% 20%, rgba(255,176,32,.20), transparent 60%),
        radial-gradient(520px 200px at 85% 30%, rgba(32,201,151,.18), transparent 60%),
        radial-gradient(680px 280px at 55% 75%, rgba(91,140,255,.18), transparent 65%);
      opacity:.9;
      pointer-events:none;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.25) 70%, transparent);
    }
    .heroInner{position:relative; z-index:2}
    .badgeRow{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 26px rgba(91,140,255,.25);
    }
    h1{
      margin:0 0 10px;
      font-size:30px;
      letter-spacing:.2px;
      line-height:1.18;
      color:#0f172a;
      font-weight:860;
      max-width: 20ch;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width: 60ch;
    }
    .heroActions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:18px;
    }
    .ghostBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:11px 16px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.14);
      background: rgba(255,255,255,.55);
      color:var(--k);
      font-weight:720;
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .ghostBtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.85); border-color: rgba(20,32,49,.20)}
    .inlineMeta{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:18px;
    }
    .metaItem{
      display:flex; flex-direction:column;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.54);
      min-width: 150px;
    }
    .metaItem strong{
      font-size:16px;
      letter-spacing:.2px;
    }
    .metaItem span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
      line-height:1.4;
    }
    .sidePanel{
      border-radius: 26px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(20,32,49,.10);
      box-shadow: var(--shadow);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .sidePanel:before{
      content:"";
      position:absolute;
      width:240px; height:240px;
      right:-110px; top:-110px;
      background: radial-gradient(circle at 30% 30%, rgba(255,176,32,.30), transparent 60%),
                  radial-gradient(circle at 65% 65%, rgba(32,201,151,.22), transparent 55%),
                  radial-gradient(circle at 40% 70%, rgba(91,140,255,.22), transparent 60%);
      filter:saturate(1.1);
      pointer-events:none;
      opacity:.95;
    }
    .sideInner{position:relative; z-index:2}
    .sideTitle{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .sideTitle h2{
      font-size:15px; margin:0; font-weight:850; letter-spacing:.2px;
    }
    .chipRow{display:flex; flex-wrap:wrap; gap:8px}
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
      transition: transform .18s ease, border-color .18s ease;
    }
    .chip:hover{transform: translateY(-1px); border-color: rgba(29,78,216,.26)}
    .metricGrid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      margin-top:14px;
    }
    .metric{
      padding:14px 12px;
      border-radius:16px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.58);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 92px;
    }
    .metric:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(17,24,39,.10); border-color: rgba(29,78,216,.20)}
    .metric strong{display:block; font-size:18px; margin-bottom:6px; letter-spacing:.2px}
    .metric span{display:block; font-size:12px; color:var(--muted); line-height:1.5}
    .spark{
      height:8px; border-radius:999px;
      background: rgba(20,32,49,.06);
      overflow:hidden;
      margin-top:10px;
    }
    .spark i{
      display:block; height:100%;
      width:60%;
      background: linear-gradient(90deg, rgba(91,140,255,.85), rgba(138,91,255,.85), rgba(32,201,151,.80));
      border-radius:999px;
      transform-origin:left;
      animation: fill 1.8s ease-in-out both;
    }
    @keyframes fill{
      0%{transform: scaleX(.25); opacity:.6}
      55%{transform: scaleX(1); opacity:1}
      100%{transform: scaleX(.92); opacity:1}
    }
    .section{
      padding:26px 0;
    }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .kicker{
      color:var(--muted);
      font-size:12px;
      letter-spacing:.26em;
      text-transform:uppercase;
      margin-bottom:8px;
    }
    h2{
      margin:0;
      font-size:22px;
      letter-spacing:.2px;
      color:#0f172a;
      font-weight:880;
    }
    .sub{
      margin:8px 0 0;
      color:var(--muted);
      line-height:1.8;
      font-size:14px;
      max-width: 70ch;
    }
    .toolsBar{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .segBtn{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.12);
      background: rgba(255,255,255,.55);
      cursor:pointer;
      font-weight:720;
      color:var(--muted);
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      user-select:none;
    }
    .segBtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.85); border-color: rgba(20,32,49,.18); color:var(--k)}
    .segBtn.active{
      background: linear-gradient(135deg, rgba(91,140,255,.18), rgba(138,91,255,.18));
      border-color: rgba(29,78,216,.28);
      color:#0f2a6a;
    }
    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }
    .cards3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      background: rgba(255,255,255,.64);
      border:1px solid rgba(20,32,49,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 26px rgba(17,24,39,.05);
      padding: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(17,24,39,.10);
      border-color: rgba(29,78,216,.20);
    }
    .cardTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      margin-bottom:10px;
    }
    .icon{
      width:40px; height:40px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,32,49,.10);
      background:
        radial-gradient(14px 14px at 30% 25%, rgba(255,255,255,.75), transparent 60%),
        linear-gradient(135deg, rgba(91,140,255,.18), rgba(138,91,255,.18));
      color:#0f2a6a;
      flex:0 0 auto;
    }
    .icon svg{width:20px; height:20px}
    .card h3{
      margin:0;
      font-size:15px;
      font-weight:860;
      letter-spacing:.2px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .listRow{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;
    }
    .tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
    }
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .panel{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,32,49,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      overflow:hidden;
    }
    .panelTitle{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .panelTitle h3{margin:0; font-size:16px; font-weight:880}
    .muted{color:var(--muted)}
    .steps{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 12px;
      border-radius:16px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.56);
      transition: transform .18s ease, border-color .18s ease;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.20)}
    .stepNum{
      width:40px; height:40px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#0f2a6a;
      border:1px solid rgba(20,32,49,.10);
      background: linear-gradient(135deg, rgba(91,140,255,.18), rgba(138,91,255,.18));
      flex:0 0 auto;
    }
    .step h4{margin:0; font-size:14px; font-weight:880}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.75}
    .workflowBar{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;
    }
    .workflowPill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      font-size:13px;
      color:var(--muted);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      display:flex; align-items:center; gap:10px;
      cursor:pointer;
      user-select:none;
    }
    .workflowPill:hover{transform: translateY(-1px); border-color: rgba(29,78,216,.22); background: rgba(255,255,255,.8)}
    .workflowPill i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 12px 30px rgba(91,140,255,.22);
      display:inline-block;
    }
    .workflowPill.active{
      background: linear-gradient(135deg, rgba(91,140,255,.20), rgba(138,91,255,.18));
      border-color: rgba(29,78,216,.28);
      color:#0f2a6a;
      font-weight:760;
    }
    .compareWrap{
      overflow:hidden;
      border-radius: var(--radius);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
    }
    .tableWrap{
      width:100%;
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 720px;
    }
    th, td{
      padding:14px 12px;
      border-bottom: 1px solid rgba(20,32,49,.08);
      vertical-align:top;
      text-align:left;
      font-size:13px;
      line-height:1.6;
    }
    th{
      position:sticky;
      top:0;
      background: rgba(255,255,255,.90);
      z-index:2;
      color:#0f172a;
      font-weight:900;
      border-bottom:1px solid rgba(20,32,49,.10);
    }
    tr:last-child td{border-bottom:none}
    .best{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(32,201,151,.16), rgba(91,140,255,.14));
      border:1px solid rgba(32,201,151,.26);
      color:#0f2a6a;
      font-weight:850;
      white-space:nowrap;
    }
    .bad{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(239,68,68,.08);
      border:1px solid rgba(239,68,68,.16);
      color:#7f1d1d;
      font-weight:850;
      white-space:nowrap;
    }
    .scoreCard{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-top:14px;
    }
    .scoreLeft{
      display:flex; align-items:center; gap:14px;
    }
    .scoreRing{
      width:74px; height:74px; border-radius:50%;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.8), transparent 55%),
        conic-gradient(from 180deg, rgba(91,140,255,.95) 0 78%, rgba(20,32,49,.12) 78% 100%);
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,255,255,.65);
      box-shadow: 0 18px 50px rgba(91,140,255,.18);
      flex:0 0 auto;
    }
    .scoreRing span{
      width:58px; height:58px; border-radius:50%;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(20,32,49,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#0f2a6a;
    }
    .scoreText strong{display:block; font-size:16px; font-weight:950}
    .scoreText span{display:block; color:var(--muted); font-size:13px; margin-top:4px}
    .stars{
      display:flex; gap:6px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      height: fit-content;
    }
    .star{
      width:18px; height:18px;
      color:#f59e0b;
    }
    .reviewsGrid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .review{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .review:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(17,24,39,.10)}
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background:
        radial-gradient(14px 14px at 30% 25%, rgba(255,255,255,.75), transparent 60%),
        linear-gradient(135deg, rgba(91,140,255,.22), rgba(138,91,255,.18));
      border:1px solid rgba(20,32,49,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#0f2a6a;
    }
    .reviewRole{
      display:flex; flex-direction:column; margin-left:10px;
    }
    .reviewRole strong{font-size:13px}
    .reviewRole span{font-size:12px; color:var(--muted); margin-top:3px}
    .reviewQuote{
      margin:0;
      color:var(--muted);
      line-height:1.85;
      font-size:13px;
    }
    .casesGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .caseCard{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
    }
    .caseCard:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(240px 120px at 20% 10%, rgba(91,140,255,.16), transparent 60%),
        radial-gradient(240px 120px at 85% 30%, rgba(138,91,255,.14), transparent 60%),
        radial-gradient(200px 110px at 40% 85%, rgba(32,201,151,.10), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .caseInner{position:relative; z-index:2}
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .caseTitle{
      margin:0;
      font-size:15px;
      font-weight:900;
    }
    .caseMeta{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;
    }
    .caseDesc{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.85;
    }
    .inlineLink{
      display:inline-flex; align-items:center; gap:10px;
      margin-top:12px;
      font-size:13px;
      font-weight:800;
      color:#0f2a6a;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .inlineLink:hover{transform: translateY(-2px); background: rgba(255,255,255,.85); border-color: rgba(29,78,216,.22)}
    .dotArrow{
      width:26px; height:26px; border-radius:10px;
      background: linear-gradient(135deg, rgba(91,140,255,.18), rgba(138,91,255,.18));
      border:1px solid rgba(20,32,49,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .dotArrow svg{width:14px; height:14px}
    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .articleList{
      padding:0;
      margin:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .articleItem{
      padding:14px 14px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .18s ease;
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
    }
    .articleItem:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.22)}
    .articleLeft{min-width:0}
    .articleTitle{
      margin:0;
      font-weight:920;
      font-size:14px;
      line-height:1.5;
      letter-spacing:.2px;
    }
    .articleSub{
      margin:6px 0 0;
      color:var(--muted);
      font-size:12px;
      line-height:1.7;
    }
    .readTime{
      white-space:nowrap;
      font-size:12px;
      color:var(--muted2);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      height: fit-content;
      flex:0 0 auto;
    }
    .accordion{
      display:flex; flex-direction:column; gap:10px;
    }
    details.faq{
      border-radius: var(--radius);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(17,24,39,.05);
      transition: border-color .18s ease, transform .18s ease;
    }
    details.faq[open]{border-color: rgba(29,78,216,.26)}
    details.faq summary{
      list-style:none;
      cursor:pointer;
      padding:16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .faqQ{
      font-weight:940;
      font-size:14px;
      line-height:1.6;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    details.faq[open] .chev{transform: rotate(180deg)}
    .chev svg{width:16px; height:16px}
    .faqA{
      padding:0 16px 16px;
      color:var(--muted);
      font-size:13px;
      line-height:1.9;
    }
    .faqA .note{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:12px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(32,201,151,.20);
      background: rgba(32,201,151,.08);
      color:#0f4c3a;
      font-weight:820;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    label{
      font-size:12px; color:var(--muted); font-weight:820; letter-spacing:.2px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,32,49,.14);
      background: rgba(255,255,255,.68);
      outline:none;
      color:var(--k);
      transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
      font-size:14px;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(91,140,255,.40);
      box-shadow: 0 0 0 4px var(--focus);
      background: rgba(255,255,255,.86);
    }
    .formFoot{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:12px;
    }
    .hint{
      color:var(--muted);
      font-size:12px;
      line-height:1.7;
      max-width: 52ch;
    }
    .submitBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.22);
      background: linear-gradient(135deg, rgba(91,140,255,.98), rgba(29,78,216,.98));
      color:#fff;
      font-weight:900;
      font-size:13px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      box-shadow: 0 16px 40px rgba(29,78,216,.26);
      white-space:nowrap;
    }
    .submitBtn:hover{transform: translateY(-2px); box-shadow: 0 22px 60px rgba(29,78,216,.33); filter:saturate(1.02)}
    .networkGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .networkMap{
      border-radius: var(--radius);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-height: 230px;
    }
    .networkMap:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 240px at 20% 25%, rgba(91,140,255,.18), transparent 60%),
        radial-gradient(380px 220px at 80% 35%, rgba(138,91,255,.16), transparent 60%),
        radial-gradient(340px 200px at 45% 85%, rgba(32,201,151,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
      pointer-events:none;
      opacity:.9;
    }
    .mapInner{position:relative; z-index:2}
    .mapTitle{
      font-weight:950;
      margin:0 0 8px;
      letter-spacing:.2px;
      font-size:15px;
    }
    .mapRow{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;
    }
    .city{
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.55);
      color:var(--muted);
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .city:hover{transform: translateY(-1px); border-color: rgba(29,78,216,.22)}
    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .timeItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 12px;
      border-radius: var(--radius);
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 10px 26px rgba(17,24,39,.05);
      transition: transform .18s ease, border-color .18s ease;
    }
    .timeItem:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.20)}
    .timeDot{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,32,49,.10);
      background: linear-gradient(135deg, rgba(32,201,151,.16), rgba(91,140,255,.14));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      color:#0f2a6a;
      font-weight:950;
    }
    .timeItem strong{display:block; font-size:14px; font-weight:950}
    .timeItem span{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.7}
    .footer{
      margin-top:12px;
      background: var(--footerBg);
      color: var(--footerText);
      padding:26px 0 18px;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footerBrand .logoBox{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.18);
      background:
        radial-gradient(14px 14px at 30% 25%, rgba(255,255,255,.24), transparent 60%),
        linear-gradient(135deg, rgba(91,140,255,.85), rgba(138,91,255,.85));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 60px rgba(91,140,255,.18);
      overflow:hidden;
      flex:0 0 auto;
    }
    .footerBrand .logoBox img{width:28px; height:auto; display:block}
    .footerBrand strong{display:block; font-size:16px; font-weight:950}
    .footerBrand p{
      margin:8px 0 0;
      color: var(--footerMuted);
      line-height:1.85;
      font-size:13px;
      max-width: 62ch;
    }
    .footerLinks{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .linkGroup h4{
      margin:0 0 10px;
      font-size:13px;
      color:#dbeafe;
      font-weight:950;
      letter-spacing:.2px;
    }
    .linkGroup a{
      display:flex;
      padding:8px 0;
      color: var(--footerText);
      font-size:13px;
      opacity:.92;
      transition: opacity .18s ease, transform .18s ease;
    }
    .linkGroup a:hover{opacity:1; transform: translateY(-1px)}
    .footerBottom{
      margin-top:16px;
      padding-top:16px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .copy{
      color: var(--footerMuted);
      font-size:12px;
      line-height:1.8;
    }
    .friend{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .friend a{
      color: var(--link);
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(147,197,253,.25);
      background: rgba(147,197,253,.08);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .friend a:hover{transform: translateY(-2px); border-color: rgba(147,197,253,.45); background: rgba(147,197,253,.14)}
    .floating{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
    }
    .floatBtn{
      width:50px; height:50px;
      border-radius:18px;
      border:1px solid rgba(20,32,49,.10);
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 44px rgba(17,24,39,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .floatBtn:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.22); background: rgba(255,255,255,.90)}
    .floatBtn svg{width:20px; height:20px}
    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:88px;
      z-index:80;
      background: rgba(15,23,42,.92);
      color:#fff;
      padding:10px 14px;
      border-radius:999px;
      font-size:13px;
      box-shadow: 0 26px 70px rgba(0,0,0,.25);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-4px);
    }

    .mobileOnly{display:none}
    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; gap:14px}
      .heroCard{min-height:unset}
      .cards3{grid-template-columns: 1fr; }
      .reviewsGrid{grid-template-columns: 1fr;}
      .casesGrid{grid-template-columns: 1fr;}
      .split{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .networkGrid{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      .footerLinks{grid-template-columns: 1fr 1fr}
    }
    @media (max-width: 780px){
      .navLinks{display:none}
      .hamburger{display:inline-flex; align-items:center; justify-content:center}
      .mobileMenu{display:block}
      .mobileOnly{display:block}
      .metricGrid{grid-template-columns: 1fr 1fr}
      h1{font-size:26px}
      .formGrid{grid-template-columns: 1fr}
      .footerLinks{grid-template-columns: 1fr}
      .floating{right:12px; bottom:12px}
    }