:root{
      --bg0:#fbfaf7;
      --bg1:#ffffff;
      --text:#1f2328;
      --muted:#5a6472;
      --subtle:#7b8796;
      --line:rgba(20,26,34,.10);
      --card:rgba(255,255,255,.78);
      --card2:#ffffff;
      --shadow:0 18px 50px rgba(14,22,34,.10);
      --shadow2:0 12px 28px rgba(14,22,34,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --brandA:#6d5efc;
      --brandB:#11b7ff;
      --brandC:#ff4d7d;
      --brandD:#17d3a5;
      --brandE:#ffb020;
      --focus:rgba(109,94,252,.28);
      --btn:#111827;
      --btnText:#ffffff;
      --link:#1f6feb;
      --good:#0fa36a;
      --warn:#b7791f;
      --chip:rgba(109,94,252,.10);
      --chip2:rgba(17,183,255,.10);
      --chip3:rgba(255,77,125,.10);
      --grad:linear-gradient(135deg, rgba(109,94,252,.95), rgba(17,183,255,.92) 45%, rgba(255,77,125,.88));
      --grad2:linear-gradient(135deg, rgba(23,211,165,.95), rgba(17,183,255,.88) 52%, rgba(255,176,32,.86));
      --grad3:radial-gradient(1100px 600px at 15% -10%, rgba(109,94,252,.18), transparent 55%),
              radial-gradient(900px 520px at 85% 10%, rgba(255,77,125,.14), transparent 52%),
              radial-gradient(780px 520px at 50% 70%, rgba(17,183,255,.12), transparent 55%);
      --grad4:radial-gradient(700px 300px at 25% 20%, rgba(255,176,32,.16), transparent 60%),
              radial-gradient(760px 360px at 78% 30%, rgba(23,211,165,.14), transparent 58%);
      --container:1120px;
    }
    *{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: linear-gradient(180deg, var(--bg0), #fff 38%, #fbfcff 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(150%) blur(10px);
      background: rgba(251,250,247,.62);
      border-bottom:1px solid rgba(20,26,34,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:200px;
    }
    .brand img{
      width:40px;
      height:40px;
      border-radius:12px;
      box-shadow:0 10px 25px rgba(109,94,252,.18);
      object-fit:contain;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,26,34,.08);
    }
    .brand .name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .name strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px;
      color:var(--muted);
    }

    nav ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-link{
      font-size:13px;
      color:rgba(31,35,40,.86);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(109,94,252,.08);
      border-color:rgba(109,94,252,.22);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:6px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(20,26,34,.12);
      background:#fff;
      color:#111827;
      font-weight:650;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .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:0 14px 26px rgba(17,24,39,.10); border-color:rgba(109,94,252,.25)}
    .btn.primary{
      background:var(--grad);
      border-color:rgba(109,94,252,.22);
      color:#fff;
      box-shadow:0 18px 40px rgba(109,94,252,.22);
    }
    .btn.primary:hover{
      transform:translateY(-1px) scale(1.01);
      box-shadow:0 22px 55px rgba(109,94,252,.28);
    }
    .btn.ghost{
      background:rgba(255,255,255,.72);
    }

    .hamburger{
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(20,26,34,.12);
      background:#fff;
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .hamburger:hover{transform:translateY(-1px); box-shadow:0 14px 26px rgba(17,24,39,.10)}
    .hamburger .bars{
      width:18px; height:12px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:#111827;
      transition:transform .22s ease, top .22s ease, opacity .18s ease;
    }
    .hamburger .bars span:nth-child(1){top:0}
    .hamburger .bars span:nth-child(2){top:5px}
    .hamburger .bars span:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:0 0 14px;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.78);
      border-radius:18px;
      padding:10px;
      box-shadow:0 18px 50px rgba(14,22,34,.08);
    }
    .mobile-panel ul{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .mobile-panel .row{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }
    .mobile-panel .nav-link{
      background:#fff;
      border-color:rgba(20,26,34,.10);
    }

    .hero{
      position:relative;
      padding:34px 0 10px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute; inset:-40px -120px -80px -120px;
      background: var(--grad3), var(--grad4);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:stretch;
      padding:22px 0 18px;
    }
    .hero-left{
      padding:18px 0;
    }
    .kicker{
      display:flex;
      align-items:center;
      gap:10px;
      color:rgba(31,35,40,.88);
      font-size:13px;
      margin-bottom:14px;
    }
    .kicker .dot{
      width:10px; height:10px; border-radius:50%;
      background:var(--grad2);
      box-shadow:0 10px 22px rgba(23,211,165,.25);
      border:1px solid rgba(255,255,255,.8);
    }
    h1{
      margin:0;
      font-size:40px;
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .hero-sub{
      margin-top:14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:56ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }
    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .pill{
      display:flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.65);
      color:rgba(31,35,40,.88);
      font-size:13px;
      box-shadow:0 14px 30px rgba(14,22,34,.05);
    }
    .pill i{
      width:18px; height:18px; border-radius:6px;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.22);
      display:inline-flex;
      align-items:center; justify-content:center;
      font-style:normal;
      font-size:11px;
    }
    .pill:nth-child(2) i{background:rgba(17,183,255,.12); border-color:rgba(17,183,255,.22)}
    .pill:nth-child(3) i{background:rgba(255,77,125,.12); border-color:rgba(255,77,125,.22)}
    .pill:nth-child(4) i{background:rgba(23,211,165,.12); border-color:rgba(23,211,165,.22)}

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:12px;
      justify-content:center;
      padding:10px 0 10px;
    }
    .glass-card{
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(20,26,34,.10);
      border-radius:var(--radius);
      box-shadow:0 18px 60px rgba(14,22,34,.08);
      overflow:hidden;
      position:relative;
    }
    .glass-card::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:linear-gradient(135deg, rgba(109,94,252,.30), rgba(17,183,255,.22) 40%, rgba(255,77,125,.18));
      opacity:.18;
      pointer-events:none;
    }
    .glass-inner{
      position:relative;
      padding:14px;
    }
    .mini-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .mini-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.78);
      color:rgba(31,35,40,.86);
      font-size:12px;
      white-space:nowrap;
    }
    .badge b{
      font-weight:800;
      color:#111827;
    }
    .data-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .data{
      border-radius:16px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
      min-height:86px;
    }
    .data:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(14,22,34,.10)}
    .data::before{
      content:"";
      position:absolute; inset:-40px -40px auto auto;
      width:90px; height:90px; border-radius:26px;
      background: radial-gradient(circle at 30% 30%, rgba(109,94,252,.45), rgba(109,94,252,0) 60%);
      transform:rotate(15deg);
      opacity:.7;
      pointer-events:none;
    }
    .data:nth-child(2)::before{background: radial-gradient(circle at 30% 30%, rgba(17,183,255,.45), rgba(17,183,255,0) 60%)}
    .data:nth-child(3)::before{background: radial-gradient(circle at 30% 30%, rgba(255,77,125,.40), rgba(255,77,125,0) 60%)}
    .data:nth-child(4)::before{background: radial-gradient(circle at 30% 30%, rgba(23,211,165,.40), rgba(23,211,165,0) 60%)}
    .data .val{
      font-size:22px;
      font-weight:900;
      letter-spacing:-.3px;
      margin-top:2px;
    }
    .data .lab{
      margin-top:6px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
    }

    .service-quick{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .quick-row{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .iconbox{
      width:38px; height:38px;
      border-radius:14px;
      background:rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      box-shadow:0 16px 40px rgba(109,94,252,.12);
    }
    .iconbox svg{width:18px; height:18px}
    .quick-row:nth-child(2) .iconbox{background:rgba(17,183,255,.10); border-color:rgba(17,183,255,.22); box-shadow:0 16px 40px rgba(17,183,255,.12)}
    .quick-row:nth-child(3) .iconbox{background:rgba(255,77,125,.10); border-color:rgba(255,77,125,.22); box-shadow:0 16px 40px rgba(255,77,125,.12)}
    .quick-content strong{
      display:block;
      font-size:13.5px;
      margin-top:2px;
    }
    .quick-content span{
      display:block;
      font-size:12.5px;
      color:var(--muted);
      margin-top:6px;
      line-height:1.5;
    }

    main{padding-bottom:34px}
    section{
      padding:34px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.2px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:62ch;
    }
    .divider{
      height:1px;
      background:rgba(20,26,34,.08);
      margin:14px 0 0;
    }

    .cards-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 42px rgba(14,22,34,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{transform:translateY(-3px); box-shadow:0 24px 60px rgba(14,22,34,.10); border-color:rgba(109,94,252,.22)}
    .card .top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.1px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      min-height:44px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.76);
      font-size:12px;
      color:rgba(31,35,40,.86);
      white-space:nowrap;
    }
    .tag i{
      width:9px; height:9px; border-radius:50%;
      background:var(--brandA);
      display:inline-block;
      box-shadow:0 10px 18px rgba(109,94,252,.25);
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .feature-list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .feature-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.68);
    }
    .check{
      width:22px; height:22px;
      border-radius:8px;
      background:rgba(17,211,165,.10);
      border:1px solid rgba(17,211,165,.26);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .feature-list strong{display:block; font-size:14px}
    .feature-list span{display:block; color:var(--muted); font-size:13px; margin-top:4px; line-height:1.6}

    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
    }
    .step .num{
      width:40px; height:40px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(109,94,252,.16), rgba(17,183,255,.12));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      letter-spacing:-.2px;
      box-shadow:0 18px 40px rgba(109,94,252,.12);
      flex:0 0 auto;
    }
    .step:nth-child(2) .num{background:linear-gradient(135deg, rgba(17,183,255,.16), rgba(23,211,165,.12)); border-color:rgba(17,183,255,.22)}
    .step:nth-child(3) .num{background:linear-gradient(135deg, rgba(255,77,125,.16), rgba(109,94,252,.10)); border-color:rgba(255,77,125,.22)}
    .step:nth-child(4) .num{background:linear-gradient(135deg, rgba(255,176,32,.18), rgba(23,211,165,.10)); border-color:rgba(255,176,32,.24)}
    .step h3{margin:0; font-size:15px}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}

    .compare{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 18px 60px rgba(14,22,34,.06);
      overflow:hidden;
    }
    .compare-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:16px;
      background:linear-gradient(180deg, rgba(109,94,252,.10), rgba(255,255,255,.0));
      border-bottom:1px solid rgba(20,26,34,.08);
    }
    .stars{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .star-wrap{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
    }
    .score{
      font-weight:950;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .compare-head small{
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .table-wrap{overflow:auto}
    table{
      width:100%;
      border-collapse:collapse;
      min-width:760px;
      background:#fff0;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(20,26,34,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
    }
    th{
      font-size:13px;
      color:rgba(31,35,40,.84);
      background:rgba(255,255,255,.72);
      position:sticky;
      top:0;
      z-index:1;
      border-bottom:1px solid rgba(20,26,34,.10);
    }
    .td-good{
      font-weight:850;
      color:#0f6b45;
      background:rgba(15,163,106,.10);
      border:1px solid rgba(15,163,106,.25);
      padding:8px 10px;
      border-radius:999px;
      display:inline-block;
      white-space:nowrap;
    }
    .td-warn{
      font-weight:850;
      color:#6b4c12;
      background:rgba(183,121,31,.10);
      border:1px solid rgba(183,121,31,.25);
      padding:8px 10px;
      border-radius:999px;
      display:inline-block;
      white-space:nowrap;
    }
    .note{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      margin-top:8px;
    }

    .matching-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .chips{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .chip{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:#fff;
      cursor:pointer;
      font-size:13px;
      color:rgba(31,35,40,.88);
      transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
      user-select:none;
    }
    .chip:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(14,22,34,.08)}
    .chip[aria-pressed="true"]{
      background:linear-gradient(135deg, rgba(109,94,252,.16), rgba(17,183,255,.12));
      border-color:rgba(109,94,252,.30);
      box-shadow:0 20px 50px rgba(109,94,252,.16);
    }
    .match-card .body{
      margin-top:8px;
      display:flex;
      flex-direction:column;
      gap:10px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .match-card .bul{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.70);
    }
    .match-card .bul b{color:#111827}
    .spark{
      width:26px; height:26px;
      border-radius:11px;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.24);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
      box-shadow:0 16px 40px rgba(109,94,252,.12);
    }

    .form-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 18px 60px rgba(14,22,34,.06);
      overflow:hidden;
      position:relative;
    }
    .form-card::before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:120px;
      background:linear-gradient(90deg, rgba(109,94,252,.18), rgba(17,183,255,.14), rgba(255,77,125,.12));
      pointer-events:none;
    }
    .form-inner{position:relative; padding:16px}
    .form-inner h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.1px;
    }
    .form-inner p{
      margin:8px 0 12px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field label{
      font-size:12.5px;
      color:rgba(31,35,40,.82);
      font-weight:650;
    }
    input, select, textarea{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(20,26,34,.12);
      background:rgba(255,255,255,.88);
      color:#111827;
      outline:none;
      font-size:14px;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(109,94,252,.35);
      box-shadow:0 0 0 4px var(--focus);
    }
    .span2{grid-column:1 / -1}
    .form-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      margin-top:2px;
    }
    .form-actions .hint{
      color:var(--subtle);
      font-size:12.5px;
      line-height:1.5;
    }
    .submit{
      border:none;
      cursor:pointer;
      font-weight:900;
      letter-spacing:.2px;
    }
    .submit:disabled{
      opacity:.65; cursor:not-allowed;
    }

    .comments-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .quote{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 42px rgba(14,22,34,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:210px;
    }
    .quote .who{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(109,94,252,.16), rgba(17,183,255,.12));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#111827;
      flex:0 0 auto;
    }
    .quote:nth-child(2) .avatar{background:linear-gradient(135deg, rgba(17,183,255,.16), rgba(23,211,165,.12)); border-color:rgba(17,183,255,.22)}
    .quote:nth-child(3) .avatar{background:linear-gradient(135deg, rgba(255,77,125,.16), rgba(109,94,252,.10)); border-color:rgba(255,77,125,.22)}
    .quote .meta strong{display:block; font-size:14px}
    .quote .meta span{display:block; font-size:12.5px; color:var(--muted); margin-top:4px}
    .quote .text{
      margin:0;
      color:rgba(31,35,40,.88);
      font-size:13.8px;
      line-height:1.85;
      flex:1;
    }
    .quote .more{
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .mini-chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.76);
      font-size:12px;
      color:rgba(31,35,40,.86);
      white-space:nowrap;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 42px rgba(14,22,34,.06);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      min-height:250px;
    }
    .case .img-wrap{
      padding:14px 14px 0;
    }
    .case .img-ph{
      width:100%;
      height:120px;
      border-radius:16px;
      border:1px solid rgba(20,26,34,.10);
      background:linear-gradient(135deg, rgba(109,94,252,.12), rgba(17,183,255,.10), rgba(255,77,125,.10));
      display:flex;
      align-items:center;
      justify-content:center;
      color:rgba(31,35,40,.78);
      font-weight:900;
      letter-spacing:-.2px;
      position:relative;
      overflow:hidden;
    }
    .case .img-ph::after{
      content:"";
      position:absolute;
      inset:-60px -80px auto auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(255,255,255,0) 60%);
      transform:rotate(12deg);
      opacity:.6;
      pointer-events:none;
    }
    .case .content{
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .case h3{margin:0; font-size:15.5px}
    .case p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      min-height:52px;
    }
    .case .meta{
      margin-top:auto;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .meter{
      display:flex; align-items:center; gap:10px; color:rgba(31,35,40,.86);
      font-size:12.5px;
      white-space:nowrap;
    }
    .meter .bar{
      width:92px; height:8px; border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.78);
      overflow:hidden;
    }
    .meter .bar span{
      display:block; height:100%;
      width:68%;
      background:linear-gradient(90deg, rgba(109,94,252,.9), rgba(17,183,255,.85));
      border-radius:999px;
    }
    .case:nth-child(2) .meter .bar span{width:74%; background:linear-gradient(90deg, rgba(23,211,165,.92), rgba(17,183,255,.80))}
    .case:nth-child(3) .meter .bar span{width:61%; background:linear-gradient(90deg, rgba(255,77,125,.86), rgba(109,94,252,.72))}

    .article-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .article{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 42px rgba(14,22,34,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:200px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article:hover{transform:translateY(-3px); box-shadow:0 24px 60px rgba(14,22,34,.10)}
    .article .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .article .date{
      color:var(--muted);
      font-size:12.5px;
      white-space:nowrap;
      padding:7px 10px;
      border:1px solid rgba(20,26,34,.10);
      border-radius:999px;
      background:#fff;
    }
    .article h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.1px;
      line-height:1.35;
    }
    .article p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      flex:1;
      min-height:66px;
    }
    .article a{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between;
      color:#1f6feb;
      font-weight:750;
      font-size:13.5px;
      border-top:1px dashed rgba(20,26,34,.10);
      padding-top:12px;
      gap:10px;
    }
    .article a span{
      display:inline-flex; align-items:center; gap:8px;
    }
    .article a svg{width:16px; height:16px}

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    details{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 42px rgba(14,22,34,.06);
      padding:12px 14px;
      overflow:hidden;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details[open]{border-color:rgba(109,94,252,.26); box-shadow:0 24px 60px rgba(14,22,34,.10)}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      font-weight:850;
      font-size:14px;
      padding:4px 0;
      color:#111827;
    }
    summary::-webkit-details-marker{display:none}
    .sum-left{display:flex; gap:12px; align-items:flex-start}
    .qmark{
      width:32px; height:32px;
      border-radius:14px;
      border:1px solid rgba(109,94,252,.22);
      background:rgba(109,94,252,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    details:nth-child(3n+2) .qmark{border-color:rgba(17,183,255,.24); background:rgba(17,183,255,.10)}
    details:nth-child(3n+3) .qmark{border-color:rgba(255,77,125,.24); background:rgba(255,77,125,.10)}
    .caret{
      width:18px; height:18px;
      border-radius:7px;
      border:1px solid rgba(20,26,34,.10);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
      margin-top:4px;
    }
    details[open] .caret{transform:rotate(180deg)}
    details .ans{
      margin-top:10px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.85;
      padding-left:44px;
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .list-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 42px rgba(14,22,34,.06);
      padding:16px;
    }
    .list-card h3{margin:0; font-size:16px}
    .list-card p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .bullet{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .bullet .item{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.70);
    }
    .bullet .item .k{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:950;
      color:#111827;
    }
    .bullet .item strong{display:block; font-size:14px}
    .bullet .item span{display:block; color:var(--muted); font-size:13px; margin-top:4px; line-height:1.6}

    .partner-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .partner{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:#fff;
      font-size:13px;
      color:rgba(31,35,40,.86);
      white-space:nowrap;
    }

    .assist{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-chat{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(20,26,34,.12);
      background:rgba(255,255,255,.86);
      box-shadow:0 24px 60px rgba(14,22,34,.12);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
      max-width:260px;
    }
    .float-chat:hover{transform:translateY(-2px); box-shadow:0 30px 80px rgba(14,22,34,.16); border-color:rgba(109,94,252,.25)}
    .float-icon{
      width:40px; height:40px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(109,94,252,.16), rgba(17,183,255,.12));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-chat .txt{
      display:flex;
      flex-direction:column;
      line-height:1.2;
      gap:6px;
    }
    .float-chat .txt strong{font-size:13.5px}
    .float-chat .txt span{font-size:12.5px; color:var(--muted)}
    .float-pop{
      display:none;
      width:min(320px, calc(100vw - 32px));
      border-radius:18px;
      border:1px solid rgba(20,26,34,.12);
      background:rgba(255,255,255,.92);
      box-shadow:0 30px 90px rgba(14,22,34,.18);
      overflow:hidden;
    }
    .float-pop.open{display:block; animation:popIn .2s ease both}
    @keyframes popIn{
      from{transform:translateY(8px); opacity:0}
      to{transform:translateY(0); opacity:1}
    }
    .pop-inner{padding:14px}
    .pop-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .pop-top strong{font-size:14px}
    .close{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(20,26,34,.12);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .close:hover{transform:translateY(-1px); box-shadow:0 18px 40px rgba(14,22,34,.10)}
    .qr{
      display:grid; grid-template-columns: 1fr;
      gap:10px;
      align-items:center;
      justify-items:center;
      border:1px dashed rgba(20,26,34,.14);
      border-radius:16px;
      padding:12px;
      background:rgba(255,255,255,.78);
    }
    .qr img{
      width:140px; height:auto;
      border-radius:14px;
      border:1px solid rgba(20,26,34,.10);
      background:#fff;
    }
    .qr .sub{
      text-align:center;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
      margin:0;
    }
    .pop-actions{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }
    .pop-actions .btn{flex:1}
    .to-top{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,26,34,.12);
      background:rgba(255,255,255,.88);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow:0 24px 60px rgba(14,22,34,.10);
      transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
      user-select:none;
    }
    .to-top:hover{transform:translateY(-2px); box-shadow:0 30px 90px rgba(14,22,34,.16)}
    .to-top svg{width:18px; height:18px}

    .footer{
      background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(17,24,39,.02)), #fbfbfd;
      border-top:1px solid rgba(20,26,34,.08);
      padding:26px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.05fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,26,34,.10);
      background:rgba(255,255,255,.78);
      padding:16px;
      box-shadow:0 14px 42px rgba(14,22,34,.06);
    }
    .foot-card h3{margin:0; font-size:16px}
    .foot-card p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .link-row{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .link-row a{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(20,26,34,.10);
      background:#fff;
      color:rgba(31,35,40,.86);
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      max-width:100%;
    }
    .link-row a:hover{transform:translateY(-2px); box-shadow:0 20px 50px rgba(14,22,34,.10); border-color:rgba(109,94,252,.24)}
    .copyright{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--subtle);
      font-size:12.5px;
    }
    .foot-right .mini{
      margin-top:10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mini-box{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,26,34,.10);
      background:#fff;
    }
    .mini-box strong{display:block; font-size:13.5px}
    .mini-box span{display:block; color:var(--muted); font-size:12.8px; margin-top:6px; line-height:1.5}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; gap:14px}
      h1{font-size:34px}
      .cards-grid{grid-template-columns:1fr 1fr}
      .two-col{grid-template-columns:1fr}
      .matching-grid{grid-template-columns:1fr}
      .comments-grid{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .faq{grid-template-columns:1fr}
      .network-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      form{grid-template-columns:1fr}
      .mobile-panel{display:block}
    }
    @media (max-width: 980px){
      nav{display:none}
      .nav-cta{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:none}
      header.open .mobile-panel{display:block}
    }

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