:root{
      --bg0:#fbfaf7;
      --bg1:#f4f6ff;
      --card:#ffffff;
      --text:#1b1f2a;
      --muted:#5b6476;
      --muted2:#7a849a;
      --line:rgba(25,35,55,.10);
      --shadow: 0 18px 50px rgba(26,41,69,.10);
      --shadow2: 0 10px 26px rgba(26,41,69,.10);
      --brand:#2a6af7;
      --brand2:#16c7a5;
      --brand3:#ffb020;
      --danger:#e24b4b;
      --focus: 0 0 0 4px rgba(42,106,247,.18);
      --radius:18px;
      --radius2:14px;
      --max:1160px;
      --pad:18px;
      --navH:68px;
    }

    *{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 SC", "Helvetica Neue", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 600px at 15% -10%, rgba(42,106,247,.14), transparent 55%),
        radial-gradient(800px 500px at 90% 0%, rgba(22,199,165,.14), transparent 55%),
        radial-gradient(900px 700px at 50% 105%, rgba(255,176,32,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 55%, var(--bg0));
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    button, input, select, textarea{font:inherit}
    .container{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}
    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

    .topbar{
      position:sticky; top:0; z-index:40;
      backdrop-filter: blur(10px);
      background: rgba(251,250,247,.72);
      border-bottom: 1px solid rgba(25,35,55,.08);
    }
    .nav-inner{
      height:var(--navH);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:180px;
    }
    .brand-mark{
      width:38px; height:38px; border-radius:12px;
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.85), transparent 55%),
        linear-gradient(135deg, rgba(42,106,247,.95), rgba(22,199,165,.95));
      box-shadow: 0 12px 30px rgba(42,106,247,.18);
      border:1px solid rgba(255,255,255,.55);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark::after{
      content:"";
      position:absolute; inset:-30%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
      transform: rotate(20deg) translateX(-30%);
      animation: shine 5.5s ease-in-out infinite;
      opacity:.45;
    }
    @keyframes shine{
      0%,45%{transform: rotate(20deg) translateX(-50%); opacity:0}
      55%{opacity:.55}
      90%,100%{transform: rotate(20deg) translateX(55%); opacity:0}
    }

    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-text strong{font-size:14px; letter-spacing:.2px}
    .brand-text span{font-size:12px; color:var(--muted)}
    .nav-links{
      display:flex; align-items:center; gap:12px;
      flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color: rgba(27,31,42,.86);
      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-links a:hover{
      background: rgba(42,106,247,.08);
      border-color: rgba(42,106,247,.18);
      transform: translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px; justify-content:flex-end}
    .pill{
      border:1px solid rgba(25,35,55,.12);
      background: rgba(255,255,255,.7);
      padding:9px 12px;
      border-radius:999px;
      font-size:13px;
      color: rgba(27,31,42,.88);
      display:flex; align-items:center; gap:8px;
      transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
    }
    .pill:hover{
      box-shadow: 0 10px 26px rgba(26,41,69,.10);
      transform: translateY(-1px);
      border-color: rgba(42,106,247,.22);
    }
    .pill svg{flex:0 0 auto}
    .primary-btn{
      border:none;
      background: linear-gradient(135deg, rgba(42,106,247,.98), rgba(22,199,165,.96));
      color:#fff;
      padding:11px 14px;
      border-radius:14px;
      font-weight:700;
      font-size:13.5px;
      letter-spacing:.2px;
      box-shadow: 0 14px 36px rgba(42,106,247,.20);
      transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
      cursor:pointer;
      display:inline-flex; align-items:center; gap:10px;
      white-space:nowrap;
    }
    .primary-btn:hover{transform: translateY(-1px); filter:saturate(1.04); box-shadow: 0 18px 46px rgba(42,106,247,.24)}
    .primary-btn:active{transform: translateY(0px) scale(.99)}
    .primary-btn:focus{outline:none; box-shadow: var(--focus), 0 18px 46px rgba(42,106,247,.24)}
    .primary-btn .dot{
      width:9px; height:9px; border-radius:50%;
      background: rgba(255,255,255,.9);
      box-shadow: 0 0 0 6px rgba(255,255,255,.18);
    }

    .menu-btn{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(25,35,55,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .menu-btn:hover{transform: translateY(-1px); box-shadow: 0 12px 28px rgba(26,41,69,.10); border-color: rgba(42,106,247,.20)}
    .menu-btn:focus{outline:none; box-shadow: var(--focus)}
    .menu-btn span{
      display:block; width:18px; height:2px; background: rgba(27,31,42,.9); margin:0 auto;
      position:relative;
    }
    .menu-btn span::before,.menu-btn span::after{
      content:""; position:absolute; left:0; right:0; height:2px; background: rgba(27,31,42,.9);
      border-radius:2px;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .menu-btn span::before{top:-6px}
    .menu-btn span::after{top:6px}

    .menu-btn[aria-expanded="true"] span::before{top:0; transform: rotate(45deg)}
    .menu-btn[aria-expanded="true"] span::after{top:0; transform: rotate(-45deg)}
    .menu-btn[aria-expanded="true"] span{background:transparent}

    .mobile-panel{
      display:none;
      padding:14px 0 18px;
    }
    .mobile-panel .grid{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .mobile-panel a{
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.78);
      border-radius:14px;
      padding:12px;
      font-size:13px;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
      color: rgba(27,31,42,.90);
    }
    .mobile-panel a:hover{transform: translateY(-1px); border-color: rgba(42,106,247,.22); box-shadow: 0 12px 28px rgba(26,41,69,.08)}

    main{padding-bottom:26px}
    section{padding:56px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:20px;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border:1px solid rgba(42,106,247,.18);
      background: linear-gradient(180deg, rgba(42,106,247,.10), rgba(255,255,255,.72));
      border-radius:999px;
      color: rgba(27,31,42,.86);
      font-size:13px;
      font-weight:650;
      letter-spacing:.2px;
    }
    .kicker .spark{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(135deg, rgba(42,106,247,.95), rgba(22,199,165,.95));
      transform: rotate(10deg);
      box-shadow: 0 10px 22px rgba(42,106,247,.22);
    }
    .h2{font-size:28px; margin:10px 0 0; letter-spacing:-.4px}
    .lead{margin:10px 0 0; color:var(--muted); font-size:15.5px; line-height:1.7; max-width:66ch}

    .hero{
      padding:24px 0 26px;
    }
    .hero-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:stretch;
      padding:18px 0 6px;
    }
    .hero-left{
      padding:22px 0;
      display:flex; flex-direction:column; justify-content:center;
    }
    .hero-title{
      font-size:42px; line-height:1.05; margin:16px 0 10px; letter-spacing:-1.2px;
    }
    .hero-title .grad{
      background: linear-gradient(90deg, rgba(42,106,247,1), rgba(22,199,165,1), rgba(255,176,32,1));
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .hero-sub{
      color:var(--muted);
      font-size:16.5px;
      line-height:1.8;
      margin:0 0 18px;
      max-width:62ch;
    }

    .hero-cta{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:8px;
    }
    .ghost-btn{
      border:1px solid rgba(25,35,55,.12);
      background: rgba(255,255,255,.70);
      color: rgba(27,31,42,.92);
      padding:11px 14px;
      border-radius:14px;
      font-weight:700;
      font-size:13.5px;
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      display:inline-flex; align-items:center; gap:10px;
      white-space:nowrap;
    }
    .ghost-btn:hover{transform: translateY(-1px); box-shadow: 0 14px 36px rgba(26,41,69,.10); border-color: rgba(42,106,247,.22)}
    .ghost-btn:focus{outline:none; box-shadow: var(--focus)}
    .hero-tags{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;
    }
    .chip{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.68);
      color: rgba(27,31,42,.86);
      font-size:13px;
      display:inline-flex; align-items:center; gap:8px;
    }
    .chip i{
      width:9px; height:9px; border-radius:50%;
      background: rgba(42,106,247,.95);
      box-shadow: 0 0 0 5px rgba(42,106,247,.14);
    }
    .chip:nth-child(2) i{background: rgba(22,199,165,.95); box-shadow: 0 0 0 5px rgba(22,199,165,.14)}
    .chip:nth-child(3) i{background: rgba(255,176,32,.95); box-shadow: 0 0 0 5px rgba(255,176,32,.16)}
    .chip:nth-child(4) i{background: rgba(124,96,255,.95); box-shadow: 0 0 0 5px rgba(124,96,255,.14)}

    .hero-right{
      position:relative;
      border-radius: var(--radius);
      background:
        radial-gradient(900px 350px at 20% 0%, rgba(42,106,247,.18), transparent 55%),
        radial-gradient(700px 260px at 95% 10%, rgba(22,199,165,.14), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.60));
      border: 1px solid rgba(25,35,55,.10);
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding:18px;
      display:flex; flex-direction:column; justify-content:space-between;
      min-height: 360px;
    }
    .hero-right::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(2px 2px at 10% 18%, rgba(42,106,247,.55), transparent 55%),
        radial-gradient(2px 2px at 20% 62%, rgba(22,199,165,.50), transparent 55%),
        radial-gradient(2px 2px at 76% 28%, rgba(255,176,32,.48), transparent 55%),
        radial-gradient(2px 2px at 86% 68%, rgba(124,96,255,.45), transparent 55%);
      opacity:.55;
      pointer-events:none;
    }

    .data-grid{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px;
      position:relative; z-index:1;
      margin-top:8px;
    }
    .metric{
      border-radius:16px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(25,35,55,.10);
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      will-change: transform;
    }
    .metric:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(26,41,69,.12);
      border-color: rgba(42,106,247,.22);
    }
    .metric .num{
      font-size:20px; font-weight:900; letter-spacing:-.6px;
      display:flex; align-items:baseline; gap:8px;
    }
    .metric .num b{font-size:22px}
    .metric .num span{
      font-size:12px; color:var(--muted);
      font-weight:750;
      background: rgba(42,106,247,.10);
      border:1px solid rgba(42,106,247,.16);
      padding:6px 8px;
      border-radius:999px;
    }
    .metric p{
      margin:8px 0 0;
      color:var(--muted);
      line-height:1.5;
      font-size:13px;
    }

    .flow-preview{
      position:relative; z-index:1;
      margin-top:14px;
      border-radius:16px;
      background: linear-gradient(180deg, rgba(42,106,247,.08), rgba(255,255,255,.62));
      border:1px solid rgba(42,106,247,.14);
      padding:14px;
    }
    .flow-preview h3{
      margin:0 0 10px;
      font-size:14px;
      letter-spacing:.2px;
    }
    .flow-steps{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .bstep{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.78);
      flex: 1 1 calc(50% - 8px);
      min-width: 140px;
    }
    .badge{
      width:28px; height:28px;
      border-radius:10px;
      background: linear-gradient(135deg, rgba(42,106,247,.95), rgba(22,199,165,.95));
      box-shadow: 0 14px 30px rgba(42,106,247,.20);
      display:flex; align-items:center; justify-content:center;
      color:#fff;
      font-weight:900;
      font-size:13px;
      flex:0 0 auto;
    }
    .bstep strong{font-size:13.5px}
    .bstep span{display:block; font-size:12.5px; color:var(--muted); margin-top:2px}

    .btn-row{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
    }
    .mini-link{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(25,35,55,.12);
      background: rgba(255,255,255,.70);
      font-weight:800;
      font-size:13.5px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      cursor:pointer;
      display:inline-flex; align-items:center; gap:10px;
    }
    .mini-link:hover{transform: translateY(-1px); box-shadow: 0 14px 36px rgba(26,41,69,.10); border-color: rgba(42,106,247,.22)}
    .mini-link:focus{outline:none; box-shadow: var(--focus)}
    .mini-link svg{opacity:.9}

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

    .cards3{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      border:1px solid rgba(25,35,55,.10);
      box-shadow: 0 10px 26px rgba(26,41,69,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(42,106,247,.22);
      box-shadow: 0 18px 46px rgba(26,41,69,.12);
    }
    .card .ic{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(42,106,247,.12), rgba(22,199,165,.10));
      border:1px solid rgba(42,106,247,.18);
      display:flex; align-items:center; justify-content:center;
      margin-bottom:12px;
    }
    .card h3{margin:0 0 8px; font-size:16px; letter-spacing:-.2px}
    .card p{margin:0; color:var(--muted); line-height:1.75; font-size:14px}

    .two-col{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
      align-items:start;
    }

    .list-tiles{
      display:grid; gap:10px;
    }
    .tile{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.78);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .tile:hover{transform: translateY(-2px); box-shadow: 0 16px 40px rgba(26,41,69,.10); border-color: rgba(42,106,247,.22)}
    .tile .dot2{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(135deg, rgba(42,106,247,.95), rgba(22,199,165,.95));
      margin-top:4px;
      box-shadow: 0 12px 26px rgba(42,106,247,.18);
      flex:0 0 auto;
    }
    .tile strong{font-size:14px}
    .tile span{display:block; margin-top:5px; color:var(--muted); font-size:13.5px; line-height:1.6}

    .steps{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
    }
    .step{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.78);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:hover{transform: translateY(-3px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.12)}
    .step .n{
      width:36px; height:36px; border-radius:14px;
      background: linear-gradient(135deg, rgba(42,106,247,.95), rgba(124,96,255,.85));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      box-shadow: 0 14px 30px rgba(42,106,247,.20);
      margin-bottom:12px;
      border:1px solid rgba(255,255,255,.40);
    }
    .step h3{margin:0 0 8px; font-size:15.5px}
    .step p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

    .compare-wrap{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(25,35,55,.10);
      background:
        radial-gradient(900px 220px at 10% 0%, rgba(42,106,247,.14), transparent 56%),
        radial-gradient(700px 260px at 95% 40%, rgba(22,199,165,.12), transparent 52%),
        rgba(255,255,255,.78);
      box-shadow: 0 18px 52px rgba(26,41,69,.08);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 16px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .score-card{
      display:flex; align-items:center; gap:12px;
      border-radius:18px;
      border:1px solid rgba(255,176,32,.28);
      background: linear-gradient(180deg, rgba(255,176,32,.14), rgba(255,255,255,.70));
      padding:12px 14px;
      min-width: 260px;
    }
    .score-ring{
      width:52px; height:52px; border-radius:50%;
      background: conic-gradient(from 210deg, rgba(255,176,32,.95), rgba(42,106,247,.95), rgba(22,199,165,.95));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 34px rgba(255,176,32,.18);
      border:1px solid rgba(255,255,255,.60);
    }
    .score-ring b{
      width:44px; height:44px; border-radius:50%;
      background: rgba(255,255,255,.92);
      display:flex; align-items:center; justify-content:center;
      font-size:14px; letter-spacing:-.2px;
    }
    .score-card .meta{display:flex; flex-direction:column}
    .score-card .meta strong{font-size:14px}
    .score-card .meta span{font-size:12.8px; color:var(--muted); margin-top:2px}

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin-top:12px;
      overflow:hidden;
    }
    .compare-table{
      width:100%;
      display:block;
      overflow-x:auto;
    }
    .compare-table table{
      min-width: 880px;
    }
    th, td{
      padding:14px 12px;
      border-bottom: 1px solid rgba(25,35,55,.10);
      border-right: 1px solid rgba(25,35,55,.08);
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    th:last-child, td:last-child{border-right:none}
    thead th{
      position:sticky; top:0;
      background: rgba(255,255,255,.92);
      z-index:2;
      border-bottom: 1px solid rgba(25,35,55,.12);
      font-weight:900;
      color: rgba(27,31,42,.92);
    }
    tbody tr:hover td{background: rgba(42,106,247,.04)}
    .ok{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(22,199,165,.25);
      background: rgba(22,199,165,.10);
      color: rgba(15,90,75,.95);
      font-weight:800;
      font-size:13px;
      white-space:nowrap;
    }
    .no{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(228,75,75,.22);
      background: rgba(228,75,75,.08);
      color: rgba(146,43,43,.95);
      font-weight:800;
      font-size:13px;
      white-space:nowrap;
    }

    .faq-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:start;
    }
    .faq-item{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 10px 26px rgba(26,41,69,.06);
      overflow:hidden;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    .faq-item[open]{
      border-color: rgba(42,106,247,.22);
      box-shadow: 0 18px 46px rgba(26,41,69,.12);
      transform: translateY(-2px);
    }
    details.faq-item > summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      user-select:none;
    }
    details.faq-item > summary::-webkit-details-marker{display:none}
    .faq-q{
      display:flex; gap:12px; align-items:flex-start;
    }
    .faq-q .qmark{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(135deg, rgba(42,106,247,.12), rgba(22,199,165,.10));
      border:1px solid rgba(42,106,247,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:1000;
      color: rgba(27,31,42,.92);
    }
    .faq-q strong{
      font-size:14.5px; letter-spacing:-.2px; line-height:1.35;
    }
    .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, border-color .18s ease;
      flex:0 0 auto;
      margin-top:-2px;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(42,106,247,.22)}
    details.faq-item > .faq-body{
      padding:0 14px 14px 60px;
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
    }

    .reviews{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px;
    }
    .review{
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      border:1px solid rgba(25,35,55,.10);
      box-shadow: 0 10px 26px rgba(26,41,69,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
    }
    .review:hover{transform: translateY(-3px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.12)}
    .review .top{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      margin-bottom:10px;
    }
    .avatar{
      width:44px; height:44px; border-radius:18px;
      background:
        radial-gradient(10px 10px at 30% 30%, rgba(255,255,255,.85), transparent 55%),
        linear-gradient(135deg, rgba(42,106,247,.95), rgba(22,199,165,.92));
      border:1px solid rgba(255,255,255,.55);
      box-shadow: 0 16px 34px rgba(42,106,247,.18);
      display:flex; align-items:center; justify-content:center;
      color:#fff; font-weight:1000;
      flex:0 0 auto;
    }
    .review h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .review .role{color:var(--muted); font-size:13px; margin-top:4px; line-height:1.4}
    .stars{display:flex; gap:3px; margin-top:2px}
    .star{
      width:14px; height:14px;
      background: conic-gradient(from 0deg, rgba(255,176,32,.95), rgba(42,106,247,.25), rgba(255,176,32,.95));
      clip-path: polygon(50% 0%, 63% 28%, 95% 35%, 70% 57%, 76% 90%, 50% 73%, 24% 90%, 30% 57%, 5% 35%, 37% 28%);
      opacity:.95;
    }
    .review p{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
    }

    .case-grid{
      display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start;
    }
    .case-list{
      display:grid; gap:12px;
    }
    .case-item{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.80);
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; gap:12px; align-items:flex-start;
    }
    .case-item:hover{transform: translateY(-3px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.12)}
    .case-item .tag{
      display:inline-flex; align-items:center;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(42,106,247,.18);
      background: rgba(42,106,247,.08);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }
    .case-item .content{flex:1}
    .case-item h3{margin:0 0 6px; font-size:15.5px; letter-spacing:-.2px}
    .case-item p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}
    .case-item .meta{
      margin-top:10px; display:flex; gap:10px; flex-wrap:wrap;
      color:var(--muted2); font-size:12.8px;
    }
    .case-item .meta b{
      color: rgba(27,31,42,.90);
      font-weight:950;
      letter-spacing:-.1px;
    }

    .article-card{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.80);
      padding:16px;
      box-shadow: 0 10px 26px rgba(26,41,69,.06);
    }
    .article-card h3{margin:0 0 10px; font-size:16px}
    .article-list{display:grid; gap:10px}
    .article{
      border-radius:16px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.76);
      padding:12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
    }
    .article:hover{transform: translateY(-2px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.10)}
    .article strong{font-size:14px; letter-spacing:-.2px; line-height:1.35}
    .article span{color:var(--muted2); font-size:12.8px; white-space:nowrap; margin-top:3px}
    .article a{display:block}

    .network-grid{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
    }
    .network{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.80);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .network:hover{transform: translateY(-3px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.12)}
    .network h3{margin:0 0 8px; font-size:15.5px}
    .network p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

    .form-wrap{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(25,35,55,.10);
      background:
        radial-gradient(1000px 280px at 20% 0%, rgba(42,106,247,.14), transparent 56%),
        radial-gradient(900px 320px at 95% 45%, rgba(22,199,165,.12), transparent 52%),
        rgba(255,255,255,.80);
      box-shadow: 0 18px 52px rgba(26,41,69,.08);
      overflow:hidden;
    }
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; padding:16px;
      align-items:start;
    }
    .form-left{
      padding:4px 6px 10px;
    }
    .form-left h3{margin:0 0 8px; font-size:16.5px; letter-spacing:-.25px}
    .form-left p{margin:0; color:var(--muted); line-height:1.8; font-size:14.5px}
    .faq-bullets{margin-top:12px; display:grid; gap:10px}
    .bullet{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.76);
    }
    .bullet .bicon{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(135deg, rgba(42,106,247,.12), rgba(22,199,165,.10));
      border:1px solid rgba(42,106,247,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .bullet strong{font-size:14px}
    .bullet span{display:block; margin-top:4px; color:var(--muted); font-size:13.5px; line-height:1.6}

    form{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.82);
      padding:14px;
    }
    .fields{
      display:grid; gap:10px;
    }
    label{
      display:grid; gap:6px; font-weight:850; font-size:13px; color: rgba(27,31,42,.92);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(25,35,55,.12);
      background: rgba(255,255,255,.92);
      color: rgba(27,31,42,.95);
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
    }
    textarea{min-height:120px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(42,106,247,.34);
    }
    .form-actions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:10px;
    }
    .fineprint{color:var(--muted2); font-size:12.8px; line-height:1.5}
    .submit-btn{
      border:none;
      background: linear-gradient(135deg, rgba(42,106,247,.98), rgba(22,199,165,.96));
      color:#fff;
      padding:12px 16px;
      border-radius:14px;
      font-weight:950;
      font-size:14px;
      cursor:pointer;
      transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
      box-shadow: 0 16px 42px rgba(42,106,247,.22);
    }
    .submit-btn:hover{transform: translateY(-1px); filter:saturate(1.05); box-shadow: 0 20px 54px rgba(42,106,247,.26)}
    .submit-btn:active{transform: translateY(0px) scale(.99)}
    .submit-btn:focus{outline:none; box-shadow: var(--focus), 0 20px 54px rgba(42,106,247,.26)}
    .status{
      margin-top:10px;
      font-size:13.5px;
      color: var(--muted);
      min-height:18px;
    }

    .pricing-row{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px;
    }
    .price{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.80);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
    }
    .price:hover{transform: translateY(-3px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.12)}
    .price .top{
      display:flex; justify-content:space-between; gap:10px; align-items:flex-start;
      margin-bottom:8px;
    }
    .price h3{margin:0; font-size:16px}
    .price .badge2{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(42,106,247,.18);
      background: rgba(42,106,247,.08);
      font-weight:950;
      color: rgba(27,31,42,.90);
      font-size:12.8px;
      white-space:nowrap;
    }
    .price .big{
      margin:10px 0 4px;
      font-size:28px;
      font-weight:1000;
      letter-spacing:-1px;
    }
    .price .big small{font-size:12.5px; color:var(--muted); font-weight:900; letter-spacing:.2px}
    .price p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}
    .price ul{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
    .price li{
      display:flex; align-items:flex-start; gap:10px; color: rgba(27,31,42,.90);
      font-size:13.5px; line-height:1.55;
    }
    .price li i{
      width:18px; height:18px; border-radius:7px;
      background: rgba(22,199,165,.12);
      border:1px solid rgba(22,199,165,.26);
      display:flex; align-items:center; justify-content:center;
      color: rgba(15,90,75,.95);
      flex:0 0 auto;
      margin-top:2px;
      font-style:normal;
      font-weight:1000;
      font-size:12px;
    }

    .gallery{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px;
    }
    .media-card{
      border-radius: var(--radius);
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.80);
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(26,41,69,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .media-card:hover{transform: translateY(-3px); border-color: rgba(42,106,247,.22); box-shadow: 0 18px 46px rgba(26,41,69,.12)}
    .media-media{
      padding:12px 12px 0;
    }
    .media-media img{
      width:100%;
      height:auto;
      border-radius: 16px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.70);
    }
    .media-body{padding:14px}
    .media-body h3{margin:0 0 8px; font-size:15.5px}
    .media-body p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

    .footer{
      padding:26px 0 30px;
      background: linear-gradient(180deg, rgba(251,250,247,.0), rgba(251,250,247,1));
      border-top:1px solid rgba(25,35,55,.08);
    }
    .footer-inner{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
      padding-top:8px;
    }
    .foot-left{min-width: 240px; max-width: 520px}
    .foot-left .brandline{
      display:flex; gap:12px; align-items:center; margin-bottom:10px;
    }
    .foot-left p{margin:0; color:var(--muted); line-height:1.8; font-size:14px}
    .foot-links{
      display:grid; gap:10px;
      min-width: 280px;
    }
    .foot-links h3{margin:0; font-size:14.5px}
    .link-row{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .foot-links a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.72);
      font-size:13px;
      color: rgba(27,31,42,.88);
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
      white-space:nowrap;
    }
    .foot-links a:hover{transform: translateY(-1px); border-color: rgba(42,106,247,.22); box-shadow: 0 14px 36px rgba(26,41,69,.08)}
    .copyright{
      margin-top:16px;
      color: var(--muted2);
      font-size:12.8px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px dashed rgba(25,35,55,.12);
      padding-top:14px;
    }
    .copyright b{color: rgba(27,31,42,.90)}
    .backtop{
      position:fixed;
      right:16px; bottom:18px;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(25,35,55,.12);
      background: rgba(255,255,255,.88);
      box-shadow: 0 16px 42px rgba(26,41,69,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      opacity:0;
      pointer-events:none;
      transform: translateY(10px);
      transition: opacity .2s ease, transform .2s ease;
      z-index:55;
    }
    .backtop.show{opacity:1; pointer-events:auto; transform: translateY(0)}
    .backtop:focus{outline:none; box-shadow: var(--focus)}
    .backtop svg{opacity:.9}

    .float-cs{
      position:fixed;
      left:16px; bottom:18px;
      z-index:55;
      display:flex; gap:10px; align-items:flex-end;
    }
    .cs-card{
      width:214px;
      border-radius:18px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 52px rgba(26,41,69,.14);
      overflow:hidden;
      transform-origin: left bottom;
      transform: scale(.98);
      opacity:0;
      pointer-events:none;
      transition: opacity .22s ease, transform .22s ease;
    }
    .cs-card.show{
      opacity:1;
      pointer-events:auto;
      transform: scale(1);
    }
    .cs-card .cs-head{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(25,35,55,.08);
      background:
        radial-gradient(600px 180px at 20% 0%, rgba(42,106,247,.14), transparent 60%),
        rgba(255,255,255,.90);
    }
    .cs-card .cs-head strong{font-size:13.5px}
    .cs-card .cs-head button{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease;
    }
    .cs-card .cs-head button:hover{transform: translateY(-1px); border-color: rgba(42,106,247,.22)}
    .cs-card .cs-body{padding:12px}
    .cs-qrcode{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(25,35,55,.10);
      background: rgba(255,255,255,.78);
      padding:10px;
    }
    .cs-qrcode img{
      width:100%; height:auto; border-radius:12px;
    }
    .cs-card .cs-foot{
      padding:10px 12px 12px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.5;
    }
    .cs-toggle{
      width:56px; height:56px;
      border-radius:20px;
      border:1px solid rgba(25,35,55,.12);
      background: linear-gradient(135deg, rgba(42,106,247,.98), rgba(22,199,165,.96));
      box-shadow: 0 20px 56px rgba(42,106,247,.26);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, filter .18s ease;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .cs-toggle:hover{transform: translateY(-2px); filter:saturate(1.05)}
    .cs-toggle:focus{outline:none; box-shadow: var(--focus)}
    .cs-toggle::after{
      content:"";
      position:absolute; inset:-40%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
      transform: rotate(18deg) translateX(-30%);
      animation: shine2 4.8s ease-in-out infinite;
      opacity:.35;
    }
    @keyframes shine2{
      0%,42%{transform: rotate(18deg) translateX(-55%); opacity:0}
      55%{opacity:.55}
      92%,100%{transform: rotate(18deg) translateX(60%); opacity:0}
    }
    .cs-toggle svg{position:relative; z-index:1}

    .anchor-hint{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px dashed rgba(42,106,247,.26);
      background: rgba(42,106,247,.06);
      color: rgba(27,31,42,.90);
      font-weight:850;
      font-size:13.5px;
    }
    .anchor-hint .pulse{
      width:10px; height:10px; border-radius:50%;
      background: rgba(42,106,247,.95);
      box-shadow: 0 0 0 0 rgba(42,106,247,.25);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(42,106,247,.25)}
      60%{box-shadow: 0 0 0 10px rgba(42,106,247,.0)}
      100%{box-shadow: 0 0 0 0 rgba(42,106,247,.0)}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap:14px}
      .hero-title{font-size:36px}
      .cards3{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .steps{grid-template-columns: repeat(2, minmax(0,1fr))}
      .faq-grid{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .network-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .pricing-row{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .gallery{grid-template-columns: 1fr}
    }
    @media (max-width: 860px){
      .nav-links{display:none}
      .nav-actions .pill{display:none}
      .menu-btn{display:inline-flex; align-items:center; justify-content:center}
      .mobile-panel.show{display:block}
    }