:root{
      --bg0:#fbf9ff;
      --bg1:#f6f1ff;
      --card:#ffffff;
      --text:#1f2230;
      --muted:#5b6076;
      --muted2:#7b8198;
      --border:rgba(26,28,41,.10);
      --border2:rgba(26,28,41,.14);
      --shadow:0 18px 50px rgba(42,18,88,.12);
      --shadow2:0 10px 30px rgba(40,18,88,.10);
      --shadow3:0 6px 18px rgba(40,18,88,.10);
      --primary:#6d28d9;
      --primary2:#8b5cf6;
      --accent:#b400ff;
      --accent2:#ff4fd8;
      --good:#16a34a;
      --warn:#d97706;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
      --pad:20px;
      --ring:rgba(139,92,246,.35);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Noto Sans SC","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% -10%, rgba(139,92,246,.28), transparent 60%),
        radial-gradient(900px 520px at 85% 0%, rgba(180,0,255,.18), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }
    .skip{
      position:absolute; left:-9999px; top:8px;
      background:#111827; color:#fff; padding:10px 12px; border-radius:12px; z-index:9999;
    }
    .skip:focus{left:12px}
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(1.2) blur(10px);
      background:rgba(251,249,255,.70);
      border-bottom:1px solid rgba(26,28,41,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:180px;
    }
    .brand img{
      width:42px; height:42px; border-radius:14px; object-fit:cover;
      box-shadow:0 10px 22px rgba(109,40,217,.22);
      background:#fff;
      border:1px solid rgba(26,28,41,.08);
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand .name{
      font-weight:860; letter-spacing:.2px; font-size:15px;
    }
    .brand .sub{
      font-size:12px; color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }
    nav .nav-actions{
      display:flex; align-items:center; gap:10px;
    }
    .menu{
      display:flex; align-items:center; gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .menu a{
      font-size:13px; color:var(--muted);
      padding:10px 10px; border-radius:12px;
      border:1px solid transparent;
      transition:background .2s, border-color .2s, transform .2s;
    }
    .menu a:hover{
      color:var(--text);
      background:rgba(139,92,246,.08);
      border-color:rgba(139,92,246,.22);
      transform:translateY(-1px);
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px; padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(109,40,217,.22);
      background:linear-gradient(180deg, rgba(139,92,246,.15), rgba(180,0,255,.08));
      color:var(--text);
      font-weight:760; font-size:13px;
      box-shadow:0 10px 24px rgba(109,40,217,.12);
      transition:transform .2s, box-shadow .2s, border-color .2s, background .2s;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 34px rgba(109,40,217,.18);
      border-color:rgba(109,40,217,.35);
      background:linear-gradient(180deg, rgba(139,92,246,.22), rgba(180,0,255,.12));
    }
    .btn.primary{
      border-color:rgba(109,40,217,.30);
      background:linear-gradient(135deg, #6d28d9, #b400ff 60%, #ff4fd8);
      color:#fff;
      box-shadow:0 18px 44px rgba(180,0,255,.22);
    }
    .btn.primary:hover{box-shadow:0 22px 62px rgba(180,0,255,.26)}
    .btn.ghost{
      background:rgba(255,255,255,.65);
      border-color:rgba(26,28,41,.10);
      box-shadow:0 10px 24px rgba(26,28,41,.06);
      color:var(--text);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }
    .hamb{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.65);
      box-shadow:0 10px 24px rgba(26,28,41,.06);
      cursor:pointer;
      transition:transform .2s, box-shadow .2s;
    }
    .hamb:hover{transform:translateY(-1px); box-shadow:0 14px 34px rgba(26,28,41,.10)}
    .hamb .lines{
      width:18px; height:12px; margin:0 auto; position:relative;
    }
    .hamb .lines span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:999px; background:rgba(31,34,48,.78);
      transition:transform .22s, top .22s, opacity .22s;
    }
    .hamb .lines span:nth-child(1){top:0}
    .hamb .lines span:nth-child(2){top:5px}
    .hamb .lines span:nth-child(3){top:10px}
    .hamb[data-open="true"] .lines span:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamb[data-open="true"] .lines span:nth-child(2){opacity:0}
    .hamb[data-open="true"] .lines span:nth-child(3){top:5px; transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      border-top:1px solid rgba(26,28,41,.08);
      padding:10px 0 16px;
    }
    .mobile-panel .menu{
      justify-content:flex-start;
      gap:10px;
    }
    .mobile-panel .menu a{padding:10px 12px}
    main{padding-bottom:44px}
    section{padding:56px 0}
    .hero{
      padding:42px 0 22px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-card{
      border:1px solid rgba(109,40,217,.18);
      background:
        radial-gradient(800px 420px at 30% 0%, rgba(139,92,246,.25), transparent 55%),
        radial-gradient(650px 380px at 90% 15%, rgba(180,0,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:26px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 140px at 15% 12%, rgba(255,79,216,.26), transparent 55%),
        radial-gradient(520px 180px at 75% 0%, rgba(180,0,255,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-content{position:relative; z-index:1}
    .kicker{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; gap:8px; align-items:center;
      padding:8px 12px; border-radius:999px;
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      color:rgba(109,40,217,.98);
      font-weight:720; font-size:12px;
    }
    .pill .dot{
      width:9px; height:9px; border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--accent2));
      box-shadow:0 0 0 6px rgba(139,92,246,.12);
    }
    .hero h1{
      margin:16px 0 10px;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .hero-ctas{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }
    .hero-meta{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:18px;
      padding-top:14px;
      border-top:1px solid rgba(26,28,41,.08);
    }
    .meta-item{
      display:flex; align-items:flex-start; gap:10px;
      min-width:180px;
    }
    .meta-icon{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(139,92,246,.12);
      border:1px solid rgba(139,92,246,.20);
      flex:0 0 auto;
    }
    .meta-item b{display:block; font-size:13px; margin-top:2px}
    .meta-item span{display:block; color:var(--muted2); font-size:12.5px; line-height:1.35; margin-top:4px}
    .hero-side{
      display:flex; flex-direction:column; gap:14px;
    }
    .glass{
      background:rgba(255,255,255,.62);
      border:1px solid rgba(26,28,41,.10);
      border-radius:22px;
      box-shadow:var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .glass:after{
      content:"";
      position:absolute; inset:auto -40% -60% auto;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(139,92,246,.22), transparent 60%);
      transform:rotate(10deg);
      pointer-events:none;
    }
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative; z-index:1;
      margin-bottom:12px;
    }
    .side-title h2{
      font-size:14px; margin:0; letter-spacing:.2px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      background:rgba(180,0,255,.10);
      border:1px solid rgba(180,0,255,.18);
      color:rgba(92,35,180,.95);
      font-size:12px; font-weight:720;
      white-space:nowrap;
    }
    .badge svg{opacity:.9}
    .grid-metric{
      display:grid; grid-template-columns:1fr 1fr;
      gap:12px; position:relative; z-index:1;
    }
    .metric{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.70);
      transition:transform .2s, box-shadow .2s;
      min-height:84px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .metric:hover{transform:translateY(-2px); box-shadow:var(--shadow3)}
    .metric .num{
      font-size:18px; font-weight:900; letter-spacing:-.2px;
      background:linear-gradient(135deg, var(--primary), var(--accent2));
      -webkit-background-clip:text; background-clip:text;
      color:transparent;
    }
    .metric .lab{color:var(--muted); font-size:12.5px; margin-top:6px; line-height:1.35}
    .quick-form{
      position:relative; z-index:1;
      display:flex; flex-direction:column; gap:10px;
    }
    .quick-form .row{
      display:flex; gap:10px;
    }
    .input{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(26,28,41,.12);
      background:rgba(255,255,255,.78);
      outline:none;
      font-size:13.5px;
      transition:border-color .2s, box-shadow .2s;
      color:var(--text);
    }
    .input:focus{
      border-color:rgba(109,40,217,.35);
      box-shadow:0 0 0 4px var(--ring);
    }
    .select{appearance:none; background-image:linear-gradient(45deg, transparent 50%, rgba(31,34,48,.65) 50%), linear-gradient(135deg, rgba(31,34,48,.65) 50%, transparent 50%); background-position:calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px); background-size:5px 5px, 5px 5px; background-repeat:no-repeat; padding-right:36px}
    .tiny-help{color:var(--muted2); font-size:12px; line-height:1.5}
    .divider{
      height:1px; background:rgba(26,28,41,.08);
      margin:10px 0;
    }

    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:18px; flex-wrap:wrap;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-head p{
      margin:0; color:var(--muted);
      font-size:13.5px; line-height:1.7;
      max-width:62ch;
    }
    .tag-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
    .tag{
      padding:8px 12px; border-radius:999px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.65);
      color:var(--muted);
      font-size:12.5px;
      transition:transform .2s, border-color .2s, background .2s;
      cursor:default;
    }
    .tag strong{color:var(--text)}
    .cards{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .card{
      background:rgba(255,255,255,.68);
      border:1px solid rgba(26,28,41,.10);
      border-radius:20px;
      box-shadow:0 12px 30px rgba(26,28,41,.06);
      padding:16px;
      transition:transform .2s, box-shadow .2s, border-color .2s;
      position:relative;
      overflow:hidden;
    }
    .card:hover{transform:translateY(-3px); box-shadow:0 18px 48px rgba(109,40,217,.13); border-color:rgba(109,40,217,.22)}
    .card h3{
      margin:10px 0 6px; font-size:15px; letter-spacing:-.2px;
    }
    .card p{
      margin:0; color:var(--muted);
      font-size:13.2px; line-height:1.65;
    }
    .card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .card .chip{
      width:42px; height:42px; border-radius:16px;
      background:rgba(139,92,246,.12);
      border:1px solid rgba(139,92,246,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .card .chip svg{opacity:.9}
    .card .list{
      margin:12px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:9px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:13px; line-height:1.5;
    }
    .tick{
      width:18px; height:18px; border-radius:8px;
      background:rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }

    .w-4{grid-column: span 4}
    .w-5{grid-column: span 5}
    .w-6{grid-column: span 6}
    .w-7{grid-column: span 7}
    .w-8{grid-column: span 8}
    .w-12{grid-column: span 12}
    .w-3{grid-column: span 3}

    .steps{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .step{
      grid-column: span 3;
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      position:relative;
      overflow:hidden;
      min-height:170px;
      transition:transform .2s, box-shadow .2s, border-color .2s;
    }
    .step:hover{transform:translateY(-3px); box-shadow:0 18px 48px rgba(109,40,217,.12); border-color:rgba(109,40,217,.22)}
    .step .num{
      font-size:12px; font-weight:860; letter-spacing:.22em;
      color:rgba(109,40,217,.92);
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      padding:8px 10px;
      border-radius:999px;
      display:inline-block;
    }
    .step h3{margin:12px 0 8px; font-size:15px}
    .step p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.65}
    .step:after{
      content:"";
      position:absolute; right:-60px; top:-60px;
      width:160px; height:160px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(180,0,255,.18), transparent 60%);
      pointer-events:none;
    }

    .compare{
      border-radius:22px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      overflow:hidden;
      box-shadow:0 12px 30px rgba(26,28,41,.06);
    }
    .compare-head{
      padding:16px 16px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .stars{
      display:flex; align-items:center; gap:10px;
    }
    .star-row{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px; fill:rgba(180,0,255,.95);
      filter: drop-shadow(0 10px 18px rgba(180,0,255,.18));
    }
    .score{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .score b{
      font-size:26px; letter-spacing:-.6px;
      background:linear-gradient(135deg, var(--primary), var(--accent2));
      -webkit-background-clip:text; background-clip:text;
      color:transparent;
    }
    .score span{color:var(--muted); font-size:13px; margin-top:6px}
    .compare table{
      width:100%;
      border-collapse:collapse;
      margin-top:10px;
      overflow:auto;
      display:block;
    }
    .compare thead th{
      background:linear-gradient(135deg, rgba(109,40,217,.14), rgba(180,0,255,.10));
      font-size:13px;
      color:var(--text);
      padding:14px 12px;
      border-bottom:1px solid rgba(26,28,41,.10);
      text-align:left;
      white-space:nowrap;
    }
    .compare tbody td{
      padding:14px 12px;
      border-bottom:1px solid rgba(26,28,41,.08);
      color:var(--muted);
      font-size:13.2px;
      vertical-align:top;
      line-height:1.55;
    }
    .compare tbody tr:hover td{background:rgba(139,92,246,.06)}
    .th-metric{width:28%}
    .ok{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--text);
      font-weight:720;
    }
    .ok .bubble{
      width:22px; height:22px; border-radius:10px;
      background:rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .ok svg{width:14px; height:14px}
    .no{
      color:var(--muted);
      font-weight:650;
      display:flex; gap:10px; align-items:flex-start;
    }
    .no .bubble{
      width:22px; height:22px; border-radius:10px;
      background:rgba(217,119,6,.10);
      border:1px solid rgba(217,119,6,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .no svg{width:14px; height:14px; opacity:.95}

    .timeline{
      border-radius:22px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 30px rgba(26,28,41,.06);
      padding:16px;
    }
    .timeline .row{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:12px;
    }
    .titem{
      grid-column: span 3;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.70);
      position:relative;
      overflow:hidden;
      min-height:142px;
      transition:transform .2s, box-shadow .2s, border-color .2s;
    }
    .titem:hover{transform:translateY(-3px); box-shadow:0 18px 48px rgba(109,40,217,.12); border-color:rgba(109,40,217,.22)}
    .titem:before{
      content:"";
      position:absolute; left:-40px; top:-60px;
      width:140px; height:140px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(139,92,246,.18), transparent 60%);
      pointer-events:none;
    }
    .titem b{position:relative; z-index:1; display:block; font-size:14px; margin-bottom:8px}
    .titem span{position:relative; z-index:1; color:var(--muted); font-size:13.2px; line-height:1.6; display:block}

    .faq{
      display:grid; grid-template-columns: 1fr; gap:12px;
    }
    details.faq-item{
      border-radius:18px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      padding:12px 14px;
      box-shadow:0 12px 30px rgba(26,28,41,.04);
      transition:transform .2s, border-color .2s, box-shadow .2s;
    }
    details.faq-item:hover{transform:translateY(-2px); border-color:rgba(109,40,217,.22); box-shadow:0 18px 48px rgba(109,40,217,.10)}
    details.faq-item > summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      font-weight:820; color:var(--text);
      font-size:14px;
      padding:6px 0;
      outline:none;
    }
    details.faq-item > summary::-webkit-details-marker{display:none}
    .sum-left{display:flex; align-items:center; gap:12px}
    .qmark{
      width:30px; height:30px; border-radius:14px;
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(109,40,217,.98);
      font-weight:900;
    }
    .caret{
      width:32px; height:32px; border-radius:14px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      transition:transform .22s, border-color .2s, background .2s;
      flex:0 0 auto;
    }
    details[open] .caret{transform:rotate(180deg); border-color:rgba(109,40,217,.22); background:rgba(139,92,246,.10)}
    .faq-answer{
      color:var(--muted);
      font-size:13.4px;
      line-height:1.75;
      padding:8px 0 4px;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .review{
      grid-column: span 4;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 12px 30px rgba(26,28,41,.05);
      transition:transform .2s, box-shadow .2s, border-color .2s;
      position:relative;
      overflow:hidden;
      min-height:200px;
      display:flex; flex-direction:column;
    }
    .review:hover{transform:translateY(-3px); box-shadow:0 18px 48px rgba(109,40,217,.12); border-color:rgba(109,40,217,.22)}
    .review:after{
      content:"";
      position:absolute; inset:-40% -40% auto auto;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(255,79,216,.12), transparent 62%);
      pointer-events:none;
      transform:rotate(20deg);
    }
    .review .r-top{position:relative; z-index:1; display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .avatar{
      width:44px; height:44px; border-radius:18px;
      background:rgba(139,92,246,.12);
      border:1px solid rgba(139,92,246,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:rgba(109,40,217,.98);
      flex:0 0 auto;
    }
    .r-name b{display:block; font-size:14px}
    .r-name span{display:block; margin-top:4px; font-size:12.5px; color:var(--muted)}
    .review .r-stars{
      display:flex; gap:4px; align-items:center; justify-content:flex-end; margin-top:2px;
      position:relative; z-index:1;
    }
    .review .r-stars svg{width:16px; height:16px; fill:rgba(180,0,255,.95)}
    .review blockquote{
      position:relative; z-index:1;
      margin:12px 0 0;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.75;
      flex:1 1 auto;
    }
    .review .r-foot{
      position:relative; z-index:1;
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .mini-pill{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.75);
      color:var(--muted);
      font-size:12.4px;
    }
    .mini-pill strong{color:var(--text)}
    .split{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
      align-items:stretch;
    }
    .list-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .bul{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.70);
      transition:transform .2s, border-color .2s;
    }
    .bul:hover{transform:translateY(-2px); border-color:rgba(109,40,217,.22)}
    .bul b{display:flex; align-items:center; gap:10px; font-size:14px}
    .bul b i{
      width:26px; height:26px; border-radius:12px;
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      display:flex; align-items:center; justify-content:center;
      font-style:normal; color:rgba(109,40,217,.98);
      font-weight:900;
    }
    .bul p{margin:8px 0 0; color:var(--muted); font-size:13.2px; line-height:1.65}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .case{
      grid-column: span 6;
      border-radius:22px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 12px 30px rgba(26,28,41,.05);
      padding:16px;
      transition:transform .2s, box-shadow .2s, border-color .2s;
      position:relative;
      overflow:hidden;
      min-height:240px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .case:hover{transform:translateY(-3px); box-shadow:0 18px 48px rgba(109,40,217,.12); border-color:rgba(109,40,217,.22)}
    .case-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .case h3{margin:0; font-size:15px}
    .case .desc{color:var(--muted); font-size:13.2px; line-height:1.7; margin:0}
    .case .meta{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:auto;
      padding-top:10px;
      border-top:1px solid rgba(26,28,41,.08);
    }
    .thumb{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(26,28,41,.10);
      overflow:hidden;
      background:rgba(255,255,255,.72);
      aspect-ratio:16/9;
      position:relative;
    }
    .thumb img{width:100%; height:100%; object-fit:cover; display:block}
    .thumb .overlay{
      position:absolute; inset:auto 0 0 0;
      padding:12px 12px;
      background:linear-gradient(180deg, transparent, rgba(0,0,0,.50));
      color:#fff;
      font-size:12.6px;
      display:flex; justify-content:space-between; gap:10px; align-items:center;
    }
    .thumb .overlay span{opacity:.95}
    .thumb .overlay b{font-weight:900}
    .articles{
      display:grid; grid-template-columns: repeat(12, 1fr); gap:14px;
    }
    .article{
      grid-column: span 4;
      border-radius:22px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 12px 30px rgba(26,28,41,.05);
      padding:16px;
      transition:transform .2s, box-shadow .2s, border-color .2s;
      position:relative;
      overflow:hidden;
      display:flex; flex-direction:column;
      min-height:210px;
    }
    .article:hover{transform:translateY(-3px); box-shadow:0 18px 48px rgba(109,40,217,.12); border-color:rgba(109,40,217,.22)}
    .article .topline{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .cat{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.76);
      color:var(--muted);
      font-size:12.4px; font-weight:700;
      white-space:nowrap;
    }
    .date{color:var(--muted2); font-size:12.2px; white-space:nowrap}
    .article h3{margin:0 0 8px; font-size:15px; letter-spacing:-.2px}
    .article p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.7}
    .article .a-foot{
      margin-top:auto;
      padding-top:12px;
      border-top:1px solid rgba(26,28,41,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .link{
      color:rgba(109,40,217,.98);
      font-weight:820;
      font-size:13px;
      display:inline-flex; gap:10px; align-items:center;
      padding:10px 10px; border-radius:14px;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(109,40,217,.08);
      transition:transform .2s, background .2s, border-color .2s;
    }
    .link:hover{transform:translateY(-1px); background:rgba(109,40,217,.12); border-color:rgba(109,40,217,.28)}
    .arrow{
      width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center;
      border-radius:10px; background:rgba(109,40,217,.14); border:1px solid rgba(109,40,217,.18);
    }

    .form-card{
      border-radius:26px;
      border:1px solid rgba(109,40,217,.18);
      background:
        radial-gradient(900px 420px at 20% 0%, rgba(139,92,246,.22), transparent 55%),
        radial-gradient(700px 360px at 90% 10%, rgba(180,0,255,.12), transparent 60%),
        rgba(255,255,255,.66);
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .form-card:after{
      content:"";
      position:absolute; right:-80px; bottom:-120px;
      width:320px; height:320px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(255,79,216,.16), transparent 62%);
      pointer-events:none;
    }
    .form-grid{
      position:relative; z-index:1;
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .form-grid .full{grid-column:1/-1}
    label{font-size:12.7px; color:var(--muted); font-weight:760; display:block; margin-bottom:8px}
    textarea.input{min-height:110px; resize:vertical}
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:12px;
      align-items:center;
      justify-content:space-between;
    }
    .note{
      color:var(--muted2);
      font-size:12.2px; line-height:1.6;
      max-width:52ch;
    }
    .toast{
      position:fixed; left:50%; bottom:22px; transform:translateX(-50%);
      z-index:120;
      background:rgba(17,24,39,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      box-shadow:0 20px 70px rgba(0,0,0,.25);
      width:min(520px, calc(100vw - 24px));
      display:none;
      align-items:flex-start; gap:12px;
      animation:toastIn .22s ease-out;
    }
    @keyframes toastIn{
      from{opacity:0; transform:translateX(-50%) translateY(10px)}
      to{opacity:1; transform:translateX(-50%) translateY(0)}
    }
    .toast .ticon{
      width:34px; height:34px; border-radius:14px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .toast b{display:block; font-size:13.5px}
    .toast span{display:block; margin-top:4px; opacity:.85; font-size:12.5px; line-height:1.5}

    .footer{
      background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.78));
      border-top:1px solid rgba(26,28,41,.08);
      padding:26px 0 18px;
    }
    .foot-grid{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;
      align-items:flex-start;
    }
    .foot-left{
      border-radius:22px; border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.72);
      padding:16px;
      box-shadow:0 12px 30px rgba(26,28,41,.04);
    }
    .foot-left .f-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .foot-left .f-title b{font-size:15px; letter-spacing:-.2px}
    .foot-left p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.75}
    .foot-links{
      display:flex; flex-wrap:wrap; gap:10px; margin-top:12px;
      align-items:center;
    }
    .foot-links a{
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.80);
      color:var(--muted);
      font-size:12.8px; font-weight:720;
      transition:transform .2s, border-color .2s, background .2s;
      white-space:nowrap;
    }
    .foot-links a:hover{transform:translateY(-1px); border-color:rgba(109,40,217,.22); background:rgba(109,40,217,.08); color:var(--text)}
    .foot-right{
      border-radius:22px; border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.72);
      padding:16px;
      box-shadow:0 12px 30px rgba(26,28,41,.04);
      display:flex; flex-direction:column; gap:10px;
    }
    .contact-row{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
    }
    .qr{
      width:86px; height:86px; border-radius:20px;
      border:1px solid rgba(26,28,41,.10);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .qr img{width:100%; height:100%; object-fit:cover; display:block}
    .contact-row .cmeta b{display:block; font-size:14px}
    .contact-row .cmeta span{display:block; margin-top:6px; color:var(--muted); font-size:13.2px}
    .copy{
      margin-top:14px;
      color:var(--muted2);
      font-size:12.4px;
      display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .topbtn{
      position:fixed; right:16px; bottom:16px;
      z-index:80;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(109,40,217,.20);
      background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      box-shadow:0 18px 50px rgba(109,40,217,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .2s, opacity .2s;
      opacity:0; pointer-events:none;
    }
    .topbtn.show{opacity:1; pointer-events:auto}
    .topbtn:hover{transform:translateY(-2px)}
    .float-chat{
      position:fixed; left:16px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-start;
    }
    .chat-pill{
      display:flex; gap:10px; align-items:center;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 18px 50px rgba(26,28,41,.10);
      cursor:pointer;
      transition:transform .2s, border-color .2s, background .2s;
      max-width:240px;
    }
    .chat-pill:hover{transform:translateY(-2px); border-color:rgba(109,40,217,.22); background:rgba(255,255,255,.82)}
    .chat-pill .cico{
      width:38px; height:38px; border-radius:16px;
      background:rgba(139,92,246,.12);
      border:1px solid rgba(139,92,246,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .chat-pill b{font-size:13.5px}
    .chat-pill span{display:block; color:var(--muted); font-size:12.4px; margin-top:4px; line-height:1.3}

    .marquee{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .knetwork{
      display:grid; grid-template-columns: repeat(12, 1fr); gap:14px;
    }
    .net-card{
      grid-column: span 4;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(26,28,41,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 12px 30px rgba(26,28,41,.05);
      transition:transform .2s, border-color .2s, box-shadow .2s;
      min-height:168px;
      position:relative;
      overflow:hidden;
    }
    .net-card:hover{transform:translateY(-3px); border-color:rgba(109,40,217,.22); box-shadow:0 18px 48px rgba(109,40,217,.12)}
    .net-card:after{
      content:"";
      position:absolute; left:-70px; bottom:-90px;
      width:220px; height:220px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(139,92,246,.18), transparent 62%);
      pointer-events:none;
    }
    .net-card h3{margin:10px 0 8px; font-size:15px; position:relative; z-index:1}
    .net-card p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.7; position:relative; z-index:1}
    .net-card .smalllist{margin-top:12px; padding:0; list-style:none; position:relative; z-index:1; display:flex; flex-direction:column; gap:9px}
    .net-card .smalllist li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:13.1px}
    .net-card .smalllist i{
      width:18px; height:18px; border-radius:8px;
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      display:flex; align-items:center; justify-content:center;
      font-style:normal; font-weight:900;
      color:rgba(109,40,217,.98);
      flex:0 0 auto; margin-top:2px;
    }

    .anchor-space{scroll-margin-top:96px}

    .reveal{
      opacity:0; transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{opacity:1; transform: translateY(0)}
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .card,.metric,.step,.titem,.article,.case,.review,.net-card{transition:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr}
      .hero h1{font-size:30px}
      .grid-metric{grid-template-columns:1fr 1fr}
      .w-6,.w-5,.w-7,.w-8,.w-4,.w-3{grid-column: span 12}
      .step{grid-column: span 6}
      .titem{grid-column: span 6}
      .review{grid-column: span 6}
      .case{grid-column: span 12}
      .article{grid-column: span 6}
      .net-card{grid-column: span 6}
      .split{grid-template-columns:1fr}
      .list-grid{grid-template-columns:1fr}
      .foot-grid{grid-template-columns:1fr}
      .float-chat{display:none}
    }
    @media (max-width: 720px){
      .menu{display:none}
      .hamb{display:block}
      .mobile-panel{display:none}
      header{padding-bottom:0}
      .mobile-panel.open{display:block}
      .hero-card{padding:18px}
      section{padding:42px 0}
      .hero{padding:26px 0 10px}
      .hero-meta .meta-item{min-width:150px}
      .step{grid-column: span 12}
      .titem{grid-column: span 12}
      .review{grid-column: span 12}
      .article{grid-column: span 12}
      .net-card{grid-column: span 12}
      .form-grid{grid-template-columns:1fr}
      .compare thead th:nth-child(1), .compare tbody td:nth-child(1){min-width:160px}
      .compare thead th, .compare tbody td{white-space:normal}
      .float-chat{display:none}
    }