:root{
      --bg0:#ffffff;
      --bg1:#f7f6ff;
      --bg2:#f3fbff;
      --text:#1d2433;
      --muted:#5b667a;
      --muted2:#7a869e;
      --line:rgba(20,30,55,.10);
      --card:rgba(255,255,255,.76);
      --shadow:0 18px 44px rgba(16,24,40,.10);
      --shadow2:0 10px 24px rgba(16,24,40,.10);
      --shadow3:0 6px 16px rgba(16,24,40,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --brand1:#6d5cff;
      --brand2:#00c2ff;
      --brand3:#21d19f;
      --brand4:#ff4fd8;
      --focus: rgba(109,92,255,.22);
      --btn:#0f172a;
      --btn2:#111827;
      --btnText:#ffffff;
      --link:#1d4ed8;
      --good:#0ea5e9;
      --warn:#f97316;
      --gold:#fbbf24;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 15% -10%, rgba(109,92,255,.20), rgba(109,92,255,0) 60%),
        radial-gradient(900px 600px at 90% 8%, rgba(0,194,255,.18), rgba(0,194,255,0) 55%),
        radial-gradient(1000px 700px at 40% 110%, rgba(33,209,159,.16), rgba(33,209,159,0) 55%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 35%, var(--bg2) 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:1160px;
      margin:0 auto;
      padding:0 20px;
    }

    header{
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(255,255,255,.62);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,30,55,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:12px;
      background: rgba(255,255,255,.7);
      box-shadow: 0 10px 26px rgba(109,92,255,.15);
      border:1px solid rgba(109,92,255,.18);
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      gap:2px;
      line-height:1.1;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
    }

    .nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color:rgba(21,28,45,.84);
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(255,255,255,.7);
      border-color: rgba(20,30,55,.10);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:8px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.7);
      color:var(--btn2);
      font-weight:700;
      font-size:13px;
      letter-spacing:.1px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow3)}
    .btn-primary{
      background: linear-gradient(90deg, rgba(109,92,255,1), rgba(0,194,255,1));
      border-color: rgba(109,92,255,.22);
      color:#fff;
      box-shadow: 0 16px 36px rgba(109,92,255,.26);
    }
    .btn-primary:hover{box-shadow: 0 18px 46px rgba(0,194,255,.22)}
    .btn-ghost{
      background: rgba(255,255,255,.64);
      border-color: rgba(20,30,55,.12);
    }
    .btn-icon{
      width:18px; height:18px; display:inline-block;
    }
    .burger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.6);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .burger:hover{transform: translateY(-1px); box-shadow: var(--shadow3)}
    .burger-lines{
      width:18px; height:12px; position:relative;
    }
    .burger-lines span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(20,30,55,.78);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger-lines span:nth-child(1){top:0}
    .burger-lines span:nth-child(2){top:5px}
    .burger-lines span:nth-child(3){top:10px}
    .burger[aria-expanded="true"] .burger-lines span:nth-child(1){top:5px; transform: rotate(45deg)}
    .burger[aria-expanded="true"] .burger-lines span:nth-child(2){opacity:0}
    .burger[aria-expanded="true"] .burger-lines span:nth-child(3){top:5px; transform: rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:0 0 16px;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.72);
      border-radius:18px;
      padding:12px;
      box-shadow: 0 14px 36px rgba(16,24,40,.10);
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:4px;
    }
    .mobile-links a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid transparent;
      background: rgba(255,255,255,.58);
      font-weight:650;
      font-size:13px;
      color: rgba(21,28,45,.86);
    }
    .mobile-links a:hover{
      border-color: rgba(109,92,255,.22);
      background: rgba(109,92,255,.08);
    }
    .mobile-ctas{
      display:flex;
      gap:10px;
      margin-top:10px;
      flex-wrap:wrap;
    }

    main{padding-bottom:20px}
    .hero{
      padding:34px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:26px;
      border:1px solid rgba(20,30,55,.10);
      background:
        radial-gradient(700px 260px at 10% 10%, rgba(109,92,255,.18), rgba(109,92,255,0) 55%),
        radial-gradient(700px 260px at 90% 30%, rgba(0,194,255,.20), rgba(0,194,255,0) 55%),
        radial-gradient(800px 340px at 50% 120%, rgba(33,209,159,.18), rgba(33,209,159,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56));
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:22px;
      min-height: 380px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        conic-gradient(from 210deg,
          rgba(109,92,255,.0),
          rgba(109,92,255,.22),
          rgba(0,194,255,.22),
          rgba(33,209,159,.18),
          rgba(255,79,216,.16),
          rgba(109,92,255,.0));
      opacity:.55;
      filter: blur(18px);
      pointer-events:none;
      transform: translate3d(0,0,0);
    }
    .hero-inner{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:14px;
      height:100%;
    }
    .eyebrow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 10px 22px rgba(16,24,40,.08);
      font-weight:700;
      font-size:12px;
      color: rgba(18,26,40,.88);
    }
    .chip .dot{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(180deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(109,92,255,.12);
    }
    h1{
      margin:0;
      font-size:34px;
      line-height:1.14;
      letter-spacing:-.6px;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:2px;
    }
    .mini-note{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      margin-top:6px;
      max-width: 62ch;
    }
    .mini-note svg{flex:0 0 auto; margin-top:2px}
    .hero-metrics{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:auto;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{transform: translateY(-2px); box-shadow: var(--shadow3); border-color: rgba(109,92,255,.22)}
    .metric strong{
      display:block;
      font-size:18px;
      letter-spacing:-.2px;
      margin-bottom:4px;
    }
    .metric span{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
      display:block;
    }

    .hero-side{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .side-card{
      border-radius:22px;
      border:1px solid rgba(20,30,55,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56));
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
      min-height: 190px;
    }
    .side-card:after{
      content:"";
      position:absolute;
      width:240px; height:240px;
      border-radius:50%;
      right:-120px; top:-140px;
      background: radial-gradient(circle at 30% 30%, rgba(0,194,255,.34), rgba(0,194,255,0) 60%);
      pointer-events:none;
      filter: blur(2px);
    }
    .side-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .side-title{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .side-title p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.65;
    }
    .pulse-badge{
      width:44px; height:44px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.55)),
        linear-gradient(135deg, rgba(109,92,255,.25), rgba(0,194,255,.18));
      border:1px solid rgba(109,92,255,.20);
      box-shadow: 0 14px 32px rgba(109,92,255,.18);
      position:relative;
      flex: 0 0 auto;
    }
    .pulse-badge:before{
      content:"";
      position:absolute; inset:-8px;
      border-radius:20px;
      border:1px solid rgba(109,92,255,.35);
      opacity:.5;
      animation: pulseRing 2.2s ease-in-out infinite;
    }
    @keyframes pulseRing{
      0%{transform:scale(.92); opacity:.35}
      55%{transform:scale(1.03); opacity:.58}
      100%{transform:scale(1.02); opacity:.20}
    }
    .side-list{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      position:relative;
      z-index:1;
    }
    .tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      color: rgba(21,28,45,.84);
      font-weight:650;
      font-size:12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .tag:hover{transform: translateY(-1px); border-color: rgba(0,194,255,.28)}
    .side-card.small{
      min-height:auto;
      padding:14px;
    }
    .side-kpis{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
      position:relative;
      z-index:1;
    }
    .kpi{
      border-radius:16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .kpi strong{display:block; font-size:15px; letter-spacing:-.2px}
    .kpi span{display:block; color:var(--muted); font-size:12.2px; line-height:1.4; margin-top:4px}

    section{padding:22px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width: 62ch;
    }
    .subtle-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .grid-4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .card{
      border-radius:20px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(16,24,40,.07);
      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 16px 36px rgba(16,24,40,.10);
      border-color: rgba(109,92,255,.22);
    }
    .card .icon{
      width:40px; height:40px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.55)),
        linear-gradient(135deg, rgba(109,92,255,.22), rgba(0,194,255,.16));
      border:1px solid rgba(109,92,255,.18);
      margin-bottom:12px;
    }
    .card h3{
      margin:0 0 8px;
      font-size:15.8px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.75;
    }

    .flow{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:start;
    }
    .timeline{
      border-radius:22px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.64);
      box-shadow: 0 12px 30px rgba(16,24,40,.08);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:24px; top:18px; bottom:18px;
      width:2px;
      background: linear-gradient(180deg, rgba(109,92,255,.55), rgba(0,194,255,.40), rgba(33,209,159,.35));
      opacity:.9;
    }
    .step{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:10px 0;
      position:relative;
      z-index:1;
    }
    .step .num{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.72);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      letter-spacing:-.2px;
      position:relative;
      box-shadow: 0 10px 22px rgba(16,24,40,.08);
    }
    .step .txt{
      flex:1;
      padding-right:6px;
    }
    .step .txt strong{
      display:block;
      font-size:14.5px;
      margin-top:2px;
      margin-bottom:5px;
    }
    .step .txt span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .match-card{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .list{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin:0; padding:0; list-style:none;
    }
    .li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .18s ease;
    }
    .li:hover{transform: translateY(-1px); border-color: rgba(0,194,255,.24)}
    .li .check{
      width:28px; height:28px;
      border-radius:12px;
      background: linear-gradient(180deg, rgba(14,165,233,.18), rgba(109,92,255,.14));
      border:1px solid rgba(14,165,233,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .li strong{
      display:block;
      font-size:13.8px;
      margin-bottom:4px;
      letter-spacing:-.1px;
    }
    .li span{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.65;
    }

    .compare-wrap{
      border-radius:26px;
      border:1px solid rgba(20,30,55,.10);
      background:
        radial-gradient(800px 300px at 10% 0%, rgba(109,92,255,.16), rgba(109,92,255,0) 60%),
        radial-gradient(800px 300px at 90% 10%, rgba(0,194,255,.14), rgba(0,194,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding:16px;
    }
    .scorebar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding:10px 8px 14px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      font-weight:900;
    }
    .star{
      width:18px; height:18px;
      filter: drop-shadow(0 8px 14px rgba(251,191,36,.18));
    }
    .score{
      display:flex; flex-direction:column; gap:6px;
    }
    .score strong{
      font-size:28px; letter-spacing:-.6px;
    }
    .score span{
      color:var(--muted);
      font-size:13px;
    }
    .rec-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.66);
      font-weight:900;
    }
    .rec-badge b{
      font-size:14px;
    }
    .rec-badge i{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(180deg, rgba(251,191,36,1), rgba(245,158,11,1));
      box-shadow: 0 0 0 6px rgba(251,191,36,.16);
      display:inline-block;
    }

    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
    }
    .compare-table th, .compare-table td{
      padding:14px 12px;
      border-bottom:1px solid rgba(20,30,55,.08);
      font-size:13.2px;
      vertical-align:top;
    }
    .compare-table th{
      color: rgba(21,28,45,.88);
      background: rgba(255,255,255,.72);
      text-align:left;
      font-weight:900;
      letter-spacing:-.1px;
    }
    .compare-table tr:last-child td{border-bottom:none}
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.68);
      font-weight:800;
      font-size:12px;
    }
    .pill .mini{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, rgba(109,92,255,1), rgba(0,194,255,1));
    }
    .rating{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .rating .big{
      font-size:22px; font-weight:1000; letter-spacing:-.4px;
    }
    .rating .small{
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }

    .cards-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .article-card{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding:14px;
    }
    .article-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
    }
    .article-meta{
      display:flex;
      flex-direction:column;
      gap:6px;
      flex:1;
    }
    .article-meta strong{
      font-size:14.7px;
      letter-spacing:-.2px;
    }
    .article-meta span{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.6;
    }
    .article-link{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.64);
      font-weight:900;
      font-size:13px;
      white-space:nowrap;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-link:hover{
      transform: translateY(-1px);
      box-shadow: var(--shadow3);
      border-color: rgba(109,92,255,.22);
    }

    .img-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .img-card{
      border-radius:22px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 30px rgba(16,24,40,.08);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
    }
    .img-frame{
      border-radius:18px;
      border:1px solid rgba(20,30,55,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.5));
      overflow:hidden;
    }
    .img-frame img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
      transform: translateZ(0);
    }
    .img-card strong{
      font-size:14.8px;
      letter-spacing:-.2px;
    }
    .img-card p{
      margin:0;
      color:var(--muted);
      font-size:13.1px;
      line-height:1.75;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .review{
      border-radius:22px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.64);
      box-shadow: 0 12px 30px rgba(16,24,40,.08);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      overflow:hidden;
      position:relative;
    }
    .review:before{
      content:"";
      position:absolute;
      inset:-60px -60px auto auto;
      width:160px; height:160px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,79,216,.16), rgba(255,79,216,0) 62%);
      pointer-events:none;
    }
    .review .head{
      display:flex;
      gap:10px;
      align-items:flex-start;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,30,55,.10);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.55)),
        linear-gradient(135deg, rgba(109,92,255,.18), rgba(0,194,255,.14));
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      letter-spacing:-.4px;
      color: rgba(20,30,55,.86);
      flex:0 0 auto;
    }
    .review .who{
      display:flex;
      flex-direction:column;
      gap:4px;
      flex:1;
    }
    .review .who strong{font-size:14.4px; letter-spacing:-.2px}
    .review .who span{color:var(--muted); font-size:12.6px; line-height:1.4}
    .review .text{
      margin:0;
      color: rgba(26,34,52,.90);
      font-size:13.2px;
      line-height:1.8;
      position:relative;
      z-index:1;
    }
    .review .foot{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      position:relative;
      z-index:1;
    }
    .mini-pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.66);
      font-weight:900;
      font-size:12px;
      color: rgba(21,28,45,.84);
    }

    .faq-wrap{
      border-radius:26px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.64);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    details.faq{
      border-top:1px solid rgba(20,30,55,.08);
      padding:0 12px;
    }
    details.faq:first-child{border-top:none}
    details.faq summary{
      list-style:none;
      cursor:pointer;
      padding:16px 6px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
      outline:none;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .q{
      font-weight:950;
      font-size:14.8px;
      letter-spacing:-.2px;
      color: rgba(21,28,45,.92);
      padding-right:10px;
      line-height:1.45;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.7);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      transform: translateY(2px);
      transition: transform .2s ease;
      margin-top:2px;
    }
    details[open].faq .chev{transform: translateY(2px) rotate(180deg)}
    details.faq .a{
      padding:0 6px 16px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.85;
    }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }

    form{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:7px;
      font-weight:850;
      font-size:12.6px;
      color: rgba(21,28,45,.88);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.75);
      color: var(--text);
      font-size:13.6px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
    }
    textarea{min-height: 110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(109,92,255,.36);
      box-shadow: 0 0 0 4px var(--focus);
      background:#fff;
    }
    .form-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      margin-top:2px;
    }
    .form-hint{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.6;
      margin:0;
    }
    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:22px;
      background: rgba(255,255,255,.88);
      border:1px solid rgba(20,30,55,.12);
      box-shadow: 0 18px 44px rgba(16,24,40,.14);
      padding:12px 14px;
      border-radius:16px;
      display:none;
      z-index:100;
      max-width: 92vw;
    }
    .toast strong{font-size:13.8px}
    .toast span{display:block; color:var(--muted); margin-top:4px; font-size:12.6px; line-height:1.5}

    .footer{
      margin-top:8px;
      padding:18px 0 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.0));
    }
    .footer-box{
      border-top:1px solid rgba(20,30,55,.10);
      padding-top:16px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:start;
    }
    .foot-left{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .foot-brand{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .foot-brand img{
      width:40px; height:40px;
      object-fit:contain;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.7);
    }
    .foot-brand strong{
      font-size:14.6px;
      letter-spacing:-.2px;
    }
    .foot-brand span{
      color:var(--muted);
      font-size:12.7px;
      display:block;
      margin-top:4px;
      line-height:1.6;
    }
    .foot-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:4px;
    }
    .foot-links a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.6);
      font-weight:850;
      font-size:12.4px;
      color: rgba(21,28,45,.86);
      transition: transform .18s ease, border-color .18s ease;
    }
    .foot-links a:hover{transform: translateY(-1px); border-color: rgba(0,194,255,.26)}
    .foot-right{
      border-radius:22px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
      box-shadow: 0 12px 30px rgba(16,24,40,.08);
    }
    .foot-right h3{
      margin:0 0 10px;
      font-size:14.8px;
      letter-spacing:-.2px;
    }
    .foot-right .row{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .qr{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top:8px;
    }
    .qr img{
      width:72px; height:72px;
      object-fit:cover;
      border-radius:18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.8);
    }
    .contact-lines{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .contact-lines a, .contact-lines span{
      font-size:13px;
      color: rgba(21,28,45,.88);
      font-weight:850;
    }
    .copyright{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:12.6px;
    }
    .backtop{
      position:fixed;
      right:16px;
      bottom:16px;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.72);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow: 0 18px 44px rgba(16,24,40,.12);
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
      z-index:90;
    }
    .backtop.show{
      opacity:1;
      pointer-events:auto;
    }
    .backtop:hover{transform: translateY(-2px)}
    .float-kefu{
      position:fixed;
      right:16px;
      bottom:74px;
      z-index:95;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .kefu-btn{
      width:54px; height:54px;
      border-radius:22px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(16,24,40,.12);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;
    }
    .kefu-btn:hover{transform: translateY(-2px); box-shadow: 0 22px 60px rgba(16,24,40,.16)}
    .kefu-pop{
      display:none;
      width:240px;
      border-radius:20px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 44px rgba(16,24,40,.16);
      padding:12px;
      overflow:hidden;
    }
    .kefu-pop.show{display:block}
    .kefu-pop h4{
      margin:0 0 8px;
      font-size:13.8px;
      letter-spacing:-.2px;
    }
    .kefu-pop .row{
      display:flex;
      gap:12px;
      align-items:center;
    }
    .kefu-pop img{
      width:68px; height:68px;
      border-radius:18px;
      border:1px solid rgba(20,30,55,.10);
      object-fit:cover;
      background: rgba(255,255,255,.9);
      flex:0 0 auto;
    }
    .kefu-pop p{
      margin:0;
      color:var(--muted);
      font-size:12.6px;
      line-height:1.6;
      flex:1;
    }
    .kefu-pop .links{
      display:flex;
      gap:10px;
      margin-top:10px;
      flex-wrap:wrap;
    }
    .kefu-pop a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.7);
      font-weight:900;
      font-size:12.4px;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-card{min-height:auto}
      .hero-metrics{grid-template-columns: repeat(3, minmax(0,1fr))}
      .flow{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .review-grid{grid-template-columns: 1fr}
      .cards-2{grid-template-columns: 1fr}
      .img-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .compare-wrap{padding:12px}
      .compare-table th, .compare-table td{font-size:13px}
    }
    @media (max-width: 820px){
      .nav{display:none}
      .nav-cta{display:none}
      .burger{display:flex}
      .mobile-panel{display:block}
      .hero{padding:22px 0 18px}
      h1{font-size:28px}
      .hero-metrics{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: 1fr}
    }
    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
      .reveal{opacity:1; transform:none}
    }