:root{
      --bg0:#0b1020;
      --bg1:#11193a;
      --card:#0f1733;
      --text:#0b1220;
      --muted:#5b6476;
      --deep:#1b2435;
      --line:rgba(22,32,52,.12);
      --soft:rgba(22,32,52,.06);
      --white:#ffffff;
      --accent:#ff3b7a;
      --accent2:#ff7a2f;
      --accent3:#7c5cff;
      --ok:#19c37d;
      --warn:#ffb020;
      --radius:18px;
      --shadow:0 16px 40px rgba(18,28,54,.10);
      --shadow2:0 10px 26px rgba(18,28,54,.10);
      --focus:0 0 0 4px rgba(255,59,122,.18);
      --container:1160px;
      --pad:20px;
    }
    *{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", "Noto Sans SC", sans-serif;
      color:var(--deep);
      background:
        radial-gradient(1000px 600px at 15% 0%, rgba(255,59,122,.16), rgba(255,59,122,0) 60%),
        radial-gradient(1000px 600px at 85% 10%, rgba(124,92,255,.14), rgba(124,92,255,0) 55%),
        radial-gradient(900px 520px at 70% 70%, rgba(255,122,47,.10), rgba(255,122,47,0) 60%),
        linear-gradient(180deg, #fff 0%, #fbfbfe 42%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:min(var(--container), calc(100% - 2*var(--pad)));
      margin:0 auto;
    }
    .topbar{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,30,55,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:12px;
      flex-wrap:nowrap;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width:220px;
    }
    .brand .logo{
      width:44px; height:44px; border-radius:14px;
      overflow:hidden;
      box-shadow:0 10px 18px rgba(255,59,122,.15);
      border:1px solid rgba(255,59,122,.22);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
    }
    .brand img{display:block; width:100%; height:auto}
    .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)}
    .navlinks{
      display:flex; align-items:center; gap:14px;
      justify-content:center;
      flex:1;
      min-width:0;
    }
    .navlinks a{
      font-size:13px;
      color:#243047;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(255,59,122,.08);
      border-color:rgba(255,59,122,.18);
      transform: translateY(-1px);
    }
    .navcta{
      display:flex; align-items:center; gap:10px;
      min-width:240px;
      justify-content:flex-end;
    }
    .btn{
      border:1px solid transparent;
      border-radius:14px;
      padding:10px 14px;
      font-weight:700;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      display:inline-flex; align-items:center; gap:10px;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn-primary{
      background: linear-gradient(135deg, var(--accent) 0%, #ff4d8d 30%, var(--accent2) 100%);
      color:#fff;
      box-shadow: 0 14px 34px rgba(255,59,122,.22);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(255,59,122,.28);
    }
    .btn-ghost{
      background:rgba(255,255,255,.86);
      border-color:rgba(22,32,52,.12);
      color:#22304a;
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color:rgba(255,59,122,.22);
      background:#fff;
      box-shadow:0 12px 26px rgba(18,28,54,.10);
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(22,32,52,.12);
      background:rgba(255,255,255,.7);
      color:#2a3652;
      font-size:12px;
      white-space:nowrap;
    }
    .dot{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
      box-shadow: 0 0 0 4px rgba(255,59,122,.14);
    }

    .mobile-toggle{
      display:none;
      border-radius:14px;
      padding:10px 12px;
      border:1px solid rgba(22,32,52,.12);
      background:rgba(255,255,255,.86);
      cursor:pointer;
    }
    .mobile-toggle:focus{outline:none; box-shadow:var(--focus)}
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px; background:#26324a;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){top:0}
    .burger span:nth-child(2){top:5px}
    .burger span:nth-child(3){top:10px}
    .mobile-toggle[data-open="true"] .burger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .mobile-toggle[data-open="true"] .burger span:nth-child(2){opacity:0}
    .mobile-toggle[data-open="true"] .burger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobilepanel{
      display:none;
      padding:10px 0 16px;
    }
    .mobilepanel .grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobilepanel a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(22,32,52,.12);
      background:rgba(255,255,255,.9);
      font-size:13px;
      color:#243047;
    }

    main{padding:26px 0 40px}
    section{padding:28px 0}
    .hero{
      padding:26px 0 18px;
    }
    .herowrap{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
    }
    .hero-left{
      padding:22px 0 10px;
    }
    .hero-title{
      margin:12px 0 10px;
      font-size:42px;
      line-height:1.08;
      letter-spacing:-.6px;
    }
    .hero-title .em{
      background: linear-gradient(135deg, var(--accent) 0%, #ff4d8d 36%, var(--accent3) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      text-shadow:none;
    }
    .hero-sub{
      margin:0;
      color:#3b4661;
      font-size:15px;
      line-height:1.7;
      max-width:60ch;
    }
    .hero-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:18px;
    }
    .hero-quick{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      margin-top:14px;
    }

    .hero-right{
      position:relative;
    }
    .hero-panel{
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background:
        radial-gradient(800px 220px at 0% 0%, rgba(255,59,122,.20), rgba(255,59,122,0) 60%),
        radial-gradient(800px 280px at 100% 15%, rgba(124,92,255,.16), rgba(124,92,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.70));
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .hero-panel::after{
      content:"";
      position:absolute; inset:auto -40% -50% -40%;
      height:240px;
      background: radial-gradient(circle at 50% 0%, rgba(255,122,47,.30), rgba(255,122,47,0) 60%);
      pointer-events:none;
    }
    .hero-panel-inner{
      position:relative;
      padding:16px;
    }
    .stat-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .stat{
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px 11px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .stat:hover{
      transform: translateY(-2px);
      border-color: rgba(255,59,122,.20);
      box-shadow: 0 18px 34px rgba(18,28,54,.10);
    }
    .stat .k{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:6px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.8);
      color:#2b3752;
    }
    .badge .mini{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
    }
    .stat .v{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.3px;
    }
    .stat .d{
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
    }
    .hero-mini{
      display:flex; gap:10px; align-items:flex-start;
      margin-top:12px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.72);
    }
    .hero-mini .icon{
      width:38px; height:38px; border-radius:14px;
      background: linear-gradient(135deg, rgba(255,59,122,.18), rgba(124,92,255,.14));
      border:1px solid rgba(255,59,122,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .hero-mini .icon svg{width:18px; height:18px}
    .hero-mini .t strong{display:block; font-size:13px; margin-bottom:4px}
    .hero-mini .t span{display:block; font-size:12px; color:var(--muted); line-height:1.5}

    .sectionhead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:14px;
      flex-wrap:wrap;
    }
    .sectionhead h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.3px;
    }
    .sectionhead p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:62ch;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      margin-bottom:8px;
      font-size:13px;
      color:#2c3753;
    }
    .kicker .bar{
      width:34px; height:10px; border-radius:999px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent3) 100%);
      box-shadow:0 10px 22px rgba(124,92,255,.16);
    }

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

    .cards3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(18,28,54,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .card .title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:8px;
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:13px;
    }
    .card .cap{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tag{
      font-size:12px;
      color:#2a3652;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(22,32,52,.10);
      background:rgba(255,255,255,.75);
      white-space:nowrap;
    }
    .cardGlow::before{
      content:"";
      position:absolute;
      inset:-140px -160px auto -160px;
      height:220px;
      background: radial-gradient(circle at 20% 20%, rgba(255,59,122,.18), rgba(255,59,122,0) 60%),
                  radial-gradient(circle at 75% 30%, rgba(124,92,255,.16), rgba(124,92,255,0) 55%);
      pointer-events:none;
    }

    .steps{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .stepList{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.82);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      border-color: rgba(255,59,122,.20);
      box-shadow: 0 18px 34px rgba(18,28,54,.10);
    }
    .step .num{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#fff;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
      box-shadow: 0 14px 30px rgba(255,59,122,.22);
      flex:0 0 auto;
    }
    .step .body strong{
      display:block;
      font-size:14px;
      margin-top:2px;
      margin-bottom:6px;
    }
    .step .body span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .processAside{
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background:
        radial-gradient(900px 300px at 0% 0%, rgba(255,59,122,.16), rgba(255,59,122,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
      padding:16px;
      box-shadow: var(--shadow2);
    }
    .asideTitle{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .asideTitle h3{margin:0; font-size:16px}
    .meter{
      margin-top:6px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background:rgba(255,255,255,.7);
      padding:12px;
    }
    .meterRow{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      font-size:12px; color:var(--muted);
      margin-bottom:8px;
    }
    .barTrack{
      height:10px; border-radius:999px;
      background: rgba(22,32,52,.08);
      overflow:hidden;
      border:1px solid rgba(22,32,52,.08);
    }
    .barFill{
      height:100%;
      width:66%;
      border-radius:999px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 55%, var(--accent3) 100%);
      box-shadow: 0 14px 28px rgba(255,59,122,.25);
      transform-origin:left;
      animation: fillpulse 2.2s ease-in-out infinite;
    }
    @keyframes fillpulse{
      0%,100%{filter:saturate(1); transform:scaleX(1)}
      50%{filter:saturate(1.15); transform:scaleX(1.01)}
    }

    .compareWrap{
      display:grid;
      grid-template-columns: .92fr 1.08fr;
      gap:14px;
      align-items:start;
    }
    .ratingCard{
      padding:18px;
    }
    .ratingTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      font-size:13px; color:var(--muted);
      justify-content:flex-end;
      flex-wrap:wrap;
    }
    .star{
      width:18px; height:18px;
      display:inline-flex; align-items:center; justify-content:center;
    }
    .ratingBig{
      margin-top:10px;
      display:flex; align-items:baseline; gap:10px; flex-wrap:wrap;
    }
    .ratingBig .num{
      font-size:40px; font-weight:1000; letter-spacing:-1px;
      line-height:1;
    }
    .ratingBig .max{color:var(--muted); font-size:13px}
    .bul{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .bul li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.72);
    }
    .check{
      width:22px; height:22px; border-radius:10px;
      background: rgba(25,195,125,.12);
      border:1px solid rgba(25,195,125,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .check svg{width:14px; height:14px; color:var(--ok)}
    .bul strong{display:block; font-size:13px; margin-bottom:4px}
    .bul span{display:block; font-size:12px; color:var(--muted); line-height:1.5}

    .tableCard{
      padding:16px;
    }
    .tableHead{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-end; margin-bottom:10px; flex-wrap:wrap;
    }
    .tableHead h3{margin:0; font-size:16px}
    .tableHead .hint{color:var(--muted); font-size:12px; line-height:1.6; max-width:50ch}
    .tableWrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.72);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:620px;
      font-size:13px;
    }
    th,td{
      padding:12px 12px;
      border-bottom:1px solid rgba(22,32,52,.08);
      vertical-align:top;
    }
    th{
      text-align:left;
      color:#2a3652;
      background: rgba(255,59,122,.06);
      border-bottom:1px solid rgba(255,59,122,.14);
      position:sticky; top:0;
      z-index:1;
    }
    tr:last-child td{border-bottom:none}
    .scorePill{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.78);
      white-space:nowrap;
      margin-top:2px;
    }
    .scorePill .s{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
      box-shadow: 0 0 0 4px rgba(255,59,122,.14);
    }
    .scorePill b{font-size:13px}

    .cases{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .caseCard{
      padding:16px;
      display:flex; flex-direction:column; gap:12px;
      min-height:260px;
    }
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .caseCard h3{margin:0; font-size:16px}
    .caseCard .meta{
      display:flex; gap:8px; flex-wrap:wrap;
      color:var(--muted);
      font-size:12px;
    }
    .caseCard .desc{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      margin-top:2px;
    }
    .caseList{
      display:grid; gap:8px;
      margin:0; padding:0;
      list-style:none;
    }
    .caseList li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.72);
    }
    .caseList .b{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent2) 0%, var(--accent3) 100%);
      margin-top:6px;
      flex:0 0 auto;
    }
    .caseList span{
      font-size:12px; color:var(--muted); line-height:1.5;
    }
    .caseFoot{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
    }
    .linkbtn{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(22,32,52,.12);
      background: rgba(255,255,255,.86);
      font-size:13px;
      font-weight:800;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .linkbtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(18,28,54,.10);
      border-color: rgba(255,59,122,.22);
    }
    .arrow{
      width:18px; height:18px; border-radius:10px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(255,59,122,.10);
      border:1px solid rgba(255,59,122,.22);
    }
    .arrow svg{width:12px; height:12px}

    .logostrip{
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.76);
      padding:14px;
      overflow:hidden;
    }
    .stripGrid{
      display:flex; gap:10px; align-items:center;
      flex-wrap:wrap;
      justify-content:space-between;
    }
    .pillModel{
      flex: 1 1 160px;
      min-width:160px;
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.72);
    }
    .pillModel b{font-size:13px}
    .pillModel span{color:var(--muted); font-size:12px}
    .pillModel .sw{
      width:34px; height:12px; border-radius:999px;
      background: linear-gradient(90deg, rgba(255,59,122,.55), rgba(124,92,255,.45));
      border:1px solid rgba(255,59,122,.18);
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .serviceList{
      display:grid;
      gap:12px;
    }
    .svc{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.82);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .svc:hover{
      transform: translateY(-2px);
      border-color: rgba(255,59,122,.20);
      box-shadow: 0 18px 34px rgba(18,28,54,.10);
    }
    .svc .i{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,59,122,.18), rgba(124,92,255,.14));
      border:1px solid rgba(255,59,122,.20);
      flex:0 0 auto;
    }
    .svc .i svg{width:18px; height:18px}
    .svc strong{display:block; font-size:14px; margin-bottom:6px}
    .svc span{display:block; color:var(--muted); font-size:13px; line-height:1.7}

    .timeline{
      display:grid;
      gap:12px;
    }
    .timeItem{
      display:grid;
      grid-template-columns: 120px 1fr;
      gap:12px;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.82);
      align-items:start;
    }
    .timeItem .when{
      font-size:12px; color:var(--muted);
      border-right:1px dashed rgba(22,32,52,.18);
      padding-right:12px;
    }
    .timeItem .when b{display:block; color:#243047; font-size:13px; margin-bottom:6px}
    .timeItem .what strong{display:block; font-size:14px; margin-bottom:6px}
    .timeItem .what span{color:var(--muted); font-size:13px; line-height:1.7}

    .pricingRow{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .priceCard{
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .priceCard::before{
      content:"";
      position:absolute;
      inset:-180px -140px auto -140px;
      height:240px;
      background: radial-gradient(circle at 10% 20%, rgba(255,59,122,.18), rgba(255,59,122,0) 60%),
                  radial-gradient(circle at 65% 30%, rgba(124,92,255,.16), rgba(124,92,255,0) 55%);
      pointer-events:none;
    }
    .priceCard .inner{position:relative}
    .priceTop{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
    }
    .priceCard h3{margin:0; font-size:16px}
    .priceCard p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .price{
      margin-top:12px;
      display:flex; gap:10px; align-items:baseline; flex-wrap:wrap;
    }
    .price .num{
      font-size:34px; font-weight:1000; letter-spacing:-1px;
    }
    .price .unit{color:var(--muted); font-size:12px}
    .priceBul{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .priceBul li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.72);
    }
    .spark{
      width:22px; height:22px;
      border-radius:10px;
      background: rgba(255,59,122,.10);
      border:1px solid rgba(255,59,122,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .spark svg{width:13px; height:13px; color:var(--accent)}

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faqItem{
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.82);
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(18,28,54,.06);
    }
    .faqBtn{
      width:100%;
      text-align:left;
      background:transparent;
      border:0;
      padding:14px 14px;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:900;
      color:#243047;
      font-size:14px;
    }
    .faqBtn:focus{outline:none; box-shadow:var(--focus)}
    .faqBtn .q{
      display:flex; gap:10px; align-items:flex-start;
    }
    .faqBtn .q .qmark{
      width:26px; height:26px; border-radius:12px;
      background: rgba(255,59,122,.10);
      border:1px solid rgba(255,59,122,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .faqBtn .qmark svg{width:14px; height:14px}
    .faqBtn .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .18s ease;
      margin-top:-2px;
    }
    .faqItem[data-open="true"] .faqBtn .chev{transform: rotate(180deg)}
    .faqBody{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .faqBody .inner{
      padding:0 14px 14px;
      color:var(--muted);
      line-height:1.75;
      font-size:13px;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .reviewCard{
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .reviewCard::before{
      content:"";
      position:absolute;
      inset:-200px -160px auto -160px;
      height:250px;
      background: radial-gradient(circle at 20% 20%, rgba(255,122,47,.18), rgba(255,122,47,0) 60%),
                  radial-gradient(circle at 70% 30%, rgba(124,92,255,.16), rgba(124,92,255,0) 55%);
      pointer-events:none;
    }
    .reviewCard .inner{position:relative}
    .avatarRow{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      display:flex; gap:10px; align-items:center;
    }
    .face{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(135deg, rgba(255,59,122,.20), rgba(124,92,255,.16));
      border:1px solid rgba(255,59,122,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#2a3652;
      box-shadow:0 14px 28px rgba(255,59,122,.12);
      flex:0 0 auto;
    }
    .who strong{display:block; font-size:14px; margin-bottom:3px}
    .who span{display:block; color:var(--muted); font-size:12px}
    .reviewStars{
      display:flex; gap:4px; align-items:center;
      color:#ff9b2f;
      font-size:12px;
    }
    .reviewText{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }

    .formCard{
      padding:16px;
    }
    form{
      display:grid;
      gap:12px;
      margin-top:10px;
    }
    .row2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:grid;
      gap:8px;
      font-size:12px;
      color:#2a3652;
      font-weight:800;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(22,32,52,.12);
      background:rgba(255,255,255,.88);
      padding:12px 12px;
      font-size:14px;
      color:#1f2a3d;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      outline:none;
      border-color: rgba(255,59,122,.26);
      box-shadow: var(--focus);
    }
    .submitRow{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:2px;
    }
    .fineprint{
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
      max-width:56ch;
    }
    .submitRow .btn-primary{padding:11px 16px}

    .footer{
      border-top:1px solid rgba(22,32,52,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,1));
      padding:22px 0 26px;
      color:#1c273b;
    }
    .footTop{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footBrand .mark{
      width:48px; height:48px; border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(255,59,122,.22);
      background:#fff;
      box-shadow: 0 14px 28px rgba(255,59,122,.12);
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .footBrand img{width:100%; height:auto; display:block}
    .footBrand strong{display:block; font-size:14px; margin-bottom:6px}
    .footBrand p{margin:0; color:var(--muted); font-size:13px; line-height:1.75}
    .footLinks{
      display:grid;
      gap:10px;
      align-content:start;
      justify-items:start;
    }
    .footLinks strong{font-size:13px}
    .linksGrid{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .fLink{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(22,32,52,.12);
      background: rgba(255,255,255,.85);
      color:#25324a;
      transition: transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .fLink:hover{transform: translateY(-1px); border-color: rgba(255,59,122,.22)}
    .copyRow{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      flex-wrap:wrap;
      padding-top:14px;
      border-top:1px solid rgba(22,32,52,.08);
      color:var(--muted);
      font-size:12px;
    }
    .copyRow b{color:#25324a}
    .backTop{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.12);
      background: rgba(255,255,255,.9);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .backTop:hover{
      transform: translateY(-2px);
      border-color: rgba(255,59,122,.22);
      box-shadow:0 14px 26px rgba(18,28,54,.10);
    }
    .backTop svg{width:18px; height:18px}

    .floatChat{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .chatCard{
      width:260px;
      border-radius:20px;
      border:1px solid rgba(22,32,52,.12);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow2);
      overflow:hidden;
      transform-origin: right bottom;
      transform: scale(.98);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .chatCard[data-open="true"]{
      opacity:1;
      transform: scale(1);
      pointer-events:auto;
    }
    .chatHead{
      padding:12px 12px 10px;
      background: linear-gradient(135deg, rgba(255,59,122,.14), rgba(124,92,255,.12));
      border-bottom:1px solid rgba(22,32,52,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .chatHead strong{font-size:13px}
    .closeBtn{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.85);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .closeBtn svg{width:14px; height:14px}
    .chatBody{
      padding:12px;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .qrRow{
      display:flex; gap:12px; align-items:center;
    }
    .qrRow img{
      width:72px; height:72px; border-radius:16px;
      border:1px solid rgba(22,32,52,.12);
      background:#fff;
      object-fit:cover;
    }
    .qrRow .txt{
      display:grid; gap:6px;
    }
    .qrRow .txt b{font-size:13px}
    .qrRow .txt span{color:var(--muted); font-size:12px; line-height:1.6}
    .chatActions{
      display:flex; gap:10px;
    }
    .miniBtn{
      flex:1;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.12);
      background: rgba(255,255,255,.9);
      padding:10px 12px;
      font-weight:900;
      font-size:12px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      color:#243047;
    }
    .miniBtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(18,28,54,.10);
      border-color: rgba(255,59,122,.22);
    }
    .floatBtn{
      width:54px; height:54px;
      border-radius:22px;
      border:1px solid rgba(255,59,122,.22);
      background: linear-gradient(135deg, rgba(255,59,122,.18), rgba(124,92,255,.14));
      box-shadow: 0 18px 44px rgba(255,59,122,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .floatBtn:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(255,59,122,.24);
      border-color: rgba(255,59,122,.35);
    }
    .floatBtn svg{width:22px; height:22px; color:#243047}

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }

    .articleList{
      display:grid; gap:12px;
    }
    .article{
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(22,32,52,.10);
      background: rgba(255,255,255,.82);
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
    }
    .article .l{
      display:grid; gap:7px;
    }
    .article .l b{font-size:14px}
    .article .l span{color:var(--muted); font-size:12px; line-height:1.6}
    .article .r{
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
      min-width:110px;
    }
    .time{
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
    }
    .arrowOut{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(22,32,52,.12);
      background: rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .arrowOut:hover{transform: translateY(-1px); border-color: rgba(255,59,122,.22)}
    .arrowOut svg{width:14px; height:14px}

    @media (max-width: 980px){
      .herowrap{grid-template-columns: 1fr; gap:14px}
      .cards3{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .compareWrap{grid-template-columns: 1fr}
      .cases{grid-template-columns: 1fr}
      .grid2{grid-template-columns: 1fr}
      .pricingRow{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .footTop{grid-template-columns: 1fr}
      .navlinks{display:none}
      .navcta{min-width:auto}
      .mobile-toggle{display:inline-flex; align-items:center; justify-content:center}
      .mobilepanel{display:block}
      .mobilepanel[data-open="false"]{display:none}
      .row2{grid-template-columns: 1fr}
      .timeItem{grid-template-columns: 1fr}
      .timeItem .when{border-right:none; padding-right:0}
    }

    .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;
    }